From 9e8cc2a1b352f29c43a72458df047c0e6b307f31 Mon Sep 17 00:00:00 2001 From: Rahul Dave Date: Fri, 6 Nov 2015 16:58:03 -0500 Subject: [PATCH] fixed test-train --- .../TextAnalysis-checkpoint.ipynb | 1519 + TextAnalysis.ipynb | 1519 + callibration.png | Bin 0 -> 25313 bytes critics.csv | 27632 ++++++++++++++++ terms.png | Bin 0 -> 14364 bytes terms2.png | Bin 0 -> 15995 bytes vsm.png | Bin 0 -> 21809 bytes 7 files changed, 30670 insertions(+) create mode 100644 .ipynb_checkpoints/TextAnalysis-checkpoint.ipynb create mode 100644 TextAnalysis.ipynb create mode 100644 callibration.png create mode 100644 critics.csv create mode 100644 terms.png create mode 100644 terms2.png create mode 100644 vsm.png diff --git a/.ipynb_checkpoints/TextAnalysis-checkpoint.ipynb b/.ipynb_checkpoints/TextAnalysis-checkpoint.ipynb new file mode 100644 index 0000000..5f98196 --- /dev/null +++ b/.ipynb_checkpoints/TextAnalysis-checkpoint.ipynb @@ -0,0 +1,1519 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# BOW model and Naive Bayes" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import numpy as np\n", + "import scipy as sp\n", + "import matplotlib as mpl\n", + "import matplotlib.cm as cm\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "pd.set_option('display.width', 500)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option('display.notebook_repr_html', True)\n", + "import seaborn as sns\n", + "sns.set_style(\"whitegrid\")\n", + "sns.set_context(\"poster\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#Table of Contents\n", + "* [BOW model and Naive Bayes](#BOW-model-and-Naive-Bayes)\n", + "\t* [Rotten Tomatoes data set](#Rotten-Tomatoes-data-set)\n", + "\t\t* [Explore](#Explore)\n", + "\t* [The Vector space model and a search engine.](#The-Vector-space-model-and-a-search-engine.)\n", + "\t\t* [In Code](#In-Code)\n", + "\t* [Naive Bayes](#Naive-Bayes)\n", + "\t\t* [Cross-Validation and hyper-parameter fitting](#Cross-Validation-and-hyper-parameter-fitting)\n", + "\t\t* [Work with the best params](#Work-with-the-best-params)\n", + "\t* [Interpretation](#Interpretation)\n", + "\t* [Callibration](#Callibration)\n", + "\t* [To improve:](#To-improve:)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Rotten Tomatoes data set" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
criticfreshimdbpublicationquotereview_datertidtitle
1Derek Adamsfresh114709Time OutSo ingenious in concept, design and execution ...2009-10-049559Toy story
2Richard Corlissfresh114709TIME MagazineThe year's most inventive comedy.2008-08-319559Toy story
3David Ansenfresh114709NewsweekA winning animated feature that has something ...2008-08-189559Toy story
4Leonard Kladyfresh114709VarietyThe film sports a provocative and appealing st...2008-06-099559Toy story
5Jonathan Rosenbaumfresh114709Chicago ReaderAn entertaining computer-generated, hyperreali...2008-03-109559Toy story
\n", + "
" + ], + "text/plain": [ + " critic fresh imdb publication quote review_date rtid title\n", + "1 Derek Adams fresh 114709 Time Out So ingenious in concept, design and execution ... 2009-10-04 9559 Toy story\n", + "2 Richard Corliss fresh 114709 TIME Magazine The year's most inventive comedy. 2008-08-31 9559 Toy story\n", + "3 David Ansen fresh 114709 Newsweek A winning animated feature that has something ... 2008-08-18 9559 Toy story\n", + "4 Leonard Klady fresh 114709 Variety The film sports a provocative and appealing st... 2008-06-09 9559 Toy story\n", + "5 Jonathan Rosenbaum fresh 114709 Chicago Reader An entertaining computer-generated, hyperreali... 2008-03-10 9559 Toy story" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "critics = pd.read_csv('./critics.csv')\n", + "#let's drop rows with missing quotes\n", + "critics = critics[~critics.quote.isnull()]\n", + "critics.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Explore" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of reviews: 15561\n", + "Number of critics: 623\n", + "Number of movies: 1921\n" + ] + } + ], + "source": [ + "n_reviews = len(critics)\n", + "n_movies = critics.rtid.unique().size\n", + "n_critics = critics.critic.unique().size\n", + "\n", + "\n", + "print \"Number of reviews: %i\" % n_reviews\n", + "print \"Number of critics: %i\" % n_critics\n", + "print \"Number of movies: %i\" % n_movies" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxQAAAIqCAYAAAC9hAz4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XuclnP++PH31FQoLWstOZa1ZpJMRXLWwTktEZMVlm/O\n1im2cgxflpJ1yKmWRGudQhJrxeaYzSn52dFiReW4G6GGmub6/WHn/nbroPl0uKc8n49HD+aa+/Ce\n+zP3zLzu677uuyjLsiwAAAAS1Cv0AAAAwKpLUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJigs9\nwMrwyiuvFHoEAACok7bbbrtlOv+PIigilv2Gou6pqKiIiIiWLVsWeBKWN2u7+rK2qy9ru/qytquv\nioqKmDNnzjJfjqc8AQAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAA\nAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAA\nyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkE\nBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQrLjQAwDw49Gy\nZctCjwDAciYoAKi1bn1GF3qE5WrM4AMLPQLAKstTngAAgGSCAgAASCYoAACAZIICAABIJigAAIBk\nggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIIC\nAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAA\nSCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZHUiKJ588slo167dQttvuumm\n6NixY7Rp0yaOPfbY+Ne//lWA6QAAgMUpeFC8+uqrcc455yy0fciQIXHzzTdH79694+qrr46vvvoq\nfvOb38TXX39dgCkBAIBFKVhQzJ07N4YNGxZHH310NGjQIO9zX3/9ddx6663x29/+Nnr16hWdO3eO\nW2+9NWbPnh33339/gSYGAAC+r2BB8cwzz8SwYcOib9++0atXr8iyLPe5119/PSorK6Nz5865bU2b\nNo327dvHs88+W4hxAQCARShYULRu3Tqeeuqp6NWr10Kfmzp1akREbLbZZnnbN9lkk3jvvfdWxngA\nAMBSKC7UFW+wwQaL/dzXX38dDRs2jOLi/PEaN24cs2fPTrq+ioqKpPNRd1VWVkaEtV0dWdu6rWXL\nloUeYYXw/bZs3G9XX9Z29VWztsuq4AdlL0qWZVFUVLTIzy1uOwAAsPIVbA/Fkqy99toxd+7cmD9/\nftSvXz+3ffbs2dG0adOky1xdH1H7Mat5pMTarn6sLYXg+23ZuN+uvqzt6quioiLmzJmzzJdTJ/dQ\nbL755pFlWUyfPj1v+/Tp06NFixYFmgoAAPi+OhkUbdu2jUaNGsUTTzyR2zZr1qyYOHFi7LTTTgWc\nDAAAWFCdfMpT48aNo1evXnHttddGvXr1YvPNN4+bb745mjZtGj169Cj0eAAAwH/ViaAoKipa6GDr\ns846K+rVqxe33XZbzJ49O9q1axcDBw6MJk2aFGhKAADg++pEUJx66qlx6qmn5m2rX79+9OnTJ/r0\n6VOgqQAAgB9SJ4+hAAAAVg2CAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYo\nAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAA\ngGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBk\nggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIIC\nAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAA\nSCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgm\nKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASFangyLLsrj99ttjn332\nibZt28Zhhx0WL774YqHHAgAA/qtOB8WIESNi0KBBccghh8SNN94Ym266afTu3TsqKioKPRoAABB1\nPChGjRoV3bp1i+OPPz522mmnGDRoUKy//vpx//33F3o0AAAg6nhQfP3119G4cePcx/Xq1YsmTZrE\nrFmzCjgVAABQo04Hxa9+9asYPXp0TJgwIb766qsYMWJEvPPOO9G1a9dCjwYAAEREcaEHWJLTTjst\npkyZEsccc0xu25lnnhmdOnUq4FQAAECNOh0U55xzTrz22msxYMCA+MUvfhHPP/98XH/99dGkSZM4\n4ogjanVZDuRe/VRWVkaEtV0dWdu6rWXLloUeYYXw/bZs3G9XX9Z29VWztsuqzgbFG2+8EY8++mhc\ne+21sc8++0RERPv27WP+/Plx1VVXxcEHHxxrrrlmgacEAIAftzobFO+//35ERLRp0yZve7t27WLY\nsGExY8aM2HLLLZf68lbXR9R+zGoeKbG2qx9rSyH4fls27rerL2u7+qqoqIg5c+Ys8+XU2YOyN910\n04iIeOWVV/K2v/7661FcXBwbbrhhIcYCAAAWUGf3UJSVlcXOO+8cF198cXzxxRexxRZbxMSJE+OP\nf/xjHHXUUdGkSZNCjwgAAD96dTYoIiJuuummuOmmm2LEiBHx6aefxmabbRYXXHBBlJeXF3o0AAAg\n6nhQNGrUKM4444w444wzCj0KAACwCHX2GAoAAKDuExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABA\nMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJB\nAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEA\nACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAsuJCDwAA\ndUG3PqMLPcJyN2bwgYUeAfgRsIcCAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABI\nJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYo\nAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAA\ngGSCAgAASCYoAACAZIICAABIJigAAIBkdT4oJkyYEIceemiUlZVF586d4/rrr4/q6upCjwUAAEQd\nD4pXXnkljjvuuNhyyy1j6NChccQRR8SwYcPixhtvLPRoAABARBQXeoAlGTx4cOy6667x+9//PiIi\nOnToEF988UVMnDixwJMBAAARSwiKRx99NOkC999//+RhFjRz5sx47bXXFtob0adPn+Vy+QAAwLJb\nbFCcddZZtb6woqKi5RYUU6ZMiSzLYo011ogTTzwxXnjhhWjSpEn8+te/jlNOOSWKioqWy/UAAADp\nFhsUI0aM+MEzV1dXx4gRI2L8+PEREbHPPvsst8E+//zziIjo27dvdOvWLY499tiYOHFi3HTTTdGo\nUaM47rjjltt1AQAAaRYbFB06dFjiGV9++eX43//933j77bejefPmceGFF8bOO++83AabN29eRETs\ntttucc4550RExA477BCff/553HTTTdG7d+9a7aWoqKhYbrNRN1RWVkaEtV0dWdu6rWXLloUegVpY\nWfcj99vVl7VdfdWs7bKq9as8zZw5M/r16xe9evWKadOmxemnnx5jxoxZrjEREdG4ceOI+C4oFrTT\nTjvFnDlzYvr06cv1+gAAgNpb6ld5yrIs/vznP8c111wTX375ZXTq1CnOP//82HjjjVfIYJtttllE\n/N+eihpVVVUREbU+hsIjaqufmkdKrO3qx9rC8rOy7kfut6sva7v6qqioiDlz5izz5SxVULzxxhsx\nYMCAePPNN2PjjTeOK6+8Mjp16rTMV74kv/zlL2ODDTaIxx57LLp165bb/vTTT8cGG2wQm2yyyQq9\nfgAA4IctMSi+/PLLGDx4cNx3331Rv379OPHEE+Okk06KRo0arfDBioqK4swzz4x+/frFgAEDYp99\n9okXXnghHnroobj44otX+PUDAAA/bLFB8cADD8RVV10VM2fOjF122SUuuOCCaN68+UocLeKggw6K\nBg0axM033xwPPPBANGvWLC655JI49NBDV+ocAADAoi02KM4999zc/7/00ktx4IEHRsR3x1J8X1FR\nUWRZFkVFRfH6668v1wG7du0aXbt2Xa6XCQAALB+LDYqDDjqo1hfmzeYAAODHZbFBccUVV6zMOQAA\ngFVQrd+HAgAAoIagAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAA\nAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAA\nkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJ\n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\nq7AHHngga9myZTZkyJDs6aefznr37p21a9cumzZt2iJP/+qrr2Zbb7111r9//+yFF17Ihg0blrVq\n1SobPnz4yh2cH1TbtV3QlClTslatWmWlpaUrYVJqK2VtO3bsmF1++eXZ66+/nvevurp6JU7OD6nt\n2s6dOzf71a9+le23337ZX//61+yJJ57Iunbtmu2zzz7Z3LlzV/L0LElt17aioiLvvjpp0qTs9NNP\nz9q1a5e99957K3d4lqi2aztjxoysbdu2We/evbPnn38+u/POO7OysrLsiiuuWMmT80Nqu7Zjx47N\nSkpKst/+9rfZs88+m917773ZTjvtlA0cOPAHr2uVDYrq6uqsU6dO2YABA3Lb5s2bl3Xp0iW79NJL\nF3me0047LTvooIPytvXr1y/ba6+9Vuis1E7K2taoqqrKDjnkkGz33XcXFHVQytrOmjUrKykpyZ59\n9tmVNSYJUtb23nvvzcrKyrKPPvoot62ioiLbbbfdsjfffHOFz8zSWZafyTUmT56ctWrVKnvggQdW\n1JgkSFnbW2+9Ndt2222zysrK3Larr746a9eu3Qqfl6WXsrYHHHBAVl5enrdt3Lhx2dZbb/2DD+iu\nsk95ev/99+PDDz+Mzp0757YVFxdHx44d49lnn13kefr37x+DBw/O29agQYOYN2/eCp2V2klZ2xq3\n3357VFZWRq9evSLzno11TsraTpkyJSIittpqq5UyI2lS1nbcuHGx++67x4YbbpjbVlpaGs8880xs\nvfXWK3xmls6y/Eyucdlll8W2224b3bt3X1FjkiBlbb/66qsoLi6ORo0a5bb95Cc/iTlz5sTcuXNX\n+MwsnZS1nTp1auy6665529q1axfz58+PCRMmLPH6VtmgmDp1akREbL755nnbN9lkk5g2bdoi/5jc\ncMMNY4sttoiIiC+//DIeeuihGD16dPTs2XOFz8vSS1nbiO/uPEOGDIlLL700GjRosKLHJEHK2k6Z\nMiUaNmwY11xzTXTo0CHatGkTp59+evz73/9eGSOzlFLW9p///Ge0aNEihgwZErvssku0bt06Tjjh\nhPjoo49WxsgspdSfyTXGjRsXkyZNir59+66oEUmUsrb77rtvzJs3LwYPHhyzZs2KyZMnx4gRI2Kv\nvfaKhg0broyxWQopa9usWbOYMWNG3rbp06fn/XdxVtmg+PrrryMionHjxnnbGzduHNXV1TFnzpzF\nnnfGjBmxww47RL9+/WKrrbYSFHVMytpmWRbnn39+HHTQQdGuXbuVMie1l7K2U6ZMiblz58baa68d\nN9xwQ1x00UUxadKkOProoz0aVoekrO1//vOfGDVqVDz33HNx+eWXx8CBA+Odd96J448/PubPn79S\n5uaHLcvv24iIESNGxPbbbx9lZWUrbEbSpKxtSUlJXHrppTF8+PDo0KFDHHbYYfGzn/0sLr/88pUy\nM0snZW0PPPDAePjhh+Pee++NWbNmxVtvvRUXX3xxNGjQ4AdfBGWVDYqasioqKlrk5+vVW/yXtvba\na8cdd9yRq+vy8vL45ptvVsic1F7K2t59990xbdq0OPvss1fobCyblLU95phjYuTIkdG/f//Yfvvt\no3v37nH99dfHu+++G4899tgKnZell7K2VVVVUVVVFX/84x9jjz32iP322y+uvfbaePvtt+Ovf/3r\nCp2Xpbcsv2//9a9/xUsvvRRHHXXUCpmNZZOytn/729/ivPPOix49esSIESNi4MCBMWvWrDjhhBM8\nyFOHpKztCSecED179owBAwZEhw4d4sgjj4yePXvGWmutFWuuueYSr2+VDYq11147IiJmz56dt332\n7NlRv379JX7hTZs2jR122CG6du0aQ4YMialTp8Zf/vKXFTovS6+2a/vRRx/FoEGD4txzz41GjRpF\nVVVV7o40f/58x1LUISn32y222CK23377vG3bbrttNG3aNHd8BYWXsraNGzeOsrKyaNKkSW7bNtts\nE02bNo233357xQ7MUluW37dPPvlkNG7cODp27LgiRyRRytoOHjw4dt1117j44oujQ4cO8atf/SqG\nDh0ar7zySowZM2alzM0PS1nb4uLiuOCCC+KVV16JsWPHxvPPPx9du3aNWbNmxU9+8pMlXt8qGxQ1\nzwn7/uuVT5s2LVq0aLHI84wbNy7eeOONvG2//OUvo7i4OD777LMVMyi1Vtu1nTBhQsyZMydOO+20\n2GabbWKbbbaJK6+8MiIiWrVq5TXP65CU++3YsWPj5ZdfztuWZVnMnTs31l133RUzKLWWsrabbbbZ\nIh/RrKqqWuyjaqx8KWtb49lnn43dd9/dc+vrqJS1ff/99xd6+toWW2wR66yzTrz77rsrZlBqLWVt\nX3rppZg4cWKsueaa8Ytf/CIaNmwYb731VkREtGzZconXt8oGRfPmzaNZs2bxxBNP5LbNmzcvxo8f\nHzvuuOMizzN06NAYOHBg3rYXX3wxqqqqvIJMHVLbte3cuXOMGjUq798xxxwTERGjRo2Kww47bKXN\nzpKl3G+1YN7PAAAUWklEQVTvuuuuuOyyy/L2ND399NPxzTffRPv27Vf4zCydlLXddddd49VXX41P\nP/00t23ixIkxZ86caNu27QqfmaWTsrYR34X/m2++6diJOixlbTfZZJN49dVX87a9//778cUXX8Qm\nm2yyQudl6aWs7SOPPBKXXnpp3raRI0fGOuus84M/k+sPGDBgwDJPXQBFRUXRsGHDuPHGG2PevHkx\nd+7c+P3vfx9Tp06NK664Ipo2bRoffPBBvPfee7mXJPzZz34WQ4cOjU8//TTWWGONePbZZ+OSSy6J\nsrKyOOOMMwr8FVGjtmu7xhprxM9//vO8f++8804899xzcckllyx0QBKFk3K/XX/99WP48OExderU\naNKkSTz77LNx2WWXRceOHXPhSOGlrG1JSUk88MADMW7cuFh//fXjzTffjIsuuihKS0vjzDPPLPBX\nRI2UtY347gVQbr311jjyyCOjefPmhfsCWKyUtW3atGnceuut8fHHH8eaa64Zr732WlxwwQWx9tpr\n5w7gpfBS1naDDTaIoUOHxsyZM6Nhw4YxYsSIGDVqVJx33nk//MBArd4low667bbbso4dO2ZlZWVZ\nz549s0mTJuU+17dv34Xe3OzJJ5/MDjnkkKysrCzbbbfdsiuuuCL75ptvVvbYLIXaru2Chg8f7o3t\n6rDU+22bNm2y3XbbLbvyyiuzb7/9dmWPzVKo7dp+8MEH2cknn5y1bds222GHHbJ+/fplX3311coe\nm6VQ27V9/fXXs9LS0uzVV19d2aNSS7Vd2/Hjx2fl5eVZu3btso4dO2bnnXde9p///Gdlj81SSPl9\n261bt6ysrCzr1q1b9vDDDy/V9RRlmSNWAQCANKvsMRQAAEDhCQoAACCZoAAAAJIJCgAAIJmgAAAA\nkgkKAAAgmaAAAACSCQqA7xk7dmyUlpZG9+7dCz3KKm/atGl5H5eWlsaAAQMKM8wqol+/frHtttvm\nbfv000/j22+/zX3cuXPn6N2798oeDWCRBAXA9zzyyCOx5pprRkVFRbz99tuFHmeVdf/998fBBx+c\nt23QoEFxyCGHFGiiVUPPnj3jiiuuyH389NNPx/777x9ff/11btu5554bxx13XCHGA1iIoABYwJdf\nfhnPPfdcHH744VFUVBQPPvhgoUdaZb388ssxd+7cvG3dunWL1q1bF2iiVUObNm1i//33z308efLk\nvJiIiNhzzz2jQ4cOK3s0gEUSFAALePzxx2PevHmx9957xzbbbBNjxoyJ6urqQo+1ysqyrNAjrDbc\nlkBdJSgAFjB27Nho3LhxbLPNNtG5c+f47LPP4vnnn4+IiFdeeSVKS0vj3nvvXeh85eXlecdcTJs2\nLc4888zo0KFDtGnTJg4//PCYMGFC3nk6d+4cl1xySfTp0ydat24d++yzT8ybNy/mzp0bQ4YMia5d\nu0ZZWVm0bds2ysvLY/z48Xnnr66ujltuuSW6dOkSZWVlccQRR0RFRUVsvfXWMWTIkNzpqqqq4qab\nboq99torWrduHXvuuWfccMMNMX/+/CXeFv369YuDDjoobrvttmjXrl3suOOO8Y9//CMiIsaMGRM9\ne/aM7bbbLlq3bh377rtv/PGPf8yd98gjj4yHHnoo5s6dG6Wlpbl5SktL46KLLoqIiOnTp0dpaWk8\n+uijccUVV8Quu+wSZWVlcfTRR8dbb72VN8sXX3wR559/fuy8887Rrl276NOnT4wbNy5KS0vjpZde\nWuLX8Otf/zrGjx8f+++/f5SVlUX37t1j3LhxC53273//e/Tq1Svatm0bO+ywQ5x22ml5x4DUzDty\n5Mjo0aNHbLvttnH22Wcv9rq//fbb+MMf/hCdO3eONm3aRLdu3WLUqFG5z19//fXRvn37GDNmTHTo\n0CHat28fTz31VN4xFP369YsbbrghIiJ23XXX6N+/f0Qs+hiKp556Knr27Blt27aN3XffPS688ML4\n4osvFjsfwPIiKAD+67PPPouJEyfGbrvtFsXFxdGlS5eIiHjooYciImK77baLjTbaKB5//PG88330\n0UcxefLkOOCAA3Ifl5eXx+TJk6N3795x1llnRVVVVfTu3XuhKHjwwQfj448/jgsuuCAOP/zwaNCg\nQfTr1y9uueWW3B+FvXv3jhkzZsQpp5wS7733Xu68v//97+MPf/hDtGnTJvr27Rtrr712HHXUUQs9\nkt23b9+44YYbYrfddovzzz8/dtxxxxgyZEicc845P3ibvP/++zFy5Mjo06dPHHrooVFSUhJ33313\nnHPOOdGsWbPo169fnH322bHWWmvFVVddFffdd19ERJx00kmx/fbbR3FxcQwaNCj23nvv3GUWFRXl\nXcegQYNi4sSJcdJJJ8UJJ5wQkydPjhNOOCG3Z6iqqiqOPfbYGD16dHTv3j1OP/30ePvtt+O8885b\n6LK+r6ioKD744IM47bTTon379nHOOedEvXr14re//W3eOj799NNx7LHHRkTE2WefHb/5zW/itdde\ni/Ly8vjoo4/yLnPw4MGx1VZbRd++fWPfffdd7HWfdNJJMXTo0Nhll13i3HPPjc033zzOO++8uOee\ne3KnqaysjCuuuCJOOumk+PWvfx1t27bNu4169uwZe+21V0REXHjhhdGzZ89F3o6jR4+Ok08+OebP\nnx9nnXVW9OjRI8aMGRMnn3yyPRvAipcBkGVZlo0YMSIrKSnJHnnkkdy2vfbaKysrK8u++uqrLMuy\nbNCgQVmrVq2yL774Inea4cOHZ6WlpdlHH32UZVmWnX322dkuu+ySff7557nTzJs3LysvL8+6dOmS\n29apU6esdevW2axZs3LbPvnkk6y0tDS76aab8mZ77rnnspKSkuyuu+7KsizL3n///axly5bZRRdd\nlHe6008/PSspKcmuv/76LMuy7IUXXshKSkqy0aNH551u5MiRWUlJSfbiiy8u9vbo27dvVlJSko0f\nPz5v+3777Zcdc8wxedu+/vrrrHXr1tkZZ5yRd/7WrVvnna6kpCQ387Rp07KSkpJs7733zubOnZs7\nzdChQ7OSkpLspZdeyrIsy+6///6spKQkGzt2bO40s2fPzjp37pyVlJRkEydO/MGv4bbbbstt++ab\nb7K99947txZVVVVZp06dsmOPPTbvvJ988km23XbbZX379s2bt0ePHou9vhpPPfVUVlJSkt1xxx15\n23v16pW73uuuuy4rKSnJRo4cudDMC95uNaf797//ndvWqVOnrHfv3rn5d9ppp6y8vDybN29e7jT3\n339/VlpausTbB2B5sIcC4L8effTRaNCgQeyxxx65bXvuuWd888038Ze//CUiIg444ICoqqrKe8rM\nY489Fu3atYsNN9wwqqur46mnnooOHTpElmUxc+bMmDlzZnz55ZfRuXPnmD59erzzzju582655ZbR\ntGnT3Mc///nP45VXXoljjjkmt23+/Pm5lwydM2dORHz39Jbq6uo4+uij876GmkfZa4wbNy6Ki4tj\n5513zs0yc+bM2GOPPaKoqGihPSaLst122+V9/PDDD8d1112Xt+2zzz6LJk2a5OarjU6dOkWDBg1y\nH5eWlkZExH/+85+IiHjyySdj/fXXzztQea211orDDz98qS6/cePGccQRR+Q+btSoURx++OExffr0\nePvtt6OioiI+/PDD6Ny5c95tVFxcHNtvv/1Ct9H3b49Fefrpp6NBgwZRXl6et/3KK6+M4cOH523b\nfvvtl+rrWJw333wzZs6cGYceemgUFxfntnfr1i0eeOCBhV6CFmB5K/7hkwCs/qZPnx6TJk2KNm3a\nxKxZs3LPPd9mm20i4runlPTo0SNKS0tjiy22iMcffzwOOeSQ3NOdzj///IiI+Pzzz2P27NkxduzY\nGDt27ELXU1RUFB999FFsueWWERGx7rrrLnSa4uLiGD16dDz33HPxr3/9Kz744INcUNQ8DeiDDz6I\noqKi2HTTTfPO26JFi7yPP/jgg6iqqopdd911kbN88sknS7xdGjRoEE2aNFlovtdeey0effTRePfd\nd2Pq1Knx5Zdf5s1XGz/96U/zPm7YsGFERO4Yjw8++CA222yzhc7XvHnzpbr8TTfdNHeZNWoub8aM\nGbkIuvTSS+PSSy9d6PxFRUV5r1b1/XkX5cMPP4wNN9xwoevdaKONFjrt0lzeksyYMSMiIjbffPO8\n7Q0bNoyWLVsu02UDLA1BARDf7Z2IiJg0aVLu2IkFvfzyyzFjxozYeOON44ADDogbb7wxvvrqq3j8\n8cejXr16sd9++0XE//0R3K1bt4Xeg6FGSUlJ7v/r1cvfUfzNN9/E4YcfHm+//XbsvPPO0blz5ygt\nLY2NN944DjvssNzpqqqqoqioKO8R6YjvHn1fUHV1day77rpx9dVXL3KW9dZbb5HbayzqGIWLLroo\n7rnnnigrK4uysrI47LDDon379nl7VWrjh46DqKqqytuDUeP7X+vifP82ivi/8KlXr17u/88555zY\neuutF3kZ9evXX+p5I777PsiW8tiF738P1JZXIQMKTVAAxHdvZldcXBxXXXXVQn+8jhs3Lh588MHc\nga9du3aN6667Lp555pn4y1/+EjvuuGPuUeaf/vSnscYaa0R1dXXstNNOeZfz7rvvxowZM2LNNddc\n7ByPPfZYVFRUxNVXX533FJ9JkyblnW7TTTeN6urqmDZtWt5eiqlTp+adrlmzZvHiiy9Gu3bt8v4A\nnzdvXjz55JOxySabLN0N9F/Tp0+Pe+65J8rLy+Piiy/ObZ8/f358/vnntbqspbXpppsu8g0G33//\n/aU6//Tp0yPLsrwQqLmdmjdvHp999llERDRp0mShNXvppZeiqKgoLyiWRrNmzWLixIkxd+7cvL0U\n48ePj8cffzz3ak3Lw4YbbhgR372y2IJPn/r222/jd7/7XRxyyCGx++67L7frA/g+x1AAP3rvvPNO\n/POf/4w99tgj9t133+jSpUvev1NPPTWKiopi9OjREfHdU0u22WabePDBB+P111/PvbpTxHePhu+6\n667xxBNP5P1xX1VVFeeee26cddZZS3yEu+apVltssUVuW5Zl8ac//Ski/m8PSJcuXaKoqCjuuuuu\nvPPXnK5Gp06dYv78+TFs2LC87ffcc0+cccYZ8dprry3xtvn+rLNmzVpovoiIUaNGRWVlZd5L0S74\n6P+y2HPPPePjjz/OO5Zh7ty5cf/99y/V+b/44ot45JFHch9XVlbGn//859hqq61is802i9atW8d6\n660Xd9xxR+6pZRERn3zySZx44om5l22tjY4dO8a8efNyrxBWY8SIEfHCCy/kHTezKAve7jV7MBb3\nMr+tW7eOddddN0aNGpV3ez/++OPx+OOPL3IPDcDy5KcM8KNX88fm4p6itPHGG8fOO+8czz//fLz2\n2mvRtm3bOOCAA+KKK66IRo0a5V7Ws0afPn3i73//e5SXl8eRRx4ZP/3pT+Oxxx6L119/PS644IJY\nY401FjvLzjvvHMXFxXH22WfH4YcfHlmWxWOPPRb//ve/o0GDBrl3TN5iiy2ivLw8hg8fHp999lm0\nbds2/v73v8fTTz8dEf/3B2mXLl1i9913jyFDhsTUqVNj++23j3feeSfuvvvuaNu2be6pWovz/aft\n/PKXv4xmzZrFjTfeGHPmzIn11lsvXnrppXjqqadio402yntH5/XWWy/3Hhi77LJL8sHBBx98cNx1\n111x+umnx5FHHhkbbLBBPPjgg7mX0P2hpyAVFxfHBRdcEBUVFbHBBhvEAw88EJ9++mnufTMaNmwY\n/fv3j3POOSd69OgRBx98cC7ial6Gtba6dOkSO+64Y1x88cUxZcqU2HLLLeOZZ56JCRMmxODBg3/w\n/Ave7jVPSxs2bFjuchfUsGHD+N3vfhf9+/ePI488Mvbbb7/49NNP484774zddtstdt5551rPD1Ab\n9lAAP3qPPfZYrLfeetGxY8fFnqbm1Xpq9lLst99+Ua9evdhtt90WOmi5RYsWcc8990SHDh3izjvv\njEGDBsWcOXPiqquuynu1oUUpKSmJa665JurXrx8DBw6MYcOGRatWreK+++6LrbfeOu9N3C644II4\n6aST4qWXXoorr7wyPv/889yxEgs+bWvIkCFx8sknx+uvvx6XXXZZ/O1vf4sjjjgihg4dushjE2oU\nFRUt9Md6w4YN45Zbbomtt946br311hg0aFB8++23cf/990fXrl3jrbfeykVFeXl5bL311nHDDTfE\ngw8+uMSve1HXXaNBgwYxfPjw2HvvvePee++Na665Jrbaaqs4/fTTF/paF2W99daLa665Jp588sn4\nwx/+EE2bNo3hw4dHhw4dcqc54IAD4pZbbom11147rrvuurjllluiRYsWcccdd0Tr1q1rNXvN/Dff\nfHMcddRRMW7cuLjyyivjk08+ieuuuy66du2aO82iYuj72/fff//YYYcd4u67717oFaJqdO/ePa67\n7rqorKyMgQMHxiOPPBI9e/aMa6+9ttazA9RWUba0R40BUGdUVlZGlmWx1lpr5W3/f//v/0WPHj3i\nsssui0MOOaRA0y1fs2bNirXWWmuhcLjtttti4MCB8cQTTyz0alc1+vXrFxMmTMjtuQFg+bOHAmAV\nNHny5GjXrl3e+2FERO79Mlq1alWIsVaIO+64I9q1axczZ87Mbauuro6//vWvsc466yw2Jmoszasy\nAZDOMRQAq6C2bdvGZpttFhdeeGH885//jPXXXz8mT54co0aNiq5du+beHG51sP/++8ewYcPimGOO\niR49ekT9+vXjiSeeiEmTJuW90tTi2BEPsGJ5yhPAKqrmOfnPP/98zJw5MzbaaKM46KCD4vjjj1/m\n9zaoayZPnhzXX399vPHGG/Htt9/GVlttFcccc0zsu+++Szxf//79Y8KECUv1juAApBEUAABAstXr\nISwAAGClEhQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAsv8PtvL7UEdFTHQAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df = critics.copy()\n", + "df['fresh'] = df.fresh == 'fresh'\n", + "grp = df.groupby('critic')\n", + "counts = grp.critic.count() # number of reviews by each critic\n", + "means = grp.fresh.mean() # average freshness for each critic\n", + "\n", + "means[counts > 100].hist(bins=10, edgecolor='w', lw=1)\n", + "plt.xlabel(\"Average rating per critic\")\n", + "plt.ylabel(\"N\")\n", + "plt.yticks([0, 2, 4, 6, 8, 10]);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Vector space model and a search engine." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "All the diagrams here are snipped from\n", + "See http://nlp.stanford.edu/IR-book/ which is a great resource on Text processing.\n", + "\n", + "Also check out Python packages nltk, spacy, and pattern, and their associated resources.\n", + "\n", + "Let us define the vector derived from document d by $\\bar V(d)$. What does this mean? Each document is considered to be a vector made up from a vocabulary, where there is one axis for each term in the vocabulary.\n", + "\n", + "To define the vocabulary, we take a union of all words we have seen in all documents. We then just associate an array index with them. So \"hello\" may be at index 5 and \"world\" at index 99.\n", + "\n", + "Then the document\n", + "\n", + "\"hello world world\"\n", + "\n", + "would be indexed as\n", + "\n", + "`[(5,1),(99,2)]`\n", + "\n", + "along with a dictionary\n", + "\n", + "``\n", + "5: Hello\n", + "99: World\n", + "``\n", + "\n", + "so that you can see that our representation is one of a sparse array.\n", + "\n", + "Then, a set of documents becomes, in the usual `sklearn` style, a sparse matrix with rows being sparse arrays and columns \"being\" the features, ie the vocabulary. I put \"being\" in quites as the layout in memort is that of a matrix with many 0's, but, rather, we use the sparse representation we talked about above.\n", + "\n", + "Notice that this representation loses the relative ordering of the terms in the document. That is \"cat ate rat\" and \"rat ate cat\" are the same. Thus, this representation is also known as the Bag-Of-Words representation.\n", + "\n", + "Here is another example, from the book quoted above, although the matrix is transposed here so that documents are columns:\n", + "\n", + "![novel terms](terms.png)\n", + "\n", + "Such a matrix is also catted a Term-Document Matrix. Here, the terms being indexed could be stemmed before indexing; for instance, jealous and jealousy after stemming are the same feature. One could also make use of other \"Natural Language Processing\" transformations in constructing the vocabulary. We could use Lemmatization, which reduces words to lemmas: work, working, worked would all reduce to work. We could remove \"stopwords\" from our vocabulary, such as common words like \"the\". We could look for particular parts of speech, such as adjectives. This is often done in Sentiment Analysis. And so on. It all deoends on our application.\n", + "\n", + "From the book:\n", + ">The standard way of quantifying the similarity between two documents $d_1$ and $d_2$ is to compute the cosine similarity of their vector representations $\\bar V(d_1)$ and $\\bar V(d_2)$:\n", + "\n", + "$$S_{12} = \\frac{\\bar V(d_1) \\cdot \\bar V(d_2)}{|\\bar V(d_1)| \\times |\\bar V(d_2)|}$$\n", + "\n", + "![Vector Space Model](vsm.png)\n", + "\n", + "\n", + ">There is a far more compelling reason to represent documents as vectors: we can also view a query as a vector. Consider the query q = jealous gossip. This query turns into the unit vector $\\bar V(q)$ = (0, 0.707, 0.707) on the three coordinates below. \n", + "\n", + "![novel terms](terms2.png)\n", + "\n", + ">The key idea now: to assign to each document d a score equal to the dot product:\n", + "\n", + "$$\\bar V(q) \\cdot \\bar V(d)$$\n", + "\n", + "This we can use this simple Vector Model as a Search engine." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###In Code" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original text is\n", + "Hop on pop\n", + "Hop off pop\n", + "Hop Hop hop\n", + "\n", + "Transformed text vector is \n", + "[[1 0 1 1]\n", + " [1 1 0 1]\n", + " [3 0 0 0]]\n", + "\n", + "Words for each feature:\n", + "[u'hop', u'off', u'on', u'pop']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "text = ['Hop on pop', 'Hop off pop', 'Hop Hop hop']\n", + "print \"Original text is\\n\", '\\n'.join(text)\n", + "\n", + "vectorizer = CountVectorizer(min_df=0)\n", + "\n", + "# call `fit` to build the vocabulary\n", + "vectorizer.fit(text)\n", + "\n", + "# call `transform` to convert text to a bag of words\n", + "x = vectorizer.transform(text)\n", + "\n", + "# CountVectorizer uses a sparse array to save memory, but it's easier in this assignment to \n", + "# convert back to a \"normal\" numpy array\n", + "x = x.toarray()\n", + "\n", + "print\n", + "print \"Transformed text vector is \\n\", x\n", + "\n", + "# `get_feature_names` tracks which word is associated with each column of the transformed x\n", + "print\n", + "print \"Words for each feature:\"\n", + "print vectorizer.get_feature_names()\n", + "\n", + "# Notice that the bag of words treatment doesn't preserve information about the *order* of words, \n", + "# just their frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def make_xy(critics, vectorizer=None):\n", + " #Your code here \n", + " if vectorizer is None:\n", + " vectorizer = CountVectorizer()\n", + " X = vectorizer.fit_transform(critics.quote)\n", + " X = X.tocsc() # some versions of sklearn return COO format\n", + " y = (critics.fresh == 'fresh').values.astype(np.int)\n", + " return X, y\n", + "X, y = make_xy(critics)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Naive Bayes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This discussion follows that of HW3 in 2013's cs109 class.\n", + "\n", + "$$P(c|d) \\propto P(d|c) P(c) $$\n", + "\n", + "$$P(d|c) = \\prod_k P(t_k | c) $$\n", + "\n", + "the conditional independence assumption.\n", + "\n", + "Then we see that for which c is $P(c|d)$ higher.\n", + "\n", + "For floating point underflow we change the product into a sum by going into log space. So:\n", + "\n", + "$$log(P(d|c)) = \\sum_k log (P(t_k | c)) $$\n", + "\n", + "But we must also handle non-existent terms, we cant have 0's for them:\n", + "\n", + "$$P(t_k|c) = \\frac{N_{kc}+\\alpha}{N_c+\\alpha N_{feat}}$$" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MN Accuracy: 77.23%\n" + ] + } + ], + "source": [ + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.cross_validation import train_test_split\n", + "xtrain, xtest, ytrain, ytest = train_test_split(X, y)\n", + "clf = MultinomialNB().fit(xtrain, ytrain)\n", + "print \"MN Accuracy: %0.2f%%\" % (100 * clf.score(xtest, ytest))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy on training data: 0.92\n", + "Accuracy on test data: 0.77\n" + ] + } + ], + "source": [ + "training_accuracy = clf.score(xtrain, ytrain)\n", + "test_accuracy = clf.score(xtest, ytest)\n", + "\n", + "print \"Accuracy on training data: %0.2f\" % (training_accuracy)\n", + "print \"Accuracy on test data: %0.2f\" % (test_accuracy)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Clearly this is an overfit classifier." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Cross-Validation and hyper-parameter fitting" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We use `KFold` instead of `GridSearchCV` here as we will want to also set parameters in the CountVectorizer." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import KFold\n", + "def cv_score(clf, X, y, scorefunc):\n", + " result = 0.\n", + " nfold = 5\n", + " for train, test in KFold(y.size, nfold): # split data into train/test groups, 5 times\n", + " clf.fit(X[train], y[train]) # fit\n", + " result += scorefunc(clf, X[test], y[test]) # evaluate score function on held-out data\n", + " return result / nfold # average" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We use the log-likelihood as the score here. Remember how in HW3 we were able to set different scores in `do_classify`. We do the same thing explicitly here in `scorefunc`. Indeed, what we do in `cv_score` above is to implement the cross-validation part of `GridSearchCV`.\n", + "\n", + "Since Naive Bayes classifiers are often used in asymmetric situations, it might help to actually maximize probability on the validation folds rather than just accuracy.\n", + "\n", + "Notice something else about using a custom score function. It allows us to do a lot of the choices with the Decision risk we care about (-profit for example) directly on the validation set, rather than comparing ROC curves on the test set as we did in HW3. You will often find people using `roc_auc`, precision, recall, or `F1-score` as risks or scores." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def log_likelihood(clf, x, y):\n", + " prob = clf.predict_log_proba(x)\n", + " rotten = y == 0\n", + " fresh = ~rotten\n", + " return prob[rotten, 0].sum() + prob[fresh, 1].sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We'll cross-validate over the regularization parameter $\\alpha$ and the `min_df` of the `CountVectorizer`.\n", + "\n", + ">min_df: When building the vocabulary ignore terms that have a document frequency strictly lower than the given threshold. This value is also called cut-off in the literature. If float, the parameter represents a proportion of documents, integer absolute counts. This parameter is ignored if vocabulary is not None." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets set up the train and test masks first:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "itrain, itest = train_test_split(xrange(critics.shape[0]), train_size=0.7)\n", + "mask=np.ones(critics.shape[0], dtype='int')\n", + "mask[itrain]=1\n", + "mask[itest]=0\n", + "mask = (mask==1)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "#the grid of parameters to search over\n", + "alphas = [0, .1, 1, 5, 10, 50]\n", + "min_dfs = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1]\n", + "\n", + "#Find the best value for alpha and min_df, and the best classifier\n", + "best_alpha = None\n", + "best_min_df = None\n", + "maxscore=-np.inf\n", + "for alpha in alphas:\n", + " for min_df in min_dfs: \n", + " vectorizer = CountVectorizer(min_df = min_df) \n", + " Xthis, ythis = make_xy(critics, vectorizer)\n", + " Xtrainthis=Xthis[mask]\n", + " ytrainthis=ythis[mask]\n", + " #your code here\n", + " clf = MultinomialNB(alpha=alpha)\n", + " cvscore = cv_score(clf, Xtrainthis, ytrainthis, log_likelihood)\n", + "\n", + " if cvscore > maxscore:\n", + " maxscore = cvscore\n", + " best_alpha, best_min_df = alpha, min_df" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "alpha: 5.000000\n", + "min_df: 0.001000\n" + ] + } + ], + "source": [ + "print \"alpha: %f\" % best_alpha\n", + "print \"min_df: %f\" % best_min_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Work with the best params" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy on training data: 0.79\n", + "Accuracy on test data: 0.73\n" + ] + } + ], + "source": [ + "vectorizer = CountVectorizer(min_df=best_min_df)\n", + "X, y = make_xy(critics, vectorizer)\n", + "xtrain=X[mask]\n", + "ytrain=y[mask]\n", + "xtest=X[~mask]\n", + "ytest=y[~mask]\n", + "\n", + "clf = MultinomialNB(alpha=best_alpha).fit(xtrain, ytrain)\n", + "\n", + "# Your code here. Print the accuracy on the test and training dataset\n", + "training_accuracy = clf.score(xtrain, ytrain)\n", + "test_accuracy = clf.score(xtest, ytest)\n", + "\n", + "print \"Accuracy on training data: %0.2f\" % (training_accuracy)\n", + "print \"Accuracy on test data: %0.2f\" % (test_accuracy)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We might be less accurate bit we are certainly not overfit." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1087 758]\n", + " [ 505 2319]]\n" + ] + } + ], + "source": [ + "from sklearn.metrics import confusion_matrix\n", + "print confusion_matrix(ytest, clf.predict(xtest))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Interpretation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What are the strongly predictive features?" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Good words\t P(fresh | word)\n", + " beautifully 0.91\n", + " rare 0.89\n", + " delight 0.89\n", + " touching 0.88\n", + " entertaining 0.88\n", + " brilliantly 0.86\n", + " surprising 0.86\n", + " remarkable 0.86\n", + " witty 0.86\n", + " masterpiece 0.86\n", + "Bad words\t P(fresh | word)\n", + " tiresome 0.22\n", + " pointless 0.22\n", + " fails 0.21\n", + " disappointment 0.21\n", + " disappointing 0.18\n", + " bland 0.18\n", + " uninspired 0.18\n", + " dull 0.17\n", + " lame 0.16\n", + " unfortunately 0.14\n" + ] + } + ], + "source": [ + "words = np.array(vectorizer.get_feature_names())\n", + "\n", + "x = np.eye(xtest.shape[1])\n", + "probs = clf.predict_log_proba(x)[:, 0]\n", + "ind = np.argsort(probs)\n", + "\n", + "good_words = words[ind[:10]]\n", + "bad_words = words[ind[-10:]]\n", + "\n", + "good_prob = probs[ind[:10]]\n", + "bad_prob = probs[ind[-10:]]\n", + "\n", + "print \"Good words\\t P(fresh | word)\"\n", + "for w, p in zip(good_words, good_prob):\n", + " print \"%20s\" % w, \"%0.2f\" % (1 - np.exp(p))\n", + " \n", + "print \"Bad words\\t P(fresh | word)\"\n", + "for w, p in zip(bad_words, bad_prob):\n", + " print \"%20s\" % w, \"%0.2f\" % (1 - np.exp(p))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can see mis-predictions as well." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mis-predicted Rotten quotes\n", + "---------------------------\n", + "It survives today only as an unusually pure example of a typical 50s art-film strategy: the attempt to make the most modern and most popular of art forms acceptable to the intelligentsia by forcing it into an arcane, antique mold.\n", + "\n", + "Benefits from a lively lead performance by the miscast Denzel Washington but doesn't come within light years of the book, one of the greatest American autobiographies.\n", + "\n", + "It's a sad day when an actor who's totally, beautifully in touch with his dark side finds himself stuck in a movie that's scared of its own shadow.\n", + "\n", + "Walken is one of the few undeniably charismatic male villains of recent years; he can generate a snakelike charm that makes his worst characters the most memorable, and here he operates on pure style.\n", + "\n", + "For all the pleasure there is in seeing effective, great-looking black women grappling with major life issues on screen, Waiting to Exhale is an uneven piece.\n", + "\n", + "Mis-predicted Fresh quotes\n", + "--------------------------\n", + "Some of the gags don't work, but fewer than in any previous Brooks film that I've seen, and when the jokes are meant to be bad, they are riotously poor. What more can one ask of Mel Brooks?\n", + "\n", + "There's a lot more to Nowhere in Africa -- too much, actually ... Yet even if the movie has at least one act too many, the question that runs through it -- of whether belonging to a place is a matter of time or of will -- remains consistent.\n", + "\n", + "The gangland plot is flimsy (bad guy Peter Greene wears too much eyeliner), and the jokes are erratic, but it's a far better showcase for Carrey's comic-from-Uranus talent than Ace Ventura.\n", + "\n", + "There's too much talent and too strong a story to mess it up. There was potential for more here, but this incarnation is nothing to be ashamed of, and some of the actors answer the bell.\n", + "\n", + "Though it's a good half hour too long, this overblown 1993 spin-off of the 60s TV show otherwise adds up to a pretty good suspense thriller.\n", + "\n" + ] + } + ], + "source": [ + "x, y = make_xy(critics, vectorizer)\n", + "\n", + "prob = clf.predict_proba(x)[:, 0]\n", + "predict = clf.predict(x)\n", + "\n", + "bad_rotten = np.argsort(prob[y == 0])[:5]\n", + "bad_fresh = np.argsort(prob[y == 1])[-5:]\n", + "\n", + "print \"Mis-predicted Rotten quotes\"\n", + "print '---------------------------'\n", + "for row in bad_rotten:\n", + " print critics[y == 0].quote.irow(row)\n", + " print\n", + "\n", + "print \"Mis-predicted Fresh quotes\"\n", + "print '--------------------------'\n", + "for row in bad_fresh:\n", + " print critics[y == 1].quote.irow(row)\n", + " print" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.02111976, 0.97888024]])" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "clf.predict_proba(vectorizer.transform(['This movie is not remarkable, touching, or superb in any way']))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Callibration" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Probabilistic models like the Naive Bayes classifier have the nice property that they compute probabilities of a particular classification -- the predict_proba and predict_log_proba methods of MultinomialNB compute these probabilities.\n", + "\n", + "You should always assess whether these probabilities are calibrated -- that is, whether a prediction made with a confidence of x% is correct approximately x% of the time.\n", + "\n", + "Let's make a plot to assess model calibration. Schematically, we want something like this:\n", + "\n", + "![callibration](callibration.png)\n", + "\n", + "In words, we want to:\n", + "\n", + "- Take a collection of examples, and compute the freshness probability for each using clf.predict_proba\n", + "- Gather examples into bins of similar freshness probability (the diagram shows 5 groups -- you should use something closer to 20)\n", + "- For each bin, count the number of examples in that bin, and compute the fraction of examples in the bin which are fresh\n", + "- In the upper plot, graph the expected P(Fresh) (x axis) and observed freshness fraction (Y axis). Estimate the uncertainty in observed freshness fraction F via the equation \n", + "\n", + "$$\\sigma = \\sqrt{\\frac{F(1-F)}{N}}$$\n", + "\n", + "- Overplot the line y=x. This is the trend we would expect if the model is perfectly calibrated\n", + "- In the lower plot, show the number of examples in each bin" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "\"\"\"\n", + "Function\n", + "--------\n", + "calibration_plot\n", + "\n", + "Builds a plot like the one above, from a classifier and review data\n", + "\n", + "Inputs\n", + "-------\n", + "clf : Classifier object\n", + " A MultinomialNB classifier\n", + "X : (Nexample, Nfeature) array\n", + " The bag-of-words data\n", + "Y : (Nexample) integer array\n", + " 1 if a review is Fresh\n", + "\"\"\" \n", + "#your code here\n", + "\n", + "def calibration_plot(clf, xtest, ytest):\n", + " prob = clf.predict_proba(xtest)[:, 1]\n", + " outcome = ytest\n", + " data = pd.DataFrame(dict(prob=prob, outcome=outcome))\n", + "\n", + " #group outcomes into bins of similar probability\n", + " bins = np.linspace(0, 1, 20)\n", + " cuts = pd.cut(prob, bins)\n", + " binwidth = bins[1] - bins[0]\n", + " \n", + " #freshness ratio and number of examples in each bin\n", + " cal = data.groupby(cuts).outcome.agg(['mean', 'count'])\n", + " cal['pmid'] = (bins[:-1] + bins[1:]) / 2\n", + " cal['sig'] = np.sqrt(cal.pmid * (1 - cal.pmid) / cal['count'])\n", + " \n", + " #the calibration plot\n", + " ax = plt.subplot2grid((3, 1), (0, 0), rowspan=2)\n", + " p = plt.errorbar(cal.pmid, cal['mean'], cal['sig'])\n", + " plt.plot(cal.pmid, cal.pmid, linestyle='--', lw=1, color='k')\n", + " plt.ylabel(\"Empirical P(Fresh)\")\n", + " \n", + " #the distribution of P(fresh)\n", + " ax = plt.subplot2grid((3, 1), (2, 0), sharex=ax)\n", + " \n", + " plt.bar(left=cal.pmid - binwidth / 2, height=cal['count'],\n", + " width=.95 * (bins[1] - bins[0]),\n", + " fc=p[0].get_color())\n", + " \n", + " plt.xlabel(\"Predicted P(Fresh)\")\n", + " plt.ylabel(\"Number\")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "//anaconda/lib/python2.7/site-packages/matplotlib/collections.py:590: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison\n", + " if self._edgecolors == str('face'):\n" + ] + }, + { + "data": { + "image/png": "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\nclXz8PBAQkICNmzYgPXr18PS0hJDhw7FokWLxAP46dOn4/z584iMjERpaSl69uyJlStXwsHBAUlJ\nSVi7di3at28Pf39/LFy4UHw3hlwux5YtW/Dxxx9j//79qKyshL+/PxwcHPDRRx816nfn5eWFjRs3\n4tSpU3B3d69zf//sM5/Wvn177N69G+vXr0dycjKKiorQvXt3hIaGigUWAHzyySeIiYlBSkoKdu7c\niY4dO2LSpEmYP39+vfehpqysLMjlcnh6euq0PhGRIciExj6tREREJEEjRoyAm5sbwsLCDB2lwQID\nA9GhQwds2LDB0FGIiOqNczyIiKhFCAoKwsGDB8W5Kc3VjRs3kJmZWevlkkREUsfCg4iIWoTRo0ej\nffv22LNnj6GjNEh8fDxeffVVODs7GzoKEZFWeKsVERG1GCdOnEBISAgOHTokzn9pTm7duoVRo0Zh\n37596Natm6HjEBFphYUHERERERHpHW+1IiIiIiIivWPhQUREREREesfCg4iIiIiI9I6FBxERERER\n6R0LDyIiIiIi0jsWHkREREREpHf/B3ACvkNcyposAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "calibration_plot(clf, xtest, ytest)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The model is still slightly over-confident when making low P(Fresh) predictions. However, the calibration plot shows the model is usually within 1 error bar of the expected performance where P(Fresh) >= 0.2. Finally, the model makes less-conclusive predictions on average -- the histogram in the calibration plot is more uniformly distributed, with fewer predictions clustered around P(Fresh) = 0 or 1.\n", + "\n", + "To think about/play with: What would happen if you tried this again using a function besides the log-likelihood -- for example, the classification accuracy?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##To improve:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are many things worth trying. Some examples:\n", + "\n", + "- You could try to build a NB model where the features are word pairs instead of words. This would be smart enough to realize that \"not good\" and \"so good\" mean very different things. This technique doesn't scale very well, since these features are much more sparse (and hence harder to detect repeatable patterns within).\n", + "- You could try a model besides NB, that would allow for interactions between words -- for example, a Random Forest classifier.\n", + "- You could consider adding supplemental features -- information about genre, director, cast, etc.\n", + "- You could build a visualization that prints word reviews, and visually encodes each word with size or color to indicate how that word contributes to P(Fresh). For example, really bad words could show up as big and red, good words as big and green, common words as small and grey, etc." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Better features\n", + "\n", + "We could use TF-IDF instead. What is this? It stands for \n", + "\n", + "`Term-Frequency X Inverse Document Frequency`.\n", + "\n", + "In the standard `CountVectorizer` model above, we used just the term frequency in a document of words in our vocabulary. In TF-IDF, we weigh this term frequency by the inverse of its popularity in all document. For example, if the word \"movie\" showed up in all the documents, it would not have much predictive value. By weighing its counts by 1 divides by its overall frequency, we down-weight it. We can then use this tfidf weighted features as inputs to any classifier." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "#http://scikit-learn.org/dev/modules/feature_extraction.html#text-feature-extraction\n", + "#http://scikit-learn.org/dev/modules/classes.html#text-feature-extraction-ref\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "tfidfvectorizer = TfidfVectorizer(min_df=1, stop_words='english')\n", + "Xtfidf=tfidfvectorizer.fit_transform(critics.quote)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0., 0., 0., ..., 0., 0., 0.]])" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Xtfidf[0].toarray()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(15561, 22126)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Xtfidf.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clustering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can do an unsupervized learning analysis of text as well. Algorithms like LDA are especially good for this purpose. we use the gensim library for this purpose. \n", + "\n", + "Install it with conda, not with pip.\n", + "\n", + "`$ conda install gensim`\n", + "\n", + "on the command line." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Couldn't import dot_parser, loading of dot files will not be possible.\n" + ] + } + ], + "source": [ + "import gensim" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "vectorizer = CountVectorizer(min_df=1, stop_words='english')\n", + "X=vectorizer.fit_transform(critics.quote)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "corpus=vectorizer.get_feature_names()\n", + "id2words = dict((v, k) for k, v in vectorizer.vocabulary_.iteritems())\n", + "corpus_gensim = gensim.matutils.Sparse2Corpus(X, documents_columns=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "lda = gensim.models.ldamodel.LdaModel(corpus_gensim, id2word=id2words, num_topics=5, update_every=1, chunksize=1000, passes=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[u'0.013*film + 0.008*movie + 0.005*funny + 0.005*director + 0.005*does + 0.005*screen + 0.004*great + 0.004*best + 0.004*films + 0.004*performances',\n", + " u'0.012*comedy + 0.010*film + 0.006*romantic + 0.006*movie + 0.005*little + 0.004*best + 0.004*story + 0.004*funny + 0.004*american + 0.003*characters',\n", + " u'0.020*movie + 0.015*film + 0.007*like + 0.006*movies + 0.005*does + 0.004*don + 0.004*good + 0.004*best + 0.004*make + 0.004*kind',\n", + " u'0.017*movie + 0.010*good + 0.010*film + 0.009*like + 0.007*time + 0.006*just + 0.005*fun + 0.005*doesn + 0.004*lot + 0.004*makes',\n", + " u'0.015*film + 0.012*movie + 0.007*director + 0.004*story + 0.004*war + 0.003*self + 0.003*original + 0.003*makes + 0.003*just + 0.003*effects']" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lda.print_topics()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can see how each document fits in with the topics. You will see this in the homework." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Generative Models redux.\n", + "\n", + "LDA is a generative model.\n", + "\n", + "When we talked about generative models earlier, we said that we'd need to model P(x|y), the features belonging to one class. And in general, we might want to model the input feature distribution P(x). How do we solve either of these problems? These fall under the rubric of density estimation." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "variables": { + "\\cal D": {}, + "\\cal E": {}, + "\\cal H": {}, + "\\cal L": {}, + "\\ell": {}, + "\\mathbf #1": {}, + "\\mathbf x": {} + } + }, + "source": [ + "### Density estimation and Unsupervized learning\n", + "\n", + "$$\n", + "\\renewcommand{\\like}{{\\cal L}}\n", + "\\renewcommand{\\loglike}{{\\ell}}\n", + "\\renewcommand{\\err}{{\\cal E}}\n", + "\\renewcommand{\\dat}{{\\cal D}}\n", + "\\renewcommand{\\hyp}{{\\cal H}}\n", + "\\renewcommand{\\Ex}[2]{E_{#1}[#2]}\n", + "\\renewcommand{\\x}{{\\mathbf x}}\n", + "\\renewcommand{\\v}[1]{{\\mathbf #1}}\n", + "$$\n", + "\n", + "The basic idea in unsupervised learning is to find a compact representation of the data $\\{\\v{x}_1, \\v{x}_2, ..., \\v{x}_n\\}$, whether these $\\v{x}$ come from a class conditional probability distribution like those for males or females, or from all the samples. In other words, we are trying to *estimate a feature distribution* in one case or the other. This is, of course the fundamental problem of statistics, the estimation of probability distributions from data. \n", + "\n", + "We saw an example of this where we used the maximum likelihood method in logistic regression. There we were trying to estimate $P(y|\\v{x}, \\v{w})$, a 1-D distribution in y, by finding the most appropriate parameters $\\v{w}$. Here we are trying to find some parametrization $\\theta_y$ for $P(x|y, \\theta_y)$ or $\\v{\\theta}$ in general for $P(x)$. \n", + "\n", + "But the basic method we will use remains the same: find the maximum likelihood, or, choose some probability distributions with parameters $\\v{\\theta}$, find the probability of each point of data if the data had come from this distribution, multiply these probabilities, and maximize the whole thing with respect to the parameters. (Equivalently we minimize the risk defined as the negative of the log-likelihood). \n", + "\n", + "Consider our heights and weights problem again. Suppose I did not tell you the labels: ie which samples were males and which samples were females. The data would then look like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GenderHeightWeight
0Male73.847017241.893563
1Male68.781904162.310473
2Male74.110105212.740856
3Male71.730978220.042470
4Male69.881796206.349801
\n", + "
" + ], + "text/plain": [ + " Gender Height Weight\n", + "0 Male 73.847017 241.893563\n", + "1 Male 68.781904 162.310473\n", + "2 Male 74.110105 212.740856\n", + "3 Male 71.730978 220.042470\n", + "4 Male 69.881796 206.349801" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df=pd.read_csv(\"https://dl.dropboxusercontent.com/u/75194/stats/data/01_heights_weights_genders.csv\")\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nZna95/uvN8wh8/A0Cs3KGjSw6bw0j1ZfbTy91by66bhdzt/Pc9ZfXjOH0wxKfTIBeMWKFSv+K2Nt\nAFas+AXxTTl+/Hu8TuMNnMXJJrxwSLne9gIXncAlL8Bbw/2NTO3P5yz2lkqxad2V0nEaIlTYdjLd\nDSkTY1koHZlxTpJ6Wwo/eXcWF56Fx//Tt/D2+czbw8x5jHTe0reL+8thEteZxrDpHOdzxG8MY4jk\nVBhD5PPHM9s58XjSfOe2p/WOBng+BmoUC8jWatJis1kLDFEKaaXErWZOBaXUYrkJVcEwJjaNkY3A\nYmc6xsTdbUPXGtrJMFvNEGamIL+jVpK2q5VYr05TZLdpxMVIK3ExGgMKTdWJlDJKg0LTetDW4LRm\nMIk5FIqF5+OEMwrnLc/HmcZplDLkUmgNBFXljFRFv2lojCLEiu01373dsNs4TmPk7fPENEWMVczR\nchoU97cdN0s+xHmKDFNkGBMVMFpoP8OUqUqx3UoR3zcWZ/RyNgqTEuHvq9ue3lvRh2hF34j49vN3\nZ7w3xFioVO52Qge62HBut16cqPz7NOCLZedDypzHhDOK+33LpveLeFisZ7+K0//xNTPHLNkV9sNU\n4bUBWLFixX91rA3AihW/pHiZ6vvzCBk/RRdqnGG/bXj3NJIWO8VG2Wty6hVKJv4XasXjOeCtiEep\nYr8oFB9FqIpX246QCo+HkfOcmKNl2zkR/QLOaYa58HiamUIi58JxCJRcmKzmhobnU+DheRKv/ZLJ\nKTMGw+tbRc5FCtxzYdtaSq5SqM6JnMXXP6bK4RxIKXE6Bf6PH97grcHYysOzvH+rDcO8UIB0pfGG\nmCveGDpvePCKkqv8XlHyBQyKrm1RSmGMuNz0SwDZ0zFQcxExcQU0pMuGYoYQhTqTS6EU8M6iDTTZ\nMEwRawwWg1biy983mooihcwphWtqsveacU4MpbLbSnjZeU50HnIuTFXzvfsNpULXWsYpU6qi9SJO\nvr/tOIwzj8eZp4WCZbSSdGZvSFHsWN8+jmI3ilCsWm+IOWOshpwxVFpv2fb+er/Giji6bSS5t/OW\nYZJGMOTCMEnmxDhFximBquw3DbVIoNuu9zTe8sPXW+abL5/ZAxJWtmmdnFGloFa2vVvyJuQzvkzy\nX577EPPV7nPFihUrVnw11gZgxYpfEN+EsPDjVN8Ll7/x9oMk35f3/yq6UOPE1vLqg/4JrnIImWEW\n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\n47AsIiIior1n3QAgCAIcPnz4pMevu+46fPGLX8TPf/7zVYuDr7vuOjzyyCNI0xRxHG/phJ544okt\nvZ6W2byEyf2OvJYCSu7+nLcz8TNXStMUAK8d2jpeO7QdvG5ou3jt0HbV185OWXe1dvToUXzpS1/C\n8ePHpx7PsgwAsLCwgH/+53+GMeak51ut1pYX/7R9kwtxADC5g83LXf+5SgZot0K0W+EZWfwTERER\n0dasewcgyzLceeedSNMUt9xyS/P4t771LVx66aXI8xwf+chHcP755+MNb3gDAMA5h29/+9t4zWte\ns60TeulLX7qt9826paE5KR9fCIFeW5+hMzp96p0UXju0Vbx2aDt43dB28dqh7XriiScwGo127Hjr\nBgAvfOEL8eY3vxl33303giDAZZddhm9+85t46KGH8OlPfxrXXHMNrr76atx5551YXFzEwYMH8S//\n8i/4n//5H3zhC1/YsZMkIiIiIqKdseEgsI9+9KO455578LnPfQ7PPfccXvKSl+CTn/wkrr/+egDA\nkSNH8PGPfxyf+MQnsLCwgJe//OX47Gc/i5e97GW7fvJ7WVb30Ad2ZIAWC3KJiIiIaDM2DABarRZu\nvfVW3Hrrras+Pz8/j4985CM7fmLnsswWU4v1+t9PJQio37uTQQURERERnXs2DABo5602LCszxanf\nBVBc9BMRERHR+ti2hYiIiIhohjAAOANWy81nvj4RERERnQ5MAToDmK9PRERERGcKA4At2MnOPczX\nJyIiIqIzgQHAJu1G5x4iIiIiotONNQCbtFbnHiIiIiKivYQBABERERHRDGEAsEns3ENERERE5wLW\nAGwSO/cQERER0bmAAcAWsHMPEREREe11TAEiIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiI\naIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMA\nIiIiIqIZwgCAiIiIiGiGMAAgIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIi\nmiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCA\niIiIiGiGMAAgIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiI\nZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCAiIiIiGiGMAAg\nIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKi\nGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCAiIiIiGiGMAAgIiIiIpohDACI\niIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIho\nhjAAICIiIiKaIQwAiIiIiIhmiNzoBSdOnMC111570uNvetObcPfdd8M5h3vvvRdf+tKXsLCwgEOH\nDuGOO+7AZZddtisnTERERERE27dhAPCjH/0IAPDAAw+g3W43j8/PzwMA7rnnHtx333247bbbcNFF\nF+HIkSO45ZZb8OCDD6LT6ezSaRMRERER0XZsGAA8+eSTOHjw4Kp3AQaDAe6//368973vxc033wwA\neM1rXoPrr78eX/nKV3DLLbfs+AkTEREREdH2bVgD8OSTT+KKK65Y9bnHH38caZri9a9/ffNYr9fD\n4cOH8cgjj+zcWRIRERER0Y7YVACQpine8Y534KqrrsLrXvc63H///QCAp59+GgDwohe9aOo9F198\nMX7yk5/s/NkSEREREdEpWTcFqCgKPPXUU2i327jtttvwghe8AA8//DDuuusujMdjSCmhtYaU04dp\nt9sYDoe7euJERERERLR16wYAQgjcd999uPDCC3HxxRcDAA4fPozRaITPfOYzePe73w0hxJrvJSIi\nIiKis8u6AUAQBDh8+PBJj1933XX44he/iDiOYYxBURQIw7B5fjgcotfrbeuEnnjiiW29j2ZXmqYA\neO3Q1vHaoe3gdUPbxWuHtqu+dnbKugHA0aNH8fDDD+ONb3wj9u/f3zyeZRkAX/DrnMMzzzyDSy65\npHn+mWeewaWXXrqtExqNRtt6HxGvHdouXju0HbxuaLt47dCZtm4AkGUZ7rzzTqRpOtXS81vf+hYu\nvfRS3HDDDbjzzjvx0EMP4V3vehcAYHFxEY899hje9773bflkXv3qV2/5PUREREREtHnrBgAvfOEL\n8eY3vxl33303giDAZZddhm9+85t46KGH8OlPfxpJkuDmm29unr/kkktw7733otfr4aabbjpdn4GI\niIiIiDZJOOfcei8Yj8e45557shTIIwAACTdJREFU8OCDD+K5557DS17yEvzZn/0Z3vCGNwDwnYL+\n4R/+AV/96lcxHA5x6NAh3HHHHdtOASIiIiIiot2zYQBARERERETnjg0HgRERERER0bmDAQARERER\n0QxhAEBERERENEMYABARERERzRAGAEREREREM4QBABERERHRDDntAcCJEydw5ZVXnvTP+9//fgCA\ncw5HjhzB//t//w+vetWr8M53vhNPPfXU6T5NOot85zvfwaFDh056fKPrxBiDj370o7juuutw6NAh\nvO9978PRo0dP12nTGbbadfPDH/5w1b8/H/vYx5rX8LqZXWVZ4oEHHsBv//Zv4+qrr8Zb3vIWfP7z\nn596Df/u0Go2unb4t4dWY4zB3//93+P666/H1VdfjT/6oz/Cf//3f0+9Ztf+5rjT7NFHH3VXXHGF\ne/TRR93jjz/e/PPTn/7UOefcJz/5SXfVVVe5f/qnf3Lf+c533E033eRe+9rXun6/f7pPlc4CP/jB\nD9zVV1/trr766qnHN3Od3H777e6aa65xX/3qV903v/lNd8MNN7jf/d3fdUVRnO6PQafZWtfNl7/8\nZfeqV71q6m/P448/7p599tnmNbxuZtcnPvEJ98pXvtLde++97nvf+5775Cc/6V72spe5++67zznH\nvzu0to2uHf7todV86EMfcocOHXJf+MIX3KOPPur+9E//1L361a92//u//+uc292/Oac9AHjggQfc\nb/7mb676XL/fd6961aua/8I459zi4qI7dOiQe+CBB07TGdLZIMsy94//+I/uFa94hbvmmmumFnKb\nuU5++tOfupe+9KXuwQcfbF7z9NNPuyuvvNJ9+9vfPm2fg06v9a4b55z727/9W/f7v//7a76f183s\nyvPcHTp0yN19991Tj3/4wx921157rRsMBvy7Q6va6Npxjn976GRLS0vu5S9/+dT6djweu1/7tV9z\nR44c2fW1zmlPAXryySdxxRVXrPrc448/jjRN8frXv755rNfr4fDhw3jkkUdO1ynSWeA//uM/cN99\n9+GDH/wgbr75ZriJgdWbuU6+//3vAwCuv/765jWXXHIJXvKSl/BaOoetd90A/u/P5Zdfvub7ed3M\nruFwiLe97W244YYbph5/8YtfjOPHj+P73/8+/+7Qqja6dtI05d8eOkmSJPjKV76C3/u932seC8MQ\n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\nAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(df.Weight, df.Height, '.', alpha=0.08);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The data looks vaguely elliptical and has two \"clusters\". Besides we know that heights and weights have normal distributions associated with them. So we decide to fit these features, with no knowledge of labels, with a mixture of two 2-D normal distributions. \n", + "\n", + "$$P(x) = \\lambda G_0(\\v{x},\\theta_0) + (1 - \\lambda) G_1(\\v{x},\\theta_1) $$\n", + "\n", + "What we are doing is a probability distribution estimation on these height and weight features, by fitting for the parameters of whats known as a \"mixture of gaussians\". Note these are not the per label gaussians we fit before in LDA: rather, there are no labels any more, so this is just a mixture of gaussians. This is just a density estimation.\n", + "\n", + "At this point, you may object, saying that we know from generative classifiers that we can find $P(x)$ as:\n", + "\n", + "$$P(x) = \\sum_y P(x|y, \\theta_y) P(y).$$\n", + "\n", + "You are right, if you knew the labels. But remember, I have taken these labels away from you, and thus there are no $y$'s, and this formula does not hold any more.\n", + "\n", + "But your objection also makes sense: why not right the input density $P(x)$ as a sum of components, each of which is some other probability distribution. This is the notion of **clustering**: an attempt to find hidden structure in the data. So we can always write:\n", + "\n", + "$$P(x) = \\sum_z \\lambda_z P(x|z, \\theta_z),$$\n", + "\n", + "where $z$ is some **hidden** variable which indexes the number of clusters in our problem. This is a variant of the idea behind the famous **kmeans** clustering algorithm, which we shall encounter in class.\n", + "\n", + "So thats what we do below here, using two clusters based on our visual reconnoiter of the density in the graph above:" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GMM(covariance_type='tied', init_params='wmc', min_covar=0.001,\n", + " n_components=2, n_init=1, n_iter=100, params='wmc', random_state=None,\n", + " thresh=None, tol=0.001)\n", + "[[ 63.75414799 136.64386191]\n", + " [ 69.05054815 186.89700669]] [[ 7.79123887 47.70252408]\n", + " [ 47.70252408 399.61407127]]\n" + ] + } + ], + "source": [ + "Xall=df[['Height', 'Weight']].values\n", + "from sklearn.mixture import GMM\n", + "n_clusters=2\n", + "clfgmm = GMM(n_components=n_clusters, covariance_type=\"tied\")\n", + "clfgmm.fit(Xall)\n", + "print clfgmm\n", + "gmm_means=clfgmm.means_\n", + "gmm_covar=clfgmm.covars_\n", + "print gmm_means, gmm_covar" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we use these gaussians to assign clusters? Just like we did in the generative case with LDA, we can ask, which Gaussian is higher at a particular sample. We'll cluster that sample under an artificial label created by that cluster. \n", + "\n", + "We plot the results below." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from scipy import linalg\n", + "\n", + "def plot_ellipse(splot, mean, cov, color):\n", + " v, w = linalg.eigh(cov)\n", + " u = w[0] / linalg.norm(w[0])\n", + " angle = np.arctan(u[1] / u[0])\n", + " angle = 180 * angle / np.pi # convert to degrees\n", + " # filled Gaussian at 2 standard deviation\n", + " ell = mpl.patches.Ellipse(mean, 2 * v[0] ** 0.5, 2 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell.set_clip_box(splot.bbox)\n", + " ell1 = mpl.patches.Ellipse(mean, 1 * v[0] ** 0.5, 1 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell1.set_clip_box(splot.bbox)\n", + " ell3 = mpl.patches.Ellipse(mean, 3 * v[0] ** 0.5, 3 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell3.set_clip_box(splot.bbox)\n", + " #ell.set_alpha(0.2)\n", + " splot.add_artist(ell)\n", + " splot.add_artist(ell1)\n", + " splot.add_artist(ell3)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAwUAAAIbCAYAAAC6zjImAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XmUXNV1Nvzn1jz3pNkSYhBCAswgoRgwdsxoCWwChthx\njI2SyCafec33xa/zLpNA8CI2CiyQl1kmYBODeZ3YBmymALYhAoMY5BlighBISGhArVbPNd+quvf7\n49Tuc+p29UhP6np+a/XqVvWte29VNay9z9lnH8t1XRdERERERNSwfNN9A0RERERENL2YFBARERER\nNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1uBGTAtu28c1vfhNnn302Tj31VFx5\n5ZV4/fXXa46588478ZGPfASnnHIK/vqv/xpvv/32oHPcdNNNOOuss7Bq1Spcc8016OjomNhXQkRE\nRERE4zJiUrBx40b8+7//O6666ir867/+K6LRKD73uc/h3XffBQB8+9vfxl133YUNGzZg06ZNSKfT\nWL9+PTKZzMA5brjhBjz66KP4yle+go0bN2L79u34whe+AMdxJu+VERERERHRqFjDbV6WTqdxxhln\n4Ctf+QrWr18PACgWi/jABz6Av/3bv8UVV1yBD33oQ7j66quxYcMGAEB/fz/OPvtsfOlLX8L69eux\nZ88erF27FrfddhvWrVsHAHjnnXewdu1a3H777Tj//PMn/1USEREREdGQhp0piMVi+MlPfoJPfOIT\nA4/5/X5YlgXbtvHqq68in8/jnHPOGfh9KpXCmjVrsGXLFgDA1q1bAQBnn332wDFLly7FsmXLBo4h\nIiIiIqLpM2xS4Pf7sWLFCqRSKbiui7179+If/uEfYFkWLr74YuzevRsAcMQRR9Q8b/Hixdi1axcA\nYNeuXZg7dy4ikUjNMUuWLBk4hoiIiIiIps+ouw/dcccdOP/88/HYY4/h85//PI488khkMhmEQiEE\nAoGaY+PxOLLZLAAgm80iFosNOl8sFhs4hoiIiIiIpk9g5EOU888/H6effjq2bt2KO+64A7ZtIxKJ\nwLKsusf7fCrfcF13xGOIiIiIiGj6jDopOO644wAAp512GrLZLL73ve/hK1/5CmzbRqVSgd/vHzg2\nm80imUwCABKJRN0ZAfMYIiIiIiKaPsMmBZ2dnXjuueewdu1axOPxgcdXrFgB27YH1hrs27cPS5cu\nHfj9vn37cNRRRwEAjjzySHR2dsK2bYRCoZpj1qxZM+Yb/t3vfjfm5xARERERNYLVq1eP63nDJgV9\nfX34x3/8R1iWVdOB6MUXX8ScOXNw3nnnIRwO4+mnnx5oSdrX14df//rXuOaaawAAZ5xxBiqVCjZv\n3jzQknT37t3YsWPHwDFjNd4XSzPXtm3bAAArV66c5juhicbPdvbiZzt78bOdvfjZzl7btm1DLpcb\n9/OHTQqOOeYYXHDBBbj55ptRKpWwePFiPPXUU3jsscewceNGJBIJXHHFFfjWt74Fn8+HpUuX4q67\n7kIqlcLll18OQHUmWrt2La6//npkMhkkk0ls2rQJK1aswHnnnTfuGyciIiIiookx4pqCW265Bd/+\n9rfxne98B4cOHcKxxx6L22+/HRdccAEA4Mtf/jJ8Ph/uueceZLNZrFq1CrfccgsSicTAOTZu3IiN\nGzfi1ltvheM4OPPMM3HdddcNuQCZiIiIiIimzrA7Gs9Ev/vd71g+NAtxOnP24mc7e/Gznb342c5e\n/GxnLykfGm+czJ6gREREREQNjkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQER\nERERUYNjUkBERERE1OCYFBARERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1\nOCYFREREREQNjkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBE\nRERE1OCYFBARERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQN\njkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBERERE1OCYFBAR\nERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQNjkkBEREREVGD\nY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBERERE1OCYFBARERERNTgmBURE\nREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQNjkkBEREREVGDY1JARERERNTg\nAtN9A0REREREs5ptqy8ACIXU1wzDpICIiIiIaLLYNlAs6n/LzzMsMWD5EBERERHRZJEZgpEem2ZM\nCoiIiIiIGhyTAiIiIiKiyVKvTGiGlQ4BXFNARERERDR5JAHgQmMiIiIiogY2QxMBE8uHiIiIiIga\nHJMCIiIiIqIGx6SAiIiIiKjBMSkgIiIiImpwTAqIiIiIiBockwIiIiIiogbHpICIiIiIqMExKSAi\nIiIianBMCoiIiIiIGhyTAiIiIiKiBsekgIiIiIiowTEpICIiIiJqcEwKiIiIiIgaHJMCIiIiIqIG\nx6SAiIiIiKjBMSkgIiIiImpwTAqIiIiIiBockwIiIiIiogbHpICIiIiIqMExKSAiIiIianCB6b4B\nIiIiImpgtq2+ACAUUl805ZgUEBEREdH0sG2gWNT/lp+nMzFo0CSF5UNEREREND0k+B7psakiSYrr\nqq9icXrvZwoxKSAiIiIiAmZekjKFWD5ERERERNMjFKotH5LHgJlfxjPT72+MmBQQERER0fQwEwD5\ndyg0fWsNhktSTDNxLcR7xKSAiIiIiKZPvVH2ocp4piIpMK8/1AzAdN3fJBpxTYHjOLj33nuxbt06\nnHrqqbjooovwH//xHwO/f+2117BixYpBX7fccsvAMbZt46abbsJZZ52FVatW4ZprrkFHR8fkvCIi\nIiIiamy2DWQy6musawJCISCRUF+HcZA/ViPOFNxxxx24++67cfXVV+Pkk0/Gb3/7W9x0003I5/PY\nsGED3njjDUSjUdx33301z5s3b97AzzfccAOeeeYZXHvttYhGo9i0aRO+8IUv4KGHHoLPx7XORERE\nRGQYbRlPPVNR2vNe7m+GGjYpqFQq+P73v48NGzbgqquuAgCcfvrp6O7uxj333IMNGzZg+/btOO64\n43DSSSfVPceePXvw6KOP4rbbbsO6desAACtWrMDatWuxefNmnH/++RP8koiIiIjosFavjAdQI//y\n76GC8Kko7RltmdFhZNhh+mw2i0svvRQXXHBBzeNHHnkkuru7kc/nsX37dixfvnzIc2zduhUAcPbZ\nZw88tnTpUixbtgxbtmx5L/dORERERLOVWcYDzLz9A2ZZmdGwMwWpVArXXXfdoMefffZZLFy4ENFo\nFG+++SbC4TAuueQS7NixA4sWLcIXv/hFXHLJJQCAXbt2Ye7cuYhEIjXnWLJkCXbt2jWBL4WIiIiI\nRu1waqk5ltH/WVjaMxXG3H3owQcfxMsvv4zrr78eHR0d6O3txZ49e/DlL38ZqVQKjz/+OL761a8C\nAC655BJks1nEYrFB54nFYmhvb3/vr4CIiIiokY0nuJ+FLTUHzMLSnqkwpqTgsccew9e+9jWsXbsW\nn/nMZ1AsFnHvvfdi+fLlaGtrAwCcccYZ6OjowB133IFLLrkEruvCsqy65+MiYyIiIqL3YLzB/Xjr\n7qdrdmGso/9MBMZs1EnBvffei1tuuQXnnnsubr31VgBAOBzGGWecMejYs846C1u2bEEul0MikUA2\nmx10TDabRTKZHNdNb9u2bVzPo5krn88D4Gc7G/Gznb342c5e/GwPH1Y2CwuoGYB1XBduPF57oG3D\nKpVQLBSAUAhvvvmmqs2vcl0XLjD4eZ5z+EolWJYFt/pcJxgcCL4tyxo0EOy67sCxQx0zcN+OM/x5\nikVYuRx85TIQCsGNxQau7b3GcPcwmnsZ7nkzlfx3O16jGqrftGkTbr75ZlxyySW4/fbbEQioXGLX\nrl344Q9/CNuTbRaLRUSjUcRiMRx55JHo7OwcdMy+fftw1FFHvaebJyIiImpkIwW2AHQwD8BnWfCV\nSjBDXQl83WBw+GtVEwK5rjw21H14g2qfzzdsQiDnqHceuYYvFAJiMSAQgFWdtTB/bz7XdV04jjMo\nsLcsa9h7Gep5s92IMwX33Xcfvvvd7+LKK6/EtddeW/O79vZ23HjjjZg3bx7OO+88AOqNfOqpp7B6\n9WoAqpyoUqlg8+bNAy1Jd+/ejR07duCaa64Z102vXLlyXM+jmUtGo/jZzj78bGcvfrazFz/bw4i3\nfAgAwuHa0plMZmBW4M033wQA1TkyFBpbKZBxngGWpbsDTbbpvv4Mt23bNuRyuXE/f9ikoKOjA7fe\neiuWL1+OCy+8EK+88krN71evXo1TTz0VN9xwA/r6+jBnzhw88MADeOutt/CjH/0IAHDEEUdg7dq1\nuP7665HJZJBMJrFp0yasWLFiIJEgIiIionF4L4tqx1p3P96uPodTl6MGNmxS8MILL6BUKuGtt97C\npz71qZrfWZaFl19+GXfeeSc2bdqE22+/Hb29vTjhhBNwzz334Pjjjx84duPGjdi4cSNuvfVWOI6D\nM888E9ddd93I011ERERENLyRAm1PMO+67vgC8/EkIBPZ5YitRifVsEnBJz7xCXziE58Y8SQ33njj\nsL+PRqO48cYbRzyOiIiIiCaYEcw7rqvWDow3mB7rSP9QXY7M76M9J1uNTqox71NARERERIeZagA9\nbHehqWLbtWsDxjJ7MBMTgVlSHsWNAoiIiIhocow2QK43o3A4kPIo11VfxeJh+1o4U0BEREREk6Ne\nyY9lDe4idLga7yZwMxCTAiIiIiKaPPVKarhgeMZh+RARERERTZ1QSO2lYFnqy7uvwuGk3n0fpq+F\nMwVERERENLXMsiKztOhwM4s6IjEpICIiIqKpNZH7F0y3wzgRMDEpICIiIqKpNVULdGdJu9CpwKSA\niIiIaDowYB1sIt+T2TQbMQWYFBARERFNtcMtYJ3oBCYUGtyBCJjY92QWtQudCkwKiIiIiKbaSAHr\ncEH4ewjQLcuCZVljv9exBOujub96C3S974ltA9kskEhwJmUKMCkgIiIimkmGC8Lf4wzDsAnBUMH8\nWEbcx3J/9ZId73lkozPvezCapKjebAQTiyExKSAiIiKaasMFrMMF4aMN0Mc6mzBR5UzjuT/zMdet\nfZ31koaxJB3m8zjbMCwmBURERERTbTID1vEE+CMF85lM7X1O1AJg+Vk2MLNtoFRSMwT1rjPWdQJM\nBEaNOxoTERERTYdQSNXLS828+biwbRWQy8j6aHbQHSpwHg9z9F7+LQF7PWO9P/nZmxy1tg5+HoP7\nScWZAiIiIqKZxBydl0QgGNQj6uHwxM8wDFXONNbrTNQMyHDn4TqBScGkgIiIiGg6DFf3L/8OBgc/\nxzuz4DVUu89MBlY2C9d7TnmOnN+8/mhmGOq9jtHen/xcb6ak3nm4TmDSMCkgIiIimmqTuU9BvQXL\nrjvw3RqqFGmoIHy4kfnxvA7z/mTmY7h7qPd8JgITjkkBERER0WTzjqaPZsHse2mpaQbOskh4uGsN\ndx453nte8/GxnpuB/YzDpICIiIhoMtUbTS+VBpcGeU1EqYwsVDYXC4/VaK8ric9QnYNGY6J3TqZR\nY1JARERENJlG2/lnNBt8jfW6xaJepGwmIxMVbMtshm0D6bQ6fyikfk4mx3adySypohExKSAiIiKa\nat6FvJMxKu7dAMy2YZXLcOLxiRvFl/P09OiEQ5IQy1KtRcd6fvMaw7U/pQnFpICIiIhoMg21NmCi\nEoHRlNxUH3djsfEnBEON4stXIDD4Oe/1GpY19nulceHmZURERESTKRRSHXYsS33J7r0TQQJp11Vf\nUsoj1/Wo2450tNcZ7rHRbFpGMxpnCoiIiIgm22Qtmh2u+89U9vRPJFRSYl4rkai9p9HMZnjPwcRi\nyjApICIiIpqt6rQQtUol1ZFoLEH3SO1RQyG1sLheQD+WBcRj2QSNJhSTAiIiIqLxGE/7zIluuTlU\nsF7vOratNi4DdKmR/H4015H7H+reh3o9o9nLwLZ121S59/GWWbGt6bgwKSAiIiIaK+/odzpd259/\nqOB4PC03hwty6wXrcj/mY+Yovvfc7zVortc1aKzB+EQF8WxrOm5MCoiIiIjGygywJRC1LN2OExgc\niErgnMmo9p2uq0bDW1vfWyLhfW53d/0uPpMRbMvP3n0KEgm9T8F72Zl5PPdZ7zEmBSNiUkBEREQ0\nHhLkZ7OqHWc4XPu7ekmBjOCbX/G4ShCAwc/JZAa3/xwpyB0qMDYX/oqhEpE6pUeDjslm1c/BoLpP\nOcZMkiThMe9L/p3J1F5jqhIHqotJARERETW2sdagy2h/Oq0CYumYYyYFQymVar/L+eoF+2a7UUAH\nzSNdJxQCCoXBj4VCcEMhtdDYLHXyvrahZgS8x5RKesYjmwViscHHea4/5DXCYfX1XsuImFyMG5MC\nIiIiajzmSL0scAVGrkE3A/VgUAXFUjZkGmYDMdi2fs5II/7eINe2VVnOcK8JqN30y2wPWk0M6s4a\nyDlGug/zOoGA+rlU0sfJezHce+i952xWzSoMdV+jNZVtWGcZJgVEREQ0M41nBH80x5sj1eZIvBlQ\nmj+b56w3+i2j7kONwJsJiATNZsmNfNUL9r33YVn1NyczX5PMXshsxETsCmzeh2zCZiZC8bj6Lh2D\nJPEY7jOZrEXBTATGhUkBERERzQxmAAnoYB0Y/Qj+aI43A3FZD1BvIW69c5ZKeoTf/J10+BnuHGaw\n7vPVBtD1yDXMNp2hkCpbAtTzE4n6Nf+AupaMvHtnG6Se33u94cpvzK5CXV21yVQyWfseemdevD9n\nMvq995YWMaCfFkwKiIiIaPp5A/B6m2sNFzCOpeuMXEu+p9MqeDZKbIY8pzCPCYf1CL5cc6RzmGU2\n3vv1lgFJ8iJJRVeXejwcVv+uN8Mw1PthV/cqkHUQUs8vycBoavslCZDkRI7x7itQL/HIZHRSlc2q\nBGk8+xGMdRaJRsSkgIiIiKbfVLaStG2gp0d9l1IeWTQrI+9DMdcFhMM6IB/NLIXZlUd+NkfnpS7f\nfFxIh6KeHhVMl8vqMZnlSCRGtcDW8i5wlu9mEmO+B+asgnlP3hmK0Qbm8p6HQkBLy/gWBU9W2VGD\nY1JAREREM0+9kpiRgvXhAkyzZMg8ThIBCXLN5wx1Tu9x9UbEzRkDc4GunCObVV+5nOraI+sR4vHB\nex2YC31zOV3XL4t8u7vV7yVhCIXUeeqN8Ne7z1xOz0SYsw7vNfge6TORn4frhlTPVCaQQ11/Fs5S\nMCkgIiKi6VevRt9svTlS8DVc15mhFhbL4ljz+UICPxlZr5cMjPZ1yfnMmnvpXpTP65H/YFAdF4vp\nRbpyTbPUSJIHSRgqFWDPHpUUBINAczPgOHojMfM+SiVVPiTvkyQ0jlO7fmGodQrm70azqZo8R/4d\nDuvSLXk8mRzcdWimBt6zeJaCSQERERFNv+GC+rGcY6jRcO9x5XLtQtmhkgizveZIC4K9zLIbmYko\nFnVdveuqAN911Wh9NKqOl9F+SYokYLYsYP58vXNwLqcXPvf06MC+t1c93+dTbT7N1xQIwJX1BFLP\nL+S11ht1N7sfyWuTVq6SJGSzg2dc6r1v3oBf7qfe+w8MDrxHmoGYTNM9SzGJmBQQERHR2E3GSO5U\njAhLQGmOtMviWrn2WHcRrreoWALdeqPh2ay+ZjarrheL6fNYlkpaUqna+5LvMgsAqATAS9ZHRCL6\nMfPegkF1L+bi5eHeK2+Q3t+vkxH5vZngjGb0vN7MQL33sd7vJyKBpEGYFBAREdHYHG4lFObIshl4\ny2i5/GyWxQy1i/BQyZC3zae5LgBQHYPkGolE7SyFlBIBeo1DMqlG+b0LfQH1O3ORcF+ffi6gZgiy\nWaCtTd+vzE543xcziPe+JvmezerSp3oBu+xm7F3DMZl/D9OVCEznLMUkY1JAREREtWxbdamp1xa0\n+vt6zxkyOJru+nDvyLIE1YWCWqxbKKigXUbWHUd9ly45tq2fUy8Zsm01ei4/y+h9c7N+fqmkjpfA\nXMpwwmEVvMu5ZK+DcFi9/2bbT9njwJy9iMf165IZgmRSdfZxXfV8WZNg7rMA1JYlmQmLd12AmcR4\nP0cpKRpLW9HRLECeqYH3LJ6lYFJAREREmm3DJyPOoy0FGeF8Y95UTH4/kcGWnC+TUd16OjpUDb+5\ns3Aup5IESQZkFkE68rS365aaZktOGcmXnyVJCATUcWYgbr5WeX3S/ch87YAK6L0zFubuxHKOBQv0\ngmPXBebNG3y+6jmtfF6VJpn7A8i6g+HeO/NzM1umhkLq/alXLjXc+eT+Pfc3qt9Pt5l2PxOESQER\nERFp1UDMqhd8irGM5I52VmEqSpIyGT2i7zgq6Pb5dOAtZTC5nBrlb2nRZTPptC4rku/JZG1Z0aFD\nejZA2ozmcrrNqBnsSnIhr1V2Jzbv1UtmLOT30s5UEgB5r2VWIJfTz5VrBwJwo1G9CZq5K/JQzPuW\ntRBe2WxtsuBdPFzvnCNdcxYG3jMZkwIiIiKqUZMQ1DMZI7ljSR7Ge10z0A4EVJlPoaAW9Epdf6Aa\nGpmlOHJdaRkK6DaiiYQu88lmAb9ffU8mVUKRy6ljpERn3z6gs1Ndc/HiwZ17vO9HT4+eaZDfu27t\nfgbeJEOeLwuqJZEpleDKRm3eFq3mPgH13tN6n7k8X+5JEh/zWAb2hw0mBURERKQNFxB6HxtNwDeR\n9eETNZsgwWo8rpKCfF4FtU1N6ruMvks9vTcQzmZ1+Y3j6IC4VFIzEZGIOiYQUDMRmYz6d2+vfqxQ\nAPbuVbMRsi7AcXRJj7QulbImub4Z/Mv9eMucbFsnLOb9WxYQDMIyZxDMzkHeTdNGeu9HKouiwwqT\nAiIiItJCIbjmAtL3Ogsw2lmF0SQP77VHfCKh22kCKqA94gj1c3u7Sg5isdrFvvJemKPxklCYMyqW\nBSxcqGYBbBs4eFBdT9YsVCqqS5Ccu1RS6xr6+9XzZDGw+XqyWX2fUp6Uy+kZBnmPzETCfN+8I/+l\nkjqH+d7lcrWlTYBeYG6eY6j33kxQZuriYBoVJgVERERUU5bjui5cGS2fCKNJLMZakiT3O5bERV6P\nzAyEw+p7NqsWHQeMsEhmCcwOQIAagff5arsRSVvQVErPGCQSekGvdDjK51V5kdy/WbokAbZZr29Z\n6rkymu846ud0WicX3vfKXOjr3X8gkYBrWbDKZT1rIfsUyD3IOcz1DkOptzjYsiYmmaQpx6SAiIio\n0XlKQyzbVrveTjXvQlzzMfnZu5lWvRHy4Zg7C3d3qy8JuHt7dUArZTfSASgY1EG7bNKVyej+/8Gg\nSgzKZTXbkEqp2QdAl+YkEmrGoFxWX+GwOlaYaxhkNkJ2Lwb0AmbLqu0eVC858L6PANDdDX9nJ1xJ\nfqSMyNzIrd77KLMX3gRBkiwzEWEicNhiUkBERNTo6pSGWBKITsS5xzL6761bN+9NSmXMzbS8I+T1\nrjXUPciotvT/l3p/21YLfKV8x1xEK4G7lN7kcirANwN2+V0opJKNYFB1M3JdlYRkMuo88+apGQoJ\n8M1uRvKzbasZBhnVB/TrH4lZ+pNOqy/HgWXuohwO69kNSTIk4THf8+FmcpgIzApMCoiIiGgw2bwM\nGF8piPTsN9tUDreIVY6v17rTHLU3y2vM+7MsNeItz5NjJcgV5j20tqrrHTyog2wppenu1gtp5TXI\n+TMZFaQHAiqoN/c3KBTUMcGgOr5YrN3ToKVFBfVy76WSOi4eV/fjnRk54gj1O1l0LIlKIFC783K9\nz8d8X82ZIEn4zETAsvQOytK2Vd4vec9ZEjSrMSkgIiJqdJ7SEKtc1oG1/H4spSEy4i9BazqtR/ZL\npdrNsszZAe9maebovzyeTuvgWEbwpeWntw5e7qFeWY08JglHMKgW4QaDKsgvlVQJUD6vjpOSn7Y2\n9XvHUd+lC4+8vnJZBezlsm4HGomo6/T0qADdstTMgZxT1igAgxMxKdHp7VX3Aqj7ksXMLS2D39N6\n76usSxBm+1BzR2LZi2CoUiKatZgUEBERzVajLd2RYFAC0nwePr+/djddGUke7XW992C2vDQ77HjL\ng7y/93a+kVafUu6Ty6k6fRlNN89bLuuf6927HCsBeS6nFw3Lc0sl1ao0HlcBeCKhjwsEVHJgJgWS\nRJgbguVyKpmR0X6ZVZBkxlznYH5mkojJvgTRqG6H6rp64zXve1bvfa2WCLlmMtDaqpMOy6pdIzFR\ni8zpsMGkgIiIaDYx22e6rg4Uh1uMK8dWy2N8tq0Xo5rHjFUoNHhnXgny692H/C6X06PX5oZhJtlo\nTMp9pEsPMHg3XXk/6tXAS3Bs26rG3nX1BmSyyVg2q58jawLMDb/icb3TrywmzmbVzEOppBKM1lZ1\nXukgJLMEUrMv9ymfk8yGyPkloZIFzdFobTtQ75oKb7vQZFKdz+eDG4+rGQ+ZJZD3TL53d9fOUkjC\nwPKhWY1JARER0eGuXiJQr958qGDcE3S7weDghcZjCQbl+hJESsmM1LDXO1buw3VVaY1cT3YWtm1d\ne18sqgBeRs19PvVdglz5Wa6dz6uvefN0uZBZQiSkFMfnU+eX51Yqeo2FLCiW2RM5RzisAv9kEjhw\nQN2bbeukIJvVXX66utRzly5V15S9DCTZ8LZbdRzd3lQekwREFjab5wcGJ0bV57iyT4FsmGbuvyCz\nRXLf8rxEYnBpF806TAqIiIgOZ+bospkImL8fKYjztPh0YzE9Wl99rKacpF5ZkhlgmmQvAHPGwkwM\n5PFMRvfON0fOZXGu/Gx2wpF7lLae8nsJYiXAjUbVcYWCvhezREfKdwoFHQwDai1Aa6tKEmTUXcqg\nZKZAdg3v9DXLAAAgAElEQVSW4FwSIKNkZ2CNgixIjkZV4iOJRzarfieB/IED6rlz5qh/y07H8bju\nfmQG8cGguqYZtMv6DfMz9JZ1SWIDqPKmbFa3Vy2VdNLl7eQ0UUnBWDpT0aRjUkBERHQ4q1daM1Rf\n+Xpdf2RzLnOGAYDT3KwXnJrtL4dqGyoBrfzODN69JUASrJv3JCPw5sJk6f4jx8lMgAS42WxtQiT1\n92YAD+j9B+Q68+bpe0mnddIj5woE1LnLZVVKE4vpINsMXqUlqdT4A2oxsfT/l83MhLQulecfPKhf\no+Ooax48qLr/lMtqliKVAubOVQmKlCjJzIkE8d7P1Jwd8CZz9X6WGRW5F/md/NtcKO6d6Rmven9H\nci80LZgUEBERzRZmIiDBlXeHWW+pkVk6YpbgAHrjLBkZl/78XpmMLkcREpxK2Y/8LEmE46jjzDKX\nUEgvyM3n1bUlIDeDW3lt8bgK4A8d0teRZETKjmQE3nVVLX4mox6LxdTxUk4kz5FRd59PXaNUUiP7\nfr8K1M2ZGOnzLy0/pcRIZhwcR80IyAi/z6dH/G1brVmQ8wDqNff21l47m1W/X7y4djFyLKZH9eXe\n6/09DPdvecw7syCzIfJ3YC4U95YljddwySxNCyYFREREh7PhEgFvG9F6pUYSCEsyUA2+fb29OhCX\nYyW5kHN5R5TNNqFmb3s5vqdHB8+yeNYMPBMJFXjL6Hs0qgJrWfhar4xF7s11dV29lBHF42rkvZoY\nlAoFtO/ahb7t29FVKqErl8O+QgGdfX3oyWTgLxQAx0HCcRD1+9EUCGD+/PlYsGwZ3rdgARavWIFQ\npaKCdwnM5X3o61Mj/OGw7i5UqagEYe5cnRT19NQmFtJJybuBmpzHLF2S99ucHejt1UmX7Lbs3djN\n+FtxQyG1XsRb1iVlUIC+R1mALUmB2baUwfusw6SAiIjocGYGycDw+wmMoYPQoIXGUrKSSKjRfLP0\nQ0p+pAOQBOUy+yDJgLTjlEWrZl2+eW9SSiQBqCyyNXv5d3er5/f26lHy6ki23dODnb292PW736Hj\nN79B37Zt2Pfuuzi0fz/sSgUBy0LZspAB0Ofz4aDfj7Jloak6eyEhd9RxEASQtyy4AHLBIE497TRc\neNlluOCDH0QyEFDXl6TEtlUQHwqpsh+fT4/6y2ZokvDMmQMsWqTeh64ulWik06pMyHVVMuHzqXao\nLS21awPCYV3yZSYIsp5iONXEoCbgB/R7a9vqd5IwyJoFsxxsIoymvI2mFJMCIiKiw914Fml6OwRJ\nIF9tA+p6a9XN68hotDlTAKgRawle5TEJcKXVqJTK9PWpn7216nINGfmXxwDdnQfQrT2rI/6v/epX\n2PnKK3hz+3b8Zvdu7KpUMMdx0Oy6iLguHMvCokoFDoCcZcG1LAQBxFwXQddFCNWgyHVRsiwEAGQt\nCyGoJKEEtanbH7ZuxUu/+hVuC4fx0Ysuwt/99V8jJfcsayKEbGK2b19ti1B5L5qb9dqFYBCYP1+V\nFPX0qH8nk+orEKjdywDQn4GM8HtncLwLeIcrHfI+Zp7HO6NgHvNeeJNZLjSedkwKiIiIZiNvYCiP\neXf4laDcmGFwzZF6Ce7N8hIJ2iUANq8jx0gpUTarR9PzeRUMm7XwZnAr0mmVNMhMQqlU0xbzne3b\nsfW3v8Uf/vAH7PzDH9Czdy9Srgu7Oiofcl0stCxEXRfNjoMWx0EFgOO6aJ03D3Pmz0eqtRUtySSS\n8+YhvmQJUq2tCLgufJUKirEYCpUK8u3teHf3buzfvRv79u1D+4EDqK6EQKZYxI8fegj//atf4Rs3\n3IAVq1apEf1sVr1OGVnv7wf27lWBvbmBmryv3k3hbFuVHbW2qs8gkahfiiWzAt7yMO+Cb/NzGkvQ\n7S3VmozgnYnAjMKkgIiIaLbxdnZJp9V3CealRnyoUqNQCC6gSmDMYNAchT54UAebsqYgk6ktS5He\n+9LNR64rNfeAXgMgHYmkTaYkA5aFXKWCPzzxBF749a/x8ksvoXfPHhQsCyUANoAF1dkJF2pEH5aF\n4+bNw7GLFmHpggVYuGgRFi9YgPlHHIFUKqU27pLExLLUiL204QR0wC0lStX7OtjRgV88/TR+/vOf\n442dOwGfD7v37cOnv/hF3HrnnTj34ot1VyBzvwFAvw+ywFnWGZTL6phUSu+kLElZU9PgwNkc+feW\n35ifv/mzlAGFQrCyWT0LNNpgn8F7Q2BSQERENNt41w7UKyUxFw3XI3Xn0rJUOhFJKYlZ3iOdcKRb\nTjCoAl/pfQ+oEqJgUAW90skG0GsNWlsH1iq4rotdHR34zQsv4A8vv4zfvPYanGIR8UoFjmUhZFmo\nALAsC47rIhAO47hjjsExK1di5YknYsWyZWgLBFQQXizqa0qgPWeOeg3BoK7xN0txzFanwMAx89va\n8Lm/+Rt89qqr8NQjj+DrN9+MYjaLiG3j5n/8R6z54AeRWrRIJVtdXbrcSUb7Za8EKbNyXXUvHR16\nlD8SqV2bYX4e8lmaCZdlqfO1tupz1vt7kPIl14UlzzePneqWoNyjYMZhUkBERHQ4mI4gyrb1omLb\nVmVAgAqym5pq9xCQEp9sVu9ILCU0UjIUCKjAtalJB8bZLGBZyJRK+O3TT+Pll17C7196Cem9e9Hk\nuvC5LiI+H3LVZACuCzcaxemnnIITV6/GCSefjGOPPx6h3l51n8GgCrwzGRVgNzXV7s4LqLr9clkl\nCdGo+i7rAWTGQu5XgudodKDLj2VZ+OjHPoYVy5bh7774Rbzb24v2jg5suu02fO222/RrL5d1l6VS\nSZUVyT4JZmvPefNUW9VyWe+mbFmqjEgSCrOlqyRq8poKBaC9Xf+NhELq3gH9HsfjtZ+ttJH1ft5T\n9XfFPQpmHCYFREREM91YgyhvaclQi0zrXce2dYmJuZDYTEpkkbF3UbEEv5JESNtOc2ZByoJyOdih\nEF587jn8/Gc/w+YXXkAil0PQdREAEJcFwtXvxyxejJNOOQWnnXIKVq5ejXAspjcWk4C7v1+d/33v\nU8lAe7t6LBpVXxJ0y+6/6bQKvKVLUmur3qtBZkQsSz2vXNbJWLU8aOlRR+Gqv/s7fO1rX0PQdfHD\n++7DV2+4AZE5c1Qw39ysg3cpC5o3T/2up0d3Vpo/X11H9lAwW4/W23xMujkBemYmn1ev2XH0+28+\nX5KQmYB7FMxITAqIiIhmurEEUWZpCaCCQrPdJFB/psHYWMzKZmEBA3XoAPS6AdlQDNBlQlIilM3q\nEW1zp14JqAG4uRxe+81v8PRzz+E/n38e/dXdhsuWhaDrosV1EXBdOPE4Vpx4Ik5bsQInnXYa5ieT\nauQfUCPjstGX46hA3+9Xr9Vx9Cj/ggUqKejr04/LLsWSyJTL6jhz4zZJYGT/AdfVsx+ykLi6v8AF\n552H73znO9h94AAqlQre3r4dx8t9hsMqgM/n1b9lRkJmNGTmRNqzymZscm3bVvcqgb18Rtmser2A\nnn0ol/VnK2syzM3ZJFEQsnDbNEyiOOTfDc0aTAqIiIhmC7PcR8pHzM4zsuC0vV1vINbaqh9Pp2vr\nzyV4TSRUAC67DEtZTCqlAnWzo5DU6cu6gWqP+7dffRVPb96MXzz1FA7t348AgIrrImpZKLkuIo6D\nlUuWYNWpp+LUk07CytWrEQJUAiDtR7u71XmjUXW/XV2qFOiII9Tj6bR6LX6/LgtasEC9/t5enQxk\nMnqDMEC9hkhEBfASLEu5VH+/ep1SKuXpumSFQjhi2TLsaG8HXBdvbd+O4086Sd8voEuTSiV1Tkmq\nAD1zIq0/bVu3cDWv2dWlA3xZcyDvr3yWQzETO8tSs0ByrtEkimKiynxGu0cBE5IpxaSAiIhopjOD\nKO/mYN6WlPUWGZsdaDo79TH9/SrgTCb1SLLrwiqVVPchGXWW3YElIA0GddAdCqnyF2+Q19KCQ4cO\n4ckHH8TTjz6K9j/+ET0+H4JQC4RLrgu/ZWHOggVYe+65uODss3HM/PkqAZAymmJRL7ytVNT9Fgoq\n6Hdd9Vhfnx4tb2rSyQGg257KSHqppH5XKOiNv6JR9VgiMbAQF9msqvGX2YRcTl2nVFIJggTl5TLg\nOJgzbx4yAEqWhf2HDtWOzEsSIesSCgX1GQDAwoU6OC+X9YxBKqVnX2QhtLl+I5HQiZiQ3ZXldZvr\nEOTxZBKumTyMFGhPVpnPaPYo4LqDKcekgIiI6HAgI9zSzUZG8oHaIMvsnCPBlpQUHTyouwAJqfP3\nBFuWlNPI4y0ttXXpsp7AtvUodSaDbF8fNj/7LB7+xS/w0gsvoFKpAACSlgUfVNvQSCKBdR/5CM6/\n4AKcsno1fNL6s1xW9yfBu8x4zJmjEoFkUh0nm3tJMG3bKjGIxfTovzzf59NBdWurOp8kEvm8up7Z\nmjWT0fsq2LZepyDvmbkpWyCg2pJ2dqJU3QztyPe9rzY4N9dlAOo5ASP8kjIvmSlIp3X5j+PUJhW2\nrT77YrF23wj526hU1OtIpXSyUa8d7UwIrKcrIaEhMSkgIiKayWTEVEpFvHXgEiiZo9LejatktFyC\nQu8OtYAega62uRzUy16uI49LUhAKoZzL4aWnn8bPHnkETz37LA4VCoi5LiwAbnU/gXQ0irUf+hAu\nvvBCfPjEExGR7j/9/ao0plqjPzCiL7v4dnWplp3Fou4qVCqpUXdAzSRUKir4l4BbWqfKeyCj7dGo\n7k7kOCp49vvV73t71boB21Yj+Y6j9ykIBvWC5a4u9V3OHwxi386dCEHtkbBsyRJd2iOdl2RGRjoL\nSYIgr9fcj0B2QTY/21hMve4339TtVdva1AyNfCYtLepLPhtJBD3Bt1UqwR1tYD3aMh+aFZgUEBER\nzWSjHTGVx6QdZqlUWzcP6L0D+vr03gJtbbqOXkaepeOOjEy7ri65kUXEoRDe3r0bP3joITxx//3A\noUOwUN08rLqzcBDAmtWr8fGPfxznf+xjaJH2nD09Kgg/cEAFzYGACrb7+vSshSQomYwKqstlFfSG\nwypQrVRUUOz3605IrqsCeRlJb2tTr0cSgXRa/f7gQR1sl0q1C7HN91sSEAnw29qA3bvVY5EIMH8+\nOtNpHNq/H7AsVPx+LD32WJ3YSDmQlFzJ4mKZKZD1ALJPgvmZyqJpKRPr61NfssC4p0clJ8mkOg6o\nnRWSRdGBwNCb1I1kNGU+k4UJyZRjUkBERDQTmZtUSVA62kDJDN4k6JRzAioAlYQhmdSlJtVSFieV\nUuVDZrlJMgn09KDiutiydSv+45FH8IsXXkDAdeGzLMQsCxYAC8BpS5fiYxdeiLUf/jAWHX20uqas\nFWhpUcmJzH5ksyrA7erS9+zzqaRBAuV8Xicmzc0qIPf7VVAvnYAqFV0uJOsNJGGQMh4JzuNxXVYE\n6LUR8r40Nal7ldr96tqBgTaigLpuLoefPfHEwKzBh1atQljuOZtVyYyUPwHq38Ggeg2AXjcgCYMk\nQeGw/sylfWm5rJOJQkHvYRCJ6NcXCqljZQ8C+fxkp2lAzwCN1nQt8J3OhKRBMSkgIiKaacxFlt61\nAzJSn82qoFACpVBIdw8yR7il3l92JI7HVWAuo+NS0y5BV3WhsSX98qtBblc6jZ9+//v4jwcewL79\n+1GCWljb5jioAFgwZw4u/OhHsW7dOixvbYXV1KQX6Mp9SOArZP+DTEaXzAQCet1AU5Pu/CNdeQCd\nGKxYoa6xf7+aAfD7dRtQmQEIBtU5zHUBkYgK6stl9R5KuZK831JGlErpvQ0KBT3yXj3W6evDlscf\nR9hxEPf78enLLtOfVTqtg3J5/fG4bm0KqHPLTse5nG7pKkmDdCaSNQaALgmT2QgzyJf3Ut5DISVH\n5rqJOqVFM85Mv79ZhkkBERHNHjO5heFY7i2TqU0EpBzILK0BakfyQ6HanXslyPb5ahflVnflHZiB\nMOvvSyXAcWD19sLK5+EePIhX9+7Fv/3nf2Lzo48iWiyibFkIQXUQCrouPvzhD+OyT34SHzzzTPil\nQ5B5TtlNV2rf5XVISY9tq1HvSESNxvv9+vl+vzoumVRtVOW+pQe/vIey6dg776jHolEVGOfz6r2S\nNqbh8MDiYAQC6j3u69Ndi+TzkSBaWoe6rk4iwmF1D9Eo/vuNN3CgvR1lnw+tiQQu+MhH9L3LYmVp\nRSrlXObCY1kwLW1cgdogH9ALiru69CJseV9isdqSL0m4zL8Dy1JJYHU2yLJtuN61JzPpvxOaNkwK\niIhodpgJLQyHCvzNe5OOMOFw7Ui/eQ6pRQfUz3Ksd9GvzByY55ARaek2YzIDTu9iXEAFqY4DJ5fD\nyy+/jJu+/nW8sX07spaFVgButVSouakJH/2zP8Oll16KxcuW1d5zuawCcBl9l4W+ZjCcy6nHYzG9\ngZcE8sWi+nnxYvWztPaUcp90Wgfx0v6zp0etE5Djg0GdQIXDuvSmv189P5tVj7W16d2OzcW/nZ3q\nHqNRdYxs2Hbo0MB6BrdQwGP334+y66JiWfjoxRcj2tamkoFiUe9NIOshLEuXJckMgATmxaJOHGxb\nXVsCfvmcZS+Gzk6VJM2Zo5IhaT0qfyvNzXqmyLJquxRVPwNLZh3kMSYFBCYFREQ0W0x3C8PhkhK5\nN/MYCV7lGPM83rUDsi+BmSxI60oJCuUcUqcuzJaWMvIt7Uals071Gp379+OJhx7Cw489hmxfHwKu\niyRUEGkBOOn443HxRRfhT08/HZFwWN+TmfxIcC+lR1KeI9eURCGbVTMDEvjKKHhzsxrZls3EMhn1\nu2hU1/z39KjHZCdj2b9AynwkgahU9Ei9z6eTD9lhuaVFPyaJi3QqMjdp8/v17sCdnUC5jK2/+Q22\n7dyJoM+HFr8fV3zmM7Xvu7zXUuYjzJIf70Jj6cgk6x9Mra2DNygzEwIpB8pk9CZzPp9Kahj00ygw\nKSAiIpoIo0lKZJTfLAXydp0xjwH0aLf8LCPncoz0qPfeh5xbylJkFF/KjxIJVZKTyWD7//wPHnzg\nAfzy5z9HslhECIAPQMWyEAyHcf455+Bjl1yC45Yt07XyEtgXCnphbCCgkw3L0nsHmOVNtq1G3GUR\nriQrMprt8wHRKBzbhu33o5zNIlypIODzqXUOkmRJ69FCQV0rmVT3I915KpXavQUCATVSv2ABsHev\nTqrKZfUlszey50Glot/LVEqdv6UFsG2kOzvx0wcfhA9A0nFw+QUXYElLi7pOIqE3egPUz5KoZbPq\n3FLKBNTeo6wdMNcemLNC3s93qFkmWffgTSyGWpRez0wuxaNJwaSAiIhmh5ncwtAbzIvubhUEtrbq\ne5WA27uDrZlgmKPZsl5A2oyaC1DNvQY8m2BVymU8+8wzePKee/DW73+PsusiZFkIOg6iloW2piZ8\nZN06fPCjH0XbggX6nvv71fdoVAW4fr8KoKNRNbovo++yA7DU48vagupovNvRge6+Phw8dAi7e3ux\ns6cHb+/Zg869e1HM55GwbYRdF2HXRTOAuYEA3pdIINzWhjlHHomjzzkHbYB6vZFIbXeeAwfUfSUS\nKqCXe61U9HsjOxObOzRLUC2bqMnrkPKibBYIBvHwww/jUE8PXABtqRQuvvhidX7ZJ0A+N/mspHuR\nrJOQBd+JxOAORIGATqTG+jcmC5XNxefSRan6bzcUUp2lJBmtd52ZUIpHU45JARERzQ7T3cJwuKRE\nvnu7yEiJjbkHgMwMmO1DzZrxUEi3mxTS5UcC2KYmveA3FlPBYnXDsnw0ikeffBI/+vGPsW/vXgRc\nF22WhSiAAoCjV6zAB1evxgkrV+LoxYv1iHwwqJKYQkFdP5fTiU6lohf2yo7JPT0qAK4mOPtffRWv\nvvEG9r/1Fjr37EFHezui6TT8AMoAugB0BgKIlMuYD2AuVJCSgdoFOV8uo6O3F7neXjy3cyfyv/wl\nTjj5ZFz2F3+BtqOO0u1CfT51f5WKKvWRnZADAbVOQdYzpFL6/ZP1Bf396jmhkAripfuR7OlQKmHr\nK6/g6Z/9DE71/i7/3OfQnEiotQRyzni8dt0AoN4bQJ0rHtetYGX2Rv4mZJZF/m7qrUuRvwXv35j5\nNygtTev8nbrmYvV6prsUj6YFkwIiIpo9prPMYaSkJBRSMwLFogpggdqA31x3YC5ANgNE+b2ZNGQy\nKhmQzcYCARX4dnWp31dHwrMHD+Kp//ov/OCJJ5Dv6kLCdbHIspCxLOQCAXzk9NPx8bVrsfLoo7Fr\n7151DQlyJbmIxXSXHpmRkJp/aRcaiQCRCNLZLF4/cAB/fOUV/Oa111DYvx+l6gZjbY6DgusiCFWm\nZAFoAeAvl5GACk5sACGfD01+PyqlEtIAKqgmCADcSgX//fvf4/WdO/G5a67Bqrlz9ZoFKQ3y+/X7\n09Ki6/VbW1V5jpQVWZZKAsyZg5aW2vahuRw6Ozrw9a9/HUEALa6Lk1euxIc/8AEV8KdSAzMJA7X/\nEuT7/ep9ka5L8+bpdqlyjHzW8t5GIrV/B6MJ1Ftb9UyOGC74JzIwKSAiIpooIyUl9dYEeBMHb/A3\nVB14MqlG7qVLjuOor3JZB4aui/5Dh/DYc8/h5z/+MXL9/chYFmIA/ADmxuP45Lnn4oKPfxzzFy6s\nbWMq54pGVacbWStQKqmEQ1qK+v1AIAAnncaejg68uXs3fr9zJ97dsQPlSgUB10XQspC3LJSg1ik4\nros5ANx4HHPnzsXSlhbMa25GW3Mz5syfj0RTE0LhMKxquY/ruuh2HPR0duLQ/v34/Y4d2Ll7N7p9\nPhQyGdz9zW/i6//7f6MtkVCj+8WiTlL6+tR9t7To3YWlJWlvrwrog0H9epNJvfmZzMwkk6gUi/j6\nzTcj292NhGWhNZXCFevXwyoU1HNkd2T5LsmcrBGQn81Ew/ybENJRCKjZUG6gBMx8nrlbNaATAHmO\n2XloLGZyKR5NGiYFREREU8ms7/f7dReiZHJwoDdcW9NMRo1Mm603bVslBJEIesplPPHww3jy0UeR\nT6fVBlsAAj4fUnPn4s/PPhtnrVqFeFub3hXX2MjLTSSAo4/WNe+5nB5Fb2oCslkU43H88fe/x86t\nW7H7rbfQm83CByALoAQgBTWy77ouypEIVr7//Thh+XIc1dyMBYEA5iQSsCQRCQbVAmTZSyAcVsH0\nwYOwXBdtLS1oW7IEy9aswRmWhdffeQd3/9u/Idfbi1Qmg6cefBCf/uQn9fsrZUxSotXTo96nSEQv\nxpUkobNTfwaJhP5s5PX6fPjBD36Anb//PVpcFwEA6z//ebXWQtYA5PO1Ab/MAshagWBQb5YmMwKS\ndMhnJ92kAJ08ymdeKunjJWj3JgXA+BMB03SX4tG0YFJARESNydtdRR6Tf48lCBptpxY5ptrFpmZT\nK7O1qLkfgZzTLC+SnYulXMh1BwLSru5u/ORHP8L9P/0p7EwGKddFAkDO78fcBQuw/txzcdaqVQhL\n0CsbbUl3nqYmVBYsUKP0oZAKdmWDL9eF09OD/3ntNfzy6afx/IsvItHXh4jjIAE1+1Cqfi/4fFi6\neDGOPPFEnHDCCVi+dCnCMmLu96vzdnTo1xQIAHPn6s25HEe9L7JwGdDdjCwLxx97LP6fK67APbff\njiYA+7dvRwWAX94XeU9lD4BcTnVbWrBAb3ZmdueRmn9zw7Q5cwAAW154Afd8//tIVjdsu/TSS3Hi\n6afrcqBoVCUwsZi6rvn5yyLxcHhwe1DZo0D2oZC/AXN2QMiskmygNtlBOhOBhsOkgIiIGo930WY6\nXfs7QI8aj/VcMsIrvKP9suh3qHPJbsbehaPmMdLaU0a6y2V07d+Pex98ED+9/35k83mUAMxzXTS7\nLt43bx4++md/hj9dtQrBgwf1bsay8Nnca6CvD76+PlSiUZUsdHcDgQB2vPEGnn/6aTz//PPY396O\nHICo6yLlOAhD1fknUymcuHw5jj32WCxfvhxtkYgKhOfNU8FsJqNnSaSFqATM0r1IRvglEWhu1p+R\nrBGovs/LFy7E/HgclWwWTqWC7t27Mfeoo3Q3IjNpikTUNWXn33xeJQeATswAdX15P1wXb27fjm9c\ney1cx0EOwOoVK3D5ZZfplq+BgHpOS4t+zOz6VCrVblRn27WbyMkxMlM0HJlV4DoBmgRMCoiIqPF4\n6/ZldNkM1tLp0Y2Wekf1hQRuZlAvQXwmo8tFpJ5d+v9Lp596m59JyZAEkrEYOt59Fw/cdx8efvJJ\ndOfzKFsWUq6LmOPg/QsX4hNr1+L0lSsRkN2CHUc9t79fb7AVj+uNwpqbYfX0IJDPowvAc88/j2d/\n+Ut07NiBtGWh4PMhACAEIOG6SC1ciA+fcgpOPu00HLlgAXzAQKKCdFqdV2YBpJynu1slHFK739ys\nvmxbjc5LuY0kSYWCWsfg8+n9B6pdkWKhENLZLMIACum0OjegZjbMvRPkdTY3q3P4fPozl1H6YFDN\nilSD/fa9e/HP//RPKGSzCACYv3Ah/t/rrkNA1hDIa00k1L8zGXVuaT8qC5+9M1KSFHr3bzD3JJDE\nRP4OpOOUdz3COLhDJaXU0EZMChzHwX333YcHHngA7e3tWLRoEf7yL/8SnzF27rvzzjtx//33o7e3\nF6tWrcJ1112Ho48+euD3tm3j1ltvxZNPPolcLoezzjoL1113HebNmzc5r4qIiGaPqdpEydxp1rz2\naJICM/CXXvHeY+TLsnRQWirpEeZsVgWQst+AjJZLOUmxqI4plQDHwYGDB/F/f/hDPPvII3CKRUQd\nB4sB9Pr9OOKYY/C3H/84zjz2WPiDQRWAywyGjI7ncmp0ev9+dd1qGUs+GsXrv/oVXn3lFezcvRs9\nrgsLQKT6FahUMCeRwOl/8ic464wzsOL44+GTfQrSaZUMWJbesTgaVT/L7sOFgiobktamTU36PYrF\n1PHRqAru5ThZGCxlTE1NQKWCcjaLXE8PKgBiAJrjcXV8JKLXFeTz6j1MpdRrll2RUym9Q3Rzs671\nr28jHkoAACAASURBVP4N9KbTuP6f/xl7entRsCw0JZP4+je+gbb58/XOy9K6VD4/11Xn7OjQiY20\nJ5W1IzIDYv5tADpRkHKicLi2ha33b0r+LTMno/xvw3GcEY+hxjRiUnDHHXfg7rvvxtVXX42TTz4Z\nv/3tb3HTTTchn89jw4YN+Pa3v427774bf//3f49FixbhzjvvxPr16/Hkk08iUR0lueGGG/DMM8/g\n2muvRTQaxaZNm/CFL3wBDz30EHwyXUdEROQ1WZsoectyRtv1ZzxsWwXlmYwKbKX2XBaemqVF0hbT\n3MNA1hBUZxn2trfje/fcg8cffRRx20YYQMBxMM91cdSSJTj305/G6ZddBt8776jzAboTT6mkgmHZ\nT6BcHuib39HTg9888ww2//d/o7+vDxHLgt+yEKrOPISDQSw7+WScceaZOHnFCoRlxF6+y94AsiGb\nbBzW16dG+Q8eVMG8LK6Ox1VwPmeO7p40d656vm2r4w8dUs8pl/UOw7JrcSCAt998c6B9qS+RQDIe\nV+eR2RdZNCy7Q6fT6mezPWg0qhdPJxJAdzdsAP/0T/+EnXv2wAKQCATwLzfeiGXz56v7ljamsjC4\nVFL3KBufSYmUJJrech/vPhT1klGzHelQf1fcYIwm0LBJQaVSwfe//31s2LABV111FQDg9NNPR3d3\nN+655x58+tOfxve+9z186UtfwhVXXAEAOO2003D22WfjJz/5CdavX489e/bg0UcfxW233YZ169YB\nAFasWIG1a9di8+bNOP/88yf5JRIR0WFrsjZR8i4sTiZVoCZrC2TU1TxOSn7MjZ/M0X9hBoAS0MvC\nYPkej+uFoz09agQ7m1UBuoxAS1vL6teu3btxzz334InHH0e5UkHGslDx+TCnUsHqo4/GpRddhFOX\nL4cVieiNy2QjL9m7IBxWwWq5DMyfj0o6jf/Zvh0vvvgidrz+OioAilBdg4Kui5DrYuWKFThtzRq8\nf/VqNFcXGwNQ58/n1bkWLVLXkF2CpQtSZ6caNZd2pr29uuxGdu2VALtS0Yt9y2U9syBBc7God2w+\ndAhwXbzx6qvIQAUzS1euVIuIZeReXn8goJIACcQlYJeZGbnvau2/nUjgq1/6Erb97ndorr7Wq6++\nGquWLVPniUb165fypEOH9CyO7O1QLutZgnp7Vpgj/ZIEyt9jva5CXtxgjCbYsElBNpvFpZdeigsu\nuKDm8SOPPBLd3d3YunUr8vk8zjnnnIHfpVIprFmzBlu2bMH69euxdetWAMDZZ589cMzSpUuxbNky\nbNmyhUkBERFNj6ECNW+pkgTzMhJrLkQNhXTAanaEkSRBugvJWgLX1cG5OYotrSvl39LBJhTCu++8\ng7v/5V/wi8cfR9FxYAGIQgXvp5x6Kv7XRRdh1VFHqdae+bx6fne3Cl6l647Z9rKnB32FAra88gqe\n/a//gt3eDsd10e/zwe+6mOu6aG1uxtGrVuGcNWswt61N3WsyqV5TIKDOXSyq0fzubnXv+TywZIkK\nhHt7VZAsLVOLRRXg+/0q+JcETMp8olFdJuXzqfPNnat+n82q1+A4+jPI59HZ3Y1tb7+tFjwDOPmk\nk1RAHonopKSvT7+Xra3qWrJvgeOoezVG6UulEr741a/i1WefRbNlwe84+NSnPoVzzzxTnc/v1+1L\nZSM0CeiBgV2PEY+r60nyZ/5t1CsDkr8vcxG5mXwSTYFhk4JUKoXrrrtu0OPPPvssFi5ciPb2dgDA\nEUccUfP7xYsX45lnngEA7Nq1C3PnzkUkEqk5ZsmSJdi1a9d7unkiIprlpnoTpXp12fUWEUvvfvN4\nM/gzz9HdrX5nPgdQAZ+Us0h5iyQTrov+/n7c893v4oF//3eUcznEAcxxXbiui6WnnYbPfvnL+JNl\ny2Dt2VO7aLlYVAFsKqVnBaqB+P72dmx54gm8uHUrctUORRHXRQhAwLJw+nHH4azVqxFfvBhWUxPm\nSolvJKKCXNtW5wLUWoS+PtVdKB5XSUEup0fzw2G1XiIYVPcjrUHTaRXwS49/2b13wQJ1ju5udY1K\nRZf59PWphMHvV+ft7sYfX34ZIagFz+9buhSL2trU643H9doGKdUql/UahkhEJQTSmcjvB3I5lPr7\n8f/98z/jiV/8AkdbFgoA1n3yk7jsL/5Cd06KRNTnF4vpZEBKj+QzlHULQtYq1JsxkL8Hy1LPk65Q\nweDIC925wRhNsDF3H3rwwQfx8ssv4/rrr0cmk0EoFFIdDQzxeBzZ6v/8stksYjJVaIjFYgNJBRER\nUV3TuYmSJANSNuSt+zZJYCfPk8fk3zLaLTX8iYQ6b0+P7sIDAJaFUjqNhzdvxjfvuw/F7m7EXBfz\nHQcB18UHTjwRf3bppVi5bp1q89nbqwJS29a17L29umQok4Hb3483/vhHPP/LX+LV119HpNpCtGJZ\nCAGYH4/jtNWrsercc7Go2gd/TzYLR0atARWwu25t/bvMlqTTKmhvblZrByIR9TzZg8DvV9+7utT3\n+fPVsfPm6QW68t7lciqBkLUH3d3qOvPnqxH/6qLaN999F2+2t6MFgAXgw3/6p+r4RGJgs7GB/Q2k\nnKlQ0KP3+/fr6waDKFsWNm7ciP98/nnAsuAC+PSf/zn+6nOfgyULec22qdIJSJImCeRNUqYkM0D1\nOl6Zfyeuq0urzPUkwyUF3vMwKaD3YExJwWOPPYYbbrgBa9euxWc+8xncddddsLyr6KtkAbHruiMe\nM1bbtm0b1/No5spX60j52c4+/Gxnr8P6s7VtWNWA1zJLO+TxXA5WNRFwAfUzMBD4uRIcSyAowbMR\nGLqhEKxcDlZPD/wdHbDyebX5VywGt1iE9frr6nquC6tQgFUu45Xt2/GDxx/H7vZ2lKA66sRcF8uW\nLMGFH/sYjj3mGLXAdts2OPv3wyqXYZVKqKRS8JVKsLJZIJ2Gr70dsG3s+MMf8MYzz6DU1QUHaq1A\nuXrexS0tWHnaaThu5Ur4YjGUCwXsKRbhy2TgZLNwEwns8/lQjkSAQ4fg9vfDDQaBQgE+24Z/504E\n+vrgC4VQ8fvhtLaifOgQnGIRKBQQ6O5W71tPD4J9fUC5jEo8DhdAOZdDpa8PVrEI/8GDsPJ5uLEY\nfL29cH0+uI4Dv23DDYdh2TYcy4KbzyPU2wu7UMAvX3oJRQBBAMctXYpwMIi9fX2o9PTAt3cv/D09\n6n0OBOBGo7BcF040CieXAwD4ikX4/H5Y3d2oHDqEx596Cq//8Y9YEAyi3+fDORddhAs+9jHsOnAA\nVnXk37Us1cozGIRTKMANBlXJlrGo2N/TAzcQgBOLqXKrri6VrFXXTbjBoDofAFcWmwNAPg+fZ/8K\nNxSC29UFVzZ8g4qp3ms70cP6v1salny24zXqpODee+/FLbfcgnPPPRe33norACCZTMK2bVQqFfhl\nJABqdiBZrT1MJBIDswYm8xgiIqIpY9sqgDZG9iXMsqqj4z7ZC8CyYAUCcEIhdbzPBzcYVAEdoIL+\navmPKwtQ5VylkvpdLAantRW+7m5Y+Tx8xSIq1TafEii+88YbeOyRR/Darl044PPBZ1mIui6a5s7F\n36xbhzUrV8Kqltq4rgtfezv8Bw/CSSTgRKOwADixGKxq8PzWCy/glS1bkO3qQgvUDsMOgCSAOUcd\nhfevWoUlxx4LJ5kEikVYfX3w2zYqsZgezMvn4aZSKnAtFOCDakBiVdcFWFC7B7vlMnyhENy+Pvj8\nfqCrCxaAis+HUDoNfy6nAvRwGJWmJsDngy+fBzo74fr9cAH4SiX4OjpgFQqoRCIIFAqwLAuO68IN\nh1UgnEqhFAziF488gkO2jSSAcjiMlatXq8StUEBg715YPh/Kfj98rgtfNgunOqLvxuPwVdeDWH4/\nXNtGpVDAz554Atveegs+vx/Nrou155+Pz37+83DKZfgcB24sBicQUKP4sttxIKCSg+rGalZfH3zl\nMpxUCm4kAqtchltdiGyVSnCreypYrqv+Zqq/d2IxIBYb+Px81XjJrSacrpFkspUoTbZRJQWbNm3C\nd7/7XVx66aX4xje+MTDCv3TpUriui3379mHp0qUDx+/btw9HHXUUALUoubOzE7ZtI2RMa+3btw9r\n1qwZ102vXLlyXM+jmUtGLPjZzj78bGevw/azlZ7/ZtmFdHtxXfV7KVuxLN1Bpq1N9/iX80i3Iikv\n8i42lrKVbFYtyq2OEiMWAyIRvLN/P7537714dssWlC0Lts+Hfp8Prckk/tdnP4s/v/JKRPr6gPZ2\nXb6Ty6na+3hc1eY3NwNz56LsOHjiqafwn3ffDXf3brQ4DuZAzQxYPh9OOPlknLxqFRYuWaJei2zu\ndeiQLrmpJgB7Ozth+f1YfOyxqjSoVFKlM5alnue66tqWpd4DKdWR1+z3qxHyYFC9Z5WKXmy9eLHe\nhKxSUaVBqRSwd68eOY/FVN1/oaBr8pua8OBLL+HNt94Cqq/rsvPPx5HHHKPeX3n/ZW2BtDktlYCF\nC9U99ver1zt3LnrefRc//MEPsOPtt1H2+WBbFi5duxZ/+3/+D6z582t3JZaOUfK5yt+M/D2YHYTM\nBcOy0FgWILuuKhkD9N9Va6suyzLXr4x2R+0xOmz/u6URbdu2DTn5f8w4jJgU3Hffffjud7+LK6+8\nEtdee23N70499VSEw2E8/fTT2LBhAwCgr68Pv/71r3HNNdcAAM444wxUKhVs3rx5oCXp7t27sWPH\njoFjiIiIxm2sm5vV6+8ugZ6Qrj0SrHlbRJp7BwC1+wqYXWZkMaicq1wGolF09fbih/fdh8eefBKl\nchlOdVQ8Ew7jr/7mb3DNNdegLZVSyUlfn16sK736ZcFsPg+7UMDmJ5/EQz/9KTLvvosFlQr8qG40\nFgzilFWrcOqqVWhrbtaLbyMRdf/9/br9ZzCoHi8W4SsW1WyILPC1LL0ZmOOo+2pvV8mJZakkIJNR\nwbw8RzopyeLkeFyvGWhpUcF7T49KlkolvfNwV5defyGBfbGIp197Dfc+9xzaLAutrotVp5+OE1eu\n1G1d587VeyMAel1BqaSD92AQCIXQeeAAbr/9drTv2wf4fOizLKy7/HL81fr1sCT4l+4/1RIolMt6\nozlg8CZk8hz5nc+n3k/psGRZeiGxrDORv5eFC/XzvIvVp2rzPmp4wyYFHR0duPXWW7F8+XJceOGF\neOWVV2p+//73vx9XXHEFvvWtb8Hn82Hp0qW46667kEqlcPnllwNQnYnWrl07sDA5mUxi06ZNWLFi\nBc4777zJe2VERDT7TeQGTmY3F1kgalkqqEwma8+ZyegdbIW0EjW7zJiLS+Nx5DIZPPzjH+Ox++9H\nfy6HfHWEut/nw8fWrsWXvvpVLF22TI8QHzigR5gBFXxXdwkupNP41Ysv4hebNyPb1YUQgDkAwgAS\nsRjWrFmDNX/yJ2iVgF++JxIqyJUgXzoF+f0qCO/rU2U9lqWOk447gDp+1y69t4D5Xkg7UJ9Pj5SX\ny+oYmWWQkftIRP1O2pZK21BpV2rb6j2vljG90tWF7z38MADA8flwwvvfjwsvuUS/v21t6vi2NvX8\nQEC9zrY2lWC47sAeCLsqFdx4223o6eiAZVmoWBY+e9VV+POPf1zdg7QpNZO7lpbBi369P5t/ezKT\n4N3nwtzt2ruD9lCdr7hBGU2RYZOCF154AaX/n70zj7KrKtP+75w7TzVmqEBGQgIBAoQEkIQhBBlC\nBEERQZBBEVTaRv38WkV7kF5qOwu2iuCHaIu2IvMgmDAPIQQIYwYg81RJ6tZw5/l8f7z3rX2qSDDY\nKqHZz1q1qurWufsMd2flefd+3uepVnnttdf48Ic/PORvjuOwePFiPv/5z+O6LjfccAP5fJ7DDjuM\nb3/724NpxgDf/OY3+eY3v8l3v/tdGo0Gs2fP5qtf/eouG5AtLCwsLCx2C0oK/aup/pXhnUGDtIav\nvirRyueFYKq7jl9Gok5EKi9Sn3p1H9JxdazeXsjlqLsu995+O7++7jp6t20j1CSjNWD6YYfxj1/6\nEodMmyZj9Paa8w0MCKlVj/98nsK2bSxdsoTFTz5Jqb+fEDAKkdNE43EOP+IIZs6cSavac6rtpnrr\nRyKyGu+65nr7+00OQTotDb/RKPWRI+np7mb7wAB9jkO4r49YJkMkHmd0IkG7JgLncvJdCXitJl/V\nqtxDICCr4Sod6u+X7+roo+nDKrkZGBjcgVizdSs3/uY3uPU6nZ7HAZMnc/455xCIRMxYTdnToKwq\nEBBZVTIp58jnoVhk+erVfOPb32ZdLkchEKAlFOKLX/4y8+fOlXvXHQwl+eo8FA6b5+NPIvbPH//f\ndpaB0dEh37u7TU6FPz9iZ0TfBpRZ/B3heP/TNva/M5599llmzpz5dl+GxV8ZVuP4vxf2s/3fiz3i\ns9X+AF1BVWvOjg5DuoZj+OorDF3VHZ4w69eHa2HgT+gFo7VX/bt+7+7micce4z9/8APSq1YR8Dyi\nnkef6zJh/Hg+cemlzDnuOHGxicXMOTIZIbiNhhDkSoVSXx9P3XMPix9/nEA2Sw1wgRLQFo8z++CD\nmTZzJimVOgWDYiWqcphmcyz5vFy3JghnMrBpE4TDpAMBNm7Zwuvr1lHs62NzNovXaKB2IUGajkhI\nYNhe48ez/2GHMUkLjmRSxs1kjFxqYEAIe2srTJgAe+9tNPZdXXLcxo2G0KdS8gy2byfd389PfvMb\nBjIZBoCOvfbin666ik4NOlNplurzQyEZf/JkGVulYdu28dQ99/Cv3/42/eUycc8jEYvx1W9/m/ec\nfLIh/f6kak2fhqFFgRaDu6v9Hy7/0evW37Wg3NkYOhf92NWxu4k94t+txd8E2lPwl/Lkt5xTYGFh\nYWFhscdAffLBkC9d5dUV/uHa7OEkbXjx4JeCNMkpwaB8qUYehIj6JSbDiNqKZ57hO1//Oi88/jhh\nxPkn5nmMamnhkgsv5ORTT5WcH5UoaXqvrtyXShCJ0CgUePpPf+Khe++l3tdHBbHidIFgKsVJRxzB\noQcfTDybFWLdfB8jRsiKuV/KE4vJa64LxSKl7dvZsmoV2zdtYk06Tf/AAFHEqWgAyCDhYH1AK1BF\nkpSTSD7A9g0bWL1lC+defDGdjYYUMbr6XyzKc9SwsFJJdkEmTBD9f3+/CRBzHNMv0ZTupLds4dbf\n/x4nkyEEdKZSfPrzn6dz/Hgj79qxQ1b329tlnHhcxtagNYB8nntuuYWrv/c9KvU6NdelrbWVb37z\nm+w/b95QqZBCd4T0s/VLwbRgUBtanXO7U4DuavdpV7sFNqDM4u8IWxRYWFhYWLxzofKLcllI73By\npkTL7wqjJCsSMW5DO5MQ9fYObSTWhluQ1W9NttXXmoQ+Wyjwk+uv5/c33US+0aCr0SDlebSEw5wx\nfz7zzz+fpAZqaRMqmObaalVW2kslXlq1itt+9ztya9cSQVboQ0C0tZW5hx7K9MmTiUYipkDp6THX\no/dZq5nnEI3SqFR4ddUqXn7xRda98grxYpEGQgg0PaiB7ECEAdramDxmDGPjcSKuS7VWo2/rVord\n3QSBSq3GA489xtnz5xupkjbaajNtMimve548144OGDdO7jmdlutvaRksEra8+io33XADPU0plROJ\n8PHzz2f8pEmGULe0GMmWFgTq/d8shLxsll///Of86uc/Jwwk6nUOGDWKr3zhC+w9btzQeaI7LDpH\n9HPxzxcYWjDo8bmcaUrWeTm8p8SPSMSMo0WCf/fAX7j6pda20djibwhbFFhYWFhYvLOhKbZgiNzO\nGjb938E4wSixzGaNBMWfRBsKmQbZWs1IUjSDp0nqvHKZRfffz4+uvppt27eTbDQYhRD5E+fN40Pv\nf784AIGcS2U28bisrFersppeqbB240Zu/u//5pUXXiDgebQgJD2ZSDB/xgymH3QQkUZDxlASGY2K\nZl9lTem0rNbHYtDSwvpNm3hm+XKWPvMM9PRQQEj/SKTQCCE7AXuNGUNLVxczJ05k0oEH0jFihFnR\n7++XZ5FK8dLLL/O7//ovosCalSupnXIKQW1mBnlOrmuShut1+T2TkQbmtjZ5huWyXGMkAqEQa1eu\n5IZrr6U/myUIhAMBzvngB5kyerTpT9ACIBaTMdS9KBgcnAf5SoVrrryShx58kBoQazSYNnEi/+dz\nn6Nz331lnL4+2WUYLh9TUq73UiiYngDdIVCEQmYuKYav7g+HkvvhKcg6P99M3mZh8TeCLQosLCws\nLN7Z8Lu5qDxDibLaQPoJnsppCgUhlZpKC/Jza+vQ1VktDopFeY8Sz0pl0J9/3Y4dfOOf/5kXnniC\neKNBRzMA7IgDDuDCCy5g0rhxhvT39wvJq9fNOOk0hEL0bN3KfbfdxqNPP03e84g4DhHPoxGNcvy8\neZwwdSotuZyM0doqHv+hkIzVaAjR1YKj0aCUzfLq8uUsWbGCHZs3U0aCzCJAARhwHDrb2zlwn32Y\nOGEC4/bfn3ixyKZcDi8Wo2PUKBkrHpeV+Xp90GUp2dkpjwwY2d5OMBaT+6vX5fmlUvJzX5/ZOYjH\n5flls9JHkM+b3oZKhVVbtnDdb39Ld7GIFwgwPhjkwrPPZtqUKfK+YlE+z0QCRo2S59ffL59LKDTY\no7BmyxYuv/xyCsuXk/A8EsDMgw7iHz/zGVra2qQgARkvlRKplX9HST9zLfy08NSmcpUPqe2q6w6V\nk+nn+pfIf2xzscXbBFsUWFhYWFi8c+GXWSSTRsKhrymR87sN6XeVBBWLpihQcq0EFsyKbq1mUm0z\nGSgUKOfz3HjnnVzzy1/ilkqEEXe+jrY2Pv7xj3P89Ok48bi8t6fH2HCq7CkSgZ4eMvk8C5cs4dEH\nH6RcLBIDIo5D0fOYdeyxnLFgAZ2trbB5syGikYgUBpWKEPZmsCj9/aT7+1m5fDlLV64kWywOyo4i\nSJ9AMJFg3rRpHHDCCUwZP16SnMtlIbaJBPXNm3E8T4h3sSj3nErJc+jrg54eXn/+eVwkD6GzvV2e\nnRZYWpyNHi0EXO9fCXe9LmRe7VCBF1eu5JbbbmN9vU5fMEhrKsXFn/kM+40cKe/T5+V5UgT09AiZ\nb6b/6ue08NFHufyf/olsNstYIOU4nHTCCXzsjDOIlEpyLxoq5rqmKV3nhhJ5/66Av19EbUu1/0Pl\nSzuzC30zV6JdFQy7khxZWPyNYYsCCwsLC4u3H7sKaHqz4KadNXGq1eNw1xYleBoOBUJISyUhmNGo\nkQf59eXqotPWZs69YwcMDPD8ihVce8MNPLdlCxHXJeh5xIGzFizgI+efT1trq+wAaHiXEuZgUM4X\nDFLN53n60UdZ+PDDZDMZoghxrwGTp0/n9DPPZOKhh8rKtDoGqXxGiwAlua7L2tdfZ8Uf/8j6V1+l\nisiDos1HEHQcJk6ezJQjjmDqvvsS9jyYMkUIdSolz6IZaua4LnW1M/U8IeDN+6ZSIV0ssmzxYlqB\nBLDfXnvJ+8HYoGqhEolIoVWpmH6DgQFjQ5pI8ORTT3HbHXfgNhokAwEiI0fyr9//PlNLJdiwwcig\ntEm6o0N6EzZskM8tmaTe3s513/gGP/jlL8kGg4Q8j2Q0yj9efDEnHXmkzI9SSRrHR4yQhuSdOQf5\n557Kyfyv5fOmOVp3EHRnyd/DortUO2lCf8N5hs9v21xs8TbAFgUWFhYWFm8vdhXQtKufh5Op4WPt\nikAp6fIn1vb2GktIJYDFopBvJfCJhCkeKhXSmzbx++uvZ9mSJRQ8j9GBAFXPY/z++/PZz3+eA6ZO\nNRr8kSNFJrN9uxDEVApSKbxolGVLl7Lwttvo276dVkTbnwdaR4/m2NNPZ9qhhxq//VxOVuj12oJB\nuabubrzWVl558UUWPfQQr61YwVjELrSMFASRlhYOnjGD6fvvT2c0KiS9SaS132Bw9yEWA6CuOyLZ\nrHzt2CHnr1ZpOA4PL1xIrFzGAUamUkybMMH0NUQiJkRM+xpAChm142wWIl6jwQMLF3LfokU4SE/D\nmK4urvj3f6dLw9X23lue39atct9tbXIt6nDkOKT7+vjpt77FH196iXAgQMPzmLL33vz4K19h//Z2\nOad+lpoz0dVlMgl07uhc3Jkrlf5NrV39OxQaWFetmt0F3aV6s8CxnTUO/7nMAwuLvxFsUWBhYWFh\n8fZiV+R+Z6/l80PJ2vCdBH8Pgeq/h4/htxutVoUYgqyGe56QV5WHgJDAgQHqpRL3/OEP3Prb31LL\n53GBsOMwMRplwVlnceLpp0ugFkgxUK1KUFU+byRJtRrb8nl+e9ttvLhsGSmgDZH2tMTjHH/ooex/\nyCG4++4r4+h1bN8+GISmvQOe47ByzRpue+YZCps3E0RW7bNIv8DksWOZNWsW06ZPJ6DuNn5XHdcV\ncq3kVq1RW1qgvx9nYMD0aTQLIhoNHn/6abavX08cqAOHzZ5NUJ9zS4tZPdfn57qmEbdeH2yOroZC\n3LVoEc89/TQhhJCkJkzg41deSWdHhxRT8bgUGqWS6eVIJKRQKRYhGmVNdzfX/uY3rO/tJRIIEPQ8\nTjz+eK7+1rfodBx4/XU5fzQqOwyJxOAOxZB5pM/GP880BE/nikqYtLCpVoc6V2nGwvBsgbfaE2AL\nAYu3AbYosLCwsLB4e+En6n/O712bO0FIbKNhjslmBx1s/LaUQyQZah9ZqQjpa283RUV7u4ynQVga\nTFapsGLlSq6++mq2rViBA7iOQ8B1Ofawwzjzve+ls6vLrKqXSkObmpuNy5VGg4cfeYQ/Pvgg62s1\nAoGAOApFIsw+7DBmTJ5MTG1V83kZIxoViUxvr5HO5PNs2bqVpStW8PL27WSQDIFy8/uEadN4z7x5\n7Kt+/YGA3FdvrxQXriv3qr0W2ayQWXVAchwol6XPQFfrazUAnl++nBeWL6eKNCzvd+CBTNpnH+Mw\nlErJSr4SbG3ArdUGSTyuS7pY5A/33MOqDRuIIMXFxClT+MinPkVq9GiTvKyyq2BQxm80zEp956d/\n7QAAIABJREFUtcoTy5Zx2+2306/NzcBFl1/OZz73OQKaKdHZaRKo1UZW+0X888vfZKyr/MPnpJ/s\na/N0NDq0MLA9ARbvUNiiwMLCwsLi7YMSz+Ge8P70WD3O3yAMQpxVCgRDHYNgaFKskkKFknYNuapW\n5Zw6dqUCiQT93d1c/5OfcNett+I13YBiwN5jx/Kp88/nkFRK3ttoiMQmGBSiqJrypiRn5XPPcctN\nN7Fj61Zyrsu2YJD2RoP5Rx/N+w87jM56Xa6vXjcr7amUIa/xOGSzpHt7eXnJEnZs2kQGkRy1IjsW\nkw49lEOOOopRI0cKSQ+Fhnrr1+vyu+YFZDKmMTsSkXMUClCt4ubzhozXauC6vLZqFS8+/TQRJMdg\n1D77cPSJJ5pzdXXJM29vl7E1s6C/X+6trw8CAdZ0d3PHwoX05nIkkF2NKbNmcdEllxDxN3W3tUnB\nov0J1aqMDRSLRW65804eXbpUEpcDAdxUin/++tc5/swzzWp/KGRcirRo1Ib04Tr/PydHU9ch/86U\nX37kn3e2J8DiHQhbFFhYWFhY/EVwtdH1fwI/6fKHNQ3Xcvs1/8Oh5C6XM8frWP5AKv94aoWp71dJ\nUjoN+Tye53HHQw/x0+98h/6+PmqABwSjUc45+2zOOvtsItmsuAGpxCaXE2Kt+nwgnc/z2xtv5NWH\nHiKJaPz7Gg0OmTSJz5x3HtOCQZEYlUpDJEaDzbpNPX5vJsOLDz3E5pdeGmwcDiPJwuP32YcpRx0l\nDkCxmLyvs1OKCpXcZDLyLFpajK4/EDCNv6WSCWeLRHB1V6WtDYJBnnn6aZ594gkayKr+6JEjOel9\n7yPgunLNep5kUnZG2trkGeRyUmi4Ll40ylPLl/PookXUkIbqIvDeM87glBNPxInFjLwIYOJEkXRt\n3y7X3SySul9/ne/dcAOvr15NFAgEArTsuy9f+vGPmTRtmlnpV9vQcFjyGxzHPNvhRcHOZGYqRfO/\ntju7ALpboO8d3ptgYbGHwhYFFhYWFhZ/OwzX/Otr/t/1Z/19ZwmuStj98g3/LoEinzf69XDYaMTD\n4cFgMPJ5Wb3WlV/PE8LcJHJrXnmFH3zrWzy9bBl5oOa6VB2HE+fM4covfpHxmjnw8sumWCkWjTxm\n9GgakQh33Xknv/3Zz3AHBhiNkHgvEuHc972P9x5/PEGV9ASDck2RiKyEN4k4AwOUqlUe/tOfeOWP\nf8QrlxmJkPIyMGavvZgxbhydKrUJBIzN5siRQqRrNXkWvb1yjkLBhIoFg6ZHoVaTawfIZPDKZZxy\nGa9Y5P7Fi1mycCE1pPch1dnJieeeS7xaNQRerUIbDdi2Te5BdyQSCXKZDPf96U+sWrmSCNL3EEil\nOO+iizjg0ENlHM01GD3azIERI+Q+msXg4mef5ap//3f6MhlSrksdOOa97+XyL3yBeDOjYHAedXSY\n3SSdQ7sKAdN+AP9OgEqItKDSXS3/GDvrFdDjdH7656CFxR4MWxRYWFhYWPxF8DwPb3hDJZhCYHiz\nbzYr3/0a/+GSH//fh7+mpE1/V3kQDE2hVRKm+vjeXjmmv1++KhVZ0R/mFlPbsYNfXH89N/70p0Sq\nVRJAwPMIdXXx5Suv5OTZsyVzQK9PyXg8bnYewmFe3bKFH15zDWtffpmRtRoxz6MBjD30UM688EI6\nPQ/Wr5cxVAs/YoRxAgIahQKLV63id3ffTW3bNloaDaLITkN81CiOmzmT8S0thsBqDoD2RTRzFGht\nlb/7JU3aIOu68hm0tspqtvYPAF5z1f7uO+9k6ZIlJJB8gzFdXXzg3HPlHqpVeW+hYAoCTTDW7ISW\nFtZls3z/+uuprF1L3HGIeh7j996bD519Np1jx8rzC4Xk3PqZVCoiN4pGIRajkcvx25tv5vs33UQZ\n6PI8OkIhzrvkEk674AIc/67VzrIrdjY3czk5l+4cgHFmGt4fMHyn6c0Ivg0fs3iHwhYFFhYWFhZ/\nEXZZEKie2u904ydYw8mRrsLq33ZFnlSGMXycXE6+tAF1uI2prhbH46Z5WPX+zdXu17Zt4+uf/Swr\nX36ZOBD0PFodh9NPOYUz/uEfSLW1yTh6P5ppEAwOuhVlAgHuueMObnv4YYKNBi1A1XUZNXo0F3zg\nAxx80EFy/IYNQtp1rEBA7qWp+V+1ahX33ncfyzdupIpIhAKAO3o0s+fPZ8Zee+H09JjQNZUuua5p\n7q3Xh654V6ty/Zq7kEyKxEhX+0Ohwd0Jtm3D6+7m/scfZ/Pq1YSAHHDA+PGcdtpptGgisUqdAgE5\nT7Eoz7era7BIeOKRR/jPH/2IXD5PIhikUa9z7KxZzD/2WCLaOLxjh+j+tTDShvJCAdJp0sB3b7yR\nJc8+S8rz8ByHsR0dfPnTn2a/adPknrSZWe9Xv0ci8mzyeRPOBkOLy54e+b2jwwTV6TzUYtNxdr4z\ntTvpxPp+6yhksYfDFgUWFhYWFn897M4q6XDN/1vRXPuJVS4nZE4JX6NhyL6OrT/rinBrK2zZIp73\njkO9Xue2hx7iqj/8YVCek6jXOXjffbnk3HOZNG6ckEZdde/vlyLAccxqfCjE06+9xi9+9jP6e3qI\nOI6kBweDnHDqqSw44QRimYwcX6vJdYZCQ2w+icdJOw7//atfseaFF2ggxYAHhFtbOeXYY3nPiScS\nCgRERtXaKmPlcvK9Xpd77OgYDEajrU3Omc8L8dYiQmUx6bS8r1QyTc65HJu3buWO22+nmsnQjkh9\n9p82jbNOOYWINgHHYnLtxaL5PNTxqa+PWjjMb3/9a26+4w4qSG5CLBjkvI9+lOOmTTNzQPsacjkj\nG1JJkufx9PLl/ORXv2JHLocHRD2P6TNm8G+f/7zYjVarUsjoDo4Wov4dB/2uuwPFoinm9LhabWiq\nsRaS2gSvz0zD796M5Ot1DHfVerO8AguLPQC2KLCwsLCw+NtguAuLrvL7X1OpD+y8oHgzi1LtB9Av\nddFRorczrXe1Ko2r+TybNm/m1l//mmVr19IaDLIlGCQcCHDpGWcwf+5cghrepZac6iyUTgspHjGC\ngUKBW6+7joWLF5NzHKquS5vncej++3POaaex99ixJmwsmTQkXAmm6+IBz61eze+feopqsUid5s5A\nJMJ7Z83iqFmzaI1ERKvf3m5W9T3POP1o8ZPPw6ZNUrwccICca+tW+V0D2JoyJxIJsyofCsGOHby8\nbh33PvggtXqdBFKUzJgzh/nHHEMAjNSnVjO7DroT0XRw2rZjBzf+8pe8uGYNjuvS67qMGzOGL3/2\ns0ydMkUaqzdvNlae0agZI5GAQoFsXx+/+q//4sGHHgLHwXMc6q7L6WefzaWXXEKwac1KJiP3o9an\nCs13KBTkd90pqddNUTC8aV2lZ/q6uhepExbI/NLsgl1B510+/8biwcqILPZg2KLAwsLCwuKvh52t\niGozbiplnG/07yrR8Pv6l8uG3OuKq35p0qy/gNBVXO0h0J0HPU5daJqkr9FosPCBB7j77rtxCgXa\nHYfp1Sr7TZ3KF6+4gimqb1cirZrz3l4jtfE8nlmxgp9ffTW1bdsINZteE52dfOKSSzh+0iSc7m5Y\nu1auce+9jdVoJjNIrtPpNE8sWsSK7m6CiL1oBTjsoIOY8973ina/Xhdyqyv6o0bJs8xkZJV9+3aT\nz1CrmUbidFr+prsEzURiajXj5tPU4pczGZ56/HGWrViBhzQzFwMBTjv5ZA487jh5T6Eg5wsGjVWp\npj47Dl6jwWNPPcXtt9xCKJ+nA+h1HGYecwxf/+pX6dDCatw4s0uiRUV7+2Dx9MLGjVx91VVs3LIF\nHAfHcUh2dfG1q67i8NmzTRicOh6Fw7IrkkyaIscPDVLT+aG7HP7kYXWp8s9jLXT8O1k764HZ1b8D\n7dOwsHiHwBYFFhYWFhZ/PQx3GEql3ugytLMVWn9RoN+1YPCn7jYaZpVdiwYd33VlFdcvA9GAqYEB\nqFTYuHkz133nO2x/5RWCnkcEaHEcTj3+eI4791xC0ehQyUkwaM6fTEKpRLa7mz/ecQeLliyh5jiU\nXZes4zB73jw+ee65dCaTsG6dke5oIJnnwfjxUpjU6zz33HM8sngxjWoVD0gB41pbmX3CCSJbUicc\nv6Sm0ZCxXNeMGY2aJt+RI+Wa/T0FlYoUBmBccaLRwfdu276dRx9+mA19fQCUgFR7O/OPP55p06cb\nIt3SIufRz8ZxBh2G0p7HXTffzIsvvUS/4xBxHMKBAB8/6yw+cNFFuJ5ncheqVXk2W7bIuE3SXW00\nuO6GG/jxL35BuFYjEgjgeR5zTz2VL3/lK7RrYbV1q8yLcFju198DoO5AOtf0tf5+k9qcSJh05UBA\nehmSSRlTSbwWO2o36x/vrfxbsHkFFu8g2KLAwsLCwuKvizcjT8NX/8GsvqqWW12J/A4xweDQ45X4\nFQpG5tHV9UZpRzNl2MvluP+ee/jxdddBocAYzyPheXSNHcsHTjuNiePHC3Gu101gmNp2trbK6319\nvLpuHTffdBP53l46gJrnEUylOO2SS5hz+uki3enpMRag1aohwmvWQF8f6e5u7lm4kM3r11NBHIUS\nwKxp0zh0xgxigYCs7Pf0CAlvbTWSo2pVXtecgUhE/p7NGtJbKsnKuzbJhsMmqVkToctlGo0Gz69d\ny8tPP42urQ8A+0+dytEzZuC0tEgzciBg8g+KRSHQKscJBFixfTu/v+UWBgYGCACO65LYay8uveQS\npo4bJ9eRTMpnlcnIicaMkTGbNq5rBgb41//4D55ZsYK841ANBulMpfj6177G+z/ykaFzSgPDVPak\nBUokMnTFX4/v7ZXP0nXlWbW3G9mSf76oRW1fn5ERaYGp4XZvtSjQea2/26LAYg+GLQosLCwsLP5+\n0L6CnTkIqZNOX585TncFFNXq0EAyXdH1PCF0KtvQMXt7SW/bxo+vuoqXnnwSF8g7Dr2hEAvmzmX+\nggWEdVx19NHm50hEiGMqRaW/n3seeIBF999PuF4njPwHut/06Zx+zjl0jhkj7w8GzUq+ZgI05Uhe\nqcSKl1/mj089Rb1cxkF8/7va2pg7dy4T1IGoWDQ9EaqD9+826Cq57hrEYlJ4qC2pSnLUGUjlOZpZ\nEA6T7uvjqWee4dXeXtTMMwDMP+EE3nPIIWwpFmlo9oHKvvy7HoUC2UaDhxcu5N4XXqDcTHoOAscd\neywf/OhHSTiO6RdoNIxVajQquw5jxtDo6eH2e+/lGzfeSF+5jNNs0p511FFc893vMnbcOPNZ+ueM\nX0KmdrW76j1JJGDqVCMj0wJieKLxruarFh1/CaG3hYDFOwi2KLCwsLDYkzGcQL8dBGNXSa6VCo6f\noPtXpv+co9BwQqZ2n9psCkN99v3wj6v9BGB2FdRacts2nr7rLr73wx9S7O3FQYjvmAkT+KdvfYvp\nra3S9KpkV7/qdSHatRqkUqwrFPjVj37ExrVrCTkONaA9HmfB/PkcdtRRksSrGvtsVqQqxaKsUDeJ\nfj6X44klS3h9zRrKQDuS6LvvjBkcOXMmkXBYCHO5bLTybW2yKp7Py+8tLSZfoK1N7r2tTc4Xi8nf\nVOrUdEWi0ZBrGTkSMhnq9TrPrF3L008+SQ3pHRgAukaP5rRTTmHvMWNgYABPm6MDAfNMtPG6UGD1\nypXc96c/0T8wQByoAYG2Ni48/3wOmzRpqA1nb6+RZPX3i1ynWGRTo8F3v/MdXnr+eQKBAK1ANRjk\nM1/4Ah//1KckLVmTibXgA+mV0Dm0O5agOmdSKXNdOysidO62txvZj75mib3FuwC2KLCwsLDYUzHc\nqeftsDT0X8OwJuBArYanoVjZrDlOpS5vRW6hq+BqA1mpCBnVRk91p0kmDbnzN5VWKkKEm7KWQibD\nDT/4AQ/edRd1xyHoedQdh7mnn84lX/oS8b32MnKSdeuMh30sJq9HIniBAPc/+ig//cMfCBQKtDkO\neB4HTJnCuaefLr0DW7YIWe7shL32kntXuUpHB5TL9KTT3Pvww/T09hIE9gZGRKMcdsghjDnwQDlv\nJmOKAQ1F0+vJ54X8q5xJ+ytSKXlGxaJ818JKixqV+YwdC9EoWzMZHlq0iNe3baMGuIjt6bFHHcWc\nww8Xu9FgUK67vx+3WBzsxWD0aIjHyff08MADD7B8yRI8II/YjY6bNYuPfvKTdLquyLC6u+X6SyW5\nBk1uBrxKhUUPP8y1N99MIZ8n4TgUgGmTJ/PP3/gG+x9xhNkdAVMUqUzM36CshH1XycK6A6XH7c6q\nv1/2o7sKtiiweBfAFgUWFhYWeyre7mTUSkXInJKq4U3AgOP3gB/+Xv+17mq3QZFMGl287jjoar2O\n09U1dIfB/xw0VdfzWLV0KT/4j/9g/caNOI5DzPNItbXxqc99jiPnzxfSG4kYq0m1jgwGB517BnI5\nbvjDH7j/+eepAXHXpRQMcs555/G+ww/HHRgQwhuNSmGhwV/9/bJa3ywyVu7YwW0PPEBfsUgHQsKn\njRnDtP33J+V5sHGjvF8djrTA0AZX1bJ3dsqqP8jz0UyGfF6KAs0ZiMeNVShAPE5xxAgeuvdenvzj\nHwnUauhT6xo5kpNPPpkJra1yns5OuYZiEXf7diOpCgSgVGLFli0svO46Cr29FBGXpGgyyftOPJHD\nzj1Xdo20SGppkWvZuFGeUSIBjsOOvj5+87OfsXTlSsKOQxzIBAJcdP75XPSJTxBpa5P7U7vUXM7s\nhKiVaKHw5y0+tWhUuZXOseG7C7ual1pA2ILA4l0EWxRYWFhYWLwRflKlWn9t7PSjWjV6c9XT6/uV\njMEbrRn9fQLDfdw1FMzzZIU8Hje7EWCIXSplzu841KNR/uuGG/jd9dfj1mqEgJLjcOiRR/Lpf/on\nOg84QKQh/ntMJkVa0wzdolJh3cAA/3n99azZsoUIEHNdJowfz2c++1kmjx9vrDnzedM4rdKdQgEa\nDerAE4sX89hzz7EZ6A8ECAELZs9muhY72jNQKsnPY8aIXWcqJc8nmzXNxNWq8fV3XSHKr7462PMw\neHytJs8rGqVeKrHsuee448kn6evtJYT8px92HI6bM4ejZs4k3Nk5NHOg+bk1tDE5HiddKvHAr37F\nfc8+S4fnMR6RYe21776ccsEFdKrEqb/fSHtSKbkvgI4OvJEjWXz77dx92230FovUAwHCnsfee+/N\nRZ/+NFMPOMDYnvrdo8BYimqPhFqiai6FzqHh89efO6CN0f7dq+E7cW82Ly0s3gWwRYGFhYXFnoq3\n09LQr8Xe1TX4fd797kAK1ftrY+zwax/eV6DHhEJCdnW1vK/PeL5v3y7EXvsGmgVCur+fKz/3OZ55\n8klaGg3G1Gp0xGKccdFFnHDaaThjx4oEBkwKsroDqewmleLx55/nx7/6FdlCgYDjkPA8FsybxwdP\nOomo33deG5yjUSGmuqtSqVCIRLhv0SLWrF1LAYgDLZ2dfOKMM5joOCKvGRgw8ihtelX71EZDdkVc\nV+5Xn3+tJucrFuX3WExIsqY5x2KyW9DRwaq1a7n/nntYt2ULSaANKALtEydy3gc+wISWFhmjtVXO\nrz0KSsr7+mjEYjz+6qssuusu0rkcKaR3oBAOc9Lcucw4/HAclTRVKiZEzPOMhKyzk3S5zDU//CHr\nnnqKFs8j67o4jsNJCxbwwfe/n2gsJveg96E9JeowpPKxQkHGV/cgzVvY1Wr+8F6c4RkDu9q52p0G\nZAuL/4WwRYGFhYXFnoo9xdJQQ5zCYSFhCpXc6Kp9LmccbhKJN8o0drcpNB4XsjswICm+waCMp6u8\n5bJx2QmHeXnZMv7PFVewZdMmQp5HtNFg2uTJfOxjH2PvvfceqmvXHYeeHikGmjkI1Xic3958M4/c\nfz8R1yXseTiJBJ887zzeM22anHPrVhln9Gi5x61bhaD7NO191Sp33Xormc2baUEaecfssw8LzjqL\nzlBIrsEfzBYMGpejeFxIsbr+aAiZjq+2mupqpP0dnjfYlL0hn+euBx/kpZUrxVXIcXA8j2RLCx+e\nM4fDZs4kGI+bRuQdO+TZtrVJgTBmDBQK9C5fzn333cfqDRsY6Xm4yO7AxMMP59wPfYiRINfY1yfP\nQL3/x4yR55tMUqvXuf/RR/nV7bdTKpUYBfQBsYkT+fxll3HAlCnyGcTjMkYuJ8WQFpt+CU+lYgpB\nnSctLcZSdHca8u2qv4XFm8IWBRYWFhZ7Mt6uQkA929VSU1Nf/dfjd/4Jh4Wg6WqsXy7kJ3L+12Ao\nmfOTOnWrUdlMPi+EWBtN+/uhWuXWxx7jm//xHzRKJWKeRwg4+0Mf4qMf/CBBzxOyqQ2zuivQ3W1e\n37qVdDrNbXffzasbNzIKKDcadI4ezXkXXMDEkSPlvarXr1aFUCt51T4CID0wwO0330xfTw8xwAOO\nPOQQjpk/n4A2AKslZkuLkOBoVO7Zb9dZLkvzs563mTpMKCQkPJ02LkSuC7Ua6VCIRY8/ziPLltFo\nnjsEhKJR5px4Iu896ihSTecg8nkZp7VVioFGY7CYywaD3HHzzTx7zz1EGg3akd2B0SNGcNqZZzJ9\nxgx5DuGw3HejIZ97KmW0/skkq1at4oYbbuD59evJNJ2Fio7DvPe9j3MuvJB4uWzC2bSfQguTWs1I\nmcDMKX+zsL6u/Sfa9wKmWEqljORs+Hv1NRsuZmExCFsUWFhYWFi8ESq3GE7IfCv+XiiEsyuy7ydb\nuto7/JjeXpNIrO5DYPoW4nHzc6kk19LU4pdyOX5y9dXcdd99JD2PmuMQTib5l3/5F46bNk1W4Ht6\njPuMOvtUq1IUZLNQLLLupZf440MPUSsUGAs4wPiJEzn+/PNpqdflvJGIjFWvmyZfDfIaMQJcl62b\nN3PbTTdRzWQIAWHgiIMP5pAjjjAEWnX38bjsNvT3yzOo1+Ucrivny2aH7sLoDkKpZMK/SiUIhRio\n1Xh52TLufu011tZqDIRCdFarjHEcjp4xg6NPOIHOUaNMU7T2fziO2W0ol/GqVZ55/nluuf12dqTT\nOMguRzAY5NiTTuKkM84gnkrJswsGhcDncjBqlMiWmrr/3o0b+fWjj3LHgw+S9zzKwSApz2PvCRO4\n4tOf5uApU0xBFosNWrYOFhpg5EFaAO5sDoGZL9r74p9b2i/iL0h3VhTosTv7u4XFuwy2KLCwsLCw\n2DmUmPkxrIHYG67VHr66q+MMlxINT45VaZCugOsKuTYG6wp3JsPWTZv4zle+wkurV+O4LlFgzMSJ\nfPXrX2fS+PGGbBeLpiAolWSMVErsRjds4JmlS1n8xBOUEVegJLD/4Ycz64gjcKJRWZEvlYSwxmJC\nqlV2UyoJGY3HSXd389NrryWcyeAgBcEJc+dy0JQpQmTzeSkqCgVjh6lyrBEjZBwl+36ZDJgkYM0I\nKBbBcahEIqxYvpwXXnyRjdUqW1wXz3UZXatx5PTpnPrBDzLBn2qsRZrjyFieJ8+oWqWnWuWeJ55g\n+erVlIBaIECj0WD85Ml87CMfYeyUKfI5DC8Q4/FBmZhXLvPk449z6513sjaXo+K6VF2XWDTKZeef\nz4c+8AFxPdIwNnVZ0mcBZnU/mZTjhkvQ9HnA0CZ2/7zy7zLtDnZWCOwJ2SAWFm8DbFFgYWFhYbFz\nDJdXKFFqrso6lQperWaIZyg0tElzVw2guZwQXF3FD4WEcCaTZudg5MihHvOeBz09vPjEE/zw+uvZ\nnslQa5LbE44+mk9efDEJEDLZ0iINutWqENdkUgqFTAZCIYquy10LF7LulVdkNRwIRCLMmTOHfSZP\nlmvs7zfX77oylrrdVKuDTb+Fcpmf/vznrE2nGQkkQyHef845HNTVZVxz1F9frTpVMqR/Hz1aXuvt\nlXvesEEIcyBgntnIkdDfT6VQYP0rr/DCq6+ypVAgABSAUKNB59SpXHLaaRwwapTpywDjYqT9Hr29\n0NdHORBg2dq1LH3uOfrrdapA2XFItbYyf948Djr8cMaOGmWah9W2NB6Xr5YWyOdZvWIFN11/PatX\nrqTieSQch0ajwRHHHcfnrrySsWovqtIp3VkIBs1Y1arsOuj8eStE3D9P/Vka/r4L/zFvNvaekA1i\nYfE2wRYFFhYWFhY7x3B5hQZGKQoFAoWC2GiWy8aC0m8puTMy1dcnBL1aNZanGlClv+t5ajVwXRo9\nPdx+8838/ve/p9pokHAcQq7LRy+7jDNPPRVHdfY6jvr6q699sQiBAP35PD/90Y/Y8OqrxBCv/X3H\nj+eDp55KpzbtgtxLKiVk3XHk93zeEPpAgHo4zP+79loKr73GPgg5P+Oiizho1izx61dXnkZDgs3U\nZ1+Linpd/rZ9u2ke1kZiJcyhEMTj9K5bx6rHHuOlV16hLZ8njKQibwDcUaP4+Pvfz5HnnIPb3w+b\nN8OmTXIvsZisuLe2ynOv1/GiUVb39vLcSy/Rnc1SQZqIXeCIk07izLPOIrtlC41gcDC3gP5+2cHo\n7Bzs7ciXSvzid79jya9/Tahep+J5eK5Ly4gR/MPFF3PkGWeYz1H7FsJhuRaVR2k4mNqq6k6Kkvqd\nzUf9eThh1z4ELQJ0N2F4XsafKwp29potCizeBbBFgYWFhYXFruGXT+RyQsSaxMn1p/Aq8vk3t3Qc\nnn+QyQhZbGsTMheLDT3ecRjIZrnmqqt4YckSAp5H1PMY09rKpZ/4BFNnzDCadE37LRZNAFgmIw47\ntRpp4Pvf+x4bN26k6rpkPI95J53E+R/+MBHNC8hmjdtNICD3kssNynYolwcbYRc98QTrnnuOUYj+\n/oT3vY/Dpk+Xv48YIURYdxo6OuR6tACo1czKfSZjeiY0zblZlGyt11m8cCFrnnqKar1ODGhBipmg\n63LM3LkcefTRRNrbTeKxyoO0UNPG5s5OXiuX+dMDD5BbswaAASAHHDJqFOfNn8+EI4+EWo2BSESK\nApWQhcPSXJ1IQK3Gw4sWce33vkd3dzddtRqVpkvSaaecwplnnkmirc3Mm7Y2mReaGt3MVgMuAAAg\nAElEQVTWJq97njxr7SHQ3SL/XGlKnEgkzOeyM4mays90d8nCwuItwxYFFhYWFha7D9/qrVOpCHGE\noU2hil15x6ucpBn0NRhIlc0an/qmo8yr69Zx5f/9v1TWrRu0Gz1w3335+IUX0jlunLwvnTYr2tms\nsSBtaRnU8W/yPL72wx9S2LqVCtAbCPDJyy7jQ6edJuR8YMAkEbvu0F2RQEC+VCZVrdKzfDk77ruP\n/RCbzYNnz+bYww+XAqRSgcmTpcBpNGRM3cGoVIyuPxqVv2tOQiIBnoc3MMD6gQGeXbqUJ9aupe55\ndCEEvgokEwkO2W8/9j3oINrHjJHriselCbhUMkWSXns4zKbeXm6/7TaefOYZakDCcQgCkVSKD5x4\nIscdfDCBlpbBoK9GNIqjrkAgRc2oUWxat47vf+1rPP/II1SBkOPgOQ4HTp7M+R//OPtMmiQ7ASNH\nihzIby+6115mp0R3CvxhYsP7TtSyNRiU55ROv1HjP1yiNnwHQeVobzYnh89Z60hk8S6FLQosLCws\nLHYfuloL1Ftbcf2kD4zcxu8wpPILv6TD/x4QAq3yj3AYajXueeAB/u1rXyNUKBBHQsBOPukkPvTe\n9xJyXSGUra2SZVAsCiHWQDDPkxXoapW1K1fyk//3/8hks/QFAsRdl8/+279x2vveZyw+Fc1GZPr7\n5TrU8adYlGPDYcjneXXpUlJABzCmrY1TDjxQjgsEhNwr+Q0GpeAYGJBno8R7/XopPmIxOcbzSPf3\ns7Gvj/UrVpAvFMgCrcB2x2GD5zFu3DhOnjGDgw45hIgGu2kzdlubFAV9fSbwq14nncvx5KJF3L5s\nGX31OlXXZUsgQCIQ4KMnnsgHzjiDzqa0ajA0LhAgsG4djXp98LOsAL+4/nq++6MfESkUSACtnsfY\nRIKPfOQjzJs7F3fECPn82tpMg3gyafpN9Jq14ToeNwFy6hSk8O8IKLSwGn7crhyFIpE3ul7tTlGg\n79/d91hY/C+BLQosLCwsLHYffpIUj+NlMkJ4YWjSsDoM6aprOm0InMpRikUh8dpo2pTlVEslrv7R\nj7j5v/+buuNQdxzCiQRXfOYznHDooUIqo1EjNWppgY0bZTU5GpWvWg3WrWPF8uX8/NprqRQKdDgO\ntXCYz//zPzPnpJOMA1B/v9xDLmeccYpFuR91/KnV5PoLBdLpNH07dhBD/hM9aMoUgr29xkK0s1Ou\nsVKRcctlGbPRMMFpzT6HQijEpo0bWbt+PZu7u8kjLkhhxB410Rz/6AULOGj6dJwtW+RatPG3XDaF\nxsDA4G5LMZvlxSVLWPr882yrVgk305L7gWMXLOCKSy+VDIZKBV57TQh3pTLoguR5Ho1mkvBzr73G\nlT/4AS+sXk0ZGON5hIGTTj2Vi88+m0595iNHyucRjUpxpU3iw3Mo9PNWCVlzh+RNtfuVytCi4M2I\n+u4S+V25DNlCwOJdClsUWFhYWLwbsTu2izs7Rkl+Loc7MCDuQ6qdVx378PdWKmYFO5EQUqjynNZW\neV9zFb6/0eBfvvAF1ixbRpfjkHEc2idN4lvf/jZTRo40oV+FgoxXLMp4bW3GJchxIBrluYce4pob\nbyRYqeA5DrFkkm9cein7HXaYIdSZjOmVyGbNc9CMgmY676DsKZ+nODBAEGnMjUajjIpGhZAnk0KM\nmwXJoA1qMilFQaEAvb0U83m27tjBttWr2bB5MznPQ/dP6khYmOu67Dd1KlMPPZQx48fD2LFSBO21\nl1zvwIDpSXBdKbr6+6lXq7z46quseOwxvGJx8Dod4JBp0zjriis4cO5cI1nKZIw2X59ntUojFiNb\nqXDVD37A7ffeyw7Xpew4VB2Hyfvtx9c/8QmmT51qdkOSSdMfEImYZ6Yr9pq6PFzv77cO9RcF/vmm\n4+iuil8e9JfaiVqXIQuLN8AWBRYWFhbvNuwOIdJjNOwKZBdAG2/zeTzA9TcO53JGspFImHF27BAS\nq446CtWcb98O9To7urv5ty9/me5162gByp7HvNmzueLKK2mZOlUIa2vrIDmnp8ckLnd0yGvBINRq\nLHr4YW772c+IAdVGg7aODj7zj//IxNGj5Vq3bBFCXK+bxOOBAbPbEI8beU61agLGPI98rQZIYnAs\nHjd+++GwFBFqf1qpQDCI19/PtoEBNm/eTM+GDWzZvp0qQtY9oBfpSwgBM0aOZMrEiUw8+GBSKsUq\nl+X8Kg8aGJDiyPPkXLUaBAKsWrOGRx5+mPS2bSSBCFJkdIwYwZmnn84h73kPzqhRIrcaGDCSq2BQ\nnuvWrRAOUwoGeeqRR7jl8cfZWCiwIxCg33VJJBL8+xe/yGVnnUUwnTbSH028VuvV4Q3B2pegzcZq\nQet3mRqOcNg4EhWLptDQOVWtDu1H2N157T92Z6/ZosDiXQxbFFhYWFi82/BmhEjJnK6e+0nW1q1C\ngAFCIRz/+wcGhiYSa7OvykLUEUfh15F7HmvWreOrX/wite5uXMeBRoNzPvIRzjrvPBzXFfKrun71\num9pEZcfHbe56v3oM89w9XXXEXQcOhoNxnZ1cfnllzOqo8MQVs1KKJXk5/5+05OQyciKf0uLnEdD\n1lwXWluptrZSQhyAunt76Xv9dSZNmkQwFCLY20ulWCS3fTuZgQG2Z7OU02kK1SoRZBegCOQR0u4A\nwZEjmTtzJocefDBdqrlXjb/rGhlSqSTXks2ahuVikdd37ODRJUtYsXYtQaT3oh8YGYtxxNFHc+gx\nxxBKJGQ8dT8KBMxuSZN0N0aP5snHHuOeW2+lu6eHKDAqEKACnDJ/Pl/7xjfYS4uRtjYpnPTaNCTO\n88yOixJszQro6hp67Z431G1oOCEPh40czed6NWhZurNdgl3NawsLiz8LWxRYWFhYWAj8K63lsvjd\n+1f3q1Uh0KoBr1bx1H2oUBASDaZnYGDAWIQqaRwYEELoW+Vd9vzzfOWzn8Xr76fd8wgFg1z0yU9y\n/MknCxGORKRhuV43BUB/vwnAUjvRTIYVGzfygx//mB2BAFXHYd+xY/nHCy6gU1ekXVeIsVpdqhSn\nv1/uX0O/qlX5Ho/LsYp4nP2PP57n166lJ50mCqRffpkVL79Ms7OCEDAaKRpCQAzZEcgCaYS0j0ul\n6Jg8mSkHH8zEAw/E0QyEWk0KkXpdPoNYzASm9fYOOi156TTrt2/npZdfZnlPDwWk6bkIBMNhDp0z\nh6Nnzyal3v8gn0MmI8Rcm6EBHIdXli3jD3fcwbq1a2k4DvFGg1bHoaOri69cfjlHLVgg1+G3/KzV\nZCzHkV0fJd9v1hCs16Ofv/YKKNHflfxn+A6Av4H4L4F1GbKweANsUWBhYWHxboPKXPzkK5Ua2gOg\nTaBNCcxgQ7Ae73l4oRCOes0nEvK6rv77m0q7ukSu09tr+gja2sTr/957+fKnPoWbyzEKiEejXH7Z\nZcyYPdu4GBWLRhqkgWD5vHEJqlSgXmdzOs23r74aymVCgQCTxo7ly9/8Jh2BgByXy4l0RhN6NWwt\nnxey3WzGpbV10AEJMOnCtRqUSgSrVebMm8cf776bQrGIg6z4N5AQMA1FCzZfSwPxUIgxe+3FYfvt\nx6QJE+gcPdpkGLiuyJbAkHXHkV2BWMzs2HgeXiDA2o0bWbN0KRuzWcoYGVIAmHbkkZy0YAGdyaQJ\nP2v2CQyO29s7mPy8Npfjpjvv5OHnnqMFiLouAc8j0dLC4XPncub55xMOh0UClsnIs1H5TiIh17c7\nuQA6p1RqpNB5pve4q0LA53q1S/L+Voi+dRmysHgDbFFgYWFh8WbY3cbFdwL0Xvxf1appBvUfFw4L\nAdSVfSXoSv4BEgkaoRCMGSPEWQsN1Zq3tcn3QsGElGlTbnc3t/zpT3zpX/8Vt1ql3XWJJJP80xe/\nyFRtqq3VZNxgUAi9hnwFg8YlqNnAnM7luPYXv6CRy5FoNEi2tfHtK66gQ+VAtZoQxp4eIeG6q+GX\npWiuQK0mxU0qZZ5JOm12JsJhJrW1celHP8rqnh5eW76cTE8PiXqdeihE0nEYFYvR3tZGa3s7He3t\ntCcSBIJBGD3aBIz503dbWuS5KfEOBuW5Ngm5l8vx+urVPPfCC+xIp4kguwJFoOI4HH7wwRw+ezZd\n48aJ5CYQkOtX+VPTVYhoVKxKe3u5/+67+eNzz9ED9AUCFBsNuuJxzjrpJGbNmEGotZUwmETori55\nBn19Jp04FDI9FCNGyPzwz5E3gzo2KXTHoKPDzEPddQiF3jwUD3af6O/M7vTPFRwWFu8C2KLAwsLC\nYld4pzmUvFkBM1wapD/r6n82O5QEg5CzVEqIvTZ2KjELh2nE4ziFgtHc5/NCIP3nLBSkF0FX3T0P\nr1zmpmuu4dpf/pJRQNDzmNzVxVWf+hRjAwFZzfcHcClx1CAwDRNr/q2QzXLTb3/LwPbtJIFaLMb/\n+dSnGJPJCPH0PLn2YtHIcTRszXHEMadWk8KjWpW/O47R8Ktdp+uaJuRMhmA4zH777cd+++1nGpZH\njTIhaLGYcfQpl+X6MxkjndE+i1zO3KP2XzSbmhubNvHa0qUse/ZZtvf1kUOah11ELnTolCkceMQR\ndLa3Sx9Ea6vZIWhpgXHj5Pk3C8BsIMDCp57i4UWLGCiVyLouBdfFcRxOfP/7+eTHP05XKsWaF1/E\n0WJKV/Z1l0YzBsA8m3rdzJMRI4buFqlsaGfOQ42GcSDSsf3zVf+mLlC++bdT/LnC3f/vQH/WwmxP\n//dtYfE3hi0KLCwsLHaFd1Lj4p8rYIbfy/DQMYXjmN2DREIKAz9ZU29/wMnncfN5IYT9/UIQ29rM\n6vGOHWanwPOgXqeey3HjTTdxx/33E3Icop7H9AkT+OJll9EZDhuiuG2bkdeMGGGIcj5vGo1DIeod\nHfzuxhtZs349YaAUCHDZhRcyVcljOi3XV6sZZyR/oq6mF7e0DHX6KRQMsS2X5W/5vOlf0OJBr1ef\nT7lsGpa1oAoETIpxLifnrNcNcVc7z2hUSH0ySb1QYNkTT/DSokXs6OsjDpSAzUAkHOaoI45g3qxZ\ndOo1V6tybdGoCSHT1zIZqqUSix99lD8tXEhvNksfsKFZiMw+4ggu/cQnmLL//vKZOw5eZyd1tZp1\nHJkHiYQpEgoF2fHRZnJ1adK54w8j02J1uDxIG9IVKiXyv0fnqBad6kL0l/4b9P878Mvl/Ne6J/77\ntrD4O8AWBRYWFhb/G/BWCphdvabJs+3txqFn2zYj3fB7yFcquJkMjko8CgUhjIWCHK/krl4f7Emo\nhUL89Cc/4YUnnsB1HEKBAIcccghXfu5ztGzbZixACwUhoEo0/fKesWOFGNbr0NfH7+68k4dfeomo\n45DyPD5wxhkcNnasIZDanJxOC+F2XWOLGY/L6npPj5xDQ7f02alEJhaTa9ImWyXwnidNy5GI/F2d\ng3RXQQsM/R6Nys87dsgznjZNnmuhIH+v1yk1Gjz1+OM8tHAh1a1baRq7kgMaoRAnHHMMx51yCp0q\nzdLwuGzWZCE0iT2lEt7WrSxdsoSbfv97WL+eBNLvUAoGmbzvvnz605/mPYcfborEZkFR7+oiEArB\nhAlmjiSTxoJUk6O14IvFzI6Hrur7iyqdE1pg6qq/f6cgmTSJ2PqluxR+xyFL2i0s/iawRYGFhYXF\nrvBOdSjRVVbtAxgePKYNwcOP8QdJgRAyJYF+7X1T5+34U2mH243639/SQr1Q4D+vuYYXn3ySsufR\nCAQ4+T3v4R8+8QkiritkvFYzq+jRqKxOx+NCMkF+VoeeWo0VPT384Z57iLoujudx3IIFzPvgByWh\nN5MxvQelkpEdVatSHKRSJoVXi4dcTs6poWV+lxtdNW80ZJyWFkN4o1E5XosiJbbZrIwXjUrxoLsK\nwaApEJJJ0fjn8zyyeDEPPvIItYEBHM+jA6gC0UiEg484giPnzROZkJJzfcadnaaRNxIZTE5etWED\nv7r1Vl5asYKQ55EMBMh6HvGRI7nk0ks55f3vJ+B5xv5UP69SCbdQoBGNmrwJ3V1JJk3REQyawkSd\niNrazBz0S4h03unOg/7sb3BX4q8FRTo9dF79Nf7tDf93oLsXf81zWFi8Q2GLAgsLC4td4Z3kUOL3\nch9OevRnMPeieQPDdd8aWNbfb9xq1PZTm4ebUhqvUhH3IUWxaM6jJDoUot7by0+vuYYnn3iCkuPg\nBQKcMXcuF59zDq423Sr5Vu96lS45jlmV1pVpx6EaCnHjNdcwslrFAfadNo1zPvYxGUv98pWEq05f\nNfx6TDxuCqT2dmMFqjsmukqtOxgjRpgdBr1f1zUr2JorEI+bHgUtIkC+x2KG/GazvF4u88i997Ls\n2WcpVau4nkcKcROKxmK858gjmTlzJh2RiLw/kZAG5M2bzWetuQHNoLgdr77Kvc8/z+IXXqAKBAMB\nwp6Hk0zyvjPOYP655xKbNEl2GPSZg5FmtbcDmBwKLQa0F8LzjEtSpSLPAQYlXW9pznrezkm5Fgxa\nEPqL2/8J/P8OVE7m/9ue+u/bwuLvAFsUWFhYWLwZ/t5E4S91O/J7xPtXYnXMXZGq4c3I6iCkTb3N\nILHBlelczhDgeByvWjVe9V1dQijVKQho5HJcf801LHnsMRJAwHE4ZsECPnbBBVJQaH9AImGchXR3\nolQSwuk/f1O6cv/dd9O/bh1hIByNcv455+C6row1cqRxySkUhFzG44aAxmLmXqJRQ3gzGXl+yaQc\nq4VNLidFVGuraUDWokl7CBxHCgrXNX0M0ah8gZD2ZqFSbTRYtXw5969axdNr1hCr14kBSc8jALR2\ndHD4sccy+5BDaC0WjYwpmTT2ohpEpgWP65LesYNnnnmGpcuWUWo0iALlpgRn3skn84Fzz6VzxIhB\n0k8oJM+9XJb76e2V5zR6NI14HLdQkPtpbzeFDJgdDt2Z6OqSZ+F3HfJ/39Vu258ruofb2/61/i1a\n8m9hsVPYosDCwsJiT8H/1O1IiePu+Mbv7Ny5nNGI6yquktJqVQijX+sdDOK1tJjALy0Wmu9tBAJc\nc+21LH78cRJAzXF479y5XPzhD+MUi7IToCvLoZCQ+b33Ng29a9YI2VQ3omZDazqT4dk77sD1PAKe\nx4J58+hqb5ciIJ2WFXB14OnpMTscjYa5R5XM9PaaHY4xY4yTEsgYweDQ9NzhIVya6KuyJyXBWpyo\nHWs8TjqbZfmKFTz/yitkcznSQJOeEwX2mTiRObNnM33//Qm1tsr1DQzIdesOQ70uz0Mbvjs6SGez\nPHTPPbz85JMEajWqyE5DzXGYftRRnPWxjzF+2jRTgOnuizYPb9wozyAYNLkIQKPZ9LxTLb/ev2Y+\nqBQtFBoSTPdnif+fI+iWwFtY/N1giwILCwuLPQV/Dbejv6QPwi9D0YZQXaFtElr/SreO2UgkpK+g\nWjWuN00bUi8e5/vf/z4PLlxIi+MQrteZc9xxXHz66biqw9cMBL9URz3wtcE4EJDjBgbkPaNHs/jp\np6mUy3iuS8tee3HMvHkm3MzzRO+vjjijRsm9xeNCrtVtSM8ZCpkiBOQY1dLnctIUrFp7zzON1Brq\n1tEhx/l7D5R49/XhOQ7rN23ixdWrWbN6NVWggASaVR0HJxhk+qxZnDJzJvvoTkQoZHYatNjSxuZk\nUgqfQIDttRqLfv97Hl+8GCoVakACCAN7T5rEhR/+MFOPPloKrXHjzD3454RfTuazBnULBRojRsj9\n7Wx3SV9LJt8434anDVtib2HxjoAtCiwsLCz+N+Ev6YPwH6uEVxtL1XNeiwSVsjS9/p1CQeQjmsjb\nLAp+ecst3H3bbYQA1/M4cs4cLvzoR3F1xR+E+GYyRqY0YoRpBFa9+9atJivAcahXKix79FFJDG40\nOPXkkwlp4vI++4iUR7MR+vuF7KZSMma5LD9rOrGmGuvKOQihd92huQX6PDxPXlfb1WLR6NIDAdNL\nEAiQXrOG7nXrWNvdTbpUYsD3uEtAS2srs+bM4ZiTT6YzFjONyq2t8lw02EubejXzwHHozmRY9MAD\nPPjccxRrNUqOQ7CZNdA+aRIfOvVUZs6ciZNKmWvN5eTedVVfi039nB3HNBXXamJLujtz553Ud2Nh\nYfGmsEWBhYWFxZ6Ct7rKv6v+g50RM3+Ksf8YP6lTCYjKQnQlXUPIQiEpAJJJyOVwqlU8bbzV1NxQ\niLuXLuVH119P3HGoATOOO44LLr8ct1Ix2v102nj+q+VpoSDSGLXbDASM539zl+LVV14h39dHGehI\npZgxZYoQ5mTSEHWVB0WjhrSHQmYXoFg0uQJalOhz14ZkJfog16J2m6471IVJexbCYdKNBmteeIFN\nK1bg9vWhLbdxoL/58/gxYzhh9mwOmjWLsBYsfX1mVySRkPN1dsp9RaODn8u6bJa7b7+dZY8+iluv\nU3Jd8o6D4ziMmj6dD192GcfMmCGhYyp9qlalwCoW5Xr9OwXN7AjicXP/zSKh3tr61mRrzWMrFajk\ndj0NLSws9lzYosDCwsJiT8FbWXV9K/0Heqz/PcODonp75WdtPlXLza1bTWNrMPjGa1LC3CTkS194\ngS9ddRU1x6HqOMyZOZMrvvxlsb7UZF+1B63XTZNyvS7jqW1oW5sQdnWJSSSgXmfT+vUUEM38Pu95\nD5HOThPWlU4PrnIPfvdnKGiqbjZrdiKU/Luu3F9rq7Ew1SKgXJZxYjF5rVQa3C3J1+usXruWZa+/\nzuuvv04n0h/Qgbj3lIEGcPB++7HvrFmMmzRJriUalbG2bJFxW1qMhWosJkVB8xrXbt/OnXfeyf1P\nP029XicEBIJBAp7H1OnT+fDFFzNr3jzZGQAYP14+z95eeYbVqozZ1yfn0UJPG4UTiaGFX3s7Tk8P\n3s7kbG+Cd1oAuIWFxVDYosDCwsJiT8Luyn16e4faOWqImCb5+sfyJ7f6xwiHobvbrFTrzoCm1Wqf\ngf94fzqt54mDULOvYM3q1fzLl75EW6VCHth38mS++Z3vEE4mDSHNZAz51JX8ZuouLS1yjh07jOuP\n3l8kAn19ZLdsIYhIcPYeO1ZIdCRi5DW5nJEjqctQX598T6XEsadUMj0B0ajsIOhqealkZEUtLWZM\nvY56nVqpxLr163l5wwZWvfYalVqNGtCCaPrbABeIjhnD/vvvz/hR/5+9N4+S5CzPfH9fZERkZuRS\nVVlVXd3V3dV7q7u17xISEgILJAuwDNjGFvgYZowvHB/PvQzycgeGYxhb9gzWXDA29jEWl2sGMIOw\nwWySkEAb2ltCa+/7UtW1ZFbuGZERcf/48s2IKrX2lqwlnnPqZFZkxBeREV93Pc/7ve/zLiGTzepC\n5uHhKNWo3daio92O7EqlZ4NS7Jqb4zvf/jYP3XuvrkUwDFqmiRWGnHfWWXzggx/krAsvjArMxf3H\ndXXq1Oysfi8iR5qM2bYWaMVitJIiP+I0JA3dXgBeSw3AEyRI8HQkoiBBggQJXksQ21DprivCQMig\npNtA1Ngqfmx8FaJej8RFKhVF8cVdR4p341aT4lLkuqhqVbsIFQrMzs/z8U9/mnatRhFYOjLC5//i\nLxjsEVxKpahzrxQC5/NR/4NCQb+3bX394n8vtp7z85BKMRMENA0DIwwpimBRShNgx9FjZrNR5Fs+\nP3pUCyCpC1BKF+BmMlqQSLMzSSuSngY9q87ZIGCyUmHvkSNM79vHfKfDMSCPFgA2UABGR0bYuGIF\nS8fGKC1Zoh2IDEOPWSxGKUJSWzE8rK9HxJFl8dS+fdz49a+z9f77sYBa75pKYcjGs87itz74QU47\n9VS9qiHPSuaF3Lv5ef1spUBZxE61GvWaiLtFST1B7zmHYciL8LBKkCDBaxiJKEiQIEGCE4UX22Pg\nhUAi4dI4Ski1bev3YrE5MBA12Yp3vBUiHYY6gi5uQ1JM22pFTbriRcfx7yJR595P6Lr8z7/8SyaP\nHGEoDClks3z2U59ifHhYH9dsRnaXK1fqlYBjx/RYmUxkG1oq6f0OH9akuVTS201TR/NzOZaOjpJ6\n8kkMpZjdtk2Pl8vpCLc0JZub06R4ZkZfq+9HDbZyuai2YG5OCwWpExgc1NttG3dujv0PPcSRHTs4\numcPs3Nz+MBhtAAYQAsCAGd0lAvWrGHjunUMj47q8cXa1XEiwSMpQ4cPa1IuXY17bj3b9+/nKz/9\nKXc/9BCZMMTq2ZwOhCFnn3MO7/q1X+Oks8/WY/T6NfQLvyuVyEFJnqe4OIkAKZVwlYU774GdxlY2\n2HldA+DaesrGplr4QhqR8eKMrxIkSPDqQSIKEiRIkOBE4JVKqI6LDtDks9mM0m4kv1+Iu2FoUaCU\nJp8SCZcUEseJxpSeBLKPkEIpPpZmUmHYP08I3Piv/8ov7rmHFUGAAfxfH/0oG5ct08Rcov+uq0XB\n0JA+5+go7N2rx1+xInL6mZyMVhREEEiTsEKBpcuXMwgQhtyzdSubTjuNtStW6Ci57+txbVsT8Xpd\nfyfpNCzFy9JFWUQREHY6TLbb7L3vPh46epTpJ55gwHUJWUiUh9B2ok6hwJlbtnDSOeewZuNG1NGj\nfeehPgmX+29Z2hpVUqd8X+9rWZBKsX3bNr73s59x01NPEfSKm6cMgyW+zyUXXcSvvfvdrDvppEjc\nSJqRRPrDMKp7sCzqrZBODVAl0kZI3u6CaeIOjtKxczAwBOk0NSuPJzrCKujVDk/Phbpn43o2c3NP\nr0mXafhsNevx7QkSJHhtIBEFCRIkSHAi8EolVNt2VDwKCz3+Jb9ffhc7zXrMDiZecyDdeWWFwPOi\nglfx5K/VIp9+ERW9DrjG9DT7d+/mb264ATMMWeP7XHbJJVwwMRGtWoAm/Z4XjTcyolcyRkc10ZWG\nYiIMDEMLHNfV11Mo9Dsen7V2LfcvX8784cPMuC5f+sd/5C3nnsup55/PxLJl+lpHRqKiYomqj4xA\nrUZoWcx1Oszs38/8/v0cbjaZmp2lOTlJvdOhBXjAGPoPZACk0MKgNDbG6IYNjF2fQ44AACAASURB\nVJ93HmvWrCElKwuViib9lYq+ZumsLJ2SJXVHCp5TKbqpFI8+/jh3/vzn/GL/fspA2bLIhiGeUlz+\nznfyf7zznWwYH48KhWdnwfNwCyXc0IYG2A7YyuvPg3pb0epaqIwizOVoeR44kB9xcJ1RyBVwsfG6\nirlGnjCMGhx3QvBcWzc5DtN4nupfety06Nn0byIEEiR47SIRBQkSJEjwWsLxGJfk5svnEu2XiL+w\ntnZ7YbdZaTzVbGrimctpst5oRNae0vCr09FiRPz7laJTq/H/fvnLpNptskqxZN06rnrnO6PofKcT\nNT2TaH+1qlcupNNvEESrGmKJKmkxInh8X+9TLGJ6Hu+66iq+e8MNhN0uFd/nrnvv5fZ77yUzNERp\ndJT8ihU42Sy5ZhOzXke1WjSVYq5cZle5TLvRYDk6/acGVNG2oUW0AGgBDWCoWGTD0qUsX7qU0eFh\nBkolLXCkFqFQ0NfXbkdFy7LSkU7rbfJdetanlSDgsSee4O6HHqJcLtNRimnDoGaaBKbJBVe+mw99\n6HdZtX4jduUYBB39bLpdKBZxu4pOaOFiEba7NJWNiYKWTegPMN8GZVugFEFhCVYuTahc8ksA8rih\nrTPJbBu3Ht12mRKNhpQ8GP3pE68xj9etx5EUFCdI8NpHIgoSJEiQ4ERgcUK1EFxxrnkpjCmeqyFe\n/7LN83R+vqwcSDddiernctHKgdQgpNNRobFlRcRd6hPy+SgfXX5Ak/12ux9a/va//AtzU1OsCALy\njsN/uOYabEmZgWhV4tgxPV4up69PagxMU68cyPjpdFR0u3Spfj80FK0w9MLVq5Yv5/0f+AC3/9u/\ncXh2ljaa2NfKZWbLZdydOyEMyQHDgNX7aaG7CdtAHfDRfwQHgC5wDGin07hBgB2GTFaruNUqk3v2\n4Ns27tgY2fFxBpcvZ3j9ejafeio5ieJnMtF3GR7W3+HYMb1a4jgcaTZ55K67eOLxxym7LgHQUIp5\nwEmnufCKK/jV3/1PDC/bQIii2QypNHMYnkmmaJM35rEti3rTptVO42JjWmmaXp65mk0udCiYDVp4\neF2b9EgeM5enY9lQsGEZMOdSmYLAtLFsu595FC8ZiZcReF6/Z1y/X12CBAlev0hEQYIECRKcCCxu\nAgYL873j+yze77n6EdRqC0VBPLc/CHTaihSxSsR/bEy/D4J+rjm2rQm7kPXFIV/Livz7JyejDsBz\nc5GAKBZhcJDHduzgB3feyXgYkgV++9d/nWXFoj5W8vbT6YVuSGHYt9vEMHTKjfRP8H1NpqUwWN6L\nOEml9H3odU5e4jhc/d73cmDHDvbu3s3WgwfpAJ5S5MKQTPzRAGnARa8OeGhREKBrBJze77NAy/NQ\nSlHwfVy02Oh0u7S6Xdy9e6nt3cvRVAoPyDgOZ593Hm++7DLO2LKFlLgb9Zx8wnSa7fv2cfd99/Hw\nEzuwMEmToq5sCF38gRJve8c7uexd72J4zTpa5PBDhWvnaTZCcPJYXh2z26Di5elYDjVl4XUhk4Za\nmKbcSNPuQCtUNLJFuiUbI2MTDtqRoVBef/cwZ2MORloyn19oxmTbkTEUhHieQRhGiz4iCpKC4gQJ\nXp9IREGCBAkSnCgIuRe70Dji+RUvpChZ3IYEUuQr+3a7unA3DDWzi1tgdjqaRMdzPoS4y/mko3C5\nrG07q9Uomi8ORa1WNGY6TVCp8KW/+isKYUgamDj3XM475xy9n1iYlkr6eoaHF/ZUkLSg+Xm97+Cg\nFgpTU1H+v1xDNqu3y7VK47ByGdJprHSadSedxLolS3jzOeewz3XZOTXF/slJ9s/Pk6rVSKNTghQ6\nPWgALQDqvW1p9IpBHd1foBQEdHvb0mjB4PZ+T/W2GUEAqRSdZpNf/PSnPHD77YytWMEf/M7vsHrt\nWuqmyd133MH9P/whew4doqEcLLOAGUIzDBhfPc5bfvndnHfp20kPDKCyNi3SdKwcpm3jYtNodHr6\nLk+YzeM6aV0ukq1Tm3SpdmwaKk/d1fPAsoCs1lODef24DEM/inw+evySMQaREJDXuLOtUgrbDvuL\nSvGpmRQUJ0jw+kQiChIkSJDglcazJWXH+gD0BYYZ+686XjMgv4s9aTwJXOwwjx3TBaqSJjQ+Ho0l\noeJGI/K1lyJj6Y47ORl1/e2tNvzsllvYu2sXg0FAxrL4nf/4H6N+AkrpvPvxcT1mJqOZ6cwMHDwY\nuRCJm1G1qlc6xLXHcSJBYZp6n3Ra3wfpPOx5hN0uR8tlDu3axdzevdSmp2mhm5rV5euhOwune9u7\naFGwxLIIxsYYLRbJp9PYhQL26CiZwUGK2Sx2Oo2pFMb8PN1ul3YY4nseM77PwXabg80mT27bxuzh\nw2QCm45ymDpU5Y//7Aus3rKRvfv2Umk3SacU7dxKYIBC6HLS6Zt583vey0mbTqfrKkh38R1Hp+l4\nNqGTJuvYdLBph+B7LqYLNVcLBdsG0yrhlfQUaMSaFUsjaMPQt3Dp0oW95qQ3XZzQK7WwxCQ+xRwn\nJJvVj+J4SIRAggSvPySiIEGCBAlOJOIdf+PM6fkwKEkVihcGu24U7Rfk8wtDvrWaflVKM0PpSisr\nFtIjIF5VKtepVOThLysEss/wsCb3mYxmnbZN98gRfvjNbxIGAa0w5IqLL2aZpDeZZlR8e+SIZqcy\nnggV349EkQiNWi3KTZHmY7atU6AyGb2C4brMK8X+HTs49OSTNPfuZa73/W10AzG/9zMAuvGWYTA8\nNMT44CCFoSFyQ0MUikVKjqOvTapqcznNprtdfX0jI7jTZVxnEFoNCm4bBkdwMg4TS8exlw7TCS2e\nfPwAD/z8Qe5+9EEaATSNHPv3VcliUwsDam6a0Bnl0re8m3dc9lZGR1ZgZm0mfZuUDXU8urMhqYyN\n6djkHOiENjOzMF+zSaVs0lnoNBe6x0r9crutb500X2639UJRoaBvZzyLrdOhby8q00dWAY4Hywpx\nXbVgSsfHTFYJEiR4/SERBQkSJEhwoiBiIN4QTHIzhFkJizpeUvbiguJ4kW88oVv2jduExtOTcrmo\nqDjesVaEAkRCQsYKw6hzsKQimaYOOUsq0ewsj951Fwemp3GUYrBQ4JKLLoocdiQ1SAqWw1CzWSnA\nHR2N6hOkD8FiS1VZGclkCIOAPYcO8eR997H74YeZ272bDDqNp+eiiYFOAwJwLIuVS5awZHiYwpYt\nLD/tNOxaTa9SBIH+kdB4NhulZvXEiass6sqgXc9hzE4TpNOE7TRGaONTwjQd6v4I3kGL+SDkzh01\ntu6bYyZYylGVp+t5NL0unpFieNU47/v1D/KWt1yF6w4yOws7ay5LUq4WMRmbVMYmCF2yoUu6C66y\nKc/bVKv6lpimvn2+H7nCKqUfR6sVaT9xQh0b086r8QbUMg2lNkBcap9NEMi00HUF0dQS/RafNqLn\npMwlQYIEr10koiBBggQJThTiaUFC3oUcC6RiU5yJIGJUcUEg7+PRfdlPinPlPKXSwtSjeM1Bq7Vw\ntUI+F5Yo40vjMumyK2IG9H7NJgC33H8/vlIMhCGXnnIKadfVBcOmqY+RmgDQqUvSuTfTK/1tt3Wd\ngBQjx++VZdGsVHhi2zbuOXSIBx95hPrcHKVulww6FShEFwjPA9l0mg1Ll7J6cJCR4WFKxSIql+un\nP7m1JvWuCZjYmRRYaepmjjDtoLou+bQDhklNFWlXuriYWri4Pt3MCH4nwOimqBsFwoaJmS+xbe8k\nD9y3nQf2HcD3UtTbJg2/RI08XeXRUAaBYXL62ou57LJr+nXeYahThCbrNkuWgKXAVBBaNmHWJkxD\nozdV8vmotlr0kjQwlj5sAwN6394CTt9wSsh+fCrGp4oQ+Phnx4v6B0GAZam+GDjeFBddKzpYxkiQ\nIMFrE4koSJAgQYKXgsXR/TiDeqZt4uQj9jBCzGX/SmVhHYHYilqWPrbnwAPoUG2jEdUHyBjlsn4/\nMBAxtXo96jkgKw2tlq45EG9KabzlONFYjgPz88yWyzz88MPkwxDT9zl70yYMcTtSSl+XjGkYEfEX\n96FmU69EyGqA40A6Tdf32bF7Nw899hj7HnuMyXabqVQKH8j0rEVTaDGwbGyMiXXrWL9iBSsKBUyl\n9JhBoMc0DFwrS63apUuX0Cli5pfSdAp0MgVUGBLmC9itGjXDw+8atIujtFWWbrlGTRXx09AshhiV\nWexUmx2H62w7NMW9Bx+hPr8LnwJNsoRAh2FUbgXrNl/Cqg1DfOMbf0/Kt7nzzqP8xm8EZLNGvy9c\nPq+/suNEUf/R0egW9XRX/3N5NNms3qdYjMozLCuaWlIDLtOpXl/oOtto6OOP15U4vmBVq0VasNs1\nnpXgP1dZzItJL3qxxyVIkODEIBEFCRIkSPBisZhVLe4EBcdnNs8mFKQRmaQexUk96M+y2Ug8NBrR\n6oGk7QihF5Y4Px+l6kiIudHQ7LJSifoHBIHOVfH9hR2Ne2lAD9x2G47vQxCwdvNm8qtX0xUxkM9H\njbzKZc1UZYUgCPT3q1b1mMUioWmyb26OR3bsYM+DD1Kv17WzD7owuOT7tJViVS7H+o0b2XTSSayf\nmGBY0qIcR3c97lXW1kOTDhk8VxGkbHzl4xlFWm0HL1OkrYbx0iOMlTzsNFS7y+gaWZodRdbw6GQH\nmMukma3oFY9dR4/y5NZD7Nj1OJX5Fh4hTQZoqVV0QhOLDOvXreb8M9/K+OqzabdtUinI5W6l0Zij\n2XTZuXOGoaEl/T5mo6PRbXIcfduXLNGPUgSBdA+2rKiPm9RlN5v6dWgoyn6SqSTZXlInLv3g4gtI\nIkQganWxeCrLYo+uJwiflum22Hlo8RR/IcZai/9JvJjjEiRIcOKQiIIECRIkeLFYHC6VdKG4M1A6\nHTGceMOxuBWMfCbbxsaiTsOLC5UlRBxPA3JdnaojY6RSkb+/9BYAPZ4koFer0fFKaTLfbkcEX6L6\nIl6aTab274cwJFSKUy+4AH/ZMk36Bwcjpttq6XOUy5qhjo1FofCxMaZaLR6+7z6euP9+jkxP4wJL\niRqM1YGRseVcetIWJs68gImMhRoexm7Vsb2WZtKdDq4XUg8swlSalhqg1QxwuwadXAnDDbFscK1h\nWqqAaxdod9LMqxVM2yXG8zUyhkurEdI0bKophe/Druk692x9hIe3PsievdO4jOOxEiijS5hDRobX\n8pYLT+OMM87Hslb3a8A7Ha2xRkaW0WgEQJo9e2Y477wl5PNaZwVB1MNtdFRPDcPQj2dkRI8xOxtp\nONuGZcsWLgyFoRYF+Z7tqGhEWeSRNCKZalJULP0Inu9UBvA89TQRIKZUUo6xuJb+eBlwnvfMLkbP\ndv7F+jpBggQvLxJRkCBBgjcGXqnchHghsLAapXSBretGbjfxUGjcnSd+bfGuUhDVCszNaUeeuTlN\nym1bk/hmU68EQBRmBs0aJf1IVhOkklXC2LVatH+hoNmppPkoBY0GM0eP0lIKXymWrFuH0e1ql5+R\nEc1ITVNfQyYTFfTWasxOTvLEk09y76OPsn33bopBwCCQ7d2yLpArFDh97VrWnHchhZWn0Ky06RZG\nqM7PYLlpAhXSSWdJ51LYG4eozXToOCtoY1GeU7QtsLplaqkxGiqNmc1CaGLYNn4qS5U8VVUiqOcJ\nTZuRokvDd6lU6tzz0DbufuAXPLptH76vUKpCSB4tU3wcJ8uWLVu48MJT2bhxPSMjOl9H9BVo0q8d\nUzO9b+biefp+mqb+zHFg5Up9W6R2YDFZTqc16Y83oe50onpzmR5C9uXz47XGEMg0jNcTyLbn04Ts\neP9cSqXj/5OKm28JJFstIfgJEry6kYiCBAkSvP7xcuUmxFlV3OIzvgogdi1CwoW5pdMLVxVEKMSv\nTXI8xLFHqj7LZU2+UylN3qUBmRQJi32NUloQxCHRfMfR11Ot6nGg7/rD7GwkCtLpvvA4Nj1NoBTN\nMGTFkiW0UyktCjxPCwqpg0inaVerPHnnnTz0yCP8Yvt2qt0u+TDECkNCYA4IswVO3XQGZ69bz4pV\na0gZKWqNkGMzgDNMs2bT6Syhe9ikZAXklhewMllUaYSWP0un7lKpmUy7Pt20gz2g6IxOcGTGptts\nk+tWyWU8zFKBSm4CV+Vx58F1De57eCe33/4gjz/+JM1mDvptzhqYZg3DKLBx4wpOOeV0NmzYRCaT\nZmBAL3wsWRLVZNdq+jY5jl4wmZ8/AjQAG9seodOJegcUi5FrLOjHuNi1J062ZVFJCo/h6fvHSXl8\nKj4TuT/e7+JGJJpUYFnPoDJixx9vTJny8W3PJQqer0BJkCDBy4dEFCRIkOD1j5crNyEewZdzSMg2\nHso93rnFKB4WhnglZ17YoySZm2aUmy/e/3I+yU0ZGYlWDXK5qKoVospVSWyXc0gYemREiwPX1bn6\nIkoKBR0Sn58nHQQ4vk/LNAlMk2BoCBWGenVidpagXuexBx/kvp/+lIceeACr1qZl2HihRTOVphFq\nB6Hlp2zklLf9Mus3nENqpkpQq1H1unS9FJWZBpXsAO7ASaTCOvNemq4PnbyLY+Zw8g6YObysQ7vT\noJq2mRzIcXguR8cawajYtJsuxYyLlxunYtmotI2yYHL/kzz55C948MEHqVRAdzjI9V67gGLTpnVc\ndtn7WbfuHBxniMOHtebyvMjRdHZW397BQf16+LDens26lMsH0W3TDDZsGOovnoyN6dvU6UQuQnL7\nF08lMaUSbSl93oSEPxvhF10qaT6LCX+854CcBxauIOjxwhf1z2NxxtzzXZRbnKaUFBonSPDKIxEF\nCRIkSPBSIOwlXt0pfvuLC46fqTfB4t9lZUNqBMQ+BqKovFKRmEildNhaOgQ7jm48JjkosjIgdp22\nrRltoxGNGQR6RUIsTMfG9GdTU1oUWBbZlSsJtm1j0Pc5umsXpTPOwDczHDzW4JZvfoebbvo+7pGj\npDGBFEMqQ1tBx8wxsvY03nTuOVxw1maYOIW5epaj0xUGCWiRZr6pqLUtmoaizhKOTq4kmwPPC8lk\nwRuwsRQMBopuBWrtIq7vUm+5VLs282aeVDpPrQqNho1RBFfNsm/XVh5/fB8HDjxGp3MEAKUMYDW6\nrNmhVBrljDPWc8opJ3P22cMsW6Zv49RU5PwjtQOi1bpd+q5CxaLeb/furcA8SgWMjgasXp0lCPTK\nwuhoVKYBUfFwvf70DLG4iZQ0IotPpXjD62cTCPHPpQxFjgtD/R1lbHHKFXHwUgi5FFMf75qeDYkQ\nSJDg3xeJKEiQIMHrH69EboKQeykElm2LC4UlTBtnevG8D3EhinedikM+k+25XJTLItWk0qVKmJnj\naGYq4WFxLBIz/CNHtCDwfc3oBgejOoRqVXc19n0mxsbY++STtJTi7sceY5OZ4Zaf3c1dDz+C54Yo\nNUzWPIus6VMIWvijDpecdzZbznkzA8s20G7DfnOY6kwOo1EjHeaozQ/SrnvMBQPUUg7NfJ5ZRqj6\nedrHIGe5DCqXoAr5kk2zZWPbuk9By4CWA50UFAfB99vs3n2IXbsmueWWXVQqe4A2EGAYkxhGizAc\nwPdhcNBmy5azWbXqVPL5FWQyisFBfTvk1klUv9XSGks+GxqKSiekf1ynA7ff/n1M8zC+P8IFF5zH\nwIA+TspIQN/OWk1rrlwuytASxHVi3PtfFp0WN7wOw4WFxZJhtngFQgi3jCmrBPEpGn8fPlOBwnMg\nnvYUP29C9hMkePUjEQUJEiR4/ePlzk04ngWpUgutYISIDw8v9ImUfSGynIl3rJI+ANJHIJ3WYWfL\n0mQ+CHReitQK2LYm9GIpKixWmKfUIwwM6NdyWTsXSY6J9Ddot/sh8Ho7pFKDwbHz6Rp7cJXLt2++\nD//WBxi0FUbKoeaMgLcEw0qz+YwzWH3yW5jYfDqZVpnpTpP5ik126RCzfon6nIvfUhTSGeazwzQ8\nl8acx3zDopMr0VD5/m3MDthYeZs60G0CTVi1Sl9etxtSr0+xY8ceDh16mJ07t9Nq5YBxdH1AGv1n\nbhqlGixfXuLkky/ktNPO59RTt7B/f4pjxyLTpXYbDh7U76X9g2FEtd1BoG+t1GNLdlYYwtGjs9xz\nzzbCMCSVmuL977+QsbGFXYTFVSiXizLBlNJTQpDPP7N+jRf2yu/NZpRatLgpmbSvOFHT/blq9eOl\nO3FBkwiCBAleG0hEQYIECd4YeLkdhwqFqMJSnHckxUecfwSLC58hyt1YHOaNJ4jLsZYVFRA3Gpql\nOo7eZts630VchmSfHTvot9d1HM1Ijx7VCfK+r5mq5+GGJm7XBNuBrk0rPUhZueybOcDjB+cJssup\n+iGeCVWjQD1waXQ9hifO5ryL38Xp516E3zJolF0OH4HBJcsIsjbdLkxoMx+qbZsOJRroiH8V6OSg\n6oPq2W+Kr388P93z2pTLB9m6dTc7dhxj//4j1Os9pUAbw/ABF6gAaVKpIVatGuLcc8/nV35lI+Pj\nq5mdVQSB/rrSeFlaMQwORv3XXFevDLRa+n2rFXUVnpvTt7rVil5vvfUndLs+huFz+ulbGBnRdqXS\nvBqi2nDT1McoFdV4y+OWAL30FYgTfXn8cbMq0XKL+xJIzwH5TMZf/P54ehZAyUU/w5Q9Xq1+Yiua\nIMFrG4koSJAgQYITAQnJxkOpz8SSFv++OKwLC1lhfLs4EUkiuiS7Lz6fkDrL0vvMzkbixPMiwWBZ\nuJjUK106cwEdM0umOEB3eBWdwOL+u7fyg+/fzcHHd5HuGrjhUiphjo7bpG16tPw8a08/h0t+6T2s\nXbsBz1N0fKh0bdJpCEytOcSDX7z1U6moxlkWSNJpHU3XrRPq2PY009NTHDw4yf79kxw5cphudw76\nPY4BQmAGSBMEbZYuHWP16lPYsGETK1eupljMYtv0U3kcJ2rJIBlVhUKk3Wq1qL7bMPS26Wl9vbLY\nIm0XWi1N9NvtWX70o2+hVJ0wDLnqqneybFnkGiTkvFjU41SrWkxI4+jFPe/kfshjX9wfr9OJ7tPQ\n0NPTf+K1A/HXfF5/JotBuVz0nZ5LMyeEP0GC1z8SUZAgQYJXH16pngInGouv9XhMKo7F4VdpJCaE\nP84KJd1oclIzwl6KkOsbuG0FLQ87YwIWrmvizncAEQEuNg42YPcYrWtmcZ1hXDdLaIa4nS61bo22\nn2X3TIG7797KnXd8n4P7ppjrDGD4JVxGAMWYk8brtqh02jSwmHqowj0PfZWRkQKnnLKZ4eExlBpj\nYqJIOl0ik1H9iHo+r8lxpVLH8xqUy3X27/cplzvMzTWo12epVqep1ytADZhG/6kyeq95YKD3WsO2\nU6xbt56zzlrFZZdtYnx8JY89pmujM5logWbPnmhlQKxBTTNyFpLGy0L402ktEFxXby+Vor5wpqkf\niePoMb/5za/TbFZIpSqsXr2Fq666rF+yAdE1SBaYOMVKd2Ih8vGpc7wVAtDXJcZR8cWneBG01ESE\nodaQspBVr+vvK4tM0hRt8bleLBJb0QQJXttIREGCBAleXXi5ego807leTvHxbCxJiP7i7fJeCpbn\n5nRot9XSLE93yIL5edymR8d0oDgA3S41KwvKIPBgvtbF7YCZNsmnXMJsljD00A25FB1P4WYHqYaj\nNCse9VaLQ67Dbff9glsf/B6NehWlGlSCDLVwGIvlbF67ktNOP4ORZZtpeA1+9KNbqBzai7b09JiZ\n8fjZz36Bjt6bgIlldbGsLrZdxTQr+H6adlvRatHbZxma5AdABvDQ6UCzQAddF9BGrwxYFArLGByc\nYMmSlWzatJTx8WUUCilGRjTZj7vyeF5EoCW1xvd15F/Sk0ZHI52Vy+l9fX+hZWgYRuNkMhGZHx6G\nQ4ce55ZbvoNSGcIwy0c/+lGKRbOv7aTAWB6p40SNooeGor4EIgpk0SiXe3pPAsHQkP5c7EdlGsl7\naXkRr3cXgWAu+qtfrz8/UfB8CH9iK5ogwWsbiShIkCDBqwuvVJ7CKyE+nosliSXoM1Vt9jpjueU6\nbrUFXRc7n8UezIHv49oWmDYMDoHnEbSg7ZRodm2axTqto2XCdohfgAEnxC6CqwxcQ1F2Hea9EtUW\nPLXtSb53873c9fDDKM8kFwYopagFQ5AvcfEZv8TJJ1/M0qVjdLuaNHfrGS677FKOHNnC/v0z7N+/\nA8+rAWX5AoCD5/l4Xotms4FpzhEEJjAE/Z7GNrrZVxYtWPJoUeECHQyjQRAoYAWQplarUqsd5uDB\nSR57zGFiosCZZ27gzDM3MjKS5tAhTbolDWhA66V+WUa9rslxqaTJsGlGU0FWCcbGdBRdmkUPDekx\npcA4l9O6bPfuNn/5l18mCIZQqssFF7yVSy55U/9xisGUZHIppY8Toygh49LsGhbWFByvWHdxsbGI\nn7jrkNSky3nl+Erl6aLg+eL5Ev5ECCRI8NpFIgoSJEjwxsQrJT6ejT2VSlGOipxb2GuP1bpNj46H\nZnOeR6fVxTV0xL9tOaiBAnY6jespKi0ot+ye132eZraA33Zpd+p4HZd03kYV8sy28xw+HHLP7fdy\n44038fiOw7ikMQyLUKWohQWGS5v4pTefz1vech62PUAY9sRATxQoBa1WyNjYKGvXnoZpXsjevfuZ\nnz/K1FSLanWOanUbnjePUh7gEwR5wCIIUoACfLQA8NB/jrq97R4iEoLARSmLMOz09gmAFmDiuh67\ndh1i166t3HSTw4c+9KsUi5tJpzX5jjd3lkbNYagJf7kcrSBISo0Q60wmcghqtXQBcj6vv3c2q1ck\nPA++8pX/zb59ZSCD48zyR3/0EWw7Iv7Hi6RbVhTlF+tOSfdpNKIVDVlp8Lyobj1eHyDjSd3CYrGg\nVNS3TuoG5DvF8UyrBGEYPs2WNCH8CRK8vpGIggQJEry68AZITJZ0Ea8Bqg6mcC8bbAV23tZEv9yg\nVlMEysGwPGzA9YCWgoJDizyVxhBuQ9+fMKUwgFYbWr5N17BxU9C2S5glR7UA0QAAIABJREFU7eXf\nbIbcdPOd/P3ff489e/YTBA4BDuDh+yYnnbSWSy99ByeddCaWleoX4pbLOqIt4kB79XdxXR3ODoIs\n4+ObWLlyE+vXa1I6MBCSTh9jevpxnnhiF7t3P0a57AEOOlWojfYfUr1trd7vAem0YnR0mIGBMQzD\nwnWLBEEW3w+Ym1NUKrXevm2gQbXa5K//+v/hiis+wNlnvxnQEf90WpN+qQMwzYjg12o6eu44muh3\nOloEtNuwYkWU+y9pP+m0frVtuO++n3PbbTejVAB0+NjHPsL69SswjGgVIrbY0yfuQ0MLbUIlVSg+\n5T0vGiPe2EyKhePCIN70On6850WNreX4eKoSRDXsx0MYhk9zIEqQIMHrG4koSJAgwasLr1Ri8ksR\nHy+hFkHKBOp16FZcCG2U0sebLuSVS2jZuOQJnRC/aELHxfdcWipNpQOtoICdHiK0bNq9dJjQsjEy\nNoYBM+3IYWZgQAhxwA9/eAt/93f/xM6du/C8CYJgCMhgmoqLL97Cu951BatWbehbcGYyegxJSXEc\nPZZh6J8wVCgVLmi23Om4zMwcYWpqPwcOTDE3txeltmEYld4dWIX+09MBbCyry9jYUoaHVzA8PMKq\nVUOMji5hdHQESPUdgKamdKS/WpVOvAFKTTIz8wgPPfRT6vVpoMPNN3+PpUvXYZrj/cj+qlVRapDr\n6u8hkXkpHq5WI9EzOKi/n2nq55TN6toDKQ7ev/8of//3fwM0CUOb8867iDe/+T24rr5n8VIQaTAm\n000KfxeXkNTr+vrCMKoneKYpGT9e2l/E+995nnZWiv8eFyLPp4bAMIzn3ilBggSvKySiIEGCBK88\nnotUvxQh8HwJ+zOJjxfSoQmeVouwOI1jMcplTQAlcu12dERXyOl8FZY5oJRNrlAg1VV45TqukaGR\nztMZyONi45uayJoWGEWd896a12MGQZT/HgQ+9913F//yL9/k0KFHAQhDE6V8MhmLN7/5Ai6//O1s\n2DCCbevIdrGof4JAk+BduyKSLMW28/OaXPt+SD7f5cCBXdx770EOHtxFt9tGpwY10HUBPkp5hKFF\nsWixbt3JrF17EhMTa1i2bIRCwWBgQN+XVksTXdOMUnCqVU1s45H9bNagWBzn7LPH+ZVfOZ+//dv/\nxt69B+h2G9x556388i9/kCCIcveHh3WkXESF7mocubQKKc9k9Ou+ffq4UkkT7G5XCwNwufbaP6fR\nOIJhZBkbG+FjH/swoJif1/dpdjZqVhYEURpPvJEZ6HNWKlHrCdmvUFjY8y5ePC0CIz6NpfbAdfV1\nxqetpCK9zhbbEiRI8DIgEQUJEiR4ZfFyFvi+0LGPZyH6Ijs0udh9f/g4SYubDUkjrna7Zxlp2bQq\nHSoVHR12HOj6NnNzmhjmcjYMlehYJaantXgoOugaXDSBlvSRcjlKGdFdeLs88sg93Hzzj5ic3IVS\nXZQqEYZdstlBLr30Ki655EqWLh2mUNBRcGmEJSsFvq/JubQ66Hb1tZfLUK2GTE1Ns337DrZv30+j\nEQLD6LqAVu+1imnWOPnkJZx11jtYseI8hofX4vspLEtfZzqtiXcqFd03sROVYPWxYxGRl8Zf9bq+\nl90ubNo0zPve9wdcd92nUCrgyJHdFAohtq169qfRM5A0G0mLEhFQqcDIiL4Psl+7HTn3OA7kciGf\n/ewn2b79ZyhVxDRzfOpT/4nVqwdpteDQIb0SkMloUSVNpcXJSF6l4FfqG4Igmlbx9CA5v7yX2oLF\n9ekiFOJCIEGCBAleKBJRkCBBglcWL0eBrzAnsWxZTOJfSFrQs1yb64JbBxaRsHod6kRNuWq1qLmU\nZUUuNxIllpxvx7FxFaRMF8uGwLKxHLvvJiMa5XjkURxKJYLebkszLZfHHtvKXXf9mNnZ/UCHMLSB\nFJnMAFdccTmXX/4ObHu4HykHfbwQ12YzKsKVZslzc/o8e/ZM89RTe9i16ymq1SNox6B076cFeBSL\nJTZvHuGMM1Zz1VUbGBoawPN0CtCBA1EjMBEa8ZSebBbWrNH36+hR/Xm3qz/zfX1NEtWXYuJiEXK5\n1WSza2i1jtFsHiQI5oBhwjBqMpbP66i/CIMg0OeTRmpCuDOZ6P7m8/q948Df/u3f853vfAfDcAlD\nj9/7vY+yceMp/bqBIOjNhbo+n9QftFrRGNKXQOYBRJ2SpTYgbh8q+0AkBqQOQfaNp/5LI7Y4EpGQ\nIEGC54MXJApuvfVWrr32WrZu3drf9vjjj/O+973vaft++MMf5g//8A8BcF2Xz33uc/zwhz+k2Wxy\n8cUX88lPfpIlkvSYIEGCBC8Ei3N0hAVJu1c44Uyov4hg6QTu+IJCrWMT9qLp1WoUaReyCVHqTdzV\nxjBgYNTGGbT7efkiIiTPXFJMwjCyz3QcffzIiD7fkSNQq7W5//77ueuunzI7W8EwOijVRKku+fwg\nV131Vi666Eqy2VI/+u84OtWlXteEe3xcn6NY1J9LXvzU1Cz33ruNBx7Yz9TUPFoC+eiGYgXAJ50e\nYP36Cc46a4Lx8ZWsWqX6ZkrVqh53YACWLdMEeHZWC4NMJurq22pFKTa1mv5MegZ0u5rAi0NPKqU/\nky69phng+y4iBFw31d+n0dBj+r7+bqVS5CQUz7mXdCOpYxga0tesFNx993f5u7/7O5TKAAWuuOLX\nufLKa2g2tQCo1fr95Oh29XcWsh7P6Y83HBPXIbmGuAWpXPPiOXi8qZ5OL6wTOBHtN47nPpQgQYLX\nN563KNi6dSvXXnvt07Zv27aNbDbLV7/61QXb44T/05/+NLfddht/8id/Qjab5frrr+cjH/lIL+KS\nFDMlSPCGwkt1F1qc4iNdn+RHuja9wFwKTaT08QuIVGyVYMF4rqudgPo5HFGUXdI9UilNeCXFRw4V\ncZDPw8RE5FADegxJ4xEhIK+gx5VVgeFh8P0mjz12CzfeeB/lcpUw7KKUSRjWGBgwuOqqX+eyy67A\nsgb6hHVmJkqTabWiiP3UlL620VFwXZ+77voFt932EI8+ehDdT2AInRZkAQGmaTE+voJTTjmZJUsm\nyGRSfRvNdluTb3mfTutzFItaaMj97Haj3H6xCQ0CfS2ep48bGND7S7pROh3ZgkpK1rFjM7iuCWQp\nFAIymcF+6o649rTbulZgbCxyf5VovJDs8fGI3A8O6mvctu0BPvvZz/buQYrzz7+Ij3zkE3Q6qi/c\nJP3JsqLOyfLsBgZYsCojz1l+QD+HbjcSErlctPAl90r2jY/jupHlqOBE1OYngiBBgjcenlMUuK7L\nV7/6Vb7whS/gOA7eotDF9u3bOemkkzjttNOOe/yBAwf47ne/y1/91V9x5ZVXArBp0yauuOIKbr31\nVi6//PIT8DUSJEjwmsFLdRfqHdePhjbAdl3sUmwc6dz0PMdesAoQQsd1oWcNuvj4vnjAJi1aJIzS\nTyCKascbRRUKUeEoRGkw+fzCwlIZYzGBlFqFVEqP3WzW+fKX/5VvfvNG5uZ8fH8YpSCVajMwkOK9\n7303b3/7lVhWoV9rMDurb43k6zebenxpkux5MD09y/e+9xAPPHAbx44dJQxzwFJ034AMEDIxMcaW\nLWswjCEMw2RkZKwfzTcMTYDlvViANpt6W7MJe/fqVQjQhFny+xsNvV1IrlJaHEgRskTTTVMLjno9\nWlHYvftJNGkPWbp0Fbat95uf19+v2dSvngeHD0eF1MWiPlcup38Wp1PVatv4r//1Y3S7umPx6tVr\n+MQn/huNhtW/nsHBKFVMioUHBhZah8rzi68aiFORpFNJ5lutFqVNSeGwdEZebD8KT8+WO5HGXSd6\nvAQJErx68Zyi4I477uAf/uEf+KM/+iPK5TI33HDDgs+3b9/Oxo0bn/H4e++9F4DLLrusv23VqlWs\nX7+eO++8MxEFCRK8EfES2cWCxQLT1iReCLWEgF+gTejia3MXObYIWVtchyzX4rqRDpH8eBm3UNCp\nKOWyJqKViiarQkBXroyIItBrPhalELVaen+AIKjy7W/fyLe+9RVmZ1OEYQalFIYxS6k0xPve92tc\nddU78Lxcn0CLP784E0mEWsZPp2H79t389Kf38+ijD9Lp1DEMnzC0CUMFmIyOrmbt2vVMTKwgmx3u\nNQM7uiAPvtWKiHi3q0l+Pq+Jd6ulv/fBg/pVipdbLS1WREBYVrQSAlE+PmjynclEKwTSoMuyfL77\n3a3opmeKzZvPwDD0Z1JL4PtRYbIItnI5siqVXgUS2R8ZgSee2MknPvEHVKs2YWgyOjrKtdf+Oe12\nkVpNX4Ncsy7u1uPIdxbCL5CGZPITLyqWAu96PRKOQ0P6VURTfM7F51ZcZ5/IGv6X0xMgQYIErz48\npyg49dRTue2228jn8/z1X//10z7fsWMH6XSaq6++ml27djE+Ps7HPvYxrr76agD27t3L6OgoGTG8\n7mHlypXs3bv3BH2NBAkSvGFg27i1zoLfSadxPbDT9Em9pHXAszdpegGn7ZM5gRA5idxaVuQP73mR\nLaikvSilU3emp6MC13JZk7+4baRkQTUakZDIZj2+/e2fcOONX6NePwA0gQJKwdiYw3vf+wGuuOId\npFJZZmejlJ1CQY8t+feGoV91Hr/Hgw/ez09+cjM7d84QBDotCHIEQYdiMc3ZZ7+ZdesuJAiW9gm5\n1Aik0wFhqPqWnkrp7dWqPj/0bFbnNbE/dizqKmzb+h5Uq5HLkOPo+1Op6HsnKTni1tRs6u8hBD6b\n1d/lzjt/TqWyHZ06NMA552zqP6+JCX2MFCm32/p9qxU9D0kTajb1mJ4Hhw7t5BOf+Djz8/M98VHi\nk5/8U5YuHemvsEghsePoMcbGohqHqSm9j0T4Ze6IEJPPpCOxiLRncsGVFCgZK50+vnnWYrzYGn6l\nFL7/9PTel6Ppd4IECV4deE5RMDY29oyfTU1NUalUOHDgAB//+McpFot8//vf54//+I8BuPrqq2k0\nGjiynhqD4zhMTk6+hEtPkCDBGxK2rY1uOotyGhTQI031epTXDdH7ZxMGQtSeiZjJZ7ICMDUVFYiO\njmqCJ6RPCJzjRCsIs7N6pUEKSOXYwUG9TSLBch7X1YKg2w257ba7+drXvsKhQ8d6nv8AA4yPD/OB\nD1zDFVdcSbWaZmYmKrHIZLT4OHQoItFjY2JjOsuPf3wr3//+TUxNlVGqSBBk0DfWYmJinLPOupgt\nW07BMLLU65rYy0pJGIoHv4lSQZ9ISwpUEERR+UwmchXy/cjZR0h/KkU/1SduxQlRND0ItHCQomHT\njIqGlarwox/dgGF0CALFpZdehmmmSaW02BoaityZpLg5/tyk4Zis7gQBHDiwi2uv/Rjz83OEYYZc\nLs+f/ul/Z+3aDX3Bls3qZz46GhVCC0QYiD2sFI/r5m6RiKzV9OvimgBYmD62eA6+EqQ86WacIMEb\nDy/JknRwcJCvfOUrbNy4keHhYQAuvPBCjh07xt/8zd9w9dVXP2ur9BdbZPzUU0+96GtO8OpEq5cf\nkDzb1x9ejmerSZ2x4P8W2w77ZGl62iAIFh5jGDA6umgjEoVVPZtQ1RsrABTNpv7dcUIcRzO5RkPR\naCjm5/X/X54Hk5Mhth0CCscJUUq/l1UEy4L5eUWrpahUFI2GQRAoMpmAwcGAI0dgYsLHccK+88zR\noyluv/0g//qv32ffvr0960kf8BgeHuOqq67mkkvOIwxTPPLIYer1FM2molo1aLVCDANSKaNHYEMK\nBR/PO8a99/6Mhx56nHa7jlIutj1FEBSx7WWsWXM+Z511GsuWLWF+XrFtW5VUah7H6dJopKjXLXw/\nwPehVkuRzfoYhqJcniUMQzKZLuk0eJ6JYYSMjHhMTQW9hmch9bq+J9VqqkeUQwYHPYIg4OBBRb1u\nUqkYvcJn3S05Op/Ze94+8/PQbIZ0Ol1uu+27zM3VCYIchUKBs846Bc/b33ueIa2WTxgaZDIhhqFo\nNlN0Ovo+Vyrg+0E/pWtw0Ofw4Sn+4i8+w/x8lTDM4jgm/+W//J8Ui2kOHtxDoRBimmG/ELjTkf4D\nIfPz9OaBnifdriKbDfvzs9VSuK7qiwLtiKQYGQmwrADPM3pFzyGmuXBu53Lhc4oBmctxxP9dQFRA\n/Fykv9Vq4fuKHTt2LCg6tqwgWSl4jSP5e/v6hTzbF4uXJArS6TQXXnjh07ZffPHF3HnnnTSbTfL5\nPA1JkIyh0WhQiIfGEiRIkOB5QpOSoE/iLSvENOkLAf16/KCDFhTRcdF7+R0aDaPXA0D1xwtD3bxK\nKU1YbTvsrQIoymVNOoeHg74I6HZDPM/oEcCQdluTRKBHFMNex2CFZfm4ruoRyZDDh4/x5S//G/ff\nvxvIEoY2SplkMnne855zuOSSK0mnDRwnpFpVzM2ZeB4EgRY3mrxDLqevp1qd5Pbbb+XRR/cDLkq5\nPVKoyOU2cMklF/PWt76JyckhpqdT7NuXwvchlQp1k7VQ0Wql8LwQy1JkswFBEFCtWqRSsgITUC5b\n5HIBuVyIYYQEQUi9bpDP+3ie6jkHhRiGTyqlGBz0WbmyS7erx9fPISAMDRwnYGCgCyiUMhgddWk0\nDJpNA98PMQyDp546ys9/vhOlhghDeNe7LseyTLpdRaejRUEYmjiOXl1ZuTIgCHwajVQvYAWdjur3\nQdCC4M+pVGoo5ZLJ5PnP//laVq7cAARYltisapJcq+ln6jgBlhUShmrBfBJxCVEPiCDQc05EqGFo\not7pGNh22F916Xa1sLSssC8WnwuWpa8rPr8XH/d8VgDEjjSVCkil/GcdL0GCBK8fvCRRsHfvXu65\n5x7e9773Ycf+p+h0OmSzWRzHYfXq1czMzOC67oJ9Dh06xLnnnvuizrt58+aXctkJXoWQiEXybF9/\n+Pd4titXLkwfkhQR6f4q2yAia3GXGEnziLuu5PNRmkeptNBJqNnUqSRLlkQpStLduNPRnwdB5Poj\nRbm+r21FdbdcOHRoli996Z/50Y++RaczhFJBL//e4fLLL+NXf/XdXHTRcH9s39fpMfHC01YrKnJt\ntQ7w0EO3s337wxhGuecklCMMM6xcuZq3v/083va283CcNJ6nU4LSaX0tqVR0byT9R3orRE29ZlBK\nUSwO91YDInejwUE9jm2LdWr0vYeGdCqTFNJKo68w1BH7el2Pkc3q9BwpGD5yRD/XRgNarWluuuln\nQIkwnOe0007mvPPegW1HTkq+r48vlfR1DA5GtR1BoL9vpaLfHznyONdd9xnm5xsYxhy5HPyP//E5\n1q8/E6V08bE4Acl1x2sDXDeyFLWs6LsLhItLHwvpPSHXJk3I4nUDL7UO5qUg+T/59Yvk2b5+8dRT\nT9GUoqcXgZckCiYnJ/nMZz7DkiVL+KVf+iVARxhuvvlmzj77bECnE/m+z6233tq3JN23bx+7du3i\nD/7gD17K6RMkSJDguFhMzIXoSroHRIRNctTjDi6S8y8CQsh/3B1IOhaDHn9wMMr3FrLoebqQVVx5\nhBhKZHp0VIpfW3z5y//MV7/6z9TrGZRyAEUYmlxyyfm8973XsGbNeL9uwfcj0us4uh5hejrKuz90\naB+PPfYg+/Y9hm4yNkgQeCjV4eSTT+dNb7qMFSvWUSqpfkfhSiWy5Ww0IpcisVWV/P9MJrr+TCbA\n941+jr80/FqyRF+L5N3ncjqfXylNgjMZ/Rzm5iKbTnkG+bzeb2hIf6+REf0dKxVtJVqrQatV5hvf\n+Bfq9QyQJZeD3/iN9/QdmjwvOjdoQVEu62tctUqLFBEoSsF9993P5z//33HdJhDgOCb/+I83MDFx\nZv9ZQkT283l97VIfIv0EZJ6Ji1DcUSpeC1Cv6+8mTkXxcyRIkCDBvxdekig4//zzOfPMM/n0pz/N\n/Pw8IyMjfOtb32Lnzp184xvfAGBiYoIrrriCT33qU9TrdQqFAtdffz2bNm3qC4kECRK8cfBy+J4f\nb0xxHBJ7T4G0WlkcxRXCns9HjbPEW14+E8IvRFbGa7cjJ6J8PhIUYRi52UjEXawrAVIpn+9854d8\n5Stf5sgRnWoShgGQZcuW9bz//R/itNM29Y9NpTQZlaLWMIx6DXQ6sHPndm655W727j2ETluR6muH\njRs38ba3nc+yZav6xb2WFVl1zs9HAqlU0hFt+czzouJl0GQ2lYJSKaBa1dfhOFpILF+uo+pSVNxu\nayLfbOoVDLHxTKcjNyEpUhbXoaEhLZi6XX1dItRKJSiXO3znOzdSqcwAaQzD55prPsDSpcMcPrzw\n+rpdmJyMegbEV4lE8Nxxx4/4/Oe/hO/7PTGS4YYb/pZVq86gXNb7x/sLFAr0Usz08WLBKs9Wnnuz\nGR0jqwEyR2VuyvVI8fJiC9wXgqSfQIIECV4qXpAoUEotyEc0DIMvfelLXH/99XzhC1+gUqlw8skn\nc8MNN7Bly5b+ftdddx3XXXcdn/vc5wiCgDe96U188pOfTNwNEiR4g+Hl8D1/IWMeb9vxXF6EMMf/\ni1IqShmSVBTx/fd9/dnMTNSIrN0Wh54obUjSSwYG4Be/uJvPfe5zPPnkEZRShOEylDJYtWqED3/4\nQ5xzzkW4rqJUijrsNhqSFhSlD7luyOOPP8q3vvUTdu7cBwwCRbQY6LJx4wpOP/18BgfH+3aixWJE\nmoUcZzIReZdUH7GfFBIv7jzZrH4/MeExOWmSzUZpM4WC/n5hqFcvut0oHatW08cPDETbRkb0vRJx\nJasOx45FTdUaDf2TSgXcdNNX2bdvF+AAHX77t9/JunUb6HT0uXO5yHlJuhQPDOhtIyNRJD8IQr72\nta/wxS9+Bd8fAhyWLVvKF7/4J2zZsp7p6Wh+iPWoiE3X1ePIXIsb7Ak5l+PiQmRxI2+ZX9KlOT7/\nXmg/v6SfQIIECV4qXpAo+P3f/31+//d/f8G2wcFBPvOZzzzrcdlsls985jPPuV+CBAle3ziRPurP\nd0yJwsp7IXViH6qLTRemCklnW0mlkWj13JyOZoN0u40ivCIiyuWIMOri36iTr1Jw7NhOvva1L3Lf\nfXcB4s4WMjSU5pprPshVV72D4WGzvzIg4mN6WhN6WSXI5ULuuOMBvvWt77Nt21FgBFiGthVNsXbt\nejZvPpNcboSBAU2uWy09hlih2rbYnkb3Ubr/BoEmtUoFHDxYZna2SqdTpts9QLfbwPe7QAcY4ZRT\nNrNp03ocx+pHxJtNOHAgSmnKZiOrUrk/kvsv6VUjI5E166FD9AVRva4F1+23f4+tW+9FC58K73nP\n27nggnNpNqMeEaap95cGZbJCMTwcPR8I+Pzn/4x/+qd/IQyzGEaL9evHuO666xgeHulbjnY6Uc+F\n5cujRmHSXVlWi5TS70XAyMrOs81RwYmoG3g5/l0lSJDgjYeXlD6UIEGCBK92xPO4pb4gbnzmeZrU\nCbGMR2k9T2+XFYJuN+pgK9FhnVsfWY9KpDib1WT06FEtJlx3mhtv/P/4yU/uJAzrKFUALDIZg2uu\n+VXe+c5rsKxCP89cxtm3TxNZybsPAnjssUf5+tf/ie3by4ShgxYEWWAlq1ev5swzt5BOD/dFgBQN\nS2rLwIDeXqvp34Mg3iE3xPOOsGPHQfbuPcTBgxV830H/uagDU+i0pFbv5yg7d+4mm1VceumbOO20\nN/Vz7Ws1TZTl3LYd5flL/wERS0EQNaPudvU1gn7fasG9997LTTfdjlL6z9Yll5zDb/7mldRqeszh\nYX3P9YpClOq0YoV+DtJgzfM6XH/9n3LzzT9EqTxBMMLpp5/En/3Z/00+P9Czj9VjyKpILrewj4Lc\nR0lrsiwtspSK0sviohQWRvOT9J4ECRK8GpGIggQJErxiiEft49teiTHj0dswjJpYxWsO4hFXIbCH\nDy8UBLJvLqfJarOpI8lCdmUVAvT+nU6T73zn+9x8849pt1uAgWEUSaXmefvbL+cDH/gQK1eO9t1/\nQAsOyVev17WoADh2bA9f//r/5uGHtwEmYWgBw0CJzZs3MTFxFpale8YMDtKzVdXk3PN0rr6kBzUa\n+jpHR+HIEY89e/awc+dTHDz4JOXyEWAIKKBXHkIggy5attBioA3k0GLEptUK+fGP72LJkpV0Oiup\n1aJVmHxen29sDDZtiixeu90oUl6pRCs39XpUa2AYcOutD/G97/0EsAjDIiefvIEPfOD9GIbupjw8\nHDVmk1Qk04yKo2WFpVqtcv31n+WRRx4ElhAEHc4996387u/+Hu12ul/v0O1G1yfXKM9U5ogQfylW\njhP9+EqUCIlaLUorkjl0oly5X45/VwkSJHjjIREFCRIkeMUQJ03y+4kQBc81pkTd4/tITrsQbyHJ\ncrxuIhURTCk8hqhL7fi4Pu7gQV2cbFlRgalScODAXXzxi//AkSMddKqQBTiceeYWPv7xX6dYXI/n\nadIvXXV9Xzv1FIv6dXoaZmZm+cEPbuSOO27D80oYRoYgMEinHTZuvIiTTjqTgYFh2u2FZDqTWVgj\nIKscvg+GEXLkyD7uuOMBtm49TLPZRZP+ebQYMNDkP8SybIaGchSL4yxfXiCXy5NOK6ana5TLM+za\nNUWnUwPy3Hzz/bz1rSvx/YjkS/+IMNTkWESPpF5ls1rECAlfvlwT+akp+O53b+Z737sP8ACD5cvX\n8Fu/dQ1aFGmhIw5JsoJTKtHrzxBF7huNKT772U+xa9duwrAAKK688n1cc81/wPdTC56zCEZJ1ZKU\noF6Pzn5qTpz0x+sIxIlI5qEIAvkR+9YTRdxfjn9XCRIkeOMhEQUJEiR4RfFyEJbnGvN4hZhSZCsC\nQIi81BOIk8zgoCZ1UjDb7WpSLZFt04SlS7WHfr2uI8czM9P8r//1DR555HGCwCaV0l0m16xZw5VX\n/iabN2+hUNBjiLONCI1sVouBchkOHarxgx/cwZ13bqXTKQMldHR+nnPOeSsXXPBWfF8zVYlkSw5/\nt6uvSxyAJNUlDGe5666n2LPnQcpl7eATpQJZgE0mk2LDhpWMjp6bTI8+AAAgAElEQVTBwMAaHKfE\nwIDqE+dMRhPlYvEo/z97bx4nV1Xm/7/vrX3pfcvSWci+QELCHsISICCLgMoimxsC6ozjiAtuo86M\nOm6DP3W+CrIIAiKJCIQAMZBgQhIISwIEyJ7QSWfrpLu6q7r2qnt/f5x+6txuOoAIinA+r1e/uqvq\n3nPPvXUIz3Oez/P5BAKtjB6d5aGHFgLVJJNW5VnLcw2FtC+BSIGWSup55XJqno2NuprT2Kjkre+6\n6w4WLFiFoivV0dw8io9+9CLK5Xjle1UGcOqZybiyEy8SqS+99Dw/+cnPSCZ3Y9sAfi655BI+8IEL\niMWsyvool7UfQamk+yocRzd5D+wB8HpcCESKVKRLvc7W3jX7dsIkAgYGBn8rTFJgYGDwvoMo+Ig6\njCjnyM6wmJ2J/4CXbiTJBGj/AqGndHYWWbr0MR56aEGf0VcZy/JTVVXHeeddwvHHn1hxOd63T41b\nLmvOvfDXM5kiCxasYMGC50inc0AJ9c91PWPHjuXSS08mHj+EZFJdW5SRRP2nqkqr7jgO2LZDMrmV\np5/exK5d7X1PIYeqBvgAH7W1DRx22OFMmTKJYcNGUS4H6OzU99bVpaoXkYjueUgmrT4X5SyqypCh\npqaR7m5tYibViXhc/W3bqvohCVUmowJ611XJQDgM2WyJn/70/7F48Upctx4oMnLkWM477yPU19cS\nj6vjpIFZ7h+0RKiSRHV58MEHuOeeG3CcEpYVxLbzfPGLn+bYY88CtCJUS4taD1KxkF4L8YIQ1SLp\ne0il1PWqqnRCNpBGJGtpYOIgEq8GBgYG7yaYpMDAwOA9D9Go91KIhOYhgX6xqAI/11W79OGw2mWW\nXV9xoA0G1bmiiOM4KqjdsmU9t976x0rQ7bphymU49tgT+PCHz2D48IYKjceyZKddBbE1Nep1d7fL\nmjWr+M1vHqG9vRdoQgXtGUaObODccz/IhAlTqKlR+vug5lxTo4J2y9KVgnweurszbNq0huXL15NI\ndANBVIJhAQVCoWomTBjPjBmTaG0dRz7vI5+HrVu1OZrjqGewd696LepESmu/TCjksnTpJtT/TlI0\nNkYqjs+i129Zeve9VFIJlm3rZl5p5LZt2Ls3x89/fgPPPfcSllWD64aZNGk6F1xwMcFgtNIcHYmo\n76GpSSVYovIkicju3SnuvvtOnnvuWfz+KJaVpbY2xne+831mzJjBnj3qHGkiHihNWyxqKdKB7sSy\nJmQthUL9+1J6e3USGQxq+pSoFXlNzQwMDAzeLTBJgYGBwXsGvb3aHVYMoqB/I6ZQYOQzoQzV1PRP\nGkRX32t2Fo1qSowkEgcOdHLLLffyxBMr+6g8IwEfjY3VXHjhXA4/XGnoC7ffttX1ROZUKEM7d27g\nhhv+xNat6ymXm1D/PCeoq6vjrLPO5ZRTjqa62iaX0wlLOq1VdoQP77rQ2dnJypUv88orm8nn21BJ\nQAxwAIdRo0Zy6KFTmDlzHMFgpNLknEjoPgovFUcaeEUhSMy7ikWXbdt2smvXrr6xezj22PEEg2o8\nkQYVZ+dyWY3V0KCrMj6fVvPp7u7hF7/4JevX7wWqcd0MRx99NOeccyHFYoBsVnsPSBMxaDlYoW+1\ntbXx//7fDezZ04bPFwEsJk06lK9//Ss0NTUTDqvKQD6vgncJ/stlNV40qtZDIqHN5rxytoNx9yUZ\n8K4fGT8UUvOTPoO3q8HYwMDA4O2ESQoMDAzeE+jtVVQXgfx9MB14L50jFlM/iYQK2oQ/Ljx80fkX\n7wEVADo88sifuf32u+jpcSiXlfxQIOD2SXMeR21toBL0ijGXVCKyWRXU9vR0cvfd83jyybVADSqp\nKBCJhDjhhJM58sjjqa6OEI0qek1Pj1a8EbpKPK7GeuWVdp5+ei3r12/BdRUtSKkTFQgEAhx66FQm\nTz6c0aObKgGwyIeKwpJ4Bvh8Oqjt6tI76tmsCsKVU3GR5cvXoahIUSZOPIFQaBixmJpbLud1b1bf\nUVMTjBihzMnEDVkZvXXyu9/9ip07N2PbFuVyFaeeejqnnHI+4bBdqThEo7pZV36kxwGUdOmtt95B\nNttnR0yJs88+k3/5l48RjQYplbRSlBilVVXpJEualuvq1Nyl+iC7+wczCZMfSVq8x4ihnfdYAwMD\ng3cbTFJgYGDwtsO7m/r3MFEqFDSFRGggstsNWnZUArJUSgW6QgER6UzRnBcnYtnNFu6/7HC3tW3k\ne9+7nhde6MKy0th2AIgwbdoEzj//AurqGunqUgGmcM99Pr2b390N0WiJVaseZ9GiJWQyLjAOSGNZ\nYWbOnMFJJx1FY2MDQ4bovoNkUs0hk1H3JHSnnp4O7rvvIZ55ZgdiXqYqA1HC4TAzZ45m1qxJFItx\ncjkdrIv/Qbms3vN+X3V1andfkhllZKb7LRKJBCtWrKVUigJlIpEwM2ceRS6nAmBxI87nFU2quVmd\n19ysXY1zOWkS3sbNN99MZ+fePhpOkXPPPY/jj59b+f6kWVp6JcQBOZNRz6FcLvG7393BggWP4rou\ntl0mEgly5ZWfYM6cOZUKR6mkEwhRCRJ6kPR2yNqtr1efS2IpVaiBa29gD4H3b+lZqK83yYCBgcG7\nGyYpMDAweFsxUOmnVPJhWc7bNvZA6oZcTygoErjJrq44+AYCVLTzhboDXuqKep1Oqx6BcFgFdEJT\n8fmguzvFbbfdxLx5N1IqhbDteiDAkCHNXHLJZxk+/Ej8fr2jLWOLsg6ouWzZspl7772HtrYMKoiP\nAzHGjp3ESSfNoqmpkVJJ7TDX16tzs1llhCb6+aoRuouHH36MZcuWksvJONVANVVVYxg6dAxjxgyn\nqclPJKKvXyyq+ymXVcCfy+kdbmm4TibVNcJhpQ4k1YRsFmKxPGvWLCeTKQMtQC0nnTSN6upagkFt\nPCbPU/T/a2vVs8hm9bjPPLOEW275JbmchWX58Pn8XHHFNUycOAdQ5+bz/R2XcznV49DUpF6XSp38\n539+k+effx7bDmJZNq2tw7nuuu/Q1DS+0nwtBnXC/xdlJFGeise1TKrgrwnkByYHkjB4qwcmMTAw\nMHi3wiQFBgYGbysGyjMClEr22zLuYNQNuV4s9toeAG/zqJcOJE3DxaLaxRZvAWn4jURU4Cr9B8Gg\ny/PPL+HnP/8FHR27sO0yrhsgGCzw0Y9ezJVXfpxcLsrmzZrnXlurg+1AQPwQurjjjvt5/PG1uK6N\nCuJDVFW1cuKJxxCLjalUNUT5KJXSKj3irZBO51m2bBH33beEZLKMSgQCQJkRI8bQ3HwUNTXDKtUO\naYqOx9XuvW3r8Wpr9fiirCTOyTU1egdd+g1sO8eqVUs4cGA3MBSwGDv2UPz+kWQy6nifT+v6e6Vd\na2rUs41EwHHy3Hzz7SxevKTPhK1INBrl6qv/lcMOOxrb1nOPxbQBWm+v+v4k8Vi37mWuv/4L7NvX\nhWVl8Pv9nHrqcXz/+z/BdWv7JRN1dTopkkbiESN04A66QVjW0MAE4fVMwrzKRKVSf1qRrEGTFBgY\nGLxbYZICAwODdxyuRFxvgIM1ccpnA49Lp3XwLxQPoQyFQurzXbvUa+9OvQS93d26ObmqSuvkRyIq\nSI5GYc+eXfz857/m2WcfAApYVhDX9XPUUdP5xje+QWvruArHv75eU5WU1r4KpnM5l6eeWsa8eQvo\n7k4BvVhWLYFAiFmzZjF58iwymSD79/entAi/X/j+luWwdOmT3Hffg3R27sJxSsAooJrW1haOP/5k\n6uvH0tGhqgA9Peq86mp1v6mU+h0Oay6/zDed1vSroUPV85TG5XxeJDuT/OlPS9i3byfK8ThHa+sh\njB49mmJRq+4kEmr+oZB6DpJgSINtV1cHP/7xz9m0aQeuW43rBhk9Osh3v/tvjBx5CKWSdgGWeSoD\nMjWm8pdwWbJkGQ8++FtsuwvLKmLbWb785S/xxS/+K7ZtV+5NqhxSBaitVbKoMmevmtDBlIG8SaV3\nfQ48Vs4XKpLpITAwMPhngUkKDAwM3jZI4CTBl9qBdQkE3pg+dLBKwMDEoKtLO8zG41pWVBpuvZQi\nURCShlRRHYpEqGjpFwqaHiRJRiYDUOC+++7jj3+cT7G4DZ8vg2VlaGho4d/+7Qccd9w59PRY7Nyp\n5lZVpegwe/ao19JU3NHxKrfddjcbNmzDsqw+vruf6dMnc+yxl9Lc3EihoBpvpcFXTLf27FHBtZIr\nfYWFC3/Pli2dWFYSyyrjumHq64dw6qlzmDRpGu3tVoUv7/er+8zlVJBeVaWfl1QzHEddNxbTCYHs\n9Mfj2qNANdx2smDBnezb1wGEAT8TJ45l1KghlV17MWArFFRCJS7RTU0qEI9EYP365/nRj26ku9tG\nJTQBJk8ez0UXnYvjxOns1DKepZL2IRBKViIB5XKG++57gLVrV2HbPvz+ahoacvzf//0fp59+UmXX\nX/pHQFO5hIoka1ReB4NaHWgwR2xZj5Jcvl6wHwyqBPH1qgoGBgYG7zaYpMDAwOA1eL0d+9c7Rzjp\n0qwpMoxg9+P6H2wndrD3vMemUnpn28v9lqARVPDb2+vdXdfNtH5/fwlKCWalQpDJqEB48+Yt/OpX\nv6CtbQvlso1tN2Hbfi699FK+9rVrSSbrePVVePVVfY3GRhX8Ckd/z540ixb9kYUL/0yxaGHbISDN\nkCHNfOQj1zBx4pHs22fhOPp+/H6t8PPqq2quo0e38ac/Pci6detxnDw+Xxafbz/V1dXMmfMxxoyZ\nTbkcrNCBRO8/m1XPQRIeL7c9l1PHiflZba2qBCiqlHZEll323t69/OEP99DVtR3LyuO6EU466RRG\njx5Dsejg8+k+ATEp6+1V44iaUyTisnDhg8ybdzelUjMQx7JCnHjiXI488hgKBYvubjVOJKLmIxWb\nqiptIrZ+/T4WLpzH3r17gSCWtY/Jk8dy113fYeTIkYCmAEm/gPRhyHcszcmyxopFLWF7sGT0jdbm\nQMhnIlMqSYeBgYHBuxUmKTAwMOiHN7Njf7DzBBL4S6BeKFiV3du/peHSG/yD3omur+8vPSqGU4mE\nDrTlXGkqjcV0MiBUGcsq8vvf382dd95FuezHcdSu/ujR0/nCF65g6tRJdHXBli2waZOWsHQcRUfJ\nZJS6zoYNT3HLLTexb18HpVIcaMGyosyadSwXXzwHiJNKKVpPuawpTaWSCujVeJ20ta3h5psfA1wg\nAsQIhXZy3nmXcu65H2LPnhoSCc2zV+7FOikLh1VALcpB5bK63wMH1DmirpROq/caG9U8CgU1XiQC\ne/e+xPz595PNOkAtkOTyy8/njDOOZ+PGNvbs8ZPJqGMbG719GLrqkE4nmT//D7zwwiosKwL4iMeb\nOeusD9LcPKaicNTb23/dVFdrF+WeHpeVKx/jrrseIZv1of73VWTu3Nlcd93VhEJhdu5U5w8Z0j/5\nFBpPPq/HjkbVb5E6fSPu/8BE+c0G+LLGwDQbGxgYvLthkgIDA4N+eCu7om/HeK/XxCm0IVEIAt0Y\nKrQQ75jyO5PRO/DiRRAOa+5/oaAD2PXrN/Htb3+Dl17agGoAjhIMjubccy9g7twzaGjwceCA2sEX\n6pHjqJ32SEQF2J2dncybdydPPLGiLwhvAkKMHj2OuXPPpapqRMWfIBzWTsTlsqILKWqUw7ZtW9i8\n+SVgHzAEyAA5pk+fzrnnfoURI5oqjb+iCCQBfkODfi5imlUoqDkKLWjXLv38bFtVYLJZrRIUCEC5\n7PCXvzzK0qXPohqZbSyrzCWXfJhjjplGsah4/cGgSzxOxVhMqhCSjKTTO7j99jvYu7cLMVAbOXI8\nc+deRDjcQDKpv59AQJ1TXa2qF8LfTyY7+eEPb+LJJ5+nXI5hWSHCYYtLL72AM86Y03cMlUZnSfTk\n3qWqJMG/UMnkb29PymB9A/DaRNmbFLyeodlAmGZjAwODdytMUmBgYPC24GBB/ZttMh4YSHklR6VB\n1udTr8VAS1Rp5LiBSjA1NTqREGMu4dPX16tzMpkSv/nNzVx//S0Ui2UgSLkcZMqUw7jkkq9QXd1K\nsagC9mxWVQQsS1NyhIazd+96fvvbP5BM7gBqsaw0VVUNfPjD5zJq1PGkUja2raoXDQ1aKUk47bEY\ndHTs55ln1tLVlQbSqH+iY4waNZzZs4+lpWUkBw6o4NvnU8FzOEw/p18ZKxpV91wuqx95fsWiSgQk\n+Hec/hWG3l5IJLpYsWIVu3e3oSRHIR4Pcd55s5k2TTUC53I6yZJdd9BSrqGQw1NPPcGjj95PsWgB\nDrad4rTTTmfmzIvo6QlWKD62reZWX6/GlP6OQADWrXuKH/zgZ333HcDnKzJsWANXX301kyePq1R/\nZE34/apPwnV1wO9NGhsa1G9JCqXB3NuLEgq91oRsoCqR4K1W1gwMDAzebTBJgYGBQT+8kezi650H\nrw3qAwG3Lyh84/G8u6y9vbqp2HVV4CmylKlU/8bigZA51NVpHrkEmamU0rhXKjlb+f73v8ratWuA\nehynhlAoykUXXcVZZ32QUsnH1q26WTUWU2Pbtgq0lTlVgmXLnmLz5uVAL2pnv8SJJx7BBz5wIX5/\nA52dKvj0+dQ92bb2AVD0oTKbNj3JY4+9iHI1DgMFamqiHH74cYwfPwZQ30u5rBILy1Jjua4aJ59X\ngbH0cjiOphCJtGcgoK4tTcROX/+3UHQiEdi5cyerV68mk+kFqgCLxsYmzjlHmakJDSufhwMHfJX+\nA1VdkGt3Mn/+fWzZ0g7EsKwOIhGbq666kjFjTqKrS32fvb16Pg0Nar6OI67FWW688SYefPA+IILr\nVuG6AebMOZmPfOQCGhtjtLToCokkBKAlRyUpkPe8CkP19f3Xi1QIpNl44Fp6K70wb/W/JQMDA4N/\nBExSYGBg0A+DUR+8Rkxv1Fw5GC0InAqX+2DqLt7gq1BQQSuoIDGRUIG5JAGNjZomIkGXyF3KeGJo\nBoovL1z59nZF0Vmx4kHuu+96crkcrjsSy8ozfvx0Pv3pLxAOH0JHh7qOmJ25rg666+oUveW55zay\nePGfSaUOAAWgini8lg9+8ByOPHIKfr+6XjarAm/X1YmNaNp3dbXzwAOPsmvXXhRNJw1kOPTQw5g9\newbFYohQSAXQQlkqFrWykATFPT0qwBa5UXl2ojYUDmtn4khEKhPq/MZG8PlKrFmzlpdeWt83hzxQ\nw6RJkzn22COpqfH368sIhyXAdvo1Fm/fvo7HHnuQbLaA8k6AQw5p4lOf+jRjxx7Cjh1qbq6r5iDe\nBc3N2jW6s3MD3/nOf/Pqq+19ik1F6urC/Ou/fpbp04+uSJ+Kl4NSi9KQyoUoIUmi5Lo6wfNKig7s\nPxhsXb+dibKBgYHBuxEmKTAwMHgNvNSdv5UaYVkWoVD/RmAvBruGNAiD7hkQN9qeHvXbsvR74XD/\nAKy3V2vcB4M6ISgUYNeuTn7721vZsGE9Pp+NZUXx+2u44ILLmDPnQ9i2vxKA53K6abm3V+/u792b\nYdGiv/DiiyuBbizLxnVDTJ8+jZNPPp1otJ7OTn3PlqXGkl17FRC7rF69ikWLllEuR1HOxkXq6uo4\n5ZTZNDWNJBjsb7YVCGi+u8xRFILkt0h5Oo5W/4lEVCIi1KlQSAXj5bIoFe3h0UcXsWdPBrCBHD5f\nhGOOOYmxY8dUVJWUeZkKupUPgUOh4OurMnSzYMFjrFvXBpRQzdFZ5s49ik9+8kwsS31BIrvquup5\nyniqr6DMfffdwx133EShEMB1I1hWghNOOJarrvoKTU0NBINK5SkYVMlZLKaebzKpPQxAPydpBo/H\ndXAuKlkD1/PBgv/XC+7fKGEwiYCBgcE/C0xSYGBgcFC8HY2SlmW95j1vZaBQ0JxvgSjfSPAvbsUi\n/wlaVUiCQEkGhFefyWh+fW0t7NgBy5ev4Le/nU86ncey8kCEMWNG8vnPf4lweHwlcHZdLS3qOCr4\nlN3onp6dLF78ON3dmwALy3KoqQlzzjlXMGPGdEql/h4JdXVqTGluVaZZndxzz71s3LgJGIEKoHs5\n8sjTmDr1SCwrWOH6V1WpH9HrFwqR7HyHQmqePp8KjMWLoKdHN9pGo1qa1HF0w211dYl1655gyZKn\n+hyWAVyGDh3F0UefTiDQgM+nrldfr5KaWEy79pbLNj6fy4EDL3LHHXf39UI0Ag41NUP46EdP5Zhj\nJmBZVPoQGhr0XCRBANi7t41bbvkFmza9gm1bWFaWcDjKtdd+nXPPPY9SyarciyRbsZh6BnV1ukcE\ndKAuiYFXtcrrcj1wPb9R8D/YujfVAAMDg/cKTFJgYGDwd4VUBiQxSCR007A3sBf5TAlgGxs15UWZ\neanPhD4iFYZ0Wv0Ui5qyUyp1c+ONt7B06XO4bhjX9WPbcP75l3HxxRcSDiud/2xWN5qKf0BtrVCY\nyqxd+zTPPLMKpQZUAGwOP3wql1xyCY7TgG2rXWyvIpDrqnsR2c29ezcyf/48entzgA9I09JSxXnn\nfRyfbxTZrG7iBS1ZmsvpyockLRL0S6ArO+VeCpHfr3fjZWc9l4Pt29tZtGgpHR27gSDKZdnHiSee\nyJgxx5PP+yoNwNK/EYvR7zm5boFlyxbx9NNPoRSbAsABjjzyWObOPZthw5QRRC6nVYlEEcnvlx1/\nh2efXcQDD9xILleoGLNNnTqF//mfbzFhwph+vQGyhqRSJFUAaR4WeGlBso5Ay5KK/OlAadG3EtSb\nRMDAwOC9AJMUGBgYHBTvRKOk1/W4UFCBYqGgOOXymZiLiRGXNIVKn4BwxYVPXywqOowkC0I9ymTg\n+eef40c/+ha7dnXh86kgtbn5EC6//NscfvjEfjSkujoVvEqyIZWJjo7dLFgwn23bulDJQIlgcCin\nn348Z555NH6/VaH6VFWp+e7eDTt3qrEVvcnlmWeWsHDhH3FdFYnadokTTjieOXPOIJkMUSppxSCp\nTJTLqjHa51NzEl8EoSTJ+H6/unYwqIy/0mnViCxKPqKe09hYZNmyJSxe/CKOU0LRlqI0NAznnHNm\nU1/fSmen9jjIZFQALZKlkhBs376eu+66nUSiG4hh2zmqq2u45JILOPzwIysKR6WSCtqFziSUrNpa\nSCR2cfPNN7Bhwxp8vm4sy08w6Oeaa67gM5+5kmg0gGXp+xrY2yIJpAT4B5O6le9GIIpEkgC+FbM+\nAwMDg/caTFJgYGBwULxT1AgJwsQnQPT2SyXdHyC+ApIUdHUpSoxATKFkp9zrYVAqgd+f53e/u5l7\n7rkFKODzlXCcImeeeREXX/w5AoFq6uu1MpEElOWyGkOqDGvWPMPPfvYLEgkHGAm0MGRIC3PnnsbI\nkU2VXoHqahX8Ck/f71eBbyAA+/YlefzxxWza9DQQBbLU18PnPvdZGhunsXOnov6UyyqIr6lR9Byh\n3TiOuobsuPt8ik4kFQ1RHhK1JWnitSz1XAoFNeauXRu4664F7NqV6HtSdYCPo4+ewdSpR9LcrIzI\nbFsnJxLYi7RpPt/NokWLWLFiFZZVwrbVAzv66OlcccUV1NU1VJSOxIdB/ACkyTqXc3j66UXMn/97\nstmd+HxlLKvM+PEj+K//+i4zZkyqBPlSDZFqhThae9eSV3pU1qm3X0CaumWtDGxq945nJEUNDAze\nrzBJgYGBwevizSQCr2felE5blb+9n8nOrQT3oZCm/ZRK+nhRFfImASI3GYlojXtJGAIB2L79Va6/\n/rts3foitt0D9FJTcwhf//r3mD37NHbu1MZjfr8Eu+paorufzzvccccD3H//Y4Cvz4nX5eijj2Tc\nuGMJBPx0dWn6iuuq+UhSEYmoeba3tzN//kK6upJAPZBh7Nhmrr32Smy7qaJoJD/SlC16/RKkB4Oa\nuuP366Ziy9JJiUil7tmjzpc5pFK7WL78KXbu3AbkUCpHbQwbNpZZs86hpmZIJZERqVXLUtcSao7j\nuLz44jLuvnsB3d02EMV1e4nFarnoogs54YSjKJct8nl13bo6OU/TmRQNax+33XYzGzY8heu6WFYU\nny/Dpz51Kddc82mqqoKVZEgSCW9T8GDrU46tqupvUOZdj95Kgnc9C33Ne6wxGDMwMHg/wiQFBgYG\nfxUGJgAwuEKR/C27sN4d2FBIG0wJVahU0kFksagDs0BA7TaLfr00GGezug+hUFBBcTIJy5at4Oc/\n/zHZbFdfM26e008/jm9+8wZcd0iFliMUJp8POjvVdaqr1WebNiW44YZ72bTpZVy3FqiitraR0067\nkMbGURw4oILn3l4VfFZXq79zORUQg7q3traN3HTTfeRyAZT3QA/HHDOTc845i0AgSFeXCvTFUEzm\n5bpqzFxOm2xJ47E3UUql9D0IV7+uTidWBw508uSTa9iyZUvfNxIAigQCKc488yMcffQpFAo+kkkV\nHHd2qnmId0BNjXrGPT07+d3v/simTS/iulFEanTcuMlcfPEcDj98SkXuUxqHJWmTgL5QcHj88SX8\n4Q/zyOW6sO08lpVm9OhD+OY3r+eIIyYDau719bp3YuDaA907IK+l0iRmZAdT/xlIh5NnPXCNDuwz\nMDAwMHg/wCQFBgYGbxqDyYeKVObA4w52Pqjjm5upBMW2rTn9EgSDDui6u7Ubr1QJvBSXYFDp7N90\n06+44457UBQdH6FQjK9+9Qd8/vOX091tk0xqz4GeHjV/Ja0pNB/Yt28rv/zlvXR1lYEIEGDkyEM5\n/fTT6elpYPt2rWpk22pXXnbGczlNAdq06WV+//s/UCzaQBFo5NRTP8T06YdSLqvrd3crNSKvhKjj\naKMxqQSIi3MopBquhfYkyYTqe1DPwbYhEulh9eo1PP/8Jlw3C9T2zSHHtGmHcfnls7CsBqJRTXcS\nN+NAQF1DVWYyrFz5KI8/vgDH6cC2m3CcEo2Nfi6++CJqaoZQXe1WejtE/lSSt2hUzXndug1873s3\ns3nzBlw3hm2n8fl6ufzyy7jmmitxnHBlDUmQ7qUJeXfwvfQVrhIAACAASURBVO7DXtlYrwOxnCfr\nqKqqv9GdvC+ViIGJgtfzwsDAwOD9ApMUGBgYvGkcTKJ0YFLwRmN4qw0Dz5XqAGgKiPfahYIyI5Od\naNeFjo5O/uM/vsXatX/BtqO4rkVr6xC+//0fMHXqBLZv1wpFjqOC6kRCBeTSUNvbC089tYr58/9A\nNluFasCt47jjpnHUUaeSTvsplVQwL6pCouYjyYk0P69fv4YFCx5AVQfyxGI25557Di0tI8jnVTKQ\nTutqQ6KP4q9MxITyo6lBojaktPzVa59PNRRLolYqgc9XYMOGV3j++ZXk80mUupELJBkx4hBOPHEm\n48YNJxZT12hqUuft26fmEo/rZ7pz58s8+ugfSCS24boF/P5uIM6pp57CJz5xHrZdxcsvt5HJqC9J\nHJFBV3D2709yzz03cs89d+E4NsFgEsepYeTI8Xz3uz9i2rTpBAIq4bEs9UxAU8tqa9VvCdoHM8AT\nqpOspWJRJxQyjpc25D1XGpW9PhADKw0GBgYG7xeYpMDA4D2Gv1VJZTB6kDcgHyyIH3i+BGmDucN2\ndWnlIQncxItAgreBzZ4io9nRoXbmEwndZLtly8v88If/QUdHF5YVxXUjHHPMCXzta18lEqmju1vL\ng4qqjjTpiswp5Lnjjj+xcuXjOI6/79q1zJlzGjNmTCGZ1AF6OKyuGwpppSFQ42ez8MILz7FkyWOo\nYLyHhoZaLr74UwQCQyrKPVLlAJWsZDIqKI9G1ZhKRlU3LFdXq2uKWlMyqY4Jh1Ugn8u57NixlRde\nWEc2uxPlRhwGCgwdGufMM+cyceKEihSoVDP279cJRygkfQudLF68iPXr1wEpLCuKZTlMnjyTz3zm\nXxk5cjzhsEpa6uudioeBVC4aG6FUclm58jFuuOGXdHW9iusGgF6CwSBXXvlxLrnkKhwnUvEPkJ4M\nv1+rToGmkWUy2qzM60shPShCQZPvQQzLvGuyt1d/V16IkZm3r8DAwMDg/QiTFBgYvIfwtzoQDzw/\nlep/vpiMeccTI6neXr1DK1QN2TkXnXiRj8zntcY8aKOxUEjtfofDmh4igWGppIJhocy4rsu8eY/y\n+9/fRrmcwLJKWFaQSy65hg9+8DIKBbvihCySpaKk09urTLQiEdi27QA33HADmzfvxrZz2LZFY+MY\nTjjho9TWNlcCaaHvNDWpMUW/33W1POjLL29iyZIlCFVn6NAmLrroUzQ0NFQSITFiO3BAK+bU1Ohn\n09KiKxfZrN7R7+3VHH3pXchmYdu2NlatWktnZzs6GYgQj0eZNetIZsw4lOZmG79ff7d+PwwZAu3t\nKtEql8F1i6xc+QxPPfUkhUIG5UqcpqqqiosuupQzzjiJkSPtSjLjODB8eJls1sKy1LMpFmHfvle5\n/vrrWb36L4Afy3KBPCeccAzf+963GTFiXMWNWbwYQBvWCQIBlfxFo9q4TbwaZL0VCup78Caxcp4Y\n28l7B6O0iSSpd50bGBgYvB9hkgIDg/cQ/lYH4oHnDwyWZBdXaBne4F92W73cbgnIYjG3knAIV152\nyIV/HolowzBx6/X2F0hlQTkGZ7jlljtZseIZbNvCtv3U1Lhcd92PGT58VqVS0dOjdsPr6rSOfzar\nrlNTA21tL/H9719PT08Rywriui5HHnk8p512GcFgHJ9P8/0lII3H1XvFon4dCsHLL7fx6KOPoALz\nEiNHtvLZz15BPF5XCe6rqtRvabYWT4RQSPsiiBSrUkBSQbumBwnVxuXVV7fx9NNb6OjoAMoo/4QU\noVCUmTNncsop04lEwhXOvW3rikS5rILwfF5VIXbs2My8eY/S0ZHqm38K6GHWrFP46EfPZujQhoqq\nTyiknl13N3R2WpXg27Zz3HvvPcyffzu5XBnLCuDz9dDU1MRXv/otzjrrLBoatBKV/JbAvVjUlQJJ\nFlIp9RxAHydVBNDHFYu6NyIe1/QredavVzEzvgQGBgYGCiYpMDAwADTFQlxzBwuUJDCX6oBUDt5M\nMiIVAqkAiFym7PxK0Cm7yH6/TgpEHrNUgl27dvPrX/9/tLXtAGpwHIcJE0Zz/fXfplweQTarAklR\n4HGc/vMReslDDz3Lz372E3K5LJYVwO93+MhHrmD69DPw+y2iURVkSnCpVHjUudGoei3z7eraz4MP\n3oPj7AcKNDfXceWVlxEO11VUgaSJOJFQlZCWFnj1Vd00XVWlG56FzlNfr551KqXm391dpK1tG5s3\nP09XVx5FUcqhHJYtpkw5haOOOpTm5vqKz0JTkzY8E3dly1KVivb2vTz++FLWrVsLBFFSpWVaW6s5\n//yrOOSQCVRXq2REmsGlMVetF1UleOKJNdx66/+xZ88mLCuLZfnx+UJcdtknuPbaz1NdXVNpiPYm\nBPJ3LKYSDflbPo9GtQeBrCXLUu97qWlC5ZI1KUmgUNNE5nUg3glzPgMDA4N/VpikwMDgPYS3GuT0\n9urA0yvROFi/wMD3JHD3Kr54aT+qImBRX68lNdNp3UcQiWgakTSKgvqdyagd6XJZBdJr1z7FT37y\nc3p7yyhqyi7OOutEvvOdz+M4Efbv7x/8hcPQ2qoTDElG1q9fzP/+78/I5Ybhuk1UV4f58pc/ydix\nU9m1S1GLsln1AyqwlgqG+BBocy2Hhx56hEymG/ARi8W5+upPU1vbQFWV7h0QGlIopIPs2lo1L7m/\n+nrFyRfTsXRagvluXnhhCy+8sIdSqU9TlRhqVz/PuHHjOeyw46iqaqjQpKQHoqlJG7vV1AgNq5M/\n/3k5Tz31NKWShfpfQYBAwOW0007itNNOIJkM9KPfhELq+7AsVX0pFKCnJ8W8eX/kuedewHVtLCuC\nbQcYP/4wrr32sxx66OSKxKwoAIn7sEiIync9YoT6Lc+8rk49i2Sy/3qLxfr7Fgi1TGREZc5iViaJ\nwWAUoXfKnM/AwMDgnxEmKTAweA9BAlXRcffKMB4MhYJKCFy3vzmYOAnLMaCDK29y4G0Ols8ksM/n\nIZ+3KJUsmpv1Z0IRkSDRqw4jFYN9+1RTcSoFtl1m6dK7+P3v5wNFbLtMMOjn2ms/zcUXf5i6OouO\nDhVECtUml1P3MGKEurft29VO/8KFi/njH+/EdZtw3Wrq65u54oqPM3z4MEolvTMvSUsmowLO3l7t\nByC7/9ksbN36Eu3t+1DypVHOOutD+P2t9PaqscJhFZSLP4K4+pbLMHx4f1nXlhYYPRra2tSxe/a0\nsWLFS6xbt5VyuQGliBTs+ykxfPgI5swZRVVVC4mEbkwWDn51taYhqSpBluXLH+Xhhx/v6xexUNUG\nh2nTJnHuuWcxbFhTxWsgHNb3C2qeKhgvcf/9C7nzzlvJ5bKo/5VUE4vVcPnlFzF79geIx32Ik7JQ\nyrq6dIOw39+/wpROa8Mz73oWDwjvepaEQBI9MTjzrk0v5W0wWpv3GiYRMDAwMDBJgYHBewqyYy8U\njMEagwc7xwsJzL0JhbdvQAIrCWa9fQWiuR+JqF1wReFRPHIZUwJv0PQYMQETZ95USgXwqnm5i9tu\nu4kXX1yN4wSxbT/NzRG++91vMXPmFOJxNYb0LHR3a8pQdbUat70dkkmXhx66j8WLH8NxRgARmptr\n+djHLiEabag0/tbW9m94rapSr3fuVEmB9DuowD7HM888jfqnNMa0aUcxfPgYslltZlZfr+5Hdu/F\n4Vf8GYT6Ip/t3NnNk0+u5Ykn1rBlSw5VEajru4YLxJg0qZnW1hGEw6oaIc7MYjwmFY2aGgnKHR59\ndDn33ns/Bw504bpg234sK8O4cVM5+eRLGTp0bKVyI5UMkUMVdZ9iEVavfoVf/vJnbNnyap+RWQTw\nc9JJx3LRRR8jGGyo9EuIapM810Khf7VAxvT+Hrg2vetLIEmZd/3JOpXKgKy5wTw0TBJgYGBg8FqY\npMDA4D2Et9po/GZoRwOrA6B39SUgFy19aRLWPgMu6bRWIRLDMKEZec2lZLdXORlv5n//9+d0dOwB\nLFy3jokTx/OlL32a1taGSuVBdrO7uzVdR9R50mnYs6fMHXfcy+rVzwP1QCPNzcP52MdOpba2vq9R\nVp3n86lrextcxSlY5EETCZW09PTsJJ3eB8QIBpuYPHlmRW5UehqkWdm2VaAeCOgma+mpKJXy7Nq1\nnYULn2TjxhcoFAq4bhxlOgZgUVUVYMyYqQwbNoqGhnCFCiW0L6FeyXXjcXWNV15Zw5133sKWLTtQ\nFQYLy7JobW3mk5+8kjFjZrFjh1WZayajvo+mJv0dl0pQKiW44YYbuf/+h4ASrhsCfAwbVsu///vn\nmTBhRoX6Ewioc6SXYaCqVSymvhepFkmvx2AYTFHL2yMwUPY2GOyviDWYLK6BgYGBwWthkgIDg/c5\nRFYT+jvAvpFaS2+v5oV7aUOiIKN3fl1c16rQO2RcoRvJ3/l8fyfZZ59dxX/+5/+QzZaBOGBx5pkf\n4IorzicU8lcoKB0dmjqSSKjd6UxG03a6unLcfvvvefHFLah/8upobT2EOXPmEg5Hqa7WwXSxqCgu\nIt8pO9LRqK5ySF9AczPs2tUO2ECY4cNbCQZjdHZqudLqau0l4Dia+97VBa7bw8aNHbS3t9PWtpNS\nqRtIAsOABOBi2ynGjp3KlClTGT58LPv2WZWeAfFaSCR086/s7Hd3Q7G4nZtvfoBXXlmPbedw3Vps\nO01jY4nPfe4yTjvtQ+zfH2DbNl0dCoVUsqM8CEQO1OGRRxZz000/IZHoBgJAkUikng984BTOPnsu\n06ZNrHwfkYiuXMhvMUuTik59/WspPtIYPXCtvV6i+0bJ7EBam6xtAwMDA4PXwiQFBgbvIbyVRmOv\nqosYWA12zkAudyqlFYTEkVcUZLxjlctWpUlXOOOSUEgSIQG5qO8sXPggP/jBTyiVfFhWgEgkxBe+\ncA3Tp8/GcdT5pZJW7unsVOPt3auDv2QSstksv/71bWzZshlFwQkyfvwEzj77dKqrA7iuOs7no6Ky\nk0hQuYbPp+4pEtH+BpIkqIbbfSj1n/34fKMrUp+BgGpWFjpULgednb20tXXQ3t7Gtm3baG/fDbSg\nXIdLKBpODsgxbFgrkydPZ+rUyQSDDRVamDRlC6VHegdqatQzsG3l7rxq1XNs2fIIrmthWSEcx0ck\nYnH22WfzyU+ezZQpVRUPANA9Dfm8eBao+33hhTX89re/YuPGDdh2Essq4jhhZs06jauv/nfq6jKV\noN+7lnI5NbbIoUrzrzcJaGjov7a8VaKB773R2j1Yo/BgY74ZSp2BgYHB+xEmKTAw+AfiYHKeb7X5\n8a2qqbyZ47xji8MsUKEFlUr9EwyhhVRVuf2qCaCNyzIZvYMOkM+73HPPfG6//ZdAEcsKMGxYAz/4\nwXdobR1HMqkakFMp7W7r96s5yA69orpAJlPm9tvvYMuWrSguvs3kycdz/PGzKJftCt1JAlZRABLq\nj9xDINCfhiJ8+2gUxo8fxYoVLwA2W7a8RGdnJ/X1E4nFbHbvTrNuXZpUajt79iTo6pJt8DyqYTgE\ndKPMxoLEYhEmThzP4YdPpK5uaEWCVe4vFoOJE9V8kkl1/aFDtcNxb28nzz67krVrt+E4OVQFI4Bl\n5TnuuFlcdNGZjBnTUDFAU0kTlUqJbavXVVVw4MB2vv/9ebzwwjJctxefrwcoMmxYA9/61reZNet0\nLMti69YtgFuRZ5V+gWhUB95CvxJKj/QCDOYfMFiT/Bvt9r/R2v1bvTsMDAwM3i8wSYGBwT8IXq60\n/C2763+tE7EXfy81FeHDu65uohVevnwOkM26pNO+Sg+BJBD5vApMXVeUghzuvvtWHnroYSzLj20X\nGD9+OL/85S+orW2uNOtKdcLbFNzT05+TblmwaNF8XnzxWVRwXMPs2ScyefLx+HxW5ZqBgAqKQyGV\nVJTLmuIiO+bZrJqr41Bpas5mVWIyc+axrFr1Ihs3dgAOiUSCROIFlKNxCbXz3wM4qIZhabJQHgND\nh9bT2Hg4w4e3MmpUK65rE4upaoPQlJJJ3Zvg9UcAlRDs2LGPpUtXsHbtK7iug/pnPQu4TJo0ng9/\n+DRGjBhFTY32KJDAW2Ri9+2TPodOliz5EytWLMZxyvh8WcAiHLb5xCeu4rLLrqGpKe7phVCVIMvS\nlLPubs3517Kt/X0E5Ld3nff2qnsVGloqpaoJ9fVvfbdf/ruSa8r1RE3JwMDAwEDDJAUGBv8geHcw\nvYZOA6U+/15zeaPqgjeJiUYVVUdcjEV60huwyvG9vT4sy8WydNOq0IZKJVEZyjN//o089dRKlOSo\nxYwZM/nlL39IdXUN6bSmC9XUqEBRlGVE297nU9esroZHH32QJUvuARxsu56TTz6KI444gXxeJQNC\nDZKd7XBY3VNnp96Zl+ZXJYmq/pYgWubf0mLxqU+dzx13PM7LL+/FdWOoRKCIogW5fb99WJZDY2MV\nQ4dOYvToMYwe3crw4Q39TM06OtR9ZTJqfo6jnqkoHoEOsLu727j33qWsXr2OUqmEKCBBhlGjRnDG\nGXM59NCJFY+BXE5/d21t6pmJylIw2Mvy5X/hL39ZTLGYxLZtLKsX205x1lnn8oUvXM3YsUMqPSSi\nPFUsWgQCbr8dffGEyOd1EiUJgyQjA9eVfDawctbVpSsMA83H5LzXW7teuVzve6avwMDAwOC1MEmB\ngcH7HIOpu3g/E3gdibUijQpahXpSLitaj3DMhftfKqkSQk2NOk5oO8qYKsmNN97Ipk3P4zhBLMvl\n+OOP5Mtfvg6fL9zPDE3Uf0RhR97PZDTPf/nyZ7j11nk4Th7bznHkkSfzsY99mI4OlYAkk+o+JKEQ\nKdW6OvWTz6s5ynOR+yyX9bOJRFQiYVkwcmQLF1/8UTZvTrJlyy66ujKEw70EAiWCwSDNzbVEIg3U\n1TUSjwcryZAkM9XVasxEQtOfIhGVBPh86p5lhz+bhf37d/LEEw+xevVyXFf+CQ8AVYwaNZLjjz+J\nSZPGU1trUVenm5B9PnX+vn06SO/pKbF06WPMnz+Pzk5Ri1LVjJkzj+Tqq69g4sQJBIMqUQJdxQDI\nZq2KQ7Rl6V1511X3l04P7iR8MEh1aeD6PBgOtnYH9hV4x5FqnIGBgYFBf5ikwMDgH4SBNKF8fvBg\n5p2GBPtyTdm1FX135RWg3XXlOKHxiAyp9z6Ep+9FNKqDRQmEC4VOfvSj/2Lr1i6kQnDGGXP54hc/\nhev6+smThsNqt1s0+EU7v1BQpl+ZDGzatIHf/OYXWFYSvx8mTDiCz3/+M3R22iQS6nzHUcG/jCPB\nYlOTmtfWrWqOu3drRR+fTyU62azavW5pUWPJTnQkAsFgNWPHVtPcrLj+tq3Gqa3V9B+pQMj8i0Xt\nNiw0rGhUK/cEArqiceDANu6550nWrVuKz9eFZQWBMq7rY9KkmcyZcxbjxk2o9B8ItaqxUVcF2tvV\ntSIRl5Urn+K22+5l9+7dWFY3llWDZQUYOXIkl1/+EU44YUZlXvm8SloCAZ3Uqfm6hMNupRdAmsZl\nHdm2/o7eSC1ITOO88DYwe6l2hYI2lPO6b3uv5T3PW0Ew1CEDAwODwWGSAgODfxC8O5he11j57O+R\nFByMcy2c/UJBu9D29GjVG/EaKJdVkBiN6kSgWNTmVEpLXznmSnUB1Pk7drzKddd9nfb2DBDGsgJc\nfPGHOP/8j+A4FpGIovNIU3Jjo7pOudy/qRnUMc88s4+f/vRmMhkLv7/EkCHD+djHvsaBA5GKTGqp\npAL/qip9j9GoqPYoWk1vr/ouolHtjCzJg/D6w2Ht7ivHVFVpStTeveqc+nrtpiv9AJIY2LZOeBxH\nVVEcR71fW0tFejSR2MaDDy5kzZrtKJnSMq7rx7JKzJhxBGec8REmTpxIT09/RZ+WFp3ESeMvwPbt\nm/jJT25i3brncd06LKuEZRVpaYlxySUXc+aZp+Dz+SrNx95GX6/vgOtCKmWTzboHpbp5HbJBS58O\n5rgdj6v5d3Wp114PAznG636trq/X3WD9Am+18d7AwMDg/QiTFBgY/APxjw5SDsa5lsBKgjDX1QFe\nMql7ByQgE2nLgVBBoAtY/YLjXbu28LnP/Rv792dwnHr8/jwf//hnOOKIOX0a+2pnu7tbnVMuq4BU\n5EEjES2L2t0N2WyRm276NT09ZaCBWCzAddd9i3K5gVxOBe1CoRkyRO/aCw2oUFC76HLdTEYlD9KE\nO3CXWRKKSESNIzKmrqvmKDvYrqsVlhxHy3TG4/qZyWe1tWr8TAbicZedO9exfPkDvPDCi300oVos\nK4zrxpg+/Sg++tG5TJs2gWxWJQDS/CuqRd6AO5OBV1/dxe23383Klatw3QC2HQGyxONlLrvsE5xy\nyoepqYlUPAXkfqWBXGRmpRF6YMNwfb2uBBUKupIjDfQSxMPBHbfF4XqwIF7+9lawhALmDf4H9gv8\no/8bMzAwMPhngUkKDAze5xiMcy08dG/FQHjustsuUpMSpHnh3eH1+61K8J7JQE/PNq699l/o7NyP\nbQcIBrN8/ev/wYQJs8hmVVCrAn0qTbiOA3v2aPOvaFTGUrv7ixc/QVtbGnAIh0tcc811+P2jSCTU\nOKGQpix5JUUtS1UjpD8glVI/wSCMHq2uL03J4kYsQXcwqM3JxK3YcfpXE/x+UVbStCq5v2HD1M54\nOq0SAmWGlmHTpmd46qkH2LXrlb5m3wjlcgO27TJt2qGcdNIptLQcQjyurj9kiJaIlYZv6etQqkqd\n3HLLb5k3byGFgoXrBrGseny+Gs4//yj+5V8uo6qqgUxGNx5Lr0gspisk0jQsDd+g6UPi4RAI6PNA\nrZ+BzefeNSfvDaTNvdkgXioPMp+B/QJvpoHewMDAwEDBJAUGBu9jHIxz7d2ddV1NBZKA2bZ18iAB\nmQRgmYwOBuNxKJddkkk/Q4fCvn07+NrXvs6BA93YdoZIpIYf//gHjB07g717tUyo46i/MxlNp7Ft\nzVnPZPQ9dHTsYsWKJwGwrBQf/OCFNDZOwHHUHLNZresPapxYTLv/plLq82JR8/lFNtW2VeAtsqTp\ntHbjLZf18xCNfqmGVFVpPf5ksn81RRqlJTmwbdi79wCLFy9j1aql9Pa24fOlAR+uW4XjBDn88DM4\n5ZRTGD16VIXKowzRpFlbG8fJXPz+HL/5ze/49a9/QTKppEWhGduu5fjjp/Hxj1/G5MkjK2ZstbU6\nQK+ro2I4JzQpqRZIs7frKsqVJEugf8saEqrU271evX97KyJe6tCbaUI2MDAwMNAwSYGBwXsAb3VH\n9PU418Gg2oVOpbSTb2Oj3vmVwE+MqURnPhJR4wlVxHUtqqocurp28M1vfpH9+1O4bh2RSIif/vRn\nTJ06oyLB6VXbkaqB+BsIdUgCVRVYuzz88AKKRaX7P27ccM47by7hsOa+g1ZBqq7WvHi5hwMH1HHZ\nrA58m5pUYOw4ai5SKdi/Xzc2h8MqORFHZKE1CY/fq5jkfcZyn9msy8aN29m4cRXr17+A43RjWb1Y\nVgDX9ROLRTj55HM4++yziMdbSaV0T4bMKZ3W/QwNDer7SacL3HHHQm6//ce0t6cBu68HwebQQ2dy\n2WWfY+LEKZRKihpVU6PuR/wAhP4ja0DUg4RSJH0S6TREo26lmVqSQ7lX71rymtcNXJt/TZD+1/Th\nGNMyAwMDg78OJikwMPgnx9+6I/p6SUShoIK/nh61m1xfr3fMMxkVOAuHW5pHZSzZ0Y/FXLq6OvjK\nV37K3r0pyuU4kUiMH/3o35kx4whiMU3HCQRUkCtqPaJwlEqp1w0Nehc/lYLVq19h48Y21D9lQS6/\n/BOEw/5KgFpX1z84HOhY3NPj9VNQ79XVUXH9FaqM7MwLRUju1+sf4PPpZyH9Bd7majFACwZTPPfc\ny6xevYFEohNIA0GUxwA0N49gzpw5zJ49i2i0htpaKjz/7m41B5EoTST0971xY461axfxxz/OY9++\nXfj9B1BSpUFGjpzC5z73eaZMmUMmo8zbwmGtJORNBIUSJg3o0hMgiR+o+wyFoKPDJZvtXy3yriU5\nJ5HQTdWgpUrfCqXH0IAMDAwM3hmYpMDA4J8c79SOqOz8i4uwd+d9sOuJZKk0HwvNqFQ6wHe/+w06\nOlJAPeFwjG9841qmTp1ZaSoOBJSMp4wvEpigA3ih+dTW6iB+6dJngSqgyDHHTGXEiLEMHaqSEeG4\nC31IGnxjMZ3YSHDc1UWFRiM9AqmUCnwlQamu1n4F5bJ2Y5beAZE4DYdVf4D4DSQS0NPjcuBAO2vW\nvMSmTavJZl2gDmVupiLlQw4ZxezZxzJ16lR8Pl/FRE0alKNRlRRYlhpXVJggw8KFq3j88SWkUtuw\nrCzgx3UDNDRUcdVVX+TMMy8gGAzgumo+susfiw3eJD6wgiTNvJIsgHqWNTVORXlKji8WddIg36VU\nZ6T5Wihp72Rw/3rypwYGBgYGr4VJCgwM3uN4q9Qir/usNBt3dytqjZc+JMF3NKoCaW/iUC6n+drX\nvsaePXuwrBDBYJgvf/lapk1TCYGo98hOuHD6xXk4HFbXSSZVAJzNKrpPdzesX9/J5s3tQAiwmTXr\nRIJBRaEplWDXLkWPqa5WCYfjqOv5fP2TgJ4edU1pPhYZznBYJSBtbbrXIRJR8ymX1XFCQ5IKRD6v\nxqirU89i9+5Onn56PS+99DJdXbtRCUAMcIAUfn8NY8YczpQpUxk3bmil30B6E0TiVKhYtbXambi9\nvZcnn1zFsmUL6e4uYVk5bNsHZKmvr+LKK7/KJz5xIRCvNIV7+z6kKVj6QixLVwqk+uFdQwMbhiVZ\ni0bVM/FSeurr+68hrylZsaiPf6eTApmrvDZJgYGBgcHBYZICA4N/crzejqhw+72BugTzb6X3QMzD\nBvLFJYi0bV1hiMfLXHfd59m4cRO2HcWycvz3f1/HtGkzK429MnY0qgJ+Ua3x+dQ8EwlFGaqp0XSX\nHTvUPJ5+ejMqyHYYN66J8eNbKg2+snMtiQXoakMs5MIoFwAAIABJREFUpnayIxEVZIOaSyKhtfKF\nLhMIqB8JYqXp2e9Xga9Qg4JBTR8KBhOsXLmaxx5bw4YNvUA9kEf9c2sDOYYMiTBz5mmMGjUVn6+a\nbFbNU/j7qkFb/V0qqcSlpkZ26ntYsWIR99+/jN7eVN9zT+Pz5WlsrOaTn/wkH/zg+TQ0RCvqQd57\nSKd1j4ZSh9LKQoI9e3Slxhv0e9eNPOeBu/7e3gKBVGVkHgPX3TulEmQSAQMDA4M3D5MUGBj8k+P1\ndkS9bsXeZk/pDfCePxDxuFa2keNaW7W2vHenN5XSDapKvcflZz/7bx57bDkqcC/ypS/9jBkzZtPd\nrXb6fT51/vDhamfdtlUgKrvY0iycSPQP7ItFFSh3dXX2jW0xceJkXFdVANauVcc4jroHkTSVAF+C\n03hcBfHZLBWjLp9PB9GRiGosLpdVdaSrS38uO+t+vxqjtzfPli0vs2bNSjZseIJ8Povr1gINSCXD\n56th/PhDOPzwyRx22Fgsy6o8L0kqxBNAnk84rM3WSqUuHnjgzyxa9Ai9vSksK4fPl8R1w7S0tHDR\nRR/jwgs/QH19uNL8DSoI91K6ZNdfgnpvMiDrRPwp5DuV3oyB0qGBgEuh0D8LGLiexJtCkhHpu5Dr\nyDECoxJkYGBg8I+BSQoMDN6l+Gt2Tw/2ubdCIDvzXirH61E4JFjs6uqvNz+wKiHzTKcVtadYhAUL\n/sTvfvcIUINlpbnwwvM555yPVPjl4bAOeAMBFfgnk0pi03E0ZcbroCtBMsjn7UAWKFNf30Q6rVWL\nRApTdtzzeTWemGMFg+p+sln9DBoatGJQuazmJCZdYkYWjWqjMccpsWXLNrZte5TVq58mmUwBfiyr\njGUFAQufL8+YMaM44oipjBs3mWAwXrl/6VcQ+lEmo8dPJtV7yqStk/vvX8SSJQ+TTnfh8+Xx+Rxs\newcjRozgU5/6HGec8cE+/wE1f1EIku/fq+VfVTW4t4RAAnW/XysnpdNaZtW73tTacV/zvhdigCY9\nBnKsJGjifj1QOcgkBQYGBgZ/X5ikwMDgXYi3S2M9GNQcdMHrBYSDnV9Xp1+LLr93d1mahWUneNWq\nNdxyywIsqwHbTjF79izOO+9TFRnLYFCbZMXjKhjO51XyIWpAmYz6La9bW9U8WlpUwBwKQTjcCxwA\nXMrlcoULL5WBUkn9pNNavUickPN5bWYmhmyZjApYq6pUwpBManUeUPe2b98BEonN7Nz5Ips2vUgq\nlcbvL+C6WSCMbRcolwOMHTueY4+dxTHHHI3jNFTclGUO0iRcXa0qJT09qkJg2+pa48ZBd3cnf/7z\nfTz00EpyuXyfkVkZSDNqVAv/9m8/4cwzz6WmRn2hA5uCB64fSYYGri35nt/MWhhYVXi9972fe8cf\nzLvAJAEGBgYG/3iYpMDA4F2IN1IUerNVhHhc032CQSpa97Lz39Aw+Hm9vepHadH3D/oGBnCBgBo3\nGoX29gP86le/7aODxJk0aSoXXXQVnZ0Bmpt1/0EkonsJenp08F8qaUOuclkFzbKzXCzqZMLvh5Ej\na9i69XlcN8ju3Ws57bTJFT8CoeWA2nEXDnw6rZKPclklM3JMKqUrAXL/KinoZdu2HWzduo2tW7fQ\n2ZkFuoFefL7dBINpXNeHbVs0N4/i2GOPY+rU4xk1qrVSkSmV1NjSv1Auq8Sjulo//1RKcfyVd8B+\nFi9+gCVLlpDPZ3BdVR6xrByHHNLExz/+75xzzhlEIj4cR53r7fOQhuKDrZ+BdDPvepIAX56H3ENd\n3VsL2t+MApAkKq93jIGBgYHBOw+TFBgY/JPBu9MrjcTSGDtYwFVV1Z8nDlp/Xl57E4xCQfcSSNDp\n/Ux2ouVa9fUSRJf54Q//j+7uLJblp7a2ha985Wuk00nicafiQiz89tparSgEahfddVXQnE6r46Tv\nAHTCIEpAhx02jWXLHgAiPPHEg4wc2czUqafiOFZlZ9xxVOAdj8Pu3bB3r763XE5XCSIRlRAcONBJ\ne3snbW072bBhNzt2tOO6BdQ/lXmgF+UMHMJxahg6NMJxxx3FySfPZejQqeTzVkUhSRp4RbZUKhmx\nmDKFi8W0ZGp9PWzfvpd7772fpUufoFBwsawEIrc6blwNn/3sp5k9+1RSKZtQSN2bNPAKJSiVUtUG\nb1I0kDbmpf4MVpEKhdQz6+pS8xaFosECddd1cQdKFQ1YfwPXVyjU/5rynve1SQoMDAwM/v4wSYGB\nwbsQg+2wgt7BFwqQHJPP6/cGSwxEOlTUfSS437lTaerLOeIPIAGl8NITCRXES0A/MDmIx+HXv76N\nl19+AcuqwrZDXH31NQSDDfT0JKmqciuUHHHjtW0VdKbTuoEYtKKP36/mrKhC6r1USv2EwzB58lFM\nn34Ma9Y8j22HueuuW2ltXcvUqcdx6KHDGTZsCE1NEWIxLe2ZzSrDrd7eLg4c6KGjI0Ui0U0yuZdk\ncjeZTBEoAhGUqVgO/c9kmXA4z7hxE5kwYTKHHTaRWbNGEI9b9PSoREAg6j7SOyFGaN4fxad3efLJ\n9fz5z/fxxBMv4jgullXEdX34/TnGjTuEq666mHPPPZFQyKaj47W+AmJkJs9PGqq7uvQxUgnwNhYP\ntkMvx0rvxRtVo14vIRC8Ub+LSQIMDAwM3h0wSYGBwbsQg1E8JP6SXX7Rs/dCmjZljIMFY94KwcB+\nhWJRJwWDSZHKdYpFRStxXVi7djW33vq/WNZIbDvIhz98NtOmHdonq+lSLFqVBlsx38rnRcFGJQa5\nnPqprlZjiuFYuaxpQ729am4+H4DF5ZdfRSLxY3bs2I5lWbS1baGtbQuLFuWxrAwtLQHC4TiBQDfZ\nbDWZTBWpVCv5fAkV+IdQdCAf0NX320JJhwIUGTKkhVGjJjBlymgmTx5NdXWYSISKE7N3V14wZIhu\ncJZm2tpaHZAXCgUefng5f/rTfaxf34VtF3Bd8PlyuK7LYYeN4wtf+AKzZ88mELDIZNR44uXgRSCg\n1YFkjUhAn07rZCAQ0OvD+10eDO9ksG4SAQMDA4N3H0xSYGDwLsVAaVGvpKjQXrzVAe9uMLw22BeJ\nUa/6kASYwieXsYW+I3NobqaieS9uwto1OM/Xv/5dII/P18H06eO56qoL6O5Wc8zlLLq71XVsW82j\np0ffg9+vJUElYI1E1HtCORJZTWkY9vlEtrSFb3zjezz88C08/PBKSqVIH6XFB/jYty+BbSexrCSO\n043rNlAu20ANKgFIoShBRSwrSzgcZsiQGpqbh9PaOokxY8YSiTRUXJ0FQg3K5fSOvFQEcjk1v+5u\nbcpWLKr3UqlOli17lEceuZ/9+3uxrHRfghME4kydegQXXvghTjnlcOrqVDOFBPBCN5LvVd73NhB7\nv+9gsL8RmkBMxuQY4/prYGBgYAAmKTAw+KeAd0dfdtYlYBZKUCKh6T7eSoM3KQBFoRFuuzcolGvU\n1algv7tbfd7Sos6VHoR0WvHzpfF33rx72LatC8uqJh4P8V//9S18Ph/RqIxtVXwDROdfAljh9ReL\n2pegvV2r5QiVKJvVqkK5HJWd83gcRo6McMUV/8rRR1/KM8+8zIsvtpFI7KKraxflchWOcwDLakD1\nBIBlpQmFwjQ11dHa2sTQoU0MHz6EESOG0NraQqlkV2hOwtkXT4POTvUjykV+v0qsAgGteBQKKSpR\nT486Px6HbHYrt9/+Z5Yvf4xCoauvebqMbacJhUKceuoZnHPOBQwZMo7qav2dBgK6IuNNEDOZ/lx/\nCfTFSAz6J3nyvAdSzAbj/JukwMDAwOD9CZMUGBj8k0ECPaGjSJ9BsajeT6XEWfe150oQOXB3WBRr\nZAc5EFCGXV53YHEYFu1+nw+2bt3PnXc+iuv+/+2deZBc1Xn2n9vTy0wvMz0z2lfEIrGZIAkZhAAB\nlsAmgUDFNjiWY5kPO3x2TGwcgVNFgkOI/SUGYsXIUhBEkVMhxlAQXLYwxiADASMVBgnjCIGsBQmk\nmdHsvUyv9/vjzNvn9J3uWXq27p7nVzU103c599x7+krvc8671ANow9e//hXMmDETqZQ6t6dH3J2s\nvMDebFYXxrJtKXgmbkHqcyajC4pZlrrHeFx9lpl6WT3o6gL6+pqwbNmlWLr00v4MSwnE411oakqg\nr89GMulBfb0XgYAFj6cRsZgLdXXAtGm6iJnfj7yA6JYWvboRCukYCL9f9UfqLHg8Om7BslR/wuE0\n9ux5Ey+++AL27dsFIImamj64XHEAccyeXY+bbvo/+JM/uQmBgEpDFIupcTXHTp4ToFcGQiHTFUnv\nMwmF1JhJdiI5xvndoBAghBACUBQQMu6MpAhZMbxePeMrBa/kR2oEiIFsWcq4bGzUxrTzumIkSnVe\n2Sd+54XuIRhUPy0t+hr/+Z9Poa8vCZcLOPvsxbjlls/kXGpSKSUiTp6syRnN06bp+5GAW3GxEden\nhgZ1TDSqfre35+f4d7u1mEgk1I+sQohgUM/Bh2nTZmLmTN1OQ4My5ONx1YemJvU5lVJ9kxiHQEBd\nS2bqlRuUuv9p01Q73d3qGAnyFd/+Q4dO4tlnf4Ff/OKXaGuLAXDDthtgWRFYVifOPPM03Hzzjbju\nuk/A6/Xmuf40N+e7+oj4E7EnY2VWBXYKPJ9v4EqAjKmMoZxb6vdSF6yz4PEMHWxMCCGk/KEoIGQc\nGcsiZKZriPwtqUZFMHR3a8PR7dbGnqThNGeJzVUAMbB7e3WgsbQvIkAQA7+t7QReeeUFWFYcltWH\nO+64HZlMTc6wtm31E4+7kM1mkU6ra0ybplOABgLKkI/HdV9mzlTtHz0qfvj63rxeZZC7XKqf8bha\nURA3p3Ra1wEQl6V0Ws3wh8PquiIs0mldL6C7W/XH61X9a2sDjhxRwkTiCSQWw+9X143H1bbZswGP\nx8brr7+Jn/1sG5555nWkUmHYtgfZbBBAHSzLi1WrTsf//b/fxNKly+DzWblUnGZKThlHcdMSFyFZ\nCbKs/NoTw6lnIa5iZvvmd3Gk38v877SFVMpi8TFCCKkCKAoIGUeGMtpGgsymm4WqJD2pGJFutzb2\nJe5AAoTFyJdrd3TkZy+SGWppT9yRAC0s0mllXLvdwH/8xw4AcQApXHTROVi+/KKcD30wqK6fTgMu\nVxaJhIVMRhnsDQ06+FaKd1mWrrzc1KT60Nmp+lFbq2MIMhklEvr61HGAEgg+H3Kio6FBBUbHYjpb\nT02NLmIm14/FVDvptGqzs1Ptq6lR+yRzT2enulZtrX7ekhHJtiN44olf4Cc/eQy///1eWFYU2awf\nQB1s249wuBGXXPIxfOxjl+K006YjHFZtx+NqVUFm/OV7YQZ3OwkE8ld1Cn23nBT7/hU7driiQLAs\nC7ZtUxQQQkgVQFFASJkgsQFAfgCpzPbKDDygZ+4tSxmsHR3aF15WCWIxZRCbs8rmjL+ZSlPcj6QI\nWjIJfPCBdqEx05WGw0A2m8YLL/wYNTVtsO0sbrzxdgDKcBUhobMJWUilXMhm1XaPR68UiABpaNCr\nC5Llp65OiwFpT7L4eL06vWltra55IK4xHg8wf75eTZDrzZih7rWtTcdRtLfrZy4rIzU1yPXXslTg\n8KxZIgzS+N3v9uK1117Erl2/QiLRC8uKwbJSADyoqenB8uXLsWrVF3HWWavg8XgxZ466t+5u/TxT\nKXVtEQHmOMs4DlXpd7B6FjLGpvATsSfPiIY8IYQQgaKAkHFkuCkfVUVg/fnkSW2gS657QYz7pib1\n46xMLMatWcdAZsZFMEjhMUAJihMn1N+zZ+vriG+99O/kSdXHWbOAt9/+FU6e3AuXy4Omprm45prV\nOSNWVii8Xm3Qe71ZZLO6CFkgoI7r6dGrG9OnqwDd9naZhVf7wmG13+XS1Y9DIdVXt1sdLwG+EoAs\nLkINDeo5SnxFMKhTiO7fr/rZ2qrdimQ1pK1Nxz+o/ts4fvwAXn/9ebz00hvo7j7RX2isHpZlw+WK\nwe/34/rrr8UXv/hZnHPOOWhpyXfHMgWB1BUQoz2R0CLFFAXiVuTMLCT7B6tnIX+bq0RSsRgY6DI0\nXIHANKaEEFKdUBQQMo4MN+WjM7hXgltl5luOMWd9xcDz+QZmlBE3HvnbsnRWG3HdsSzlGtPZqWbG\n02llMEsKzmxW7QPUb2kzkQB27HgdmUw9XK4YbrjhBkSjXrS2qnNldUJ8+mtrbdTWZnPuTocOKQFg\nuvWIsS++++LHL0azpCwNBNR5brfqh8QQ1NTo64mbVVOTfjaAdmvq6FD7JdNRd7eufyCGuGQcOny4\nBa+++jp++9tn8eGHR2FZGdi2B7ZdCyCIbNbGwoXz8NnPfgaf/ew1mDEjnCtWJs9AakGI6086rVOd\nOr8LPl9+piBzf7HAYPNv5/dIxluCoc0gZPmeybaRiALpj21n4fHYFAWEEFIFUBQQMs6UktlFDHmZ\n5XVWMDYNs2BQGcCm0RgK5ccDSNpM0yUpkVCz/9msduUB1Mx7MKhms6NRdYykOfX7VT/ee68NQANs\nO43zzvsoWlqUYS+ZgSQwOhgE/H47NxOeSikjvL1drTiI77+46Ej+/0xGiRiPR+3r7VWz+HIfPp9e\nYZBsRSJ2+vp03YBoVIshM8g2FtNVk10u1b7fr1YHOjvb8eabe7B1614cOnQQQDs8nhZYlguAH9ms\nF+HwTCxdejEuvfQC/MEfLMKcOVbu3s0x8np1piPldqXH07YHVqQWt7Gx+B6Z54lANFcRRACZwnMk\nbXq9QCDAzEOEEFItUBQQUgZItWEx2CX7j7kaIC4yzplhZ7pJaUN8x4v9Ng1S07VIZqqjUT1rL8a4\nzMIfO9YCwIJthxEKLcpl45GsP729qo3aWqCuLotIpCaX7UdShra3K0NZXJQk8DmT0dmI6uqUUBD3\nH8kalE4rA17ccOScjg79rHp7tZHtFFEq1kFdIxQCotE4Xn/9Pezf/zreffd1ZLMRZLN+WFYKluVG\nNutCMOjBRRddhuXL1+Kss86Fy1WT65NULzbFl23rGAYJeq6ry18NMP8uVltiJKlD5TvjFIjmPufx\n5cBYpO0lhBAyOigKCCkDZLZWimU1N+tZ/VRKrQSEQvlGXSSiP4shHgrlV8ONRLSxJe4sEk8QCCi/\n/JYWZUTLTHomo/zsRZiIS053N/qLgkVx8mQ3LKsWbrcbljUXsZgyyCWoNxJRgb7NzUAymUVPjys3\nK63SlCoRFI/r7Ei1tcq4rqlRz+CDD9TxlqXbjEZ1nn5ZRXC5VJ/r69VnKXYG6JSt5gx8MKjEyAcf\nZHD48Dt47bVdeOONNxGNuqD+SUzC5XKjpqYPbncC559/Lq6++vNYvXolGhsDOHFC3asIKBEYZsCw\nIH+LS5Ws2khtBnkmxQzhkaa0NVeC5LMZV2D2qVyM77FK20sIIWR0UBQQUiYUc/Ew01AC2qiTGX/T\nCG1pAebN08ahrCLILL8Y1FJDoLFRp98U4zsW03n75dxp09T2kyeBQKAOtbUu9PU1I5Hw4ciRbjQ3\nN+dSeQI6M5DfD4RCNpqaMvD71fmdneraPp8yriW9pwT62rZyAZL7EzEiQiadVoZ/KKRnwTs61Ha3\nW92zy5VfK0GEQSwWxauvvopnnnkNzz23H62tWWQyXrhcKbhcXgAWgBqccspirF59PlatWoEFC5rh\n8ejsR3V1Opg5k1H3KNWlTVGQTCqRI6sHZtC3uPQUWh0wjXpn9iDZNpTB7HQJknPKRQiYjGXaXkII\nIaVDUUBIGTGUi4fTdUjcdEzEyJLgYJmZFoEhBqOcO2OGOiYWU6sC8ncsprMNSSxBOAyk0y7Mn38K\n3nuvBUAQnZ0nUFvbnCsOZoqIvj6gr8+C359FKKT6lEioY/x+1ZfaWp0Rqa5O9UEyBPX06FiKWEwX\nTstkdDpVr1fXHgC065HbreIZDh/+PV599VW88cbPsXv3K4jH62HbDchmawHU97sBxTF/fh1Wr74c\ny5evRjg8P2fk19QoYSHVkuvr9fOQVR1ztt/n08XGRJh0dWl3JZ9Pp08tJAics+aFApIJIYSQsYai\ngFQFleaTPFgmGdnv3OckGBwoCsJhne9eUno601LK3zLLLm5I0ag2gCX7T0eHMmi9XjVjL8G5M2cu\nxnvvHQWQxssv/wyf//w5uVoA4ork9UpMgMo8VF+v3KAkLkAqCEtgsM+nfh86pPrU0CAxCUoEBALq\nc02NzjwkqxGANsLr6nrxv/+7D++8swu/+93zOHHiIIAEXK6e/sxB9bBtPyzLjfp6Ly68cDXWrl2F\nyy47E6mUhZ4edY+Sjcjl0i5ZmYx6fj6fqqBsugxJETWzVkJLi0pvKlWF1cpJ8YDiQnUJnLPmQ323\nyzl2oBCV1l9CCKlWKApIxVNpPsmD9Xck4iYYVLPUMqseCKhtnZ06sFUMbTNIWWavAXVMIqHOOX5c\nbfP7dQExyQYkM/Zy3gUXrMHLL78CIIJdu3ZjxYr/wWWXXQLb1sHG2mi3AVi5oNxQSPUvnVa/GxrU\nj6xkfPihWr0QFyG/XxnWM2ao61uWOjeZVP1MJBJ4663fY8+efdizZy/2738byWQGLlcKltUDlysJ\ny4r1C4IGLFhwLpYuvQjnnrsUZ599Dnp6PDnD1O0G5swBTjlFB1XLM5H4DolZMAOwRTSIq5IILUnR\nGo3qOgU+3/DdY+SZFEtTWuwcoHJEcqX1lxBCqhWKAlLxTJZPcqmrE8X6C4xc3DQ16YxDgnad0YXO\nZGbaWd22pUW56yQSyMUESBah5mbVfjQKvP++TvPp8wFnn70EF154FXbtehaZjI0HH/xHtLS8hxtu\n+By8Xjfq63WQKwBYlp1bgZBKwfG4qlcg1YxlVn7JEjUjLy5MlqVcmJqbRby046233sW+fQdw7Ngu\nHDjwHvr6UshmA7AsC5aVgWXZAGKw7RoEAmFcfPHHcOmll+PCCy9BX99sHD+ur5HNqn6Kq5W4NUWj\n6m8zNaykXRVjXZ6jadjK595eLSRkPMxjClFo1nywNKXFqDTDutL6Swgh1QhFASElMNLViaGCR4H8\nbEKmW8pggajOdJsSWGymJJWgVmnfbFsKfknefsvS2YEyGd12Q4M+LpNRbjyf/vS1OHDgf9DZ2QrL\niuCJJ36IXbuex9VXr8UVV6zF7NlzcveZTlt5QdMNDbrGgJnBB1DG8wcfAO3tfWhpOYaurgPo7HwL\nb73Vhnfe6cCJEy2w7Vpks1lYVjdqajJQKxFpWFYfADdOPfUMrFp1Di6//EJcdtkfIJn05LIvtbXp\nGX4JSpaKwYkEcOSIftYigsyxkFWNVEoJB+d4CbJa0tOjA68lrqAYnDUnhBAyWVAUkIpnMnySR7I6\n4RQQzhSRgribyN+AMkgHa0ty0st5YtiKIAC04Sr7zexGfr+afZcaCem0LgZ28qTqo9+vfmTWvr5e\nZtSb8YMf/CPuv///4fXX34ZtB3H4cB8eeugJPPzwY1i0aD4WLw6jqSmAxsZTsWRJN1wuHwBvf8Vf\nGx0dvejq6kRfXyu6u9vQ2dmK48djOHy4C8ePn0Q2mwXQDrf7MDKZBbDtMNQ/W12oqckCqIFldWHu\n3LNw7rlLcOGFH8HKlRcjGJyBVEqtRMgqgBAOqxoJgK6gDKhtIoxklSAaVc9EahCIC5OMvwQ7O79/\niYQ6P5vVwdeAdh8a7PtZSUJArcxYk90NQgghYwBFAal4yml2tdAsfqHg0VQq30/cdDkxi4xJMLDZ\nvpNIRBmbcm3TAJbYAkk/KqsDLpdqWz7LrLe4/NTVqWOSSWXcNjbqYmKAXlEAmvEP//CP+Pd/fxJP\nPfUk4vE+WJYP2WwChw4dxJEj7QCSUIXOGmDbdchmQwAsuFy9sKw4bLsWlhWHy3UclgVkMrMBePq3\npWBZKQABuFxxAEn4fF6cffY5OO20C7FkyXlYs2YJQqFp8Hi0C5A8w0RCxwrIs2hoUDUUolHkgopF\nLEkMgBkTYX6fRKSl09rlScZFYjg6OrRIkDoMHo+urCxjXg1QEBBCSPVAUUCqgokWAoVWJ4DCLkVj\niblSYIoO8dMXg1hmum1b7YtG89OSynmdncrA9flUlqFQSGfbMe09ya0vgcuSdlPtc+Gzn/0kPvGJ\nT2DPnl341a9exJ49vwPQCZX33wMgDcuKw7LSsO3a/s/d/RWDk1AFw2L9WYFSANJwufowd+48nHHG\nqTjzzHk488xTMWPG2TjttNMBeNHVpcRKIKDuTyowixFuWbqPUt/A61W/Z8xQx374odon7lPi+9/Q\noFcIGhv1d8uMz5BVGhkLcQ0yVxIkRsGytKAYaqWgkrBtG7a59EQIIaRioSggU4axTFtaaHViMJci\nUyCYFYYBtc8MZjVnpZ1BrDKbLfEDpi++YPqsm25EYthLm1Lt2OXS2X7icX28FCKrq9NiwLJU8HFT\nkzo/FlP+/4EAEAgEMHPmlbjooiuRyXQinT6Eo0ePYM+evTh+/DjS6Tj6+jKIxTwALNTWhuHzedHU\n1IwZMxqxYEEQ4fAM1NbOQn39XJxyykL4fHUIBFRGoGAQOHFCVVuOxVSfYjFdIAzQz1FETTqtfoJB\nvdphCpxFi9SxLS1KVEgqVZ9PxU4MFuTrFIBSMM3r1dmInHEdMq7VAgUBIYRUDxQFZEowHmlLncJi\nsIwygDbCxWh14vMNXAUwMY35ri61zbIGtmXORMvMtZnaUgznri5ttMZiKhgW0O4zgBIEplhxufT5\nPp9aWfB4VK0BU3T5fI2YPr0Rl122DMuWnYueHguLFp2eC/A1xY7Ho1OfShtm8S+p+qviENQsvrgF\nyTHd3co9Z/r0/FWDcFgLBmnXfD4ikhobdY0HWUlpbh4YFGyOiYg22W4KAAlq9vm0QDErU8sKxmjE\naaXV5iCEEFLeUBSQqmM4fv1y3EjSiA5lgJkuJXKsGRMgBrEEA8s5QjA4uBFq9kPSW5oTtTITLTEG\n4h8PKGNe9ou7kRQ2kxl1WRFwuXTVYJdLp+7H+dxxAAAgAElEQVT0+fQst/TTttXfiYQ6LpNRBnYw\nqIzhZBLo7lZLGVJ0LBrVbj/mPZrPJxzOz/pz4kT+Skk0qu4hk9H3CKjtbW26qrGsboiRLgZ7NKpr\nJsgzcbmQS6Vqfm+KjbvzsxkjYq44mL/HSpxWWm0OQggh5Q9FAakqihlL49Gm0wArZESKq48pSkzx\n4Aw8lYJZ4m7iNEKdFYzFOPf51Lkywy5+9j09ymhualLbIhFlDEt/LEsZ/Gbws9erKxpLYHEspme3\nE4nCbjXTp+uAW1lNUNl7LKRSajbfFDOmUS0Bws7nLtfr7NQrAFLXQFK7iu9/PK6Oy2a18JHnIasf\nIjpiMbUtElHPRlZSRDg5++F07RKB4hR18kydxcac7mbO9ksRBWPRDiGEECJQFJCqYrh+/cDIVgmK\ntVkIp2FZKPsQkG+EA6p/MrtdCJlxFiPVzH4jAkQCW8X4nzZNz5Sb2Ym6unT6UWkzGtVuPF1darY+\nnVbGvBjAtq32RaPAzJn51xejXWbna2r0zH487soFP5tFvIpl44lGtbAQUSbtdXXlZ/SRZ5jJqOP6\n+vTKQHu7FkiAEg3i5jN7dn4/zDoP0p/eXv296elRv8WdSQSQ0/A3BYBTJJrfCe1qVXi8CSGEkInE\nNZKDn3/+eSxbtmzA9s2bN+Pyyy/H+eefj5tvvhkHDx7M259MJvHtb38bl1xyCZYtW4bbbrsNra2t\no+s5ISNADGqZxZ3oDDCFVhWkGvFg7k2FPssqgtyPZAKKRLQvfTyu6gzIT2srcPCg+m3GNogR7Pfr\n7ETyrNJpbUC73foastJgZt8BtFiIRpXx3damBIWkRJVjzJSr8iP35wym7upSP36/FjyAuu+ZM1Uc\nRG2tMtQbG7WQkDakKrJ87urSRr4IBed1bVuJgRMn1H3IPUpfne5EhVZN5PlIe4mEfu4dHap983rF\n4lGKUcx9jRBCCCmVYa8UvPHGG9iwYcOA7Q8++CC2bt2KDRs2YM6cOdi8eTPWr1+PHTt2INg/ZXr3\n3XfjhRdewF//9V+jrq4ODzzwAL70pS/hySefhMs1Il1CyKAMtiJQajCm2aYYkM7MQM5jnXEFhbIV\njaQvYmSK/77UFJA4BAm87evL76fMmMuqRH29Egzd3Xrm37J0jIGsPni9ypiuq9NGbTqttom/v2UN\nzM0vhjygU3Sm0xYsK5tX0VeCb2UFQgRKLKYLgomrT1eX6ofp4uPz6Zl+M4uTxAqk02pbQ4NeVejq\nUqsJlqXEhSkSpV/SD1kFkG0jpZCgSyb1KpKMhykKR/J9GO33iRBCCHEypChIJpPYvn07/uVf/gV+\nvx8pI8dhJBLBI488gq9+9atYt24dAOCCCy7AFVdcgSeeeALr16/H+++/j6effhr3338/PvGJTwAA\nzjzzTHz84x/H888/j7Vr147TrZGpyHgYS87sQV6vNsQF83oyWy2fzQrGxfoylHuTtCeGvuS+l9lo\nyc4jsQFiFMfjykh2u5VgiMeV4S1uQoIYwPG4NlYl4Fj84/v6lAtNOKxWOeQ8M45Armu2KUXPpk/X\nNQ5MNygg33XKvCeZSW9vV65QIiZMFx55LnI9qUdgGvsSI1FTo4OqVRpVdS8iuswK0WYQtykQRDh4\nvQOLyxXDGVMiLlaj+W6WqxBgViRCCKlMhpymf+mll7B161bceeedWLduXV5e6r179yIej+PKK6/M\nbauvr8eKFSvw8ssvAwBee+01AMAVV1yRO2bhwoU4/fTTc8cQMpbIDPpgOeZLabOQq0gkMtBNRGaE\nzWOHmm12ujeJsBCXHfPHiTmzLTP306frdJxiGEuArsQsiHgQIWDeYyikswdJ32UlQQKaxd9e+mRe\nI51WRvz06UBtrZ27phjEEsMQjebfk7QvYkPiEGS71BwIBPJXZGQMpk1TfQ+H1d/TpmkBJTUL/H4l\neMSoNzMNmYg7lWRkEjel4XynBnPvqWbXn0JuU6WstBBCCJl4hlwp+MhHPoIXXngBwWAQ3//+9/P2\nHT58GACwYMGCvO3z5s3DCy+8AAA4dOgQpk+fjlpJgt7P/PnzcejQodH0nZBJRwJ+h9o2HEzj1HRX\nkuJmsuJgZu4xg479fvW3zIAnEspIN3P2SyYeuV42m5+KU4xemblPJlVMAqBm16W6b2urajsY1AZg\nT0/+DLwEMTc0ZHOz9+IS1NurYwkiEdUnEVKSVjQWUzP7DQ3qxxQtzucN6LZlfyCg/pYMRNOn62uG\nQsr9yDTUpU6ErFA43ZXk2TuvPZiRL4LNLDAn+8zaBdUkCgptq5b7I4SQamZIUTBz5syi+yKRCLxe\nL9zu/GYCgQCi/VF80WgUfjOReD9+vx8nTpwYaX8JmTQKxRaIW4nT6HEWpxpp/EChvyXtaCqV7z5j\nVsqV1YZgUB3X0ZHvu6+MdHV8V5c6P5PRFYvNa5piIxbT+wMBdW4sptuW42RGH1ArEKp4l41UyoL8\nU2JmAJLMQLGYdsWRYmZmTIS5uuEcE0CNi9y/hCmJgJH7MYu81dYOHBOzToQZO2LWGBgp5sqMma1o\nuCsOhBBCyEQxqpSktm3DMqfADCSAeDjHjJR9+/aVdB4pX+LxOIDhja1lWbnvVDabHdd+yXXkdzIJ\nxGIWkkkLHo/dv82C16tcZGIxIJWy+l1dLLjdQDicQThcuH1lKKq2PR67P7WnlZuRjsWsXDCw3682\nptM6PWYqpQNzdZ+VIR6NWnntZ7M20mkL8bgy0nt6dNvd3TYAq9/VyIbfb6O725UzyiMRF3p77X43\nmiw6OlwALIRC2f77tOH12v0Zf1z9/c2itxeoqVFK6vDhd/vrFbgQi6nnV1+v70mEVCymnmlnpwvZ\nLFBXZyMateF220ZfFV6vHgNBhEN3t36GgLo/8zm3tTmm/R3jUVOT6V8VUd83JRSsPBdKjydb0Li3\nLAuxmGvAyoJtZxEI2Hn/Pkp75r+Hxf7dlGNtZ8OThPO9Vc/Pleu7bdtFnxEpb0bybzKpLDi21YuM\nbamMShSEQiEkk0lkMhnU1NTktkejUYT6p/2CwWBu1cDEPIaQUpgIw8g0wizLgtdr9Rvi5rWVsZ1O\n2+jpceXcaVSAq41k0oVkMt8wEnERjYqhKjPKNjweO2fkyt8iQGSbaeDadr7xqM5RlYRFVPj9dv81\n7Jyhr/upriHCQ66lrw34fBn09dXAstT1QiEbqZSdK0wm/U8mLfj9dn/AsYV0WrkA+f1ZpFJK8KRS\nQF+fMtTlXL/fzgVJ27arX0xl+w16c0VGtS33op+pnTPmvV71dzyunlsgkO1/Rs5nOBDl4pTNjbdp\nmHs8NrLZ7AARV+x7k81mYVn5hr75t7Rv2/aACRLzuuUmBAZDPY/hPSNCCCHlxahEwcKFC2HbNo4d\nO4aFCxfmth87dgyLFi0CAJxyyik4efIkkskkvMb/DseOHcOKFStKuu5ZZ501mm6TMkRmLCphbCOR\ngb7lqZQOupX94q4jgbvi5iNxAidOaBcS8X+vrdXZcIqltXRWAxb70Tw+kVBtSQVk8cWvr1fnd3bq\nexDN7vXqgmQy297bm9+uBABLmk9xZ5KgXAm8lvYsCzhx4j3U1GTR1LQYtbXa91+CouWaUm+hp0fH\nAUhWoxkz8gO3i9WZMOMxBCkOVigrzngarMX6Uk1GciW9t2RkcGyrF45t9bJv3z7EYrGSzx9VkYCl\nS5fC5/Phueeey23r7u7G7t27sXLlSgDAypUrkclk8Pzzz+eOOXz4MA4cOJA7hpBywsz6U8iPfDCj\nzgwwFsPaebwYp9Gonq2PRodO5SjGdKGsLhLEKyk9zfSplqVTkXZ2quMlGFj6K/EA0q7Xq8TJ7Nla\n0DQ1KT99cYXyelUbjY1Ac7M2eM1Um0o42Ghrq8kVPvN4VHuNjdpnX851ZmGSfpr5/CMRFStRLKi1\n0DZpW57RRGTGcd5LtQkCQggh1cWoVgoCgQDWrVuHjRs3wuVyYeHChdiyZQvq6+vxyU9+EoDKTPTx\nj38cf/M3f4NIJIJQKIQHHngAZ555JtasWTMmN0HIWOGc3S1kfAN6xlxm4CXg1rZ18KxZnKqQMHDW\nOkildICtzLjLuZIX39nGYClPzUxDQL4xLKsLZhCvGRArnn1yf+bKiMQhSBvmKkgwqFZA5P68XhVj\nkE4rn/y+Pm0ch8NKGASD+UXDkkm13bwPs56BOTbmmDiRtqSf5gqO+dzG01CvpsxChBBCqpsRiQKn\njy0A3H777XC5XPi3f/s3RKNRLFu2DP/0T/+Uq2YMAN/5znfwne98B/fddx+y2Swuvvhi3HXXXUUD\nkAmZDJJJNQNdKOWnfJ1NdxxzVUDSWAJ6Vlhch5yGoekyJG40pjuLFNESA97sn5kByURmzsUQ1z7+\nKqVoKqWrEbvdun+x2MDaC84ZbfOasl2y9xS6t1mz9PEtLUBvrws1NTqWIZPJTwVqCrFiWYacoqeY\nUS99dYq7nh4tgIYSE4QQQshUxLIrIXrN4De/+Q2WL18+2d0gY8xk+ziKEWnGC0huekCLAsmQY+bK\nlxWB4VRydbq/iAEvaSoB1Q/x+bdtlWJTDHy5DpBfU8D0/Re3FUlJ2tamhIDfr33/JXYBGBgfUcjN\nZah7c+6XZ3X0KPD73x8AYGHGjNP6g4x1cbWmpnxBZT4jU3RZVn76VzOeolDdAlPcFUptatYfoDgo\nncl+b8n4wbGtXji21YvEFJRqJ4/KfYiQasE0aM1aBLJtOAzlKpJM6irAfr8y1C1Lu994vcqYTSTU\nPnGn8fl02tFIRFcoLjRbLlV/6+tVu2IMyz1JcK/po2/GPhS7h8HuTe7LWVMhmZR+q4xD8bi6VkOD\n6l82q84LhQauupjuSXJt06iX61qWdq0yVx9MlyenmJHzKAgIIYQQDUUBIQamoS2zyaZxaRb2Mo3Q\nYjjPccYnFKtoaxrGlqUMfTHgw2FlHLe3q31ifEs70qZcz+1WBngqpVYdZF97u77WaLLxmBmH5Jpy\nn+rZ2fB6rZxBL8XTBsMsJGY+E/O+gPw4CTlGfpvbzPgMWUmhICCEEEI0FAVkSjCU+4vTiDQNRzMI\n1kwragYSFyISyY9BkD44jV1pX5BZdlUNWBv+prgwZ/fd7sKpNuVaYjiregP6XqUfct9m1qCRPD9n\nylJApzkVIVJXZyMc1isVQL4rkPRX2vf5BsZOmMcWSgtbSKjJc5RrFuo/IYQQQigKyBSgUEYhoHDw\nbyHDV/4u5OJSzLdeXGrEfcd5PROJHZC/AS02EonCGYKiUbViYBrJ6bSKFTCDm0Mh1U8x0sWP3ryW\n9Ns0nEfy/LxeFSdgHi/PRhWctuDxZDFzpk7Daj7HwVYphorRGAwa/4QQQsjwoSggVc9guetNRmNE\nSnCrGSBrpsCUYyQ42Ly+BBFLP6VoF6CMfJdLtSNFzcy+yk9T08CgWwngbWrSQcWyCuHMbCTHF7u3\nQtvkeHGxkm3JpFrhANT2UCg7IAZCipIN5sYz2HiYKztD9b/cGU6AOiGEEDLeUBQQMgwGM0JlVUBW\nBmR2P5XKFwVyjhjogPbHN33yzQrBco4zrsEZbCzHOQ1MM4OSeT6Qv0/ESqnPJhTKb9fM4KSKp1mI\nRnUhstEy2MpOJTGcVSxCCCFkIqAoIFXPWMwqD2aEOgOInedJFp1C8Qder447ALSrkDkTL/EMIhaa\nmwsLAGCggSmZhpy1AERYiBgY7HkM5/k53a1MkaPSoWbHvEZApQoBk+GuYhFCCCHjDUUBqXrGalZ5\nqPPE2DaPLfTjbNP0+XfGKXR0qJoFgYBqP5sdaDSacQzO1QPTpcd5/FCB0qboMOsMDkdEyPmqMJud\n65dZIVriGGgEE0IIIZMPRQGZEox2Vnkwv2/5LH71sZj6PGtWfrGxQn0QQ97vz79OKKRWCD74QM20\nu93aJUfy8jsr96ZSEtibb5hHIvmxDuYsfnt7ft0Cs1/O1YGRpPE071WuK59FAEnw9lR2mamm2AhC\nCCGVDUUBmVIMN6jT6RJkZswplH0nFNLpNxsb8/PsD+ZDb86Sy8y51CaIRlUbNTX5M/a1tfmz7cXa\nFLcj07XIdE+S+zLTkzpXVYr1dbjI8VI4XVZGCqVlnYrGcLXERhBCCKl8KArIlGG4QZ3O45wVc+WY\nQn79M2cObGs4Rp7ZvrjqBAJq5l9qGJjViIshFY2ltoHUKJB93d1q1SGV0qsTkopU7lP67TTcS8Hr\nBdzuDFIpK+caZVkDawxMZSgECCGElAOuye4AIRNFsdnv0WxLJHSdAdNffrg4hYbM7ouYCAbVj8ul\nfpqb8119TCNeCpSFw4ULeyWTSghIhWOnf795L+IKVayvI73HQMDOq58w2HNw9lvcn0b6bAkhhBAy\nfLhSQKYEYlxKitDhGrhiTKuA2XxjvJDR7FwZKBQQLNvN9kxXH9O9R9yJQiHt0y8z+qarUTqdXyHY\n2TepeyArB5Iy1azQ7Oy31BIw+zsWDNdlhuk6CSGEkImDooCUFeNRyEmMSwlqNY3LYrPWZhCvGNuR\niM7YIy43heoCFDKkBzNw5cdZMVmEiFmBWFYAzHSjcryzUrD8lkxDZkExs31x63G6C8lKxXgwnLFl\nuk5CCCFk4qAoIGVDMcNZ9gGlCQVnLn+Z+S9WsMvMkmOmCLVtHSQrQbvO/tbXFzakSzFwTaNc4gqK\nne/MYmOKCZ9P3au4BMlx4s4jxzELDiGEEDJ1oSggZUMqZQ3YZqbSBEbvQiKiwlkPoNBxwWB+GlAn\nZp790fRJzh2NUT4clxxZMXCuZDhdnIqdP9EwXSchhBAycVAUkLKmUBackbqQmO5AYvSGQsM/z7nN\n+Xm42YUG68NQRv1Y9GW0+ycapuskhBBCJg6KAlI2eDwD81SOhRFYKHWouNIMZSQDekVAfPEFcyVh\nqP4Opw+DGb2TYSCPRXxHMglEo1bu75G2QSFACCGETAwUBaRsEP92Z+DuWLmQOH39h2OkOoOFnUby\nSA3nUvpQqC/jzVhk/tFtWLAsi9mDCCGEkDKGooCUFYOlpxxs/0RQ6Npj2Z9SZ+bHK2NToW0jFQUA\nYFlW3jZnDEM5jC0hhBAy1aEoIGWDaTyaDGYsDmVUyn4p7uX0059IBosLKHVmvpJz+Vdy3wkhhJBq\ngxWNScUyVEVhc78EK0tBLikENljbY11JV9yhJAOQ2YfhVlEezjFj0d/BUrWOtA3btmH3B18UynRk\nwqrFhBBCyOTAlQJSNhRbKSjGUC4uhSoOS/GxodotNoPtXJkwrzMc95dKcZEZi8BmfbwSBEMJMUII\nIYRMHhQFpCwYqSAYT4qJjWQS6O1Vn01XIDF0R+P+UmpO/vHM5T8WAkbXe7ALxmOwDgEhhBBSHlAU\nkLKgFFEwlFE5lkan6YoE6IrGhYp/lSoK5Hz5PFxRUMp5E4llWQXHtxL6TgghhEwVKApIxTKcgl+D\n7R+sXaeYKISIgrGiWOrT4ZxXqcZ0JfedEEIIqSYoCkjZYDsrgQ2DoYzK0fjCm4a5ZelgZsHjKZyi\ntFSqNRtPNpstuhLElKSEEEJIeUBRQEgBChmoolnEiG1u1sHHxc4ZCWNRG6BcKST4qlUEEUIIIZUI\nRQEpG0pZKZgoxFA1U4nKNhqxpVHNIogQQgipNCgKSFlQzoJAGG/3FmbjIYQQQshkQVFApgzl7r8+\n1bLxUAQRQggh5QNFASkLxnuloFL816tdCJhMNRFECCGElDMUBaRsGM8CZmPhv17uKw2VCJ8jIYQQ\nUh5QFJBJwWlgu1yuye3QEFTKSgMhhBBCSCmUtyVGqhKzOrDk/i80kz+WFDLeR7pKMJxthBBCCCGV\nCFcKyIRTyJhOpSx4veMXV1CoWrB4K3G2nxBCCCFTHYoCUhbYto1sNjuu1xDjX2KazQrFQwmDcsqU\nw9gGQgghhIw1dB8iE04hI9btHl9BIJTqBuT1qqJllpVfwGyimQzXK0IIIYRUP1wpIBNOpaaiLId+\nsgowIYQQQsYDigIyKUyWgV1ObkCEEEIIIeUC3YfIlKJc3IBKZbRZlAghhBBCCsGVAjLlKAc3oFKp\nVNcrQgghhJQ3FAWEVBgUAoQQQggZa+g+RAghhBBCyBSHooCUDZZUEyOEEEIIIRMK3YdIWeByVa8+\nZbExQgghhJQ7FAWEjCNSbEwYbgVlQgghhJCJpHqnZ0lFYds2stmJqWo8kZRaQZkQQgghZCLhSgEZ\nV4brOmPb9sR1ihBCCCGE5MGVAjJuiOuMbaufRGLqzZKz2BghhBBCKgGKAjJujMR1xrKsqgw2rvQK\nyoQQQgiZGtB9iJQF1ZyOlBmHCCGEEFLuUBSQccPrzc+8I9vGGqb8JIQQQggZHRQFZNwQ43w8DXam\n/CSEEEIIGT0UBWRcGe+Z+2JxCxQFhBBCCCHDp/oiO0nFwrSkhBBCCCGTA0UBKQuy2WxJooApPwkh\nhBBCRg/dh0hFMxFxC4QQQggh1Q5FAal4KAQIIYQQQkYH3YcIIYQQQgiZ4lAUEEIIIYQQMsWh+xAp\nGRYNI4QQQgipDigKSEmwaBghhBBCSPVA9yFSEsWKhhFCCCGEkMqDooAQQgghhJApDkUBKQkWDSOE\nEEIIqR4YU0BKgkXDCCGEEEKqB4oCUjIUAoQQQggh1QHdhwghhBBCCJniUBQQQgghhBAyxaEoIIQQ\nQgghZIpDUUAIIYQQQsgUh6KAEEIIIYSQKQ5FASGEEEIIIVMcigJCCCGEEEKmOBQFhBBCCCGETHEo\nCgghhBBCCJniUBQQQgghhBAyxaEoIIQQQgghZIpDUUAIIYQQQsgUh6KAEEIIIYSQKQ5FASGEEEII\nIVMcigJCCCGEEEKmOBQFhBBCCCGETHEoCgghhBBCCJniuMeikc7OTqxcuXLA9quvvhobN26EbdvY\nsmULHnvsMXR1dWHZsmW46667cOqpp47F5QkhhBBCCCGjYExEwTvvvAMA2LZtGwKBQG57OBwGAGza\ntAlbt27Fhg0bMGfOHGzevBnr16/Hjh07EAwGx6ILhBBCCCGEkBIZE1Gwf/9+TJs2reBqQSQSwSOP\nPIKvfvWrWLduHQDgggsuwBVXXIEnnngC69evH4suEEIIIYQQQkpkTGIK9u/fjyVLlhTct3fvXsTj\ncVx55ZW5bfX19VixYgVefvnlsbg8IYQQQgghZBSMmSiIx+O46aabcN5552H16tV45JFHAACHDx8G\nACxYsCDvnHnz5uHQoUNjcXlCCCGEEELIKBi1+1Amk8HBgwcRCASwYcMGzJ07Fzt37sT999+Pvr4+\nuN1ueL1euN35lwoEAohGo6O9PCGEEEIIIWSUjFoUWJaFrVu3Yvbs2Zg3bx4AYMWKFYjFYnj44Ydx\n6623wrKsoucSQgghhBBCJpdRiwKXy4UVK1YM2H7JJZfgRz/6Eerq6pBMJpHJZFBTU5PbH41GUV9f\nX9I19+3bV3J/SXkSj8cBcGyrEY5t9cKxrV44ttULx7Z6kbEtlVGLgtbWVuzcuRNr165FU1NTbnsi\nkQCggopt28axY8ewcOHC3P5jx45h0aJFJV0zFouNrtOkbOHYVi8c2+qFY1u9cGyrF44tcTJqUZBI\nJHD33XcjHo/npRd99tlnsWjRIlx11VW4++678dxzz+GWW24BAHR3d2P37t247bbbRny95cuXj7bL\nhBBCCCGEEINRi4L58+fjmmuuwcaNG+FyuXDqqafi5z//OZ577jn84Ac/gN/vx7p163L7Fy5ciC1b\ntqC+vh6f/OQnx+IeCCGEEEIIIaPAsm3bHm0jfX192LRpE3bs2IG2tjacfvrp+PKXv4w1a9YAUBmK\nvve97+Gpp55CNBrFsmXLcNddd5XsPkQIIYQQQggZO8ZEFBBCCCGEEEIqlzEpXkYIIYQQQgipXCgK\nCCGEEEIImeJQFBBCCCGEEDLFoSgghBBCCCFkikNRQAghhBBCyBSHooAQQgghhJApzqiLl40HnZ2d\nWLly5YDtV199NTZu3AjbtrFlyxY89thj6OrqytU9OPXUUyeht2QkDDW2b7/9dsGidjfffDPuuOOO\niegiGQW//vWv8cADD+Ddd99Fc3MzbrjhBnzlK1+By6XmHzZv3sz3tkIZbGz53lYmu3btwuc///mi\n+3fu3IlZs2bx/9sKZDhj297ezve2QrFtG9u3b8d//dd/obW1FWeccQZuv/12XHTRRbljSvn/tixF\nwTvvvAMA2LZtGwKBQG57OBwGAGzatAlbt27Fhg0bMGfOHGzevBnr16/Hjh07EAwGJ6XPZHgMNbbv\nvPMO6urqsH379rzzZsyYMXGdJCXxm9/8Bl/84hdx7bXX4q/+6q/w9ttvY+PGjbAsC3/xF3+BBx98\nkO9thTLU2PK9rUzOOecc/PjHP87b1tfXh9tuuw3nnnsuZs2axf9vK5ThjO0rr7zC97ZC2b59O777\n3e/iL//yL/GRj3wETzzxBG655RY8/vjjOOuss0r//9YuQ7Zt22avWrWq4L7e3l77/PPPt7du3Zrb\n1t3dbS9btszetm3bBPWQlMpgY2vbtn3vvffaN9544wT2iIwVn/nMZ+w///M/z9t233332Z/73Ofs\nSCTC97aCGWxsbZvvbTVx77332itXrrQ7Ojr4/22VYY6tfOZ7W5n80R/9kX3nnXfmPmcyGfvyyy+3\n77nnnlG9t2UZU7B//34sWbKk4L69e/ciHo/jyiuvzG2rr6/HihUr8PLLL09UF0mJDDa2sn/x4sUT\n2CMyFnR0dODNN9/EjTfemLf9G9/4Bn74wx9iz549fG8rlKHGFuB7Wy0cOHAAjz76KL72ta+hsbGR\n/99WEc6xBfjeVjKRSCTP28LlciEYDKK7u3tU723ZioJ4PI6bbroJ5513HlavXo1HHnkEAHD48GEA\nwIIFC/LOmTdvHg4dOjTRXSUjZLCxBYB3330Xx48fx/XXX49zzz0XV111Ff77v/97EntMhsP+/fth\n2zZqa2tx66234rzzzsPFF1+MBx98EKs3TlQAAAWjSURBVLZt872tYIYaW4DvbbXwz//8z1i0aBE+\n/elPA+D/t9WEc2wBvreVzHXXXYenn34av/71r9Hb24vt27fjwIED+MM//MNRvbdlF1OQyWRw8OBB\nBAIBbNiwAXPnzsXOnTtx//33o6+vD263G16vF253ftcDgQCi0egk9ZoMh6HG9lOf+hS6urrw/vvv\n4/bbb0d9fT1++tOf4pvf/CYA4Prrr5/kOyDF6OzsBADceeeduPbaa3HzzTdj9+7d2Lx5M3w+H7LZ\nLN/bCmWosf3jP/5jvrdVwNGjR7Fz5078/d//fW5bJBLhe1sFFBrblpYWvrcVzG233Yb9+/fjC1/4\nQm7b17/+dVxxxRX413/915Lf27ITBZZlYevWrZg9ezbmzZsHAFixYgVisRgefvhh3HrrrbAsq+i5\npHwZamxvueUWbNu2DYsXL0ZzczMAYOXKlWhtbcWmTZv4j1QZk0qlAACXXnopNmzYAAD46Ec/is7O\nTmzevBlf+tKX+N5WKEON7bp16/jeVgGPP/44GhoacN111+W22bbN97YKKDS24XCY720Fs2HDBrz5\n5pv41re+hdNOOw2vvPIKvv/97yMYDI7qvS079yGXy4UVK1bkjEbhkksuQTweR11dHZLJJDKZTN7+\naDSK+vr6iewqGSFDje3Ro0excuXK3D9Q5v6jR48iHo9PZHfJCBDfxksvvTRv+8qVKxGLxRAKhfje\nVihDje3Jkyf53lYBv/zlL7FmzRp4PJ7cNr631UGhsfX5fHxvK5Tf/va32LFjB+655x7cdNNNWLFi\nBb72ta/hC1/4Au677z74/f6S39uyEwWtra147LHH0NHRkbc9kUgAUMEStm3j2LFjefuPHTuGRYsW\nTVg/ycgZamy7urrw6KOPIplMDthfW1uLurq6CesrGRniuyizykI6nQYAeDwevrcVylBjm8lk+N5W\nOB9++CEOHjyItWvX5m1fuHAh39sKp9jYHjp0iO9thXLkyBEAwPnnn5+3fdmyZYjH47Asq+T3tuxE\nQSKRwN13342f/OQnedufffZZLFq0CFdddRV8Ph+ee+653L7u7m7s3r27YFEsUj4MNbbpdBr33HMP\nXnrppdw+27bxi1/8AhdccMFEd5eMgDPOOAMzZ87EM888k7f9xRdfxMyZM3HNNdfwva1QhhrbEydO\n8L2tcN566y0AA42MpUuX8r2tcIqNLd/bymX+/PkAVP0Yk71798Ltdo/KTq751re+9a0x7/EoaGho\nwMGDB/GjH/0Ifr8fvb29eOihh/DTn/4U3/72t7F48WJEIhE89NBDqK2tRUdHB/72b/8WmUwG9957\nL7xe72TfAinCUGO7atUqvPrqq3j66acRDofR1taG7373u9izZw/uv/9+TJ8+fbJvgRTBsiw0NjZi\n69atOHnyJHw+H3784x/j0UcfxR133IGlS5fyva1QhhrbtWvX8r2tcJ555hkcOHAAX/nKV/K2e71e\nvrcVTrGxnTt3Lt/bCmXWrFl444038Pjjj+eCh5988kls3boVf/Znf4arr7665PfWsiWnXBnR19eH\nTZs2YceOHWhra8Ppp5+OL3/5y1izZg0AtVz9ve99D0899RSi0WiufDOXM8ufoca2q6sLDzzwAF58\n8UV0dXXhnHPOwTe+8Q0sX758kntOhsPPfvYzbNmyBUeOHMHs2bNxyy234FOf+hQAvreVzmBjy/e2\nsvm7v/s7vPrqq3j22WcH7ON7W9kMNrZ8byuXRCKBzZs345lnnkFraysWLFiAP/3TP83Vkyn1vS1L\nUUAIIYQQQgiZOMoupoAQQgghhBAysVAUEEIIIYQQMsWhKCCEEEIIIWSKQ1FACCGEEELIFIeigBBC\nCCGEkCkORQEhhBBCCCFTHIoCQgghhBBCpjgUBYQQQgghhExxKAoIIYQQQgiZ4vx/vk+nMPGsIdcA\nAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure()\n", + "ax=plt.gca()\n", + "plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')\n", + "gmm_labels=clfgmm.predict(Xall)\n", + "for k, col in zip(range(n_clusters), ['blue','red']):\n", + " my_members = gmm_labels == k\n", + " ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',\n", + " markerfacecolor=col, marker='.', alpha=0.05)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we know, a-priori, that two is the right number of clusters? We can try and fit a mixture of 3 gaussians" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GMM(covariance_type='tied', init_params='wmc', min_covar=0.001,\n", + " n_components=2, n_init=1, n_iter=100, params='wmc', random_state=None,\n", + " thresh=None, tol=0.001)\n", + "[[ 66.27189886 162.17290849]\n", + " [ 63.29051219 131.78754676]\n", + " [ 69.69208734 192.39008464]] [[ 7.0407902 40.79791591]\n", + " [ 40.79791591 335.28692429]]\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAwUAAAIbCAYAAAC6zjImAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XuUZFV5N/7vPte69m0uDAgz8HIb7jdFbopc38FE1kgu\nJtFE34RoXn1lRRd/xESX+fGuOEsWkDcsCWgi6BuDipFElq7XADMauRrFSyIBBnCYYZC59L3qVNXZ\n57J/f+zep09VV/d0NzPTPV3fD2tWd1efOnXqVLvcz97Pfh6hlFIgIiIiIqKeZS31BRARERER0dJi\nUEBERERE1OMYFBARERER9TgGBUREREREPY5BARERERFRj2NQQERERETU4w4YFEgp8dd//de44oor\ncN555+H9738//uu//qvtmLvvvhvveMc7cO655+IP//AP8ctf/nLGOT7zmc/gsssuw/nnn4+bbroJ\n+/btO7jvhIiIiIiIFuWAQcGWLVvwla98BR/60Ifwt3/7tygWi/iDP/gD/OpXvwIAfO5zn8M999yD\nG2+8EXfccQdqtRo+8IEPoF6vZ+f49Kc/jW9961u4+eabsWXLFrzwwgv44Ac/iDRND907IyIiIiKi\neRFzNS+r1Wq4+OKLcfPNN+MDH/gAACAMQ7z1rW/Fn/zJn+B973sf3va2t+EjH/kIbrzxRgDA5OQk\nrrjiCnz0ox/FBz7wAezatQubNm3C7bffjuuuuw4AsHPnTmzatAl33nknrrnmmkP/LomIiIiIaFZz\nrhSUSiX80z/9E2644YbsMdu2IYSAlBI///nP0Ww2ceWVV2a/7+vrw1ve8hY89thjAICnn34aAHDF\nFVdkx2zYsAEnnXRSdgwRERERES2dOYMC27axceNG9PX1QSmFV199FX/+538OIQSuv/56vPLKKwCA\n9evXtz3v2GOPxY4dOwAAO3bswJo1a1AoFNqOOe6447JjiIiIiIho6cy7+tBdd92Fa665Bg899BD+\n+I//GMcffzzq9To8z4PjOG3HlstlBEEAAAiCAKVSacb5SqVSdgwRERERES0d58CHaNdccw0uuugi\nPP3007jrrrsgpUShUIAQouvxlqXjDaXUAY8hIiIiIqKlM++g4NRTTwUAvPnNb0YQBPjiF7+Im2++\nGVJKJEkC27azY4MgQLVaBQBUKpWuKwL5Y4iIiIiIaOnMGRQMDw/j3/7t37Bp0yaUy+Xs8Y0bN0JK\nme012L17NzZs2JD9fvfu3TjhhBMAAMcffzyGh4chpYTneW3HvOUtb1nwBT/zzDMLfg4RERERUS+4\n4IILFvW8OYOCiYkJ/MVf/AWEEG0ViJ544gmsXr0aV199NXzfxyOPPJKVJJ2YmMC///u/46abbgIA\nXHzxxUiSBFu3bs1Kkr7yyit46aWXsmMWarFvlpav5557DgBw2mmnLfGV0MHGz3bl4me7cvGzXbn4\n2a5czz33HBqNxqKfP2dQcOKJJ+Laa6/FZz/7WURRhGOPPRYPP/wwHnroIWzZsgWVSgXve9/78Dd/\n8zewLAsbNmzAPffcg76+Pvzmb/4mAF2ZaNOmTfjUpz6Fer2OarWKO+64Axs3bsTVV1+96AsnIiIi\nIqKD44B7Cm699VZ87nOfw+c//3ns378fJ598Mu68805ce+21AICPf/zjsCwL9957L4IgwPnnn49b\nb70VlUolO8eWLVuwZcsW3HbbbUjTFJdccgk++clPzroBmYiIiIiIDp85OxovR8888wzTh1YgLmeu\nXPxsVy5+tisXP9uVi5/tymXShxY7TmZNUCIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6\nHIMCIiIiIqIex6CAiIiIiKjHMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAi\nIiIi6nEMCoiIiIiIehyDAiIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIe\nx6CAiIiIiKjHMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiI\niIiIehyDAiIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIex6CAiIiIiKjH\nMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiIiIiIehyDAiIi\nIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIex6CAiIiIiKjHMSggIiIiIupx\nDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiIiIiIehyDAiIiIiKiHseggIiI\niIioxzEoICIiIiLqcc5SXwARERER0UomEwmZSACAZ3vwbG+Jr2gmBgVERERERIeITCTCOMx+Nt8v\nt8CA6UNERERERIeIWSE40GNLjUEBEREREVGPY1BARERERHSIdEsTWm6pQwD3FBARERERHTImAOBG\nYyIiIiKiHrZcA4E8pg8REREREfU4BgVERERERD2OQQERERERUY9jUEBERERE1OMYFBARERER9TgG\nBUREREREPY5BARERERFRj2NQQERERETU4xgUEBERERH1OAYFREREREQ9jkEBEREREVGPY1BARERE\nRNTjGBQQEREREfU4BgVERERERD2OQQERERERUY9jUEBERERE1OMYFBARERER9TgGBUREREREPY5B\nARERERFRj2NQQERERETU45ylvgAiIiIi6l0ykZCJBAB4tgfP9pb4inoTgwIiIiIiWhIykQjjMPvZ\nfL+UgUGvBilMHyIiIiKiJWEG3wd67HAxQYpSCkophHG4pNdzODEoICIiIiLC8gtSDiemDxERERHR\nkvBsry19yDwGLP80nuV+fQvFoICIiIiIlkQ+ADA/e7a3ZHsN5gpS8pbjXog3ikEBERERES2ZbrPs\ns6XxHI6gIP/6s60ALNX1HUoH3FOQpinuu+8+XHfddTjvvPPwa7/2a/jHf/zH7Pe/+MUvsHHjxhn/\nbr311uwYKSU+85nP4LLLLsP555+Pm266Cfv27Ts074iIiIiIeppMJOqyjrqsL3hPgGd7qHgVVLzK\nET3IX6gDrhTcdddd+Lu/+zt85CMfwTnnnIMf//jH+MxnPoNms4kbb7wRzz//PIrFIr785S+3PW/t\n2rXZ95/+9Kexbds2fOITn0CxWMQdd9yBD37wg3jwwQdhWdzrTERERETT5pvG083hSO15I9e3XM0Z\nFCRJgi996Uu48cYb8aEPfQgAcNFFF2F0dBT33nsvbrzxRrzwwgs49dRTcfbZZ3c9x65du/Ctb30L\nt99+O6677joAwMaNG7Fp0yZs3boV11xzzUF+S0RERER0JOuWxgMAdVnPfp5tEH44Unvmm2Z0JJlz\nmj4IArz73e/Gtdde2/b48ccfj9HRUTSbTbzwwgs45ZRTZj3H008/DQC44oorssc2bNiAk046CY89\n9tgbuXYiIiIiWqHyaTwAll3/gJWWZjTnSkFfXx8++clPznj8e9/7Ho4++mgUi0Vs374dvu9j8+bN\neOmll3DMMcfgwx/+MDZv3gwA2LFjB9asWYNCodB2juOOOw47duw4iG+FiIiIiObrSCqpuZDZ/5WY\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "n_clusters=3\n", + "clfgmm3 = GMM(n_components=n_clusters, covariance_type=\"tied\")\n", + "clfgmm3.fit(Xall)\n", + "print clfgmm\n", + "gmm_means=clfgmm3.means_\n", + "gmm_covar=clfgmm3.covars_\n", + "print gmm_means, gmm_covar\n", + "plt.figure()\n", + "ax=plt.gca()\n", + "plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[2], gmm_covar, 'k')\n", + "gmm_labels=clfgmm3.predict(Xall)\n", + "for k, col in zip(range(n_clusters), ['blue','red', 'green']):\n", + " my_members = gmm_labels == k\n", + " ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',\n", + " markerfacecolor=col, marker='.', alpha=0.05)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Which is better? Unless we have some prior knowledge, we dont know, and rely on intuition and goodness of fit estimates standard in statistics. But thinking more about how we might use prior knowledge takes us into semi-supervized learning and such, and also evaluation measures for clustering, which is not what this lab is about. " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/TextAnalysis.ipynb b/TextAnalysis.ipynb new file mode 100644 index 0000000..5f98196 --- /dev/null +++ b/TextAnalysis.ipynb @@ -0,0 +1,1519 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# BOW model and Naive Bayes" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "%matplotlib inline\n", + "import numpy as np\n", + "import scipy as sp\n", + "import matplotlib as mpl\n", + "import matplotlib.cm as cm\n", + "import matplotlib.pyplot as plt\n", + "import pandas as pd\n", + "pd.set_option('display.width', 500)\n", + "pd.set_option('display.max_columns', 100)\n", + "pd.set_option('display.notebook_repr_html', True)\n", + "import seaborn as sns\n", + "sns.set_style(\"whitegrid\")\n", + "sns.set_context(\"poster\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "#Table of Contents\n", + "* [BOW model and Naive Bayes](#BOW-model-and-Naive-Bayes)\n", + "\t* [Rotten Tomatoes data set](#Rotten-Tomatoes-data-set)\n", + "\t\t* [Explore](#Explore)\n", + "\t* [The Vector space model and a search engine.](#The-Vector-space-model-and-a-search-engine.)\n", + "\t\t* [In Code](#In-Code)\n", + "\t* [Naive Bayes](#Naive-Bayes)\n", + "\t\t* [Cross-Validation and hyper-parameter fitting](#Cross-Validation-and-hyper-parameter-fitting)\n", + "\t\t* [Work with the best params](#Work-with-the-best-params)\n", + "\t* [Interpretation](#Interpretation)\n", + "\t* [Callibration](#Callibration)\n", + "\t* [To improve:](#To-improve:)\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Rotten Tomatoes data set" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
criticfreshimdbpublicationquotereview_datertidtitle
1Derek Adamsfresh114709Time OutSo ingenious in concept, design and execution ...2009-10-049559Toy story
2Richard Corlissfresh114709TIME MagazineThe year's most inventive comedy.2008-08-319559Toy story
3David Ansenfresh114709NewsweekA winning animated feature that has something ...2008-08-189559Toy story
4Leonard Kladyfresh114709VarietyThe film sports a provocative and appealing st...2008-06-099559Toy story
5Jonathan Rosenbaumfresh114709Chicago ReaderAn entertaining computer-generated, hyperreali...2008-03-109559Toy story
\n", + "
" + ], + "text/plain": [ + " critic fresh imdb publication quote review_date rtid title\n", + "1 Derek Adams fresh 114709 Time Out So ingenious in concept, design and execution ... 2009-10-04 9559 Toy story\n", + "2 Richard Corliss fresh 114709 TIME Magazine The year's most inventive comedy. 2008-08-31 9559 Toy story\n", + "3 David Ansen fresh 114709 Newsweek A winning animated feature that has something ... 2008-08-18 9559 Toy story\n", + "4 Leonard Klady fresh 114709 Variety The film sports a provocative and appealing st... 2008-06-09 9559 Toy story\n", + "5 Jonathan Rosenbaum fresh 114709 Chicago Reader An entertaining computer-generated, hyperreali... 2008-03-10 9559 Toy story" + ] + }, + "execution_count": 2, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "critics = pd.read_csv('./critics.csv')\n", + "#let's drop rows with missing quotes\n", + "critics = critics[~critics.quote.isnull()]\n", + "critics.head()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Explore" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Number of reviews: 15561\n", + "Number of critics: 623\n", + "Number of movies: 1921\n" + ] + } + ], + "source": [ + "n_reviews = len(critics)\n", + "n_movies = critics.rtid.unique().size\n", + "n_critics = critics.critic.unique().size\n", + "\n", + "\n", + "print \"Number of reviews: %i\" % n_reviews\n", + "print \"Number of critics: %i\" % n_critics\n", + "print \"Number of movies: %i\" % n_movies" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxQAAAIqCAYAAAC9hAz4AAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzt3XuclnP++PH31FQoLWstOZa1ZpJMRXLWwTktEZMVlm/O\n1im2cgxflpJ1yKmWRGudQhJrxeaYzSn52dFiReW4G6GGmub6/WHn/nbroPl0uKc8n49HD+aa+/Ce\n+zP3zLzu677uuyjLsiwAAAAS1Cv0AAAAwKpLUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJigs9\nwMrwyiuvFHoEAACok7bbbrtlOv+PIigilv2Gou6pqKiIiIiWLVsWeBKWN2u7+rK2qy9ru/qytquv\nioqKmDNnzjJfjqc8AQAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAA\nAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAA\nyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkE\nBQAAkExQAAAAyQQFAACQTFAAAADJBAUAAJBMUAAAAMkEBQAAkExQAAAAyQQFAACQrLjQAwDw49Gy\nZctCjwDAciYoAKi1bn1GF3qE5WrM4AMLPQLAKstTngAAgGSCAgAASCYoAACAZIICAABIJigAAIBk\nggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIIC\nAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAA\nSCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZHUiKJ588slo167dQttvuumm\n6NixY7Rp0yaOPfbY+Ne//lWA6QAAgMUpeFC8+uqrcc455yy0fciQIXHzzTdH79694+qrr46vvvoq\nfvOb38TXX39dgCkBAIBFKVhQzJ07N4YNGxZHH310NGjQIO9zX3/9ddx6663x29/+Nnr16hWdO3eO\nW2+9NWbPnh33339/gSYGAAC+r2BB8cwzz8SwYcOib9++0atXr8iyLPe5119/PSorK6Nz5865bU2b\nNo327dvHs88+W4hxAQCARShYULRu3Tqeeuqp6NWr10Kfmzp1akREbLbZZnnbN9lkk3jvvfdWxngA\nAMBSKC7UFW+wwQaL/dzXX38dDRs2jOLi/PEaN24cs2fPTrq+ioqKpPNRd1VWVkaEtV0dWdu6rWXL\nloUeYYXw/bZs3G9XX9Z29VWztsuq4AdlL0qWZVFUVLTIzy1uOwAAsPIVbA/Fkqy99toxd+7cmD9/\nftSvXz+3ffbs2dG0adOky1xdH1H7Mat5pMTarn6sLYXg+23ZuN+uvqzt6quioiLmzJmzzJdTJ/dQ\nbL755pFlWUyfPj1v+/Tp06NFixYFmgoAAPi+OhkUbdu2jUaNGsUTTzyR2zZr1qyYOHFi7LTTTgWc\nDAAAWFCdfMpT48aNo1evXnHttddGvXr1YvPNN4+bb745mjZtGj169Cj0eAAAwH/ViaAoKipa6GDr\ns846K+rVqxe33XZbzJ49O9q1axcDBw6MJk2aFGhKAADg++pEUJx66qlx6qmn5m2rX79+9OnTJ/r0\n6VOgqQAAgB9SJ4+hAAAAVg2CAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYo\nAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAA\ngGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBk\nggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIIC\nAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAA\nSCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgm\nKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASFangyLLsrj99ttjn332\nibZt28Zhhx0WL774YqHHAgAA/qtOB8WIESNi0KBBccghh8SNN94Ym266afTu3TsqKioKPRoAABB1\nPChGjRoV3bp1i+OPPz522mmnGDRoUKy//vpx//33F3o0AAAg6nhQfP3119G4cePcx/Xq1YsmTZrE\nrFmzCjgVAABQo04Hxa9+9asYPXp0TJgwIb766qsYMWJEvPPOO9G1a9dCjwYAAEREcaEHWJLTTjst\npkyZEsccc0xu25lnnhmdOnUq4FQAAECNOh0U55xzTrz22msxYMCA+MUvfhHPP/98XH/99dGkSZM4\n4ogjanVZDuRe/VRWVkaEtV0dWdu6rWXLloUeYYXw/bZs3G9XX9Z29VWztsuqzgbFG2+8EY8++mhc\ne+21sc8++0RERPv27WP+/Plx1VVXxcEHHxxrrrlmgacEAIAftzobFO+//35ERLRp0yZve7t27WLY\nsGExY8aM2HLLLZf68lbXR9R+zGoeKbG2qx9rSyH4fls27rerL2u7+qqoqIg5c+Ys8+XU2YOyN910\n04iIeOWVV/K2v/7661FcXBwbbrhhIcYCAAAWUGf3UJSVlcXOO+8cF198cXzxxRexxRZbxMSJE+OP\nf/xjHHXUUdGkSZNCjwgAAD96dTYoIiJuuummuOmmm2LEiBHx6aefxmabbRYXXHBBlJeXF3o0AAAg\n6nhQNGrUKM4444w444wzCj0KAACwCHX2GAoAAKDuExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABA\nMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJB\nAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEA\nACQTFAAAQDJBAQAAJBMUAABAMkEBAAAkExQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAsuJCDwAA\ndUG3PqMLPcJyN2bwgYUeAfgRsIcCAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABI\nJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYo\nAACAZIICAABIJigAAIBkggIAAEgmKAAAgGSCAgAASCYoAACAZIICAABIJigAAIBkggIAAEgmKAAA\ngGSCAgAASCYoAACAZIICAABIJigAAIBkdT4oJkyYEIceemiUlZVF586d4/rrr4/q6upCjwUAAEQd\nD4pXXnkljjvuuNhyyy1j6NChccQRR8SwYcPixhtvLPRoAABARBQXeoAlGTx4cOy6667x+9//PiIi\nOnToEF988UVMnDixwJMBAAARSwiKRx99NOkC999//+RhFjRz5sx47bXXFtob0adPn+Vy+QAAwLJb\nbFCcddZZtb6woqKi5RYUU6ZMiSzLYo011ogTTzwxXnjhhWjSpEn8+te/jlNOOSWKioqWy/UAAADp\nFhsUI0aM+MEzV1dXx4gRI2L8+PEREbHPPvsst8E+//zziIjo27dvdOvWLY499tiYOHFi3HTTTdGo\nUaM47rjjltt1AQAAaRYbFB06dFjiGV9++eX43//933j77bejefPmceGFF8bOO++83AabN29eRETs\ntttucc4550RExA477BCff/553HTTTdG7d+9a7aWoqKhYbrNRN1RWVkaEtV0dWdu6rWXLloUegVpY\nWfcj99vVl7VdfdWs7bKq9as8zZw5M/r16xe9evWKadOmxemnnx5jxoxZrjEREdG4ceOI+C4oFrTT\nTjvFnDlzYvr06cv1+gAAgNpb6ld5yrIs/vznP8c111wTX375ZXTq1CnOP//82HjjjVfIYJtttllE\n/N+eihpVVVUREbU+hsIjaqufmkdKrO3qx9rC8rOy7kfut6sva7v6qqioiDlz5izz5SxVULzxxhsx\nYMCAePPNN2PjjTeOK6+8Mjp16rTMV74kv/zlL2ODDTaIxx57LLp165bb/vTTT8cGG2wQm2yyyQq9\nfgAA4IctMSi+/PLLGDx4cNx3331Rv379OPHEE+Okk06KRo0arfDBioqK4swzz4x+/frFgAEDYp99\n9okXXnghHnroobj44otX+PUDAAA/bLFB8cADD8RVV10VM2fOjF122SUuuOCCaN68+UocLeKggw6K\nBg0axM033xwPPPBANGvWLC655JI49NBDV+ocAADAoi02KM4999zc/7/00ktx4IEHRsR3x1J8X1FR\nUWRZFkVFRfH6668v1wG7du0aXbt2Xa6XCQAALB+LDYqDDjqo1hfmzeYAAODHZbFBccUVV6zMOQAA\ngFVQrd+HAgAAoIagAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAA\nAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAA\nkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJCgAAIJmgAAAAkgkKAAAgmaAAAACSCQoAACCZoAAAAJIJ\n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\nq7AHHngga9myZTZkyJDs6aefznr37p21a9cumzZt2iJP/+qrr2Zbb7111r9//+yFF17Ihg0blrVq\n1SobPnz4yh2cH1TbtV3QlClTslatWmWlpaUrYVJqK2VtO3bsmF1++eXZ66+/nvevurp6JU7OD6nt\n2s6dOzf71a9+le23337ZX//61+yJJ57Iunbtmu2zzz7Z3LlzV/L0LElt17aioiLvvjpp0qTs9NNP\nz9q1a5e99957K3d4lqi2aztjxoysbdu2We/evbPnn38+u/POO7OysrLsiiuuWMmT80Nqu7Zjx47N\nSkpKst/+9rfZs88+m917773ZTjvtlA0cOPAHr2uVDYrq6uqsU6dO2YABA3Lb5s2bl3Xp0iW79NJL\nF3me0047LTvooIPytvXr1y/ba6+9Vuis1E7K2taoqqrKDjnkkGz33XcXFHVQytrOmjUrKykpyZ59\n9tmVNSYJUtb23nvvzcrKyrKPPvoot62ioiLbbbfdsjfffHOFz8zSWZafyTUmT56ctWrVKnvggQdW\n1JgkSFnbW2+9Ndt2222zysrK3Larr746a9eu3Qqfl6WXsrYHHHBAVl5enrdt3Lhx2dZbb/2DD+iu\nsk95ev/99+PDDz+Mzp0757YVFxdHx44d49lnn13kefr37x+DBw/O29agQYOYN2/eCp2V2klZ2xq3\n3357VFZWRq9evSLzno11TsraTpkyJSIittpqq5UyI2lS1nbcuHGx++67x4YbbpjbVlpaGs8880xs\nvfXWK3xmls6y/Eyucdlll8W2224b3bt3X1FjkiBlbb/66qsoLi6ORo0a5bb95Cc/iTlz5sTcuXNX\n+MwsnZS1nTp1auy6665529q1axfz58+PCRMmLPH6VtmgmDp1akREbL755nnbN9lkk5g2bdoi/5jc\ncMMNY4sttoiIiC+//DIeeuihGD16dPTs2XOFz8vSS1nbiO/uPEOGDIlLL700GjRosKLHJEHK2k6Z\nMiUaNmwY11xzTXTo0CHatGkTp59+evz73/9eGSOzlFLW9p///Ge0aNEihgwZErvssku0bt06Tjjh\nhPjoo49WxsgspdSfyTXGjRsXkyZNir59+66oEUmUsrb77rtvzJs3LwYPHhyzZs2KyZMnx4gRI2Kv\nvfaKhg0broyxWQopa9usWbOYMWNG3rbp06fn/XdxVtmg+PrrryMionHjxnnbGzduHNXV1TFnzpzF\nnnfGjBmxww47RL9+/WKrrbYSFHVMytpmWRbnn39+HHTQQdGuXbuVMie1l7K2U6ZMiblz58baa68d\nN9xwQ1x00UUxadKkOProoz0aVoekrO1//vOfGDVqVDz33HNx+eWXx8CBA+Odd96J448/PubPn79S\n5uaHLcvv24iIESNGxPbbbx9lZWUrbEbSpKxtSUlJXHrppTF8+PDo0KFDHHbYYfGzn/0sLr/88pUy\nM0snZW0PPPDAePjhh+Pee++NWbNmxVtvvRUXX3xxNGjQ4AdfBGWVDYqasioqKlrk5+vVW/yXtvba\na8cdd9yRq+vy8vL45ptvVsic1F7K2t59990xbdq0OPvss1fobCyblLU95phjYuTIkdG/f//Yfvvt\no3v37nH99dfHu+++G4899tgKnZell7K2VVVVUVVVFX/84x9jjz32iP322y+uvfbaePvtt+Ovf/3r\nCp2Xpbcsv2//9a9/xUsvvRRHHXXUCpmNZZOytn/729/ivPPOix49esSIESNi4MCBMWvWrDjhhBM8\nyFOHpKztCSecED179owBAwZEhw4d4sgjj4yePXvGWmutFWuuueYSr2+VDYq11147IiJmz56dt332\n7NlRv379JX7hTZs2jR122CG6du0aQ4YMialTp8Zf/vKXFTovS6+2a/vRRx/FoEGD4txzz41GjRpF\nVVVV7o40f/58x1LUISn32y222CK23377vG3bbrttNG3aNHd8BYWXsraNGzeOsrKyaNKkSW7bNtts\nE02bNo233357xQ7MUluW37dPPvlkNG7cODp27LgiRyRRytoOHjw4dt1117j44oujQ4cO8atf/SqG\nDh0ar7zySowZM2alzM0PS1nb4uLiuOCCC+KVV16JsWPHxvPPPx9du3aNWbNmxU9+8pMlXt8qGxQ1\nzwn7/uuVT5s2LVq0aLHI84wbNy7eeOONvG2//OUvo7i4OD777LMVMyi1Vtu1nTBhQsyZMydOO+20\n2GabbWKbbbaJK6+8MiIiWrVq5TXP65CU++3YsWPj5ZdfztuWZVnMnTs31l133RUzKLWWsrabbbbZ\nIh/RrKqqWuyjaqx8KWtb49lnn43dd9/dc+vrqJS1ff/99xd6+toWW2wR66yzTrz77rsrZlBqLWVt\nX3rppZg4cWKsueaa8Ytf/CIaNmwYb731VkREtGzZconXt8oGRfPmzaNZs2bxxBNP5LbNmzcvxo8f\nHzvuuOMizzN06NAYOHBg3rYXX3wxqqqqvIJMHVLbte3cuXOMGjUq798xxxwTERGjRo2Kww47bKXN\nzpKl3G+1YN7PAAAUWklEQVTvuuuuuOyyy/L2ND399NPxzTffRPv27Vf4zCydlLXddddd49VXX41P\nP/00t23ixIkxZ86caNu27QqfmaWTsrYR34X/m2++6diJOixlbTfZZJN49dVX87a9//778cUXX8Qm\nm2yyQudl6aWs7SOPPBKXXnpp3raRI0fGOuus84M/k+sPGDBgwDJPXQBFRUXRsGHDuPHGG2PevHkx\nd+7c+P3vfx9Tp06NK664Ipo2bRoffPBBvPfee7mXJPzZz34WQ4cOjU8//TTWWGONePbZZ+OSSy6J\nsrKyOOOMMwr8FVGjtmu7xhprxM9//vO8f++8804899xzcckllyx0QBKFk3K/XX/99WP48OExderU\naNKkSTz77LNx2WWXRceOHXPhSOGlrG1JSUk88MADMW7cuFh//fXjzTffjIsuuihKS0vjzDPPLPBX\nRI2UtY347gVQbr311jjyyCOjefPmhfsCWKyUtW3atGnceuut8fHHH8eaa64Zr732WlxwwQWx9tpr\n5w7gpfBS1naDDTaIoUOHxsyZM6Nhw4YxYsSIGDVqVJx33nk//MBArd4low667bbbso4dO2ZlZWVZ\nz549s0mTJuU+17dv34Xe3OzJJ5/MDjnkkKysrCzbbbfdsiuuuCL75ptvVvbYLIXaru2Chg8f7o3t\n6rDU+22bNm2y3XbbLbvyyiuzb7/9dmWPzVKo7dp+8MEH2cknn5y1bds222GHHbJ+/fplX3311coe\nm6VQ27V9/fXXs9LS0uzVV19d2aNSS7Vd2/Hjx2fl5eVZu3btso4dO2bnnXde9p///Gdlj81SSPl9\n261bt6ysrCzr1q1b9vDDDy/V9RRlmSNWAQCANKvsMRQAAEDhCQoAACCZoAAAAJIJCgAAIJmgAAAA\nkgkKAAAgmaAAAACSCQqA7xk7dmyUlpZG9+7dCz3KKm/atGl5H5eWlsaAAQMKM8wqol+/frHtttvm\nbfv000/j22+/zX3cuXPn6N2798oeDWCRBAXA9zzyyCOx5pprRkVFRbz99tuFHmeVdf/998fBBx+c\nt23QoEFxyCGHFGiiVUPPnj3jiiuuyH389NNPx/777x9ff/11btu5554bxx13XCHGA1iIoABYwJdf\nfhnPPfdcHH744VFUVBQPPvhgoUdaZb388ssxd+7cvG3dunWL1q1bF2iiVUObNm1i//33z308efLk\nvJiIiNhzzz2jQ4cOK3s0gEUSFAALePzxx2PevHmx9957xzbbbBNjxoyJ6urqQo+1ysqyrNAjrDbc\nlkBdJSgAFjB27Nho3LhxbLPNNtG5c+f47LPP4vnnn4+IiFdeeSVKS0vj3nvvXeh85eXlecdcTJs2\nLc4888zo0KFDtGnTJg4//PCYMGFC3nk6d+4cl1xySfTp0ydat24d++yzT8ybNy/mzp0bQ4YMia5d\nu0ZZWVm0bds2ysvLY/z48Xnnr66ujltuuSW6dOkSZWVlccQRR0RFRUVsvfXWMWTIkNzpqqqq4qab\nboq99torWrduHXvuuWfccMMNMX/+/CXeFv369YuDDjoobrvttmjXrl3suOOO8Y9//CMiIsaMGRM9\ne/aM7bbbLlq3bh377rtv/PGPf8yd98gjj4yHHnoo5s6dG6Wlpbl5SktL46KLLoqIiOnTp0dpaWk8\n+uijccUVV8Quu+wSZWVlcfTRR8dbb72VN8sXX3wR559/fuy8887Rrl276NOnT4wbNy5KS0vjpZde\nWuLX8Otf/zrGjx8f+++/f5SVlUX37t1j3LhxC53273//e/Tq1Svatm0bO+ywQ5x22ml5x4DUzDty\n5Mjo0aNHbLvttnH22Wcv9rq//fbb+MMf/hCdO3eONm3aRLdu3WLUqFG5z19//fXRvn37GDNmTHTo\n0CHat28fTz31VN4xFP369YsbbrghIiJ23XXX6N+/f0Qs+hiKp556Knr27Blt27aN3XffPS688ML4\n4osvFjsfwPIiKAD+67PPPouJEyfGbrvtFsXFxdGlS5eIiHjooYciImK77baLjTbaKB5//PG88330\n0UcxefLkOOCAA3Ifl5eXx+TJk6N3795x1llnRVVVVfTu3XuhKHjwwQfj448/jgsuuCAOP/zwaNCg\nQfTr1y9uueWW3B+FvXv3jhkzZsQpp5wS7733Xu68v//97+MPf/hDtGnTJvr27Rtrr712HHXUUQs9\nkt23b9+44YYbYrfddovzzz8/dtxxxxgyZEicc845P3ibvP/++zFy5Mjo06dPHHrooVFSUhJ33313\nnHPOOdGsWbPo169fnH322bHWWmvFVVddFffdd19ERJx00kmx/fbbR3FxcQwaNCj23nvv3GUWFRXl\nXcegQYNi4sSJcdJJJ8UJJ5wQkydPjhNOOCG3Z6iqqiqOPfbYGD16dHTv3j1OP/30ePvtt+O8885b\n6LK+r6ioKD744IM47bTTon379nHOOedEvXr14re//W3eOj799NNx7LHHRkTE2WefHb/5zW/itdde\ni/Ly8vjoo4/yLnPw4MGx1VZbRd++fWPfffdd7HWfdNJJMXTo0Nhll13i3HPPjc033zzOO++8uOee\ne3KnqaysjCuuuCJOOumk+PWvfx1t27bNu4169uwZe+21V0REXHjhhdGzZ89F3o6jR4+Ok08+OebP\nnx9nnXVW9OjRI8aMGRMnn3yyPRvAipcBkGVZlo0YMSIrKSnJHnnkkdy2vfbaKysrK8u++uqrLMuy\nbNCgQVmrVq2yL774Inea4cOHZ6WlpdlHH32UZVmWnX322dkuu+ySff7557nTzJs3LysvL8+6dOmS\n29apU6esdevW2axZs3LbPvnkk6y0tDS76aab8mZ77rnnspKSkuyuu+7KsizL3n///axly5bZRRdd\nlHe6008/PSspKcmuv/76LMuy7IUXXshKSkqy0aNH551u5MiRWUlJSfbiiy8u9vbo27dvVlJSko0f\nPz5v+3777Zcdc8wxedu+/vrrrHXr1tkZZ5yRd/7WrVvnna6kpCQ387Rp07KSkpJs7733zubOnZs7\nzdChQ7OSkpLspZdeyrIsy+6///6spKQkGzt2bO40s2fPzjp37pyVlJRkEydO/MGv4bbbbstt++ab\nb7K99947txZVVVVZp06dsmOPPTbvvJ988km23XbbZX379s2bt0ePHou9vhpPPfVUVlJSkt1xxx15\n23v16pW73uuuuy4rKSnJRo4cudDMC95uNaf797//ndvWqVOnrHfv3rn5d9ppp6y8vDybN29e7jT3\n339/VlpausTbB2B5sIcC4L8effTRaNCgQeyxxx65bXvuuWd888038Ze//CUiIg444ICoqqrKe8rM\nY489Fu3atYsNN9wwqqur46mnnooOHTpElmUxc+bMmDlzZnz55ZfRuXPnmD59erzzzju582655ZbR\ntGnT3Mc///nP45VXXoljjjkmt23+/Pm5lwydM2dORHz39Jbq6uo4+uij876GmkfZa4wbNy6Ki4tj\n5513zs0yc+bM2GOPPaKoqGihPSaLst122+V9/PDDD8d1112Xt+2zzz6LJk2a5OarjU6dOkWDBg1y\nH5eWlkZExH/+85+IiHjyySdj/fXXzztQea211orDDz98qS6/cePGccQRR+Q+btSoURx++OExffr0\nePvtt6OioiI+/PDD6Ny5c95tVFxcHNtvv/1Ct9H3b49Fefrpp6NBgwZRXl6et/3KK6+M4cOH523b\nfvvtl+rrWJw333wzZs6cGYceemgUFxfntnfr1i0eeOCBhV6CFmB5K/7hkwCs/qZPnx6TJk2KNm3a\nxKxZs3LPPd9mm20i4runlPTo0SNKS0tjiy22iMcffzwOOeSQ3NOdzj///IiI+Pzzz2P27NkxduzY\nGDt27ELXU1RUFB999FFsueWWERGx7rrrLnSa4uLiGD16dDz33HPxr3/9Kz744INcUNQ8DeiDDz6I\noqKi2HTTTfPO26JFi7yPP/jgg6iqqopdd911kbN88sknS7xdGjRoEE2aNFlovtdeey0effTRePfd\nd2Pq1Knx5Zdf5s1XGz/96U/zPm7YsGFERO4Yjw8++CA222yzhc7XvHnzpbr8TTfdNHeZNWoub8aM\nGbkIuvTSS+PSSy9d6PxFRUV5r1b1/XkX5cMPP4wNN9xwoevdaKONFjrt0lzeksyYMSMiIjbffPO8\n7Q0bNoyWLVsu02UDLA1BARDf7Z2IiJg0aVLu2IkFvfzyyzFjxozYeOON44ADDogbb7wxvvrqq3j8\n8cejXr16sd9++0XE//0R3K1bt4Xeg6FGSUlJ7v/r1cvfUfzNN9/E4YcfHm+//XbsvPPO0blz5ygt\nLY2NN944DjvssNzpqqqqoqioKO8R6YjvHn1fUHV1day77rpx9dVXL3KW9dZbb5HbayzqGIWLLroo\n7rnnnigrK4uysrI47LDDon379nl7VWrjh46DqKqqytuDUeP7X+vifP82ivi/8KlXr17u/88555zY\neuutF3kZ9evXX+p5I777PsiW8tiF738P1JZXIQMKTVAAxHdvZldcXBxXXXXVQn+8jhs3Lh588MHc\nga9du3aN6667Lp555pn4y1/+EjvuuGPuUeaf/vSnscYaa0R1dXXstNNOeZfz7rvvxowZM2LNNddc\n7ByPPfZYVFRUxNVXX533FJ9JkyblnW7TTTeN6urqmDZtWt5eiqlTp+adrlmzZvHiiy9Gu3bt8v4A\nnzdvXjz55JOxySabLN0N9F/Tp0+Pe+65J8rLy+Piiy/ObZ8/f358/vnntbqspbXpppsu8g0G33//\n/aU6//Tp0yPLsrwQqLmdmjdvHp999llERDRp0mShNXvppZeiqKgoLyiWRrNmzWLixIkxd+7cvL0U\n48ePj8cffzz3ak3Lw4YbbhgR372y2IJPn/r222/jd7/7XRxyyCGx++67L7frA/g+x1AAP3rvvPNO\n/POf/4w99tgj9t133+jSpUvev1NPPTWKiopi9OjREfHdU0u22WabePDBB+P111/PvbpTxHePhu+6\n667xxBNP5P1xX1VVFeeee26cddZZS3yEu+apVltssUVuW5Zl8ac//Ski/m8PSJcuXaKoqCjuuuuu\nvPPXnK5Gp06dYv78+TFs2LC87ffcc0+cccYZ8dprry3xtvn+rLNmzVpovoiIUaNGRWVlZd5L0S74\n6P+y2HPPPePjjz/OO5Zh7ty5cf/99y/V+b/44ot45JFHch9XVlbGn//859hqq61is802i9atW8d6\n660Xd9xxR+6pZRERn3zySZx44om5l22tjY4dO8a8efNyrxBWY8SIEfHCCy/kHTezKAve7jV7MBb3\nMr+tW7eOddddN0aNGpV3ez/++OPx+OOPL3IPDcDy5KcM8KNX88fm4p6itPHGG8fOO+8czz//fLz2\n2mvRtm3bOOCAA+KKK66IRo0a5V7Ws0afPn3i73//e5SXl8eRRx4ZP/3pT+Oxxx6L119/PS644IJY\nY401FjvLzjvvHMXFxXH22WfH4YcfHlmWxWOPPRb//ve/o0GDBrl3TN5iiy2ivLw8hg8fHp999lm0\nbds2/v73v8fTTz8dEf/3B2mXLl1i9913jyFDhsTUqVNj++23j3feeSfuvvvuaNu2be6pWovz/aft\n/PKXv4xmzZrFjTfeGHPmzIn11lsvXnrppXjqqadio402yntH5/XWWy/3Hhi77LJL8sHBBx98cNx1\n111x+umnx5FHHhkbbLBBPPjgg7mX0P2hpyAVFxfHBRdcEBUVFbHBBhvEAw88EJ9++mnufTMaNmwY\n/fv3j3POOSd69OgRBx98cC7ial6Gtba6dOkSO+64Y1x88cUxZcqU2HLLLeOZZ56JCRMmxODBg3/w\n/Ave7jVPSxs2bFjuchfUsGHD+N3vfhf9+/ePI488Mvbbb7/49NNP484774zddtstdt5551rPD1Ab\n9lAAP3qPPfZYrLfeetGxY8fFnqbm1Xpq9lLst99+Ua9evdhtt90WOmi5RYsWcc8990SHDh3izjvv\njEGDBsWcOXPiqquuynu1oUUpKSmJa665JurXrx8DBw6MYcOGRatWreK+++6LrbfeOu9N3C644II4\n6aST4qWXXoorr7wyPv/889yxEgs+bWvIkCFx8sknx+uvvx6XXXZZ/O1vf4sjjjgihg4dushjE2oU\nFRUt9Md6w4YN45Zbbomtt946br311hg0aFB8++23cf/990fXrl3jrbfeykVFeXl5bL311nHDDTfE\ngw8+uMSve1HXXaNBgwYxfPjw2HvvvePee++Na665Jrbaaqs4/fTTF/paF2W99daLa665Jp588sn4\nwx/+EE2bNo3hw4dHhw4dcqc54IAD4pZbbom11147rrvuurjllluiRYsWcccdd0Tr1q1rNXvN/Dff\nfHMcddRRMW7cuLjyyivjk08+ieuuuy66du2aO82iYuj72/fff//YYYcd4u67717oFaJqdO/ePa67\n7rqorKyMgQMHxiOPPBI9e/aMa6+9ttazA9RWUba0R40BUGdUVlZGlmWx1lpr5W3/f//v/0WPHj3i\nsssui0MOOaRA0y1fs2bNirXWWmuhcLjtttti4MCB8cQTTyz0alc1+vXrFxMmTMjtuQFg+bOHAmAV\nNHny5GjXrl3e+2FERO79Mlq1alWIsVaIO+64I9q1axczZ87Mbauuro6//vWvsc466yw2Jmoszasy\nAZDOMRQAq6C2bdvGZpttFhdeeGH885//jPXXXz8mT54co0aNiq5du+beHG51sP/++8ewYcPimGOO\niR49ekT9+vXjiSeeiEmTJuW90tTi2BEPsGJ5yhPAKqrmOfnPP/98zJw5MzbaaKM46KCD4vjjj1/m\n9zaoayZPnhzXX399vPHGG/Htt9/GVlttFcccc0zsu+++Szxf//79Y8KECUv1juAApBEUAABAstXr\nISwAAGClEhQAAEAyQQEAACQTFAAAQDJBAQAAJBMUAABAsv8PtvL7UEdFTHQAAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "df = critics.copy()\n", + "df['fresh'] = df.fresh == 'fresh'\n", + "grp = df.groupby('critic')\n", + "counts = grp.critic.count() # number of reviews by each critic\n", + "means = grp.fresh.mean() # average freshness for each critic\n", + "\n", + "means[counts > 100].hist(bins=10, edgecolor='w', lw=1)\n", + "plt.xlabel(\"Average rating per critic\")\n", + "plt.ylabel(\"N\")\n", + "plt.yticks([0, 2, 4, 6, 8, 10]);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##The Vector space model and a search engine." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "All the diagrams here are snipped from\n", + "See http://nlp.stanford.edu/IR-book/ which is a great resource on Text processing.\n", + "\n", + "Also check out Python packages nltk, spacy, and pattern, and their associated resources.\n", + "\n", + "Let us define the vector derived from document d by $\\bar V(d)$. What does this mean? Each document is considered to be a vector made up from a vocabulary, where there is one axis for each term in the vocabulary.\n", + "\n", + "To define the vocabulary, we take a union of all words we have seen in all documents. We then just associate an array index with them. So \"hello\" may be at index 5 and \"world\" at index 99.\n", + "\n", + "Then the document\n", + "\n", + "\"hello world world\"\n", + "\n", + "would be indexed as\n", + "\n", + "`[(5,1),(99,2)]`\n", + "\n", + "along with a dictionary\n", + "\n", + "``\n", + "5: Hello\n", + "99: World\n", + "``\n", + "\n", + "so that you can see that our representation is one of a sparse array.\n", + "\n", + "Then, a set of documents becomes, in the usual `sklearn` style, a sparse matrix with rows being sparse arrays and columns \"being\" the features, ie the vocabulary. I put \"being\" in quites as the layout in memort is that of a matrix with many 0's, but, rather, we use the sparse representation we talked about above.\n", + "\n", + "Notice that this representation loses the relative ordering of the terms in the document. That is \"cat ate rat\" and \"rat ate cat\" are the same. Thus, this representation is also known as the Bag-Of-Words representation.\n", + "\n", + "Here is another example, from the book quoted above, although the matrix is transposed here so that documents are columns:\n", + "\n", + "![novel terms](terms.png)\n", + "\n", + "Such a matrix is also catted a Term-Document Matrix. Here, the terms being indexed could be stemmed before indexing; for instance, jealous and jealousy after stemming are the same feature. One could also make use of other \"Natural Language Processing\" transformations in constructing the vocabulary. We could use Lemmatization, which reduces words to lemmas: work, working, worked would all reduce to work. We could remove \"stopwords\" from our vocabulary, such as common words like \"the\". We could look for particular parts of speech, such as adjectives. This is often done in Sentiment Analysis. And so on. It all deoends on our application.\n", + "\n", + "From the book:\n", + ">The standard way of quantifying the similarity between two documents $d_1$ and $d_2$ is to compute the cosine similarity of their vector representations $\\bar V(d_1)$ and $\\bar V(d_2)$:\n", + "\n", + "$$S_{12} = \\frac{\\bar V(d_1) \\cdot \\bar V(d_2)}{|\\bar V(d_1)| \\times |\\bar V(d_2)|}$$\n", + "\n", + "![Vector Space Model](vsm.png)\n", + "\n", + "\n", + ">There is a far more compelling reason to represent documents as vectors: we can also view a query as a vector. Consider the query q = jealous gossip. This query turns into the unit vector $\\bar V(q)$ = (0, 0.707, 0.707) on the three coordinates below. \n", + "\n", + "![novel terms](terms2.png)\n", + "\n", + ">The key idea now: to assign to each document d a score equal to the dot product:\n", + "\n", + "$$\\bar V(q) \\cdot \\bar V(d)$$\n", + "\n", + "This we can use this simple Vector Model as a Search engine." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###In Code" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Original text is\n", + "Hop on pop\n", + "Hop off pop\n", + "Hop Hop hop\n", + "\n", + "Transformed text vector is \n", + "[[1 0 1 1]\n", + " [1 1 0 1]\n", + " [3 0 0 0]]\n", + "\n", + "Words for each feature:\n", + "[u'hop', u'off', u'on', u'pop']\n" + ] + } + ], + "source": [ + "from sklearn.feature_extraction.text import CountVectorizer\n", + "\n", + "text = ['Hop on pop', 'Hop off pop', 'Hop Hop hop']\n", + "print \"Original text is\\n\", '\\n'.join(text)\n", + "\n", + "vectorizer = CountVectorizer(min_df=0)\n", + "\n", + "# call `fit` to build the vocabulary\n", + "vectorizer.fit(text)\n", + "\n", + "# call `transform` to convert text to a bag of words\n", + "x = vectorizer.transform(text)\n", + "\n", + "# CountVectorizer uses a sparse array to save memory, but it's easier in this assignment to \n", + "# convert back to a \"normal\" numpy array\n", + "x = x.toarray()\n", + "\n", + "print\n", + "print \"Transformed text vector is \\n\", x\n", + "\n", + "# `get_feature_names` tracks which word is associated with each column of the transformed x\n", + "print\n", + "print \"Words for each feature:\"\n", + "print vectorizer.get_feature_names()\n", + "\n", + "# Notice that the bag of words treatment doesn't preserve information about the *order* of words, \n", + "# just their frequency" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def make_xy(critics, vectorizer=None):\n", + " #Your code here \n", + " if vectorizer is None:\n", + " vectorizer = CountVectorizer()\n", + " X = vectorizer.fit_transform(critics.quote)\n", + " X = X.tocsc() # some versions of sklearn return COO format\n", + " y = (critics.fresh == 'fresh').values.astype(np.int)\n", + " return X, y\n", + "X, y = make_xy(critics)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Naive Bayes" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "This discussion follows that of HW3 in 2013's cs109 class.\n", + "\n", + "$$P(c|d) \\propto P(d|c) P(c) $$\n", + "\n", + "$$P(d|c) = \\prod_k P(t_k | c) $$\n", + "\n", + "the conditional independence assumption.\n", + "\n", + "Then we see that for which c is $P(c|d)$ higher.\n", + "\n", + "For floating point underflow we change the product into a sum by going into log space. So:\n", + "\n", + "$$log(P(d|c)) = \\sum_k log (P(t_k | c)) $$\n", + "\n", + "But we must also handle non-existent terms, we cant have 0's for them:\n", + "\n", + "$$P(t_k|c) = \\frac{N_{kc}+\\alpha}{N_c+\\alpha N_{feat}}$$" + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "MN Accuracy: 77.23%\n" + ] + } + ], + "source": [ + "from sklearn.naive_bayes import MultinomialNB\n", + "from sklearn.cross_validation import train_test_split\n", + "xtrain, xtest, ytrain, ytest = train_test_split(X, y)\n", + "clf = MultinomialNB().fit(xtrain, ytrain)\n", + "print \"MN Accuracy: %0.2f%%\" % (100 * clf.score(xtest, ytest))\n" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy on training data: 0.92\n", + "Accuracy on test data: 0.77\n" + ] + } + ], + "source": [ + "training_accuracy = clf.score(xtrain, ytrain)\n", + "test_accuracy = clf.score(xtest, ytest)\n", + "\n", + "print \"Accuracy on training data: %0.2f\" % (training_accuracy)\n", + "print \"Accuracy on test data: %0.2f\" % (test_accuracy)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Clearly this is an overfit classifier." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Cross-Validation and hyper-parameter fitting" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We use `KFold` instead of `GridSearchCV` here as we will want to also set parameters in the CountVectorizer." + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import KFold\n", + "def cv_score(clf, X, y, scorefunc):\n", + " result = 0.\n", + " nfold = 5\n", + " for train, test in KFold(y.size, nfold): # split data into train/test groups, 5 times\n", + " clf.fit(X[train], y[train]) # fit\n", + " result += scorefunc(clf, X[test], y[test]) # evaluate score function on held-out data\n", + " return result / nfold # average" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We use the log-likelihood as the score here. Remember how in HW3 we were able to set different scores in `do_classify`. We do the same thing explicitly here in `scorefunc`. Indeed, what we do in `cv_score` above is to implement the cross-validation part of `GridSearchCV`.\n", + "\n", + "Since Naive Bayes classifiers are often used in asymmetric situations, it might help to actually maximize probability on the validation folds rather than just accuracy.\n", + "\n", + "Notice something else about using a custom score function. It allows us to do a lot of the choices with the Decision risk we care about (-profit for example) directly on the validation set, rather than comparing ROC curves on the test set as we did in HW3. You will often find people using `roc_auc`, precision, recall, or `F1-score` as risks or scores." + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "def log_likelihood(clf, x, y):\n", + " prob = clf.predict_log_proba(x)\n", + " rotten = y == 0\n", + " fresh = ~rotten\n", + " return prob[rotten, 0].sum() + prob[fresh, 1].sum()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We'll cross-validate over the regularization parameter $\\alpha$ and the `min_df` of the `CountVectorizer`.\n", + "\n", + ">min_df: When building the vocabulary ignore terms that have a document frequency strictly lower than the given threshold. This value is also called cut-off in the literature. If float, the parameter represents a proportion of documents, integer absolute counts. This parameter is ignored if vocabulary is not None." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Lets set up the train and test masks first:" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from sklearn.cross_validation import train_test_split\n", + "itrain, itest = train_test_split(xrange(critics.shape[0]), train_size=0.7)\n", + "mask=np.ones(critics.shape[0], dtype='int')\n", + "mask[itrain]=1\n", + "mask[itest]=0\n", + "mask = (mask==1)" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "#the grid of parameters to search over\n", + "alphas = [0, .1, 1, 5, 10, 50]\n", + "min_dfs = [1e-5, 1e-4, 1e-3, 1e-2, 1e-1]\n", + "\n", + "#Find the best value for alpha and min_df, and the best classifier\n", + "best_alpha = None\n", + "best_min_df = None\n", + "maxscore=-np.inf\n", + "for alpha in alphas:\n", + " for min_df in min_dfs: \n", + " vectorizer = CountVectorizer(min_df = min_df) \n", + " Xthis, ythis = make_xy(critics, vectorizer)\n", + " Xtrainthis=Xthis[mask]\n", + " ytrainthis=ythis[mask]\n", + " #your code here\n", + " clf = MultinomialNB(alpha=alpha)\n", + " cvscore = cv_score(clf, Xtrainthis, ytrainthis, log_likelihood)\n", + "\n", + " if cvscore > maxscore:\n", + " maxscore = cvscore\n", + " best_alpha, best_min_df = alpha, min_df" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "alpha: 5.000000\n", + "min_df: 0.001000\n" + ] + } + ], + "source": [ + "print \"alpha: %f\" % best_alpha\n", + "print \"min_df: %f\" % best_min_df" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Work with the best params" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Accuracy on training data: 0.79\n", + "Accuracy on test data: 0.73\n" + ] + } + ], + "source": [ + "vectorizer = CountVectorizer(min_df=best_min_df)\n", + "X, y = make_xy(critics, vectorizer)\n", + "xtrain=X[mask]\n", + "ytrain=y[mask]\n", + "xtest=X[~mask]\n", + "ytest=y[~mask]\n", + "\n", + "clf = MultinomialNB(alpha=best_alpha).fit(xtrain, ytrain)\n", + "\n", + "# Your code here. Print the accuracy on the test and training dataset\n", + "training_accuracy = clf.score(xtrain, ytrain)\n", + "test_accuracy = clf.score(xtest, ytest)\n", + "\n", + "print \"Accuracy on training data: %0.2f\" % (training_accuracy)\n", + "print \"Accuracy on test data: %0.2f\" % (test_accuracy)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We might be less accurate bit we are certainly not overfit." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "[[1087 758]\n", + " [ 505 2319]]\n" + ] + } + ], + "source": [ + "from sklearn.metrics import confusion_matrix\n", + "print confusion_matrix(ytest, clf.predict(xtest))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##Interpretation" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "What are the strongly predictive features?" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Good words\t P(fresh | word)\n", + " beautifully 0.91\n", + " rare 0.89\n", + " delight 0.89\n", + " touching 0.88\n", + " entertaining 0.88\n", + " brilliantly 0.86\n", + " surprising 0.86\n", + " remarkable 0.86\n", + " witty 0.86\n", + " masterpiece 0.86\n", + "Bad words\t P(fresh | word)\n", + " tiresome 0.22\n", + " pointless 0.22\n", + " fails 0.21\n", + " disappointment 0.21\n", + " disappointing 0.18\n", + " bland 0.18\n", + " uninspired 0.18\n", + " dull 0.17\n", + " lame 0.16\n", + " unfortunately 0.14\n" + ] + } + ], + "source": [ + "words = np.array(vectorizer.get_feature_names())\n", + "\n", + "x = np.eye(xtest.shape[1])\n", + "probs = clf.predict_log_proba(x)[:, 0]\n", + "ind = np.argsort(probs)\n", + "\n", + "good_words = words[ind[:10]]\n", + "bad_words = words[ind[-10:]]\n", + "\n", + "good_prob = probs[ind[:10]]\n", + "bad_prob = probs[ind[-10:]]\n", + "\n", + "print \"Good words\\t P(fresh | word)\"\n", + "for w, p in zip(good_words, good_prob):\n", + " print \"%20s\" % w, \"%0.2f\" % (1 - np.exp(p))\n", + " \n", + "print \"Bad words\\t P(fresh | word)\"\n", + "for w, p in zip(bad_words, bad_prob):\n", + " print \"%20s\" % w, \"%0.2f\" % (1 - np.exp(p))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can see mis-predictions as well." + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Mis-predicted Rotten quotes\n", + "---------------------------\n", + "It survives today only as an unusually pure example of a typical 50s art-film strategy: the attempt to make the most modern and most popular of art forms acceptable to the intelligentsia by forcing it into an arcane, antique mold.\n", + "\n", + "Benefits from a lively lead performance by the miscast Denzel Washington but doesn't come within light years of the book, one of the greatest American autobiographies.\n", + "\n", + "It's a sad day when an actor who's totally, beautifully in touch with his dark side finds himself stuck in a movie that's scared of its own shadow.\n", + "\n", + "Walken is one of the few undeniably charismatic male villains of recent years; he can generate a snakelike charm that makes his worst characters the most memorable, and here he operates on pure style.\n", + "\n", + "For all the pleasure there is in seeing effective, great-looking black women grappling with major life issues on screen, Waiting to Exhale is an uneven piece.\n", + "\n", + "Mis-predicted Fresh quotes\n", + "--------------------------\n", + "Some of the gags don't work, but fewer than in any previous Brooks film that I've seen, and when the jokes are meant to be bad, they are riotously poor. What more can one ask of Mel Brooks?\n", + "\n", + "There's a lot more to Nowhere in Africa -- too much, actually ... Yet even if the movie has at least one act too many, the question that runs through it -- of whether belonging to a place is a matter of time or of will -- remains consistent.\n", + "\n", + "The gangland plot is flimsy (bad guy Peter Greene wears too much eyeliner), and the jokes are erratic, but it's a far better showcase for Carrey's comic-from-Uranus talent than Ace Ventura.\n", + "\n", + "There's too much talent and too strong a story to mess it up. There was potential for more here, but this incarnation is nothing to be ashamed of, and some of the actors answer the bell.\n", + "\n", + "Though it's a good half hour too long, this overblown 1993 spin-off of the 60s TV show otherwise adds up to a pretty good suspense thriller.\n", + "\n" + ] + } + ], + "source": [ + "x, y = make_xy(critics, vectorizer)\n", + "\n", + "prob = clf.predict_proba(x)[:, 0]\n", + "predict = clf.predict(x)\n", + "\n", + "bad_rotten = np.argsort(prob[y == 0])[:5]\n", + "bad_fresh = np.argsort(prob[y == 1])[-5:]\n", + "\n", + "print \"Mis-predicted Rotten quotes\"\n", + "print '---------------------------'\n", + "for row in bad_rotten:\n", + " print critics[y == 0].quote.irow(row)\n", + " print\n", + "\n", + "print \"Mis-predicted Fresh quotes\"\n", + "print '--------------------------'\n", + "for row in bad_fresh:\n", + " print critics[y == 1].quote.irow(row)\n", + " print" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0.02111976, 0.97888024]])" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "clf.predict_proba(vectorizer.transform(['This movie is not remarkable, touching, or superb in any way']))" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Callibration" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Probabilistic models like the Naive Bayes classifier have the nice property that they compute probabilities of a particular classification -- the predict_proba and predict_log_proba methods of MultinomialNB compute these probabilities.\n", + "\n", + "You should always assess whether these probabilities are calibrated -- that is, whether a prediction made with a confidence of x% is correct approximately x% of the time.\n", + "\n", + "Let's make a plot to assess model calibration. Schematically, we want something like this:\n", + "\n", + "![callibration](callibration.png)\n", + "\n", + "In words, we want to:\n", + "\n", + "- Take a collection of examples, and compute the freshness probability for each using clf.predict_proba\n", + "- Gather examples into bins of similar freshness probability (the diagram shows 5 groups -- you should use something closer to 20)\n", + "- For each bin, count the number of examples in that bin, and compute the fraction of examples in the bin which are fresh\n", + "- In the upper plot, graph the expected P(Fresh) (x axis) and observed freshness fraction (Y axis). Estimate the uncertainty in observed freshness fraction F via the equation \n", + "\n", + "$$\\sigma = \\sqrt{\\frac{F(1-F)}{N}}$$\n", + "\n", + "- Overplot the line y=x. This is the trend we would expect if the model is perfectly calibrated\n", + "- In the lower plot, show the number of examples in each bin" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "\"\"\"\n", + "Function\n", + "--------\n", + "calibration_plot\n", + "\n", + "Builds a plot like the one above, from a classifier and review data\n", + "\n", + "Inputs\n", + "-------\n", + "clf : Classifier object\n", + " A MultinomialNB classifier\n", + "X : (Nexample, Nfeature) array\n", + " The bag-of-words data\n", + "Y : (Nexample) integer array\n", + " 1 if a review is Fresh\n", + "\"\"\" \n", + "#your code here\n", + "\n", + "def calibration_plot(clf, xtest, ytest):\n", + " prob = clf.predict_proba(xtest)[:, 1]\n", + " outcome = ytest\n", + " data = pd.DataFrame(dict(prob=prob, outcome=outcome))\n", + "\n", + " #group outcomes into bins of similar probability\n", + " bins = np.linspace(0, 1, 20)\n", + " cuts = pd.cut(prob, bins)\n", + " binwidth = bins[1] - bins[0]\n", + " \n", + " #freshness ratio and number of examples in each bin\n", + " cal = data.groupby(cuts).outcome.agg(['mean', 'count'])\n", + " cal['pmid'] = (bins[:-1] + bins[1:]) / 2\n", + " cal['sig'] = np.sqrt(cal.pmid * (1 - cal.pmid) / cal['count'])\n", + " \n", + " #the calibration plot\n", + " ax = plt.subplot2grid((3, 1), (0, 0), rowspan=2)\n", + " p = plt.errorbar(cal.pmid, cal['mean'], cal['sig'])\n", + " plt.plot(cal.pmid, cal.pmid, linestyle='--', lw=1, color='k')\n", + " plt.ylabel(\"Empirical P(Fresh)\")\n", + " \n", + " #the distribution of P(fresh)\n", + " ax = plt.subplot2grid((3, 1), (2, 0), sharex=ax)\n", + " \n", + " plt.bar(left=cal.pmid - binwidth / 2, height=cal['count'],\n", + " width=.95 * (bins[1] - bins[0]),\n", + " fc=p[0].get_color())\n", + " \n", + " plt.xlabel(\"Predicted P(Fresh)\")\n", + " plt.ylabel(\"Number\")" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "//anaconda/lib/python2.7/site-packages/matplotlib/collections.py:590: FutureWarning: elementwise comparison failed; returning scalar instead, but in the future will perform elementwise comparison\n", + " if self._edgecolors == str('face'):\n" + ] + }, + { + "data": { + "image/png": "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\nclXz8PBAQkICNmzYgPXr18PS0hJDhw7FokWLxAP46dOn4/z584iMjERpaSl69uyJlStXwsHBAUlJ\nSVi7di3at28Pf39/LFy4UHw3hlwux5YtW/Dxxx9j//79qKyshL+/PxwcHPDRRx816nfn5eWFjRs3\n4tSpU3B3d69zf//sM5/Wvn177N69G+vXr0dycjKKiorQvXt3hIaGigUWAHzyySeIiYlBSkoKdu7c\niY4dO2LSpEmYP39+vfehpqysLMjlcnh6euq0PhGRIciExj6tREREJEEjRoyAm5sbwsLCDB2lwQID\nA9GhQwds2LDB0FGIiOqNczyIiKhFCAoKwsGDB8W5Kc3VjRs3kJmZWevlkkREUsfCg4iIWoTRo0ej\nffv22LNnj6GjNEh8fDxeffVVODs7GzoKEZFWeKsVERG1GCdOnEBISAgOHTokzn9pTm7duoVRo0Zh\n37596Natm6HjEBFphYUHERERERHpHW+1IiIiIiIivWPhQUREREREesfCg4iIiIiI9I6FBxERERER\n6R0LDyIiIiIi0jsWHkREREREpHf/B3ACvkNcyposAAAAAElFTkSuQmCC\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "calibration_plot(clf, xtest, ytest)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The model is still slightly over-confident when making low P(Fresh) predictions. However, the calibration plot shows the model is usually within 1 error bar of the expected performance where P(Fresh) >= 0.2. Finally, the model makes less-conclusive predictions on average -- the histogram in the calibration plot is more uniformly distributed, with fewer predictions clustered around P(Fresh) = 0 or 1.\n", + "\n", + "To think about/play with: What would happen if you tried this again using a function besides the log-likelihood -- for example, the classification accuracy?" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "##To improve:" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "There are many things worth trying. Some examples:\n", + "\n", + "- You could try to build a NB model where the features are word pairs instead of words. This would be smart enough to realize that \"not good\" and \"so good\" mean very different things. This technique doesn't scale very well, since these features are much more sparse (and hence harder to detect repeatable patterns within).\n", + "- You could try a model besides NB, that would allow for interactions between words -- for example, a Random Forest classifier.\n", + "- You could consider adding supplemental features -- information about genre, director, cast, etc.\n", + "- You could build a visualization that prints word reviews, and visually encodes each word with size or color to indicate how that word contributes to P(Fresh). For example, really bad words could show up as big and red, good words as big and green, common words as small and grey, etc." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Better features\n", + "\n", + "We could use TF-IDF instead. What is this? It stands for \n", + "\n", + "`Term-Frequency X Inverse Document Frequency`.\n", + "\n", + "In the standard `CountVectorizer` model above, we used just the term frequency in a document of words in our vocabulary. In TF-IDF, we weigh this term frequency by the inverse of its popularity in all document. For example, if the word \"movie\" showed up in all the documents, it would not have much predictive value. By weighing its counts by 1 divides by its overall frequency, we down-weight it. We can then use this tfidf weighted features as inputs to any classifier." + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "#http://scikit-learn.org/dev/modules/feature_extraction.html#text-feature-extraction\n", + "#http://scikit-learn.org/dev/modules/classes.html#text-feature-extraction-ref\n", + "from sklearn.feature_extraction.text import TfidfVectorizer\n", + "tfidfvectorizer = TfidfVectorizer(min_df=1, stop_words='english')\n", + "Xtfidf=tfidfvectorizer.fit_transform(critics.quote)" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "array([[ 0., 0., 0., ..., 0., 0., 0.]])" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Xtfidf[0].toarray()" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "(15561, 22126)" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "Xtfidf.shape" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Clustering" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can do an unsupervized learning analysis of text as well. Algorithms like LDA are especially good for this purpose. we use the gensim library for this purpose. \n", + "\n", + "Install it with conda, not with pip.\n", + "\n", + "`$ conda install gensim`\n", + "\n", + "on the command line." + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Couldn't import dot_parser, loading of dot files will not be possible.\n" + ] + } + ], + "source": [ + "import gensim" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "vectorizer = CountVectorizer(min_df=1, stop_words='english')\n", + "X=vectorizer.fit_transform(critics.quote)" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": { + "collapsed": false + }, + "outputs": [], + "source": [ + "corpus=vectorizer.get_feature_names()\n", + "id2words = dict((v, k) for k, v in vectorizer.vocabulary_.iteritems())\n", + "corpus_gensim = gensim.matutils.Sparse2Corpus(X, documents_columns=False)" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "lda = gensim.models.ldamodel.LdaModel(corpus_gensim, id2word=id2words, num_topics=5, update_every=1, chunksize=1000, passes=1)" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/plain": [ + "[u'0.013*film + 0.008*movie + 0.005*funny + 0.005*director + 0.005*does + 0.005*screen + 0.004*great + 0.004*best + 0.004*films + 0.004*performances',\n", + " u'0.012*comedy + 0.010*film + 0.006*romantic + 0.006*movie + 0.005*little + 0.004*best + 0.004*story + 0.004*funny + 0.004*american + 0.003*characters',\n", + " u'0.020*movie + 0.015*film + 0.007*like + 0.006*movies + 0.005*does + 0.004*don + 0.004*good + 0.004*best + 0.004*make + 0.004*kind',\n", + " u'0.017*movie + 0.010*good + 0.010*film + 0.009*like + 0.007*time + 0.006*just + 0.005*fun + 0.005*doesn + 0.004*lot + 0.004*makes',\n", + " u'0.015*film + 0.012*movie + 0.007*director + 0.004*story + 0.004*war + 0.003*self + 0.003*original + 0.003*makes + 0.003*just + 0.003*effects']" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "lda.print_topics()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "We can see how each document fits in with the topics. You will see this in the homework." + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "###Generative Models redux.\n", + "\n", + "LDA is a generative model.\n", + "\n", + "When we talked about generative models earlier, we said that we'd need to model P(x|y), the features belonging to one class. And in general, we might want to model the input feature distribution P(x). How do we solve either of these problems? These fall under the rubric of density estimation." + ] + }, + { + "cell_type": "markdown", + "metadata": { + "variables": { + "\\cal D": {}, + "\\cal E": {}, + "\\cal H": {}, + "\\cal L": {}, + "\\ell": {}, + "\\mathbf #1": {}, + "\\mathbf x": {} + } + }, + "source": [ + "### Density estimation and Unsupervized learning\n", + "\n", + "$$\n", + "\\renewcommand{\\like}{{\\cal L}}\n", + "\\renewcommand{\\loglike}{{\\ell}}\n", + "\\renewcommand{\\err}{{\\cal E}}\n", + "\\renewcommand{\\dat}{{\\cal D}}\n", + "\\renewcommand{\\hyp}{{\\cal H}}\n", + "\\renewcommand{\\Ex}[2]{E_{#1}[#2]}\n", + "\\renewcommand{\\x}{{\\mathbf x}}\n", + "\\renewcommand{\\v}[1]{{\\mathbf #1}}\n", + "$$\n", + "\n", + "The basic idea in unsupervised learning is to find a compact representation of the data $\\{\\v{x}_1, \\v{x}_2, ..., \\v{x}_n\\}$, whether these $\\v{x}$ come from a class conditional probability distribution like those for males or females, or from all the samples. In other words, we are trying to *estimate a feature distribution* in one case or the other. This is, of course the fundamental problem of statistics, the estimation of probability distributions from data. \n", + "\n", + "We saw an example of this where we used the maximum likelihood method in logistic regression. There we were trying to estimate $P(y|\\v{x}, \\v{w})$, a 1-D distribution in y, by finding the most appropriate parameters $\\v{w}$. Here we are trying to find some parametrization $\\theta_y$ for $P(x|y, \\theta_y)$ or $\\v{\\theta}$ in general for $P(x)$. \n", + "\n", + "But the basic method we will use remains the same: find the maximum likelihood, or, choose some probability distributions with parameters $\\v{\\theta}$, find the probability of each point of data if the data had come from this distribution, multiply these probabilities, and maximize the whole thing with respect to the parameters. (Equivalently we minimize the risk defined as the negative of the log-likelihood). \n", + "\n", + "Consider our heights and weights problem again. Suppose I did not tell you the labels: ie which samples were males and which samples were females. The data would then look like this:" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
GenderHeightWeight
0Male73.847017241.893563
1Male68.781904162.310473
2Male74.110105212.740856
3Male71.730978220.042470
4Male69.881796206.349801
\n", + "
" + ], + "text/plain": [ + " Gender Height Weight\n", + "0 Male 73.847017 241.893563\n", + "1 Male 68.781904 162.310473\n", + "2 Male 74.110105 212.740856\n", + "3 Male 71.730978 220.042470\n", + "4 Male 69.881796 206.349801" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df=pd.read_csv(\"https://dl.dropboxusercontent.com/u/75194/stats/data/01_heights_weights_genders.csv\")\n", + "df.head()" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "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\nZna95/uvN8wh8/A0Cs3KGjSw6bw0j1ZfbTy91by66bhdzt/Pc9ZfXjOH0wxKfTIBeMWKFSv+K2Nt\nAFas+AXxTTl+/Hu8TuMNnMXJJrxwSLne9gIXncAlL8Bbw/2NTO3P5yz2lkqxad2V0nEaIlTYdjLd\nDSkTY1koHZlxTpJ6Wwo/eXcWF56Fx//Tt/D2+czbw8x5jHTe0reL+8thEteZxrDpHOdzxG8MY4jk\nVBhD5PPHM9s58XjSfOe2p/WOBng+BmoUC8jWatJis1kLDFEKaaXErWZOBaXUYrkJVcEwJjaNkY3A\nYmc6xsTdbUPXGtrJMFvNEGamIL+jVpK2q5VYr05TZLdpxMVIK3ExGgMKTdWJlDJKg0LTetDW4LRm\nMIk5FIqF5+OEMwrnLc/HmcZplDLkUmgNBFXljFRFv2lojCLEiu01373dsNs4TmPk7fPENEWMVczR\nchoU97cdN0s+xHmKDFNkGBMVMFpoP8OUqUqx3UoR3zcWZ/RyNgqTEuHvq9ue3lvRh2hF34j49vN3\nZ7w3xFioVO52Qge62HBut16cqPz7NOCLZedDypzHhDOK+33LpveLeFisZ7+K0//xNTPHLNkV9sNU\n4bUBWLFixX91rA3AihW/pHiZ6vvzCBk/RRdqnGG/bXj3NJIWO8VG2Wty6hVKJv4XasXjOeCtiEep\nYr8oFB9FqIpX246QCo+HkfOcmKNl2zkR/QLOaYa58HiamUIi58JxCJRcmKzmhobnU+DheRKv/ZLJ\nKTMGw+tbRc5FCtxzYdtaSq5SqM6JnMXXP6bK4RxIKXE6Bf6PH97grcHYysOzvH+rDcO8UIB0pfGG\nmCveGDpvePCKkqv8XlHyBQyKrm1RSmGMuNz0SwDZ0zFQcxExcQU0pMuGYoYQhTqTS6EU8M6iDTTZ\nMEwRawwWg1biy983mooihcwphWtqsveacU4MpbLbSnjZeU50HnIuTFXzvfsNpULXWsYpU6qi9SJO\nvr/tOIwzj8eZp4WCZbSSdGZvSFHsWN8+jmI3ilCsWm+IOWOshpwxVFpv2fb+er/Giji6bSS5t/OW\nYZJGMOTCMEnmxDhFximBquw3DbVIoNuu9zTe8sPXW+abL5/ZAxJWtmmdnFGloFa2vVvyJuQzvkzy\nX577EPPV7nPFihUrVnw11gZgxYpfEN+EsPDjVN8Ll7/x9oMk35f3/yq6UOPE1vLqg/4JrnIImWEW\n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\n47AsIiIior1n3QAgCAIcPnz4pMevu+46fPGLX8TPf/7zVYuDr7vuOjzyyCNI0xRxHG/phJ544okt\nvZ6W2byEyf2OvJYCSu7+nLcz8TNXStMUAK8d2jpeO7QdvG5ou3jt0HbV185OWXe1dvToUXzpS1/C\n8ePHpx7PsgwAsLCwgH/+53+GMeak51ut1pYX/7R9kwtxADC5g83LXf+5SgZot0K0W+EZWfwTERER\n0dasewcgyzLceeedSNMUt9xyS/P4t771LVx66aXI8xwf+chHcP755+MNb3gDAMA5h29/+9t4zWte\ns60TeulLX7qt9826paE5KR9fCIFeW5+hMzp96p0UXju0Vbx2aDt43dB28dqh7XriiScwGo127Hjr\nBgAvfOEL8eY3vxl33303giDAZZddhm9+85t46KGH8OlPfxrXXHMNrr76atx5551YXFzEwYMH8S//\n8i/4n//5H3zhC1/YsZMkIiIiIqKdseEgsI9+9KO455578LnPfQ7PPfccXvKSl+CTn/wkrr/+egDA\nkSNH8PGPfxyf+MQnsLCwgJe//OX47Gc/i5e97GW7fvJ7WVb30Ad2ZIAWC3KJiIiIaDM2DABarRZu\nvfVW3Hrrras+Pz8/j4985CM7fmLnsswWU4v1+t9PJQio37uTQQURERERnXs2DABo5602LCszxanf\nBVBc9BMRERHR+ti2hYiIiIhohjAAOANWy81nvj4RERERnQ5MAToDmK9PRERERGcKA4At2MnOPczX\nJyIiIqIzgQHAJu1G5x4iIiIiotONNQCbtFbnHiIiIiKivYQBABERERHRDGEAsEns3ENERERE5wLW\nAGwSO/cQERER0bmAAcAWsHMPEREREe11TAEiIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiI\naIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMA\nIiIiIqIZwgCAiIiIiGiGMAAgIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIi\nmiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCA\niIiIiGiGMAAgIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiI\nZggDACIiIiKiGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCAiIiIiGiGMAAg\nIiIiIpohDACIiIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKi\nGcIAgIiIiIhohjAAICIiIiKaIQwAiIiIiIhmCAMAIiIiIqIZwgCAiIiIiGiGMAAgIiIiIpohDACI\niIiIiGYIAwAiIiIiohnCAICIiIiIaIYwACAiIiIimiEMAIiIiIiIZggDACIiIiKiGcIAgIiIiIho\nhjAAICIiIiKaIQwAiIiIiIhmiNzoBSdOnMC111570uNvetObcPfdd8M5h3vvvRdf+tKXsLCwgEOH\nDuGOO+7AZZddtisnTERERERE27dhAPCjH/0IAPDAAw+g3W43j8/PzwMA7rnnHtx333247bbbcNFF\nF+HIkSO45ZZb8OCDD6LT6ezSaRMRERER0XZsGAA8+eSTOHjw4Kp3AQaDAe6//368973vxc033wwA\neM1rXoPrr78eX/nKV3DLLbfs+AkTEREREdH2bVgD8OSTT+KKK65Y9bnHH38caZri9a9/ffNYr9fD\n4cOH8cgjj+zcWRIRERER0Y7YVACQpine8Y534KqrrsLrXvc63H///QCAp59+GgDwohe9aOo9F198\nMX7yk5/s/NkSEREREdEpWTcFqCgKPPXUU2i327jtttvwghe8AA8//DDuuusujMdjSCmhtYaU04dp\nt9sYDoe7euJERERERLR16wYAQgjcd999uPDCC3HxxRcDAA4fPozRaITPfOYzePe73w0hxJrvJSIi\nIiKis8u6AUAQBDh8+PBJj1933XX44he/iDiOYYxBURQIw7B5fjgcotfrbeuEnnjiiW29j2ZXmqYA\neO3Q1vHaoe3gdUPbxWuHtqu+dnbKugHA0aNH8fDDD+ONb3wj9u/f3zyeZRkAX/DrnMMzzzyDSy65\npHn+mWeewaWXXrqtExqNRtt6HxGvHdouXju0HbxuaLt47dCZtm4AkGUZ7rzzTqRpOtXS81vf+hYu\nvfRS3HDDDbjzzjvx0EMP4V3vehcAYHFxEY899hje9773bflkXv3qV2/5PUREREREtHnrBgAvfOEL\n8eY3vxl33303giDAZZddhm9+85t46KGH8OlPfxpJkuDmm29unr/kkktw7733otfr4aabbjpdn4GI\niIiIiDZJOOfcei8Yj8e45557shTIIwAACTdJREFU8OCDD+K5557DS17yEvzZn/0Z3vCGNwDwnYL+\n4R/+AV/96lcxHA5x6NAh3HHHHdtOASIiIiIiot2zYQBARERERETnjg0HgRERERER0bmDAQARERER\n0QxhAEBERERENEMYABARERERzRAGAEREREREM4QBABERERHRDDntAcCJEydw5ZVXnvTP+9//fgCA\ncw5HjhzB//t//w+vetWr8M53vhNPPfXU6T5NOot85zvfwaFDh056fKPrxBiDj370o7juuutw6NAh\nvO9978PRo0dP12nTGbbadfPDH/5w1b8/H/vYx5rX8LqZXWVZ4oEHHsBv//Zv4+qrr8Zb3vIWfP7z\nn596Df/u0Go2unb4t4dWY4zB3//93+P666/H1VdfjT/6oz/Cf//3f0+9Ztf+5rjT7NFHH3VXXHGF\ne/TRR93jjz/e/PPTn/7UOefcJz/5SXfVVVe5f/qnf3Lf+c533E033eRe+9rXun6/f7pPlc4CP/jB\nD9zVV1/trr766qnHN3Od3H777e6aa65xX/3qV903v/lNd8MNN7jf/d3fdUVRnO6PQafZWtfNl7/8\nZfeqV71q6m/P448/7p599tnmNbxuZtcnPvEJ98pXvtLde++97nvf+5775Cc/6V72spe5++67zznH\nvzu0to2uHf7todV86EMfcocOHXJf+MIX3KOPPur+9E//1L361a92//u//+uc292/Oac9AHjggQfc\nb/7mb676XL/fd6961aua/8I459zi4qI7dOiQe+CBB07TGdLZIMsy94//+I/uFa94hbvmmmumFnKb\nuU5++tOfupe+9KXuwQcfbF7z9NNPuyuvvNJ9+9vfPm2fg06v9a4b55z727/9W/f7v//7a76f183s\nyvPcHTp0yN19991Tj3/4wx921157rRsMBvy7Q6va6Npxjn976GRLS0vu5S9/+dT6djweu1/7tV9z\nR44c2fW1zmlPAXryySdxxRVXrPrc448/jjRN8frXv755rNfr4fDhw3jkkUdO1ynSWeA//uM/cN99\n9+GDH/wgbr75ZriJgdWbuU6+//3vAwCuv/765jWXXHIJXvKSl/BaOoetd90A/u/P5Zdfvub7ed3M\nruFwiLe97W244YYbph5/8YtfjOPHj+P73/8+/+7Qqja6dtI05d8eOkmSJPjKV76C3/u932seC8MQ\n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\nAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.plot(df.Weight, df.Height, '.', alpha=0.08);" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The data looks vaguely elliptical and has two \"clusters\". Besides we know that heights and weights have normal distributions associated with them. So we decide to fit these features, with no knowledge of labels, with a mixture of two 2-D normal distributions. \n", + "\n", + "$$P(x) = \\lambda G_0(\\v{x},\\theta_0) + (1 - \\lambda) G_1(\\v{x},\\theta_1) $$\n", + "\n", + "What we are doing is a probability distribution estimation on these height and weight features, by fitting for the parameters of whats known as a \"mixture of gaussians\". Note these are not the per label gaussians we fit before in LDA: rather, there are no labels any more, so this is just a mixture of gaussians. This is just a density estimation.\n", + "\n", + "At this point, you may object, saying that we know from generative classifiers that we can find $P(x)$ as:\n", + "\n", + "$$P(x) = \\sum_y P(x|y, \\theta_y) P(y).$$\n", + "\n", + "You are right, if you knew the labels. But remember, I have taken these labels away from you, and thus there are no $y$'s, and this formula does not hold any more.\n", + "\n", + "But your objection also makes sense: why not right the input density $P(x)$ as a sum of components, each of which is some other probability distribution. This is the notion of **clustering**: an attempt to find hidden structure in the data. So we can always write:\n", + "\n", + "$$P(x) = \\sum_z \\lambda_z P(x|z, \\theta_z),$$\n", + "\n", + "where $z$ is some **hidden** variable which indexes the number of clusters in our problem. This is a variant of the idea behind the famous **kmeans** clustering algorithm, which we shall encounter in class.\n", + "\n", + "So thats what we do below here, using two clusters based on our visual reconnoiter of the density in the graph above:" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GMM(covariance_type='tied', init_params='wmc', min_covar=0.001,\n", + " n_components=2, n_init=1, n_iter=100, params='wmc', random_state=None,\n", + " thresh=None, tol=0.001)\n", + "[[ 63.75414799 136.64386191]\n", + " [ 69.05054815 186.89700669]] [[ 7.79123887 47.70252408]\n", + " [ 47.70252408 399.61407127]]\n" + ] + } + ], + "source": [ + "Xall=df[['Height', 'Weight']].values\n", + "from sklearn.mixture import GMM\n", + "n_clusters=2\n", + "clfgmm = GMM(n_components=n_clusters, covariance_type=\"tied\")\n", + "clfgmm.fit(Xall)\n", + "print clfgmm\n", + "gmm_means=clfgmm.means_\n", + "gmm_covar=clfgmm.covars_\n", + "print gmm_means, gmm_covar" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we use these gaussians to assign clusters? Just like we did in the generative case with LDA, we can ask, which Gaussian is higher at a particular sample. We'll cluster that sample under an artificial label created by that cluster. \n", + "\n", + "We plot the results below." + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "metadata": { + "collapsed": true + }, + "outputs": [], + "source": [ + "from scipy import linalg\n", + "\n", + "def plot_ellipse(splot, mean, cov, color):\n", + " v, w = linalg.eigh(cov)\n", + " u = w[0] / linalg.norm(w[0])\n", + " angle = np.arctan(u[1] / u[0])\n", + " angle = 180 * angle / np.pi # convert to degrees\n", + " # filled Gaussian at 2 standard deviation\n", + " ell = mpl.patches.Ellipse(mean, 2 * v[0] ** 0.5, 2 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell.set_clip_box(splot.bbox)\n", + " ell1 = mpl.patches.Ellipse(mean, 1 * v[0] ** 0.5, 1 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell1.set_clip_box(splot.bbox)\n", + " ell3 = mpl.patches.Ellipse(mean, 3 * v[0] ** 0.5, 3 * v[1] ** 0.5,\n", + " 180 + angle, color=color, lw=3, fill=False)\n", + " ell3.set_clip_box(splot.bbox)\n", + " #ell.set_alpha(0.2)\n", + " splot.add_artist(ell)\n", + " splot.add_artist(ell1)\n", + " splot.add_artist(ell3)" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAwUAAAIbCAYAAAC6zjImAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XmUXNV1Nvzn1jz3pNkSYhBCAswgoRgwdsxoCWwChthx\njI2SyCafec33xa/zLpNA8CI2CiyQl1kmYBODeZ3YBmymALYhAoMY5BlighBISGhArVbPNd+quvf7\n49Tuc+p29UhP6np+a/XqVvWte29VNay9z9lnH8t1XRdERERERNSwfNN9A0RERERENL2YFBARERER\nNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1uBGTAtu28c1vfhNnn302Tj31VFx5\n5ZV4/fXXa46588478ZGPfASnnHIK/vqv/xpvv/32oHPcdNNNOOuss7Bq1Spcc8016OjomNhXQkRE\nRERE4zJiUrBx40b8+7//O6666ir867/+K6LRKD73uc/h3XffBQB8+9vfxl133YUNGzZg06ZNSKfT\nWL9+PTKZzMA5brjhBjz66KP4yle+go0bN2L79u34whe+AMdxJu+VERERERHRqFjDbV6WTqdxxhln\n4Ctf+QrWr18PACgWi/jABz6Av/3bv8UVV1yBD33oQ7j66quxYcMGAEB/fz/OPvtsfOlLX8L69eux\nZ88erF27FrfddhvWrVsHAHjnnXewdu1a3H777Tj//PMn/1USEREREdGQhp0piMVi+MlPfoJPfOIT\nA4/5/X5YlgXbtvHqq68in8/jnHPOGfh9KpXCmjVrsGXLFgDA1q1bAQBnn332wDFLly7FsmXLBo4h\nIiIiIqLpM2xS4Pf7sWLFCqRSKbiui7179+If/uEfYFkWLr74YuzevRsAcMQRR9Q8b/Hixdi1axcA\nYNeuXZg7dy4ikUjNMUuWLBk4hoiIiIiIps+ouw/dcccdOP/88/HYY4/h85//PI488khkMhmEQiEE\nAoGaY+PxOLLZLAAgm80iFosNOl8sFhs4hoiIiIiIpk9g5EOU888/H6effjq2bt2KO+64A7ZtIxKJ\nwLKsusf7fCrfcF13xGOIiIiIiGj6jDopOO644wAAp512GrLZLL73ve/hK1/5CmzbRqVSgd/vHzg2\nm80imUwCABKJRN0ZAfMYIiIiIiKaPsMmBZ2dnXjuueewdu1axOPxgcdXrFgB27YH1hrs27cPS5cu\nHfj9vn37cNRRRwEAjjzySHR2dsK2bYRCoZpj1qxZM+Yb/t3vfjfm5xARERERNYLVq1eP63nDJgV9\nfX34x3/8R1iWVdOB6MUXX8ScOXNw3nnnIRwO4+mnnx5oSdrX14df//rXuOaaawAAZ5xxBiqVCjZv\n3jzQknT37t3YsWPHwDFjNd4XSzPXtm3bAAArV66c5juhicbPdvbiZzt78bOdvfjZzl7btm1DLpcb\n9/OHTQqOOeYYXHDBBbj55ptRKpWwePFiPPXUU3jsscewceNGJBIJXHHFFfjWt74Fn8+HpUuX4q67\n7kIqlcLll18OQHUmWrt2La6//npkMhkkk0ls2rQJK1aswHnnnTfuGyciIiIiookx4pqCW265Bd/+\n9rfxne98B4cOHcKxxx6L22+/HRdccAEA4Mtf/jJ8Ph/uueceZLNZrFq1CrfccgsSicTAOTZu3IiN\nGzfi1ltvheM4OPPMM3HdddcNuQCZiIiIiIimzrA7Gs9Ev/vd71g+NAtxOnP24mc7e/Gznb342c5e\n/GxnLykfGm+czJ6gREREREQNjkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQER\nERERUYNjUkBERERE1OCYFBARERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1\nOCYFREREREQNjkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBE\nRERE1OCYFBARERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQN\njkkBEREREVGDY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBERERE1OCYFBAR\nERERNTgmBUREREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQNjkkBEREREVGD\nY1JARERERNTgmBQQERERETU4JgVERERERA2OSQERERERUYNjUkBERERE1OCYFBARERERNTgmBURE\nREREDY5JARERERFRg2NSQERERETU4JgUEBERERE1OCYFREREREQNjkkBEREREVGDY1JARERERNTg\nAtN9A0REREREs5ptqy8ACIXU1wzDpICIiIiIaLLYNlAs6n/LzzMsMWD5EBERERHRZJEZgpEem2ZM\n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\n2zZqa2tx66234rzzzsPFF1+MBx98EKs3TlQAAAWjSURBVLZt872tYIYaW4DvbbXwz//8z1i0aBE+\n/elPA+D/t9WEc2wBvreVzHXXXYenn34av/71r9Hb24vt27fjwIED+MM//MNRvbdlF1OQyWRw8OBB\nBAIBbNiwAXPnzsXOnTtx//33o6+vD263G16vF253ftcDgQCi0egk9ZoMh6HG9lOf+hS6urrw/vvv\n4/bbb0d9fT1++tOf4pvf/CYA4Prrr5/kOyDF6OzsBADceeeduPbaa3HzzTdj9+7d2Lx5M3w+H7LZ\nLN/bCmWosf3jP/5jvrdVwNGjR7Fz5078/d//fW5bJBLhe1sFFBrblpYWvrcVzG233Yb9+/fjC1/4\nQm7b17/+dVxxxRX413/915Lf27ITBZZlYevWrZg9ezbmzZsHAFixYgVisRgefvhh3HrrrbAsq+i5\npHwZamxvueUWbNu2DYsXL0ZzczMAYOXKlWhtbcWmTZv4j1QZk0qlAACXXnopNmzYAAD46Ec/is7O\nTmzevBlf+tKX+N5WKEON7bp16/jeVgGPP/44GhoacN111+W22bbN97YKKDS24XCY720Fs2HDBrz5\n5pv41re+hdNOOw2vvPIKvv/97yMYDI7qvS079yGXy4UVK1bkjEbhkksuQTweR11dHZLJJDKZTN7+\naDSK+vr6iewqGSFDje3Ro0excuXK3D9Q5v6jR48iHo9PZHfJCBDfxksvvTRv+8qVKxGLxRAKhfje\nVihDje3Jkyf53lYBv/zlL7FmzRp4PJ7cNr631UGhsfX5fHxvK5Tf/va32LFjB+655x7cdNNNWLFi\nBb72ta/hC1/4Au677z74/f6S39uyEwWtra147LHH0NHRkbc9kUgAUMEStm3j2LFjefuPHTuGRYsW\nTVg/ycgZamy7urrw6KOPIplMDthfW1uLurq6CesrGRniuyizykI6nQYAeDwevrcVylBjm8lk+N5W\nOB9++CEOHjyItWvX5m1fuHAh39sKp9jYHjp0iO9thXLkyBEAwPnnn5+3fdmyZYjH47Asq+T3tuxE\nQSKRwN13342f/OQnedufffZZLFq0CFdddRV8Ph+ee+653L7u7m7s3r27YFEsUj4MNbbpdBr33HMP\nXnrppdw+27bxi1/8AhdccMFEd5eMgDPOOAMzZ87EM888k7f9xRdfxMyZM3HNNdfwva1QhhrbEydO\n8L2tcN566y0AA42MpUuX8r2tcIqNLd/bymX+/PkAVP0Yk71798Ltdo/KTq751re+9a0x7/EoaGho\nwMGDB/GjH/0Ifr8fvb29eOihh/DTn/4U3/72t7F48WJEIhE89NBDqK2tRUdHB/72b/8WmUwG9957\nL7xe72TfAinCUGO7atUqvPrqq3j66acRDofR1taG7373u9izZw/uv/9+TJ8+fbJvgRTBsiw0NjZi\n69atOHnyJHw+H3784x/j0UcfxR133IGlS5fyva1QhhrbtWvX8r2tcJ555hkcOHAAX/nKV/K2e71e\nvrcVTrGxnTt3Lt/bCmXWrFl444038Pjjj+eCh5988kls3boVf/Znf4arr7665PfWsiWnXBnR19eH\nTZs2YceOHWhra8Ppp5+OL3/5y1izZg0AtVz9ve99D0899RSi0WiufDOXM8ufoca2q6sLDzzwAF58\n8UV0dXXhnHPOwTe+8Q0sX758kntOhsPPfvYzbNmyBUeOHMHs2bNxyy234FOf+hQAvreVzmBjy/e2\nsvm7v/s7vPrqq3j22WcH7ON7W9kMNrZ8byuXRCKBzZs345lnnkFraysWLFiAP/3TP83Vkyn1vS1L\nUUAIIYQQQgiZOMoupoAQQgghhBAysVAUEEIIIYQQMsWhKCCEEEIIIWSKQ1FACCGEEELIFIeigBBC\nCCGEkCkORQEhhBBCCCFTHIoCQgghhBBCpjgUBYQQQgghhExxKAoIIYQQQgiZ4vx/vk+nMPGsIdcA\nAAAASUVORK5CYII=\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "plt.figure()\n", + "ax=plt.gca()\n", + "plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')\n", + "gmm_labels=clfgmm.predict(Xall)\n", + "for k, col in zip(range(n_clusters), ['blue','red']):\n", + " my_members = gmm_labels == k\n", + " ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',\n", + " markerfacecolor=col, marker='.', alpha=0.05)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "How do we know, a-priori, that two is the right number of clusters? We can try and fit a mixture of 3 gaussians" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "metadata": { + "collapsed": false + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "GMM(covariance_type='tied', init_params='wmc', min_covar=0.001,\n", + " n_components=2, n_init=1, n_iter=100, params='wmc', random_state=None,\n", + " thresh=None, tol=0.001)\n", + "[[ 66.27189886 162.17290849]\n", + " [ 63.29051219 131.78754676]\n", + " [ 69.69208734 192.39008464]] [[ 7.0407902 40.79791591]\n", + " [ 40.79791591 335.28692429]]\n" + ] + }, + { + "data": { + "image/png": "iVBORw0KGgoAAAANSUhEUgAAAwUAAAIbCAYAAAC6zjImAAAABHNCSVQICAgIfAhkiAAAAAlwSFlz\nAAALEgAACxIB0t1+/AAAIABJREFUeJzs3XuUZFV5N/7vPte69m0uDAgz8HIb7jdFbopc38FE1kgu\nJtFE34RoXn1lRRd/xESX+fGuOEsWkDcsCWgi6BuDipFElq7XADMauRrFSyIBBnCYYZC59L3qVNXZ\n57J/f+zep09VV/d0NzPTPV3fD2tWd1efOnXqVLvcz97Pfh6hlFIgIiIiIqKeZS31BRARERER0dJi\nUEBERERE1OMYFBARERER9TgGBUREREREPY5BARERERFRj2NQQERERETU4w4YFEgp8dd//de44oor\ncN555+H9738//uu//qvtmLvvvhvveMc7cO655+IP//AP8ctf/nLGOT7zmc/gsssuw/nnn4+bbroJ\n+/btO7jvhIiIiIiIFuWAQcGWLVvwla98BR/60Ifwt3/7tygWi/iDP/gD/OpXvwIAfO5zn8M999yD\nG2+8EXfccQdqtRo+8IEPoF6vZ+f49Kc/jW9961u4+eabsWXLFrzwwgv44Ac/iDRND907IyIiIiKi\neRFzNS+r1Wq4+OKLcfPNN+MDH/gAACAMQ7z1rW/Fn/zJn+B973sf3va2t+EjH/kIbrzxRgDA5OQk\nrrjiCnz0ox/FBz7wAezatQubNm3C7bffjuuuuw4AsHPnTmzatAl33nknrrnmmkP/LomIiIiIaFZz\nrhSUSiX80z/9E2644YbsMdu2IYSAlBI///nP0Ww2ceWVV2a/7+vrw1ve8hY89thjAICnn34aAHDF\nFVdkx2zYsAEnnXRSdgwRERERES2dOYMC27axceNG9PX1QSmFV199FX/+538OIQSuv/56vPLKKwCA\n9evXtz3v2GOPxY4dOwAAO3bswJo1a1AoFNqOOe6447JjiIiIiIho6cy7+tBdd92Fa665Bg899BD+\n+I//GMcffzzq9To8z4PjOG3HlstlBEEAAAiCAKVSacb5SqVSdgwRERERES0d58CHaNdccw0uuugi\nPP3007jrrrsgpUShUIAQouvxlqXjDaXUAY8hIiIiIqKlM++g4NRTTwUAvPnNb0YQBPjiF7+Im2++\nGVJKJEkC27azY4MgQLVaBQBUKpWuKwL5Y4iIiIiIaOnMGRQMDw/j3/7t37Bp0yaUy+Xs8Y0bN0JK\nme012L17NzZs2JD9fvfu3TjhhBMAAMcffzyGh4chpYTneW3HvOUtb1nwBT/zzDMLfg4RERERUS+4\n4IILFvW8OYOCiYkJ/MVf/AWEEG0ViJ544gmsXr0aV199NXzfxyOPPJKVJJ2YmMC///u/46abbgIA\nXHzxxUiSBFu3bs1Kkr7yyit46aWXsmMWarFvlpav5557DgBw2mmnLfGV0MHGz3bl4me7cvGzXbn4\n2a5czz33HBqNxqKfP2dQcOKJJ+Laa6/FZz/7WURRhGOPPRYPP/wwHnroIWzZsgWVSgXve9/78Dd/\n8zewLAsbNmzAPffcg76+Pvzmb/4mAF2ZaNOmTfjUpz6Fer2OarWKO+64Axs3bsTVV1+96AsnIiIi\nIqKD44B7Cm699VZ87nOfw+c//3ns378fJ598Mu68805ce+21AICPf/zjsCwL9957L4IgwPnnn49b\nb70VlUolO8eWLVuwZcsW3HbbbUjTFJdccgk++clPzroBmYiIiIiIDp85OxovR8888wzTh1YgLmeu\nXPxsVy5+tisXP9uVi5/tymXShxY7TmZNUCIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6\nHIMCIiIiIqIex6CAiIiIiKjHMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAi\nIiIi6nEMCoiIiIiIehyDAiIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIe\nx6CAiIiIiKjHMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiI\niIiIehyDAiIiIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIex6CAiIiIiKjH\nMSggIiIiIupxDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiIiIiIehyDAiIi\nIiKiHseggIiIiIioxzEoICIiIiLqcQwKiIiIiIh6HIMCIiIiIqIex6CAiIiIiKjHMSggIiIiIupx\nDAqIiIiIiHocgwIiIiIioh7HoICIiIiIqMcxKCAiIiIi6nEMCoiIiIiIehyDAiIiIiKiHseggIiI\niIioxzEoICIiIiLqcc5SXwARERER0UomEwmZSACAZ3vwbG+Jr2gmBgVERERERIeITCTCOMx+Nt8v\nt8CA6UNERERERIeIWSE40GNLjUEBEREREVGPY1BARERERHSIdEsTWm6pQwD3FBARERERHTImAOBG\nYyIiIiKiHrZcA4E8pg8REREREfU4BgVERERERD2OQQERERERUY9jUEBERERE1OMYFBARERER9TgG\nBUREREREPY5BARERERFRj2NQQERERETU4xgUEBERERH1OAYFREREREQ9jkEBEREREVGPY1BARERE\nRNTjGBQQEREREfU4BgVERERERD2OQQERERERUY9jUEBERERE1OMYFBARERER9TgGBUREREREPY5B\nARERERFRj2NQQERERETU45ylvgAiIiIi6l0ykZCJBAB4tgfP9pb4inoTgwIiIiIiWhIykQjjMPvZ\nfL+UgUGvBilMHyIiIiKiJWEG3wd67HAxQYpSCkophHG4pNdzODEoICIiIiLC8gtSDiemDxERERHR\nkvBsry19yDwGLP80nuV+fQvFoICIiIiIlkQ+ADA/e7a3ZHsN5gpS8pbjXog3ikEBERERES2ZbrPs\ns6XxHI6gIP/6s60ALNX1HUoH3FOQpinuu+8+XHfddTjvvPPwa7/2a/jHf/zH7Pe/+MUvsHHjxhn/\nbr311uwYKSU+85nP4LLLLsP555+Pm266Cfv27Ts074iIiIiIeppMJOqyjrqsL3hPgGd7qHgVVLzK\nET3IX6gDrhTcdddd+Lu/+zt85CMfwTnnnIMf//jH+MxnPoNms4kbb7wRzz//PIrFIr785S+3PW/t\n2rXZ95/+9Kexbds2fOITn0CxWMQdd9yBD37wg3jwwQdhWdzrTERERETT5pvG083hSO15I9e3XM0Z\nFCRJgi996Uu48cYb8aEPfQgAcNFFF2F0dBT33nsvbrzxRrzwwgs49dRTcfbZZ3c9x65du/Ctb30L\nt99+O6677joAwMaNG7Fp0yZs3boV11xzzUF+S0RERER0JOuWxgMAdVnPfp5tEH44Unvmm2Z0JJlz\nmj4IArz73e/Gtdde2/b48ccfj9HRUTSbTbzwwgs45ZRTZj3H008/DQC44oorssc2bNiAk046CY89\n9tgbuXYiIiIiWqHyaTwAll3/gJWWZjTnSkFfXx8++clPznj8e9/7Ho4++mgUi0Vs374dvu9j8+bN\neOmll3DMMcfgwx/+MDZv3gwA2LFjB9asWYNCodB2juOOOw47duw4iG+FiIiIiObrSCqpuZDZ/5WY\n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\n", + "text/plain": [ + "" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "n_clusters=3\n", + "clfgmm3 = GMM(n_components=n_clusters, covariance_type=\"tied\")\n", + "clfgmm3.fit(Xall)\n", + "print clfgmm\n", + "gmm_means=clfgmm3.means_\n", + "gmm_covar=clfgmm3.covars_\n", + "print gmm_means, gmm_covar\n", + "plt.figure()\n", + "ax=plt.gca()\n", + "plot_ellipse(ax, gmm_means[0], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[1], gmm_covar, 'k')\n", + "plot_ellipse(ax, gmm_means[2], gmm_covar, 'k')\n", + "gmm_labels=clfgmm3.predict(Xall)\n", + "for k, col in zip(range(n_clusters), ['blue','red', 'green']):\n", + " my_members = gmm_labels == k\n", + " ax.plot(Xall[my_members, 0], Xall[my_members, 1], 'w',\n", + " markerfacecolor=col, marker='.', alpha=0.05)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Which is better? Unless we have some prior knowledge, we dont know, and rely on intuition and goodness of fit estimates standard in statistics. But thinking more about how we might use prior knowledge takes us into semi-supervized learning and such, and also evaluation measures for clustering, which is not what this lab is about. " + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 2", + "language": "python", + "name": "python2" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.10" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/callibration.png b/callibration.png new file mode 100644 index 0000000000000000000000000000000000000000..a1b23ab8e699cb658b9299352a529ac2f6bf82fe GIT binary patch literal 25313 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 literal 0 HcmV?d00001 diff --git a/critics.csv b/critics.csv new file mode 100644 index 0000000..ad08fa7 --- /dev/null +++ b/critics.csv @@ -0,0 +1,27632 @@ +critic,fresh,imdb,publication,quote,review_date,rtid,title +Owen Gleiberman,fresh,0114709,Entertainment Weekly,,2011-09-07,9559,Toy story +Derek Adams,fresh,0114709,Time Out,"So ingenious in concept, design and execution that you could watch it on a postage stamp-sized screen and still be engulfed by its charm.",2009-10-04,9559,Toy story +Richard Corliss,fresh,0114709,TIME Magazine,The year's most inventive comedy.,2008-08-31,9559,Toy story +David Ansen,fresh,0114709,Newsweek,A winning animated feature that has something for everyone on the age spectrum.,2008-08-18,9559,Toy story +Leonard Klady,fresh,0114709,Variety,The film sports a provocative and appealing story that's every bit the equal of this technical achievement.,2008-06-09,9559,Toy story +Jonathan Rosenbaum,fresh,0114709,Chicago Reader,"An entertaining computer-generated, hyperrealist animation feature (1995) that's also in effect a toy catalog.",2008-03-10,9559,Toy story +Michael Booth,fresh,0114709,Denver Post,"As Lion King did before it, Toy Story revived the art of American children's animation, and ushered in a set of smart movies that entertained children and their parents. It's a landmark movie, and doesn't get old with frequent repetition.",2007-05-03,9559,Toy story +Geoff Andrew,fresh,0114709,Time Out,"The film will probably be more fully appreciated by adults, who'll love the snappy, knowing verbal gags, the vivid, deftly defined characters, and the overall conceptual sophistication.",2006-06-24,9559,Toy story +Janet Maslin,fresh,0114709,New York Times,Children will enjoy a new take on the irresistible idea of toys coming to life. Adults will marvel at a witty script and utterly brilliant anthropomorphism.,2003-05-20,9559,Toy story +Kenneth Turan,fresh,0114709,Los Angeles Times,"Although its computer-generated imagery is impressive, the major surprise of this bright foray into a new kind of animation is how much cleverness has been invested in story and dialogue.",2001-02-13,9559,Toy story +Susan Wloszczyna,fresh,0114709,USA Today,"How perfect that two of the most popular funny guys around, Tom Hanks and Tim Allen, speak for the lead boy-toys.",2000-01-01,9559,Toy story +Roger Ebert,fresh,0114709,Chicago Sun-Times,The result is a visionary roller-coaster ride of a movie.,2000-01-01,9559,Toy story +John Hartl,fresh,0114709,Film.com,"Disney's witty, wondrously imaginative, all-computer-generated cartoon is far and away the best of the new holiday movies in town.",2000-01-01,9559,Toy story +Susan Stark,fresh,0114709,Detroit News,Disney's first computer-made animated feature is a 3-D eye popper.,2000-01-01,9559,Toy story +Peter Stack,fresh,0114709,San Francisco Chronicle,"The script, by Lasseter, Pete Docter, Andrew Stanton and Joe Ranft, is filled with clever gags that keep the two heroes at each other's throats and the plot on fast- forward.",2000-01-01,9559,Toy story +James Berardinelli,fresh,0114709,ReelViews,The one big negative about Toy Story involves Disney's overcommercialization.,2000-01-01,9559,Toy story +Sean Means,fresh,0114709,Film.com,"Technically, Toy Story is nearly flawless.",2000-01-01,9559,Toy story +Rita Kempley,fresh,0114709,Washington Post,It's a nice change of pace to see the studio draw magic from this modern tale about ordinary 20th-century kid Andy and his eager-to-please playthings.,2000-01-01,9559,Toy story +,fresh,0114709,Entertainment Weekly,"I can hardly imagine having more fun at the movies than I did at Toy Story, the miraculous new Disney feature that's the first full-length animated film to be produced entirely on computer.",1995-11-22,9559,Toy story +Roger Moore,fresh,0114709,Orlando Sentinel,"The great voice acting, the visual puns, all added up to an animation game changer.",1995-11-22,9559,Toy story +Owen Gleiberman,rotten,0113497,Entertainment Weekly,,2011-09-07,12436,Jumanji +Leonard Klady,none,0113497,Variety,,2009-01-02,12436,Jumanji +Geoff Andrew,none,0113497,Time Out,,2006-06-24,12436,Jumanji +Janet Maslin,none,0113497,New York Times,,2003-05-20,12436,Jumanji +Peter Stack,none,0113497,San Francisco Chronicle,,2002-06-18,12436,Jumanji +,none,0113497,Globe and Mail,,2002-04-12,12436,Jumanji +Jack Mathews,none,0113497,Los Angeles Times,,2001-02-13,12436,Jumanji +,none,0113497,Washington Post,,2000-01-01,12436,Jumanji +James Berardinelli,rotten,0113497,ReelViews,,2000-01-01,12436,Jumanji +Joe Baltake,none,0113497,Sacramento Bee,,2000-01-01,12436,Jumanji +Roger Ebert,rotten,0113497,Chicago Sun-Times,"A gloomy special-effects extravaganza filled with grotesque images, generating fear and despair.",2000-01-01,12436,Jumanji +Susan Stark,fresh,0113497,Detroit News,,2000-01-01,12436,Jumanji +,fresh,0113497,USA Today,A calculated but very entertaining special effects extravaganza.,2000-01-01,12436,Jumanji +,rotten,0113497,Entertainment Weekly,,1995-12-15,12436,Jumanji +Brian Lowry,none,0107050,Variety,,2010-10-06,10498,Grumpy Old Men +,none,0107050,Variety,,2009-03-26,10498,Grumpy Old Men +Richard Schickel,fresh,0107050,TIME Magazine,Walter Matthau and Jack Lemmon are awfully good at this sort of thing.,2008-08-24,10498,Grumpy Old Men +Derek Adams,rotten,0107050,Time Out,"Mediocre, regrettably.",2006-06-24,10498,Grumpy Old Men +Caryn James,fresh,0107050,New York Times,"Just don't expect their bickering to be on the level of Neil Simon, and you won't be disappointed.",2003-05-20,10498,Grumpy Old Men +James Berardinelli,fresh,0107050,ReelViews,"While it won't come close to my top 10 best list for 1993, it will be right up there among the pictures that I had the most fun watching.",2000-01-01,10498,Grumpy Old Men +Roger Ebert,rotten,0107050,Chicago Sun-Times,"The movie is too pat and practiced to really be convincing, and the progress of Ariel's relationships with the two grumps seems dictated mostly by the needs of the screenplay.",2000-01-01,10498,Grumpy Old Men +Desson Thomson,fresh,0107050,Washington Post,"If you poke through Grumpy's cheap sentimentality, you'll find a worthy picture somewhere.",2000-01-01,10498,Grumpy Old Men +,fresh,0107050,Entertainment Weekly,,1993-12-24,10498,Grumpy Old Men +Godfrey Cheshire,none,0114885,Variety,,2009-03-26,16697,Waiting to Exhale +David Ansen,none,0114885,Newsweek,,2008-03-31,16697,Waiting to Exhale +,none,0114885,Time Out,,2006-01-26,16697,Waiting to Exhale +Stephen Holden,none,0114885,New York Times,,2003-05-20,16697,Waiting to Exhale +Liam Lacey,rotten,0114885,Globe and Mail,Never escapes the queasy aura of Melrose Place: just another story about beautiful people with small problems.,2002-04-12,16697,Waiting to Exhale +Kenneth Turan,fresh,0114885,Los Angeles Times,A pleasant if undemanding piece of work that is diverting to sit through though it won't stand up to any kind of rigorous examination.,2001-02-13,16697,Waiting to Exhale +Edward Guthmann,rotten,0114885,San Francisco Chronicle,"You want the movie to stomp and rejoice and cry like a fool; instead it meanders and lollygags, occasionally flaring up, then sputtering again.",2000-01-01,16697,Waiting to Exhale +Desson Thomson,fresh,0114885,Washington Post,This sister-celebratory adaptation of Terry McMillan's best-selling book is frequently delightful.,2000-01-01,16697,Waiting to Exhale +Joan Walsh,rotten,0114885,Salon.com,"The male-bashing taken to an extreme in Waiting to Exhale is starting to seem a little like crack for the female psyche, exhilarating in the short term but ultimately crippling and dangerous.",2000-01-01,16697,Waiting to Exhale +Susan Wloszczyna,fresh,0114885,USA Today,"Whitaker clumsily mishandles what should be a 'you go, girl!' tour de force.",2000-01-01,16697,Waiting to Exhale +Joe Baltake,rotten,0114885,Sacramento Bee,"With one possible exception, none of its women is at all likable.",2000-01-01,16697,Waiting to Exhale +Susan Stark,rotten,0114885,Detroit News,"For all the pleasure there is in seeing effective, great-looking black women grappling with major life issues on screen, Waiting to Exhale is an uneven piece.",2000-01-01,16697,Waiting to Exhale +James Berardinelli,rotten,0114885,ReelViews,"With the exception of Bernadine, I never felt anything for the women populating this film, as they failed to capture my interest or sympathy.",2000-01-01,16697,Waiting to Exhale +Roger Ebert,fresh,0114885,Chicago Sun-Times,"An escapist fantasy that women in the audience can enjoy by musing, 'I wish I had her problems' - and her car, house, wardrobe, figure and men, even wrong men.",2000-01-01,16697,Waiting to Exhale +,fresh,0114885,Entertainment Weekly,,1995-12-22,16697,Waiting to Exhale +Brian Lowry,none,0113041,Variety,,2009-03-26,10379,Father of the Bride Part II +,none,0113041,Time Out,,2006-01-26,10379,Father of the Bride Part II +Janet Maslin,none,0113041,New York Times,,2003-05-20,10379,Father of the Bride Part II +Peter Stack,none,0113041,San Francisco Chronicle,,2002-06-18,10379,Father of the Bride Part II +,none,0113041,Globe and Mail,,2002-04-12,10379,Father of the Bride Part II +Kevin Thomas,none,0113041,Los Angeles Times,,2001-02-13,10379,Father of the Bride Part II +Mike Clark,rotten,0113041,USA Today,"Martin, Keaton and cinematographer William A. Fraker put this retro fluff over better than expected early on, but hour 2 is only for those who don't want their equilibriums rattled by surprises.",2000-01-01,10379,Father of the Bride Part II +Roger Ebert,rotten,0113041,Chicago Sun-Times,,2000-01-01,10379,Father of the Bride Part II +Susan Stark,rotten,0113041,Detroit News,,2000-01-01,10379,Father of the Bride Part II +Joe Baltake,none,0113041,Sacramento Bee,,2000-01-01,10379,Father of the Bride Part II +Hal Hinson,none,0113041,Washington Post,,2000-01-01,10379,Father of the Bride Part II +James Berardinelli,rotten,0113041,ReelViews,,2000-01-01,10379,Father of the Bride Part II +Desson Thomson,none,0113041,Washington Post,,2000-01-01,10379,Father of the Bride Part II +,fresh,0113041,Entertainment Weekly,,1995-12-08,10379,Father of the Bride Part II +Todd McCarthy,fresh,0113277,Variety,Heat occupies an exalted position among the countless contemporary crime films.,2008-10-16,13098,Heat +Peter Travers,fresh,0113277,Rolling Stone,Robert De Niro's last great role before he devoted himself to self-parody.,2007-08-14,13098,Heat +Geoff Andrew,fresh,0113277,Time Out,"This is simply the best American crime movie -- and indeed, one of the finest movies, period -- in over a decade.",2006-02-09,13098,Heat +Janet Maslin,rotten,0113277,New York Times,"As Heat progresses, its sensational looks pale beside storytelling weaknesses that expose the more soulless aspects of this cat-and-mouse crime tale.",2003-05-20,13098,Heat +Kenneth Turan,fresh,0113277,Los Angeles Times,"Michael Mann and a superlative cast have taken a classic heist movie rife with familiar genre elements and turned it into a sleek, accomplished piece of work, meticulously controlled and completely involving.",2001-02-13,13098,Heat +Mike Clark,fresh,0113277,USA Today,"For a film that deserves Oscars for photography, editing, sound and arguably scoring, Heat is packed with unforgettable subcharacters.",2000-01-01,13098,Heat +Richard Schickel,fresh,0113277,TIME Magazine,"All this adds good weight and tension to the movie and provides a lot of very good actors with the opportunity to do honest, probing work in a context where, typically, less will do.",2000-01-01,13098,Heat +Andrew Ross,rotten,0113277,Salon.com,"All the squealing tires, flying bullets and falling bodies cannot save Heat from drowning in its own banalities ...",2000-01-01,13098,Heat +Roger Ebert,fresh,0113277,Chicago Sun-Times,Michael Mann's writing and direction elevate this material. It's not just an action picture.,2000-01-01,13098,Heat +James Berardinelli,rotten,0113277,ReelViews,... a colossal disappointment.,2000-01-01,13098,Heat +Hal Hinson,fresh,0113277,Washington Post,"If there's one thing Michael Mann knows how to do, it's create tension.",2000-01-01,13098,Heat +Sean Means,fresh,0113277,Film.com,Heat generates lots of energy but gives off little light.,2000-01-01,13098,Heat +Desson Thomson,fresh,0113277,Washington Post,"As with his other works, [Mann] binds sound, music and pictures into one hypnotic triaxial cable and plugs it right into your brain. He makes this almost-three-hour experience practically glide by.",2000-01-01,13098,Heat +Susan Stark,fresh,0113277,Detroit News,Boosters and touts use the term 'major movie' so often that it's more likely to generate yawns than excitement at this point. Back to basics. Heat is a major movie. With major stars. Doing major acting.,2000-01-01,13098,Heat +Edward Guthmann,fresh,0113277,San Francisco Chronicle,"This is the first time De Niro and Pacino have acted together, and each gives a strong, watertight performance.",2000-01-01,13098,Heat +Andy Spletzer,fresh,0113277,Film.com,The cop/ crime stuff that makes up the bulk of the movie is well thought out and well directed.,2000-01-01,13098,Heat +Joe Baltake,fresh,0113277,Sacramento Bee,"Heat has an impressively strong script by Mann, and he backs it up with gorgeous filmmaking.",2000-01-01,13098,Heat +Owen Gleiberman,fresh,0113277,Entertainment Weekly,Heat is an ''epic'' that feels like a stunt.,1995-12-15,13098,Heat +,fresh,0047437,TIME Magazine,"This is never less than glittering entertainment, but somehow a certain measure of lead has found its way into the formula.",2009-02-03,18228,Sabrina +Variety Staff,fresh,0047437,Variety,"Script is long on glibly quipping dialog, dropped with a seemingly casual air, and broadly played situations. The splendid trouping delivers them style. Leavening the chuckles are tugs at the heart.",2008-10-18,18228,Sabrina +Dave Kehr,fresh,0047437,Chicago Reader,Wilder's tastelessness now seems his major artistic strength.,2007-08-15,18228,Sabrina +Derek Adams,fresh,0047437,Time Out,"It's a Cinderella story that gets turned on its head, a satire about breaking down class and emotional barriers, and a confrontation between New World callousness and Old World humanity.",2006-06-24,18228,Sabrina +James Berardinelli,fresh,0047437,ReelViews,"Hampered by an unimaginative script ... nevertheless manages to be a thoroughly charming, delightfully romantic variation of the Cinderella story.",2000-01-01,18228,Sabrina +Bosley Crowther,fresh,0047437,New York Times,"It is a story as light as a feather and as old as yesterday's news, as transparent as a society column item and as smug as a foreign-made car. But Mr. Wilder...has made it into a commentary as crisp as a screed in a smart magazine.",2000-01-01,18228,Sabrina +Joe Leydon,none,0112302,Variety,,2009-03-26,11639,Tom and Huck +Hal Hinson,none,0112302,Washington Post,,2000-01-01,11639,Tom and Huck +Stephen Holden,none,0112302,New York Times,,2000-01-01,11639,Tom and Huck +Susan Wloszczyna,rotten,0112302,USA Today,A joyless lump.,2000-01-01,11639,Tom and Huck +Peter Stack,none,0112302,San Francisco Chronicle,,2000-01-01,11639,Tom and Huck +Susan Stark,fresh,0112302,Detroit News,,2000-01-01,11639,Tom and Huck +Kevin McManus,none,0112302,Washington Post,,2000-01-01,11639,Tom and Huck +,rotten,0114576,Entertainment Weekly,,2010-12-27,15378,Sudden Death +Derek Elley,none,0114576,Variety,,2009-03-26,15378,Sudden Death +Geoff Andrew,fresh,0114576,Time Out,"Reuniting Hyams and Van Damme, director and star of Timecop, this spectacular nail-biter exploits their combined, if limited, abilities to the full.",2006-02-09,15378,Sudden Death +Stephen Holden,fresh,0114576,New York Times,"Offers above-average pyrotechnics, a body count that steadily mounts, and plenty of hand-to-hand combat.",2003-05-20,15378,Sudden Death +Mick LaSalle,fresh,0114576,San Francisco Chronicle,Sudden Death is one of the best action thrillers of 1995. It's also the film Jean-Claude Van Damme has been building up to for 10 years.,2002-06-18,15378,Sudden Death +Peter Travers,rotten,0114576,Rolling Stone,"Despite the elaborate stunts, go-go-go direction from Peter Hyams, plus butt-kicking and surprise goalie action from Van Damme, Death deserves the hockey-puck booby prize for...getting its jollies by putting kids in jeopardy.",2001-05-12,15378,Sudden Death +Kevin Thomas,fresh,0114576,Los Angeles Times,"A treat for Jean-Claude Van Damme fans, a superior action thriller loaded with jaw-dropping stunts and special effects, and strong in production values.",2001-02-13,15378,Sudden Death +Roger Ebert,fresh,0114576,Chicago Sun-Times,"Sudden Death isn't about common sense. It's about the manipulation of action and special-effects sequences to create a thriller effect, and at that it's pretty good.",2000-01-01,15378,Sudden Death +Richard Harrington,fresh,0114576,Washington Post,"Though the climactic duel atop the arena roof is patently absurd, it's also exciting as events go into sudden-death overtime, just like the game being played below.",2000-01-01,15378,Sudden Death +Desson Thomson,rotten,0114576,Washington Post,"Van Damme races against time, trying to thwart Boothe and defuse all the bombs. But in the hands of director Peter Hyams, these are just banal action-movie chores.",2000-01-01,15378,Sudden Death +Susan Stark,rotten,0114576,Detroit News,,2000-01-01,15378,Sudden Death +James Berardinelli,rotten,0114576,ReelViews,"About the best thing that can be said about this movie is that the action scenes, directed by Peter Hyams, are choreographed with flair. Unfortunately, the material connecting them is worthless.",2000-01-01,15378,Sudden Death +Anthony Lane,fresh,0113189,New Yorker,"Brosnan, however, looks set to stay. He'll never recapture the amused cool of the young Sean Connery, but he does overcome the handicap of looking like a humorless male model.",2012-10-23,12812,GoldenEye +Owen Gleiberman,rotten,0113189,Entertainment Weekly,"I don't know whether the Bond series has a future, but if Xenia Onatopp ever returns to try for world domination, he may finally get a battle worth fighting.",2008-10-13,12812,GoldenEye +Jonathan Rosenbaum,fresh,0113189,Chicago Reader,"There's something a mite pathetic about our culture still clinging to 007, but it's hard to deny that this is one of the most entertaining entries in the Bond cycle.",2008-10-13,12812,GoldenEye +Richard Schickel,rotten,0113189,TIME Magazine,"Richard Kiel, you are missed.",2008-10-13,12812,GoldenEye +Todd McCarthy,fresh,0113189,Variety,"Among the better of the 17 Bonds and, perhaps more important for today's audience, a dynamic action entry in its own right, this first 007 adventure in six years breathes fresh creative and commercial life into the 33-year-old series.",2008-10-02,12812,GoldenEye +,fresh,0113189,Time Out,Director Campbell keeps matters bowling along and even manages to recapture something of the look of the earlier films.,2006-02-09,12812,GoldenEye +Janet Maslin,rotten,0113189,New York Times,Suffers the blahs.,2003-05-20,12812,GoldenEye +Peter Stack,fresh,0113189,San Francisco Chronicle,"Supercharged with spectacular, thundering, brain-numbing fun.",2002-06-18,12812,GoldenEye +Rick Groen,rotten,0113189,Globe and Mail,"They have given James a new car here, but it's the same old vanity plate, the one that should read: Je Me Souviens.",2002-04-12,12812,GoldenEye +Kenneth Turan,rotten,0113189,Los Angeles Times,"A reasonable facsimile more than any kind of original, and it's hard not to feel a certain weariness while watching it unfold.",2001-02-13,12812,GoldenEye +Susan Wloszczyna,fresh,0113189,USA Today,It's BS -- Babes and Stunts -- and that's where GoldenEye excels.,2000-01-01,12812,GoldenEye +Hal Hinson,fresh,0113189,Washington Post,Directed with top-dollar proficiency (and some real wit).,2000-01-01,12812,GoldenEye +James Berardinelli,fresh,0113189,ReelViews,Perhaps the best entry in the series since The Spy Who Loved Me.,2000-01-01,12812,GoldenEye +Roger Ebert,fresh,0113189,Chicago Sun-Times,"Watching the film, I got caught up in the special effects and the neat stunts, and I observed with a certain satisfaction Bond's belated entry into a more modern world.",2000-01-01,12812,GoldenEye +Susan Stark,fresh,0113189,Detroit News,,2000-01-01,12812,GoldenEye +Geoff Andrew,fresh,0112346,Time Out,"Part romantic comedy, part Capra-corny political drama, this movie exudes so much sympathy, it sweats.",2006-06-24,10129,The American President +Janet Maslin,fresh,0112346,New York Times,"With great looks, a dandy supporting cast, a zinger-filled screenplay by Aaron Sorkin and Mr. Douglas twinkling merrily in the Oval Office, The American President is sunny enough to make the real Presidency pale by comparison.",2003-05-20,10129,The American President +Kenneth Turan,fresh,0112346,Los Angeles Times,Genial and entertaining if not notably inspired.,2001-02-13,10129,The American President +,fresh,0112346,Variety,Genial middlebrow fare that coasts a long way on the charm of its two stars.,2001-02-13,10129,The American President +Richard Corliss,fresh,0112346,TIME Magazine,As bustling and impassioned as the best Sturges and Capra movies.,2000-01-01,10129,The American President +James Berardinelli,rotten,0112346,ReelViews,"Neither bad nor unwatchable, The American President is nevertheless the second straight disappointment from director Rob Reiner.",2000-01-01,10129,The American President +Tom Keogh,fresh,0112346,Film.com,"You can't dislike this movie, but you won't be swept away by it either.",2000-01-01,10129,The American President +Sean Means,fresh,0112346,Film.com,The American President will make you laugh and make you smile. But it probably won't make you change your vote.,2000-01-01,10129,The American President +Joe Baltake,fresh,0112346,Sacramento Bee,"A shrewd new depiction of 'office sex,' as well as an utterly positive view of the idea that a president's character is important.",2000-01-01,10129,The American President +Susan Stark,fresh,0112346,Detroit News,"Apart from its too-obvious political bias, The American President has romance in its heart, smarts in abundance and class to spare.",2000-01-01,10129,The American President +Roger Ebert,fresh,0112346,Chicago Sun-Times,Great entertainment.,2000-01-01,10129,The American President +Desson Thomson,fresh,0112346,Washington Post,A well-modulated charmer.,2000-01-01,10129,The American President +Paula Nechak,fresh,0112346,Film.com,The American President becomes a pretty darn entertaining and affecting movie after its first simpering 20 minutes.,2000-01-01,10129,The American President +Rita Kempley,fresh,0112346,Washington Post,Frothy.,2000-01-01,10129,The American President +Edward Guthmann,fresh,0112346,San Francisco Chronicle,"'Capraesque' has inevitably been affixed to The American President, but that phrase, with its implications of facile hokum, doesn't do the film justice.",2000-01-01,10129,The American President +John Hartl,fresh,0112346,Film.com,Painless fun.,2000-01-01,10129,The American President +Mike Clark,fresh,0112346,USA Today,A super cast injects it with Teddy Roosevelt vitality.,2000-01-01,10129,The American President +Susan Rathke,rotten,0112346,Film.com,"When it comes right down to it, high office does not guarantee high comedy.",2000-01-01,10129,The American President +Owen Gleiberman,fresh,0112346,Entertainment Weekly,"The image of a chief executive as moonstruck single guy taps something buoyant and touching in our collective democratic imagination. And Douglas, wearing a fast-break smile in place of his usual frown, strikes a tender rapport with Bening...",1995-11-17,10129,The American President +Derek Elley,none,0112896,Variety,,2012-02-23,10445,Dracula: Dead and Loving It +Jonathan Rosenbaum,rotten,0112896,Chicago Reader,Either this is the lamest Mel Brooks comedy ever or it's too close to other contenders to make much difference.,2009-10-20,10445,Dracula: Dead and Loving It +Joe Leydon,rotten,0112896,Variety,"The only real sparks are set off by MacNicol as Renfield, the solicitor who develops a taste for flies and spiders after being bitten by Dracula.",2009-03-26,10445,Dracula: Dead and Loving It +,rotten,0112896,Time Out,"Brooks, as Van Helsing, is one of the more successful aspects, but he hasn't imbued in his stock company a similar ability to rise above their underwritten roles.",2006-01-26,10445,Dracula: Dead and Loving It +Janet Maslin,fresh,0112896,New York Times,Slight but amusing.,2003-05-20,10445,Dracula: Dead and Loving It +David Kronke,rotten,0112896,Los Angeles Times,"Not to venture forth some sort of radical idea, but aren't comedies supposed to have jokes?",2002-08-15,10445,Dracula: Dead and Loving It +James Berardinelli,rotten,0112896,ReelViews,It's a toothless parody that misses more often than it hits.,2000-01-01,10445,Dracula: Dead and Loving It +Susan Stark,rotten,0112896,Detroit News,,2000-01-01,10445,Dracula: Dead and Loving It +Hal Hinson,rotten,0112896,Washington Post,"This time, unfortunately, he's sucking on a dry vein.",2000-01-01,10445,Dracula: Dead and Loving It +Susan Wloszczyna,rotten,0112896,USA Today,"If any movie proves that Mel Brooks' genius for skewering creaky genres has evaporated, it's this anemic attempt to draw new blood from low-flying vampire high jinks.",2000-01-01,10445,Dracula: Dead and Loving It +Desson Thomson,rotten,0112896,Washington Post,"Dracula is anemic and mediocre, with only one or two moments to remind you of the former, funnier Brooks.",2000-01-01,10445,Dracula: Dead and Loving It +Mick LaSalle,fresh,0112896,San Francisco Chronicle,"Nielsen makes a dapper and calmly inept Dracula, but it's Brooks' irrepressible and oblivious Van Helsing who's the main attraction.",2000-01-01,10445,Dracula: Dead and Loving It +Brian Lowry,none,0112453,Variety,,2009-03-26,9562,Balto +,none,0112453,Time Out,,2006-01-26,9562,Balto +Stephen Holden,none,0112453,New York Times,,2003-05-20,9562,Balto +David Kronke,none,0112453,Los Angeles Times,,2002-08-15,9562,Balto +Joe Baltake,none,0112453,Sacramento Bee,,2000-01-01,9562,Balto +Peter Stack,none,0112453,San Francisco Chronicle,,2000-01-01,9562,Balto +Susan Wloszczyna,rotten,0112453,USA Today,"The love story is pure mush, not helped by the bland voice work done by Kevin Bacon as Balto and Bridget Fonda as dainty husky Jenna.",2000-01-01,9562,Balto +Kevin McManus,none,0112453,Washington Post,,2000-01-01,9562,Balto +Roger Ebert,fresh,0112453,Chicago Sun-Times,,2000-01-01,9562,Balto +James Berardinelli,rotten,0112453,ReelViews,,2000-01-01,9562,Balto +Susan Stark,rotten,0112453,Detroit News,,2000-01-01,9562,Balto +Rita Kempley,none,0112453,Washington Post,,2000-01-01,9562,Balto +Owen Gleiberman,fresh,0113987,Entertainment Weekly,,2011-09-07,16248,Nixon +Geoff Andrew,rotten,0113987,Time Out,"As wayward and self-regarding as its subject, the film long overstays its welcome.",2006-01-26,16248,Nixon +Janet Maslin,fresh,0113987,New York Times,"What it finally adds up to is a huge mixed bag of waxworks and daring, a film that is furiously ambitious even when it goes flat, and startling even when it settles for eerie, movie-of-the-week mimicry.",2003-05-20,16248,Nixon +,none,0113987,Globe and Mail,,2002-04-12,16248,Nixon +Peter Travers,none,0113987,Rolling Stone,,2001-05-12,16248,Nixon +Hal Hinson,fresh,0113987,Washington Post,"Without question, Nixon dwarfs everything in the American cinema since Schindler's List.",2001-02-16,16248,Nixon +Kenneth Turan,fresh,0113987,Los Angeles Times,"Nixon starts, like a horror movie, on a dark and stormy night, with the president prowling around a room of the White House like Dracula in his lair.",2001-02-13,16248,Nixon +Todd McCarthy,rotten,0113987,Variety,Nixon far overstays its welcome with an increasingly tedious final hour devoted largely to slogging through the minutiae of Watergate.,2001-02-13,16248,Nixon +James Berardinelli,fresh,0113987,ReelViews,"Factual or not, there's no denying that Nixon has moments when it is nothing short of compelling.",2000-01-01,16248,Nixon +John Hartl,rotten,0113987,Film.com,There's no compelling structure or viewpoint to hold the picture together.,2000-01-01,16248,Nixon +Mick LaSalle,rotten,0113987,San Francisco Chronicle,The problem here isn't accuracy. It's absurdity.,2000-01-01,16248,Nixon +Roger Ebert,fresh,0113987,Chicago Sun-Times,"Thoughts of Hamlet, Macbeth and King Lear come to mind; here, again, is a ruler destroyed by his fatal flaws. There's something almost majestic about the process: As Nixon goes down in this film, there is no gloating, but a watery sigh, as of a great ship",2000-01-01,16248,Nixon +Susan Stark,fresh,0113987,Detroit News,"Thoughtful, well-researched and carefully modulated, the film also marks director Oliver Stone's coming of age.",2000-01-01,16248,Nixon +Joe Baltake,fresh,0113987,Sacramento Bee,"Rich, dense and complex.",2000-01-01,16248,Nixon +Stanley Kauffmann,fresh,0113987,The New Republic,The picture is a case study.,2000-01-01,16248,Nixon +Sean Means,fresh,0113987,Film.com,Casting Anthony Hopkins was a stroke of unexpected genius.,2000-01-01,16248,Nixon +Emily White,rotten,0113987,Film.com,"Stone's no Shakespeare, and neither are his screenwriters.",2000-01-01,16248,Nixon +Mike Clark,fresh,0113987,USA Today,Joan Allen goes beyond her chilling physical resemblance to Pat Nixon toward serious Oscar worthiness.,2000-01-01,16248,Nixon +Lyall Bush,rotten,0113987,Film.com,I never felt that I was seeing the darkness reaching out to the darkness as Nixon was once described.,2000-01-01,16248,Nixon +Richard Corliss,rotten,0113987,TIME Magazine,"Real life, if it's real Nixon, is more dramatic than an Oliver Stone movie.",2000-01-01,16248,Nixon +Todd McCarthy,none,0112760,Variety,,2009-03-26,10672,Cutthroat Island +,none,0112760,Time Out,,2006-02-09,10672,Cutthroat Island +Janet Maslin,none,0112760,New York Times,,2003-05-20,10672,Cutthroat Island +Kenneth Turan,none,0112760,Los Angeles Times,,2002-08-15,10672,Cutthroat Island +Peter Stack,rotten,0112760,San Francisco Chronicle,,2002-06-18,10672,Cutthroat Island +,none,0112760,Globe and Mail,,2002-04-12,10672,Cutthroat Island +Joe Baltake,none,0112760,Sacramento Bee,,2000-01-01,10672,Cutthroat Island +Roger Ebert,fresh,0112760,Chicago Sun-Times,,2000-01-01,10672,Cutthroat Island +Susan Stark,fresh,0112760,Detroit News,,2000-01-01,10672,Cutthroat Island +Susan Wloszczyna,fresh,0112760,USA Today,"If the sight of half-naked, tattooed sailors firing cannons at each other shivers your timbers, climb aboard. Even passable pirate movies don't sail by every day.",2000-01-01,10672,Cutthroat Island +Desson Thomson,none,0112760,Washington Post,,2000-01-01,10672,Cutthroat Island +James Berardinelli,rotten,0112760,ReelViews,,2000-01-01,10672,Cutthroat Island +,rotten,0112760,Entertainment Weekly,,1995-12-22,10672,Cutthroat Island +Owen Gleiberman,fresh,0112641,Entertainment Weekly,"[Stone] seems to be trying to enter a more passionate movie, where a neurotic gold digger could at least have a good time. By the end of Casino, for all its craftsmanly bravura, you may want to join her.",2010-01-25,13456,Casino +Richard Schickel,fresh,0112641,TIME Magazine,"So long as Casino stays focused on the excesses -- of language, of violence, of ambition -- in the life-styles of the rich and infamous, it remains a smart, knowing, if often repetitive, spectacle.",2010-01-25,13456,Casino +Jonathan Rosenbaum,rotten,0112641,Chicago Reader,Simultaneously quite watchable and passionless.,2010-01-25,13456,Casino +Todd McCarthy,fresh,0112641,Variety,"Martin Scorsese's intimate epic about money, sex and brute force is a grandly conceived study of what happens to goodfellas from the mean streets when they outstrip their wildest dreams and achieve the pinnacle of wealth and power.",2008-05-16,13456,Casino +David Ansen,rotten,0112641,Newsweek,"It's not the actors' fault that no one is able to break through the film's gorgeous but chilly surface. You watch Casino with respect and appreciation, reveling in its documentary sense of detail.",2008-03-31,13456,Casino +Hal Hinson,rotten,0112641,Washington Post,"Scorsese may be flailing here, but Scorsese flailing is more formidable than most directors at the top of their form.",2006-08-09,13456,Casino +Geoff Andrew,rotten,0112641,Time Out,"The result, sadly, is that contradiction in terms, a dull Scorsese movie.",2006-02-09,13456,Casino +Janet Maslin,fresh,0112641,New York Times,"Of all the bravura visual effects in Martin Scorsese's dazzlingly stylish Casino, it's a glimpse of ordinary people that delivers the greatest jolt.",2003-05-20,13456,Casino +Mick LaSalle,rotten,0112641,San Francisco Chronicle,"It's an ambitious film, but also a scattered, unfocused one.",2002-06-18,13456,Casino +Rick Groen,fresh,0112641,Globe and Mail,"Visually impressive, splendidly performed, thematically significant, this is a movie in full possession of every key cinematic asset except one -- a solid script.",2002-04-12,13456,Casino +Peter Travers,fresh,0112641,Rolling Stone,[A] Vegas masterpiece.,2001-05-12,13456,Casino +Kenneth Turan,fresh,0112641,Los Angeles Times,"Martin Scorsese is a master filmmaker, so skilled in the manipulation of imagery he might be the most proficient of active American directors.",2001-02-13,13456,Casino +Desson Thomson,rotten,0112641,Washington Post,"After coming out gangbusters in its first and finest hour, the 180-minute movie loses all its chips in the remaining two.",2000-01-01,13456,Casino +Susan Stark,fresh,0112641,Detroit News,,2000-01-01,13456,Casino +Roger Ebert,fresh,0112641,Chicago Sun-Times,Martin Scorsese's fascinating new film Casino knows a lot about the Mafia's relationship with Las Vegas.,2000-01-01,13456,Casino +James Berardinelli,fresh,0112641,ReelViews,"In every way -- from the fantastic sets, rich dialogue, and unapologetic violence to the well-portrayed characters and themes of loyalty and betrayal -- Casino is pure Scorsese.",2000-01-01,13456,Casino +Mike Clark,fresh,0112641,USA Today,"Whether you find it exhilarating, expendable or exhausting -- and you will find it exhausting -- Martin Scorsese's Casino is the spectacular last word on urban sprawl.",2000-01-01,13456,Casino +Owen Gleiberman,fresh,0114388,Entertainment Weekly,,2011-09-07,10042,Sense and Sensibility +,fresh,0114388,Entertainment Weekly,,2010-12-27,10042,Sense and Sensibility +Todd McCarthy,fresh,0114388,Variety,Thompson's script manages the neat trick of preserving the necessary niceties and decorum of civilized behavior of the time while still cutting to the dramatic quick.,2009-01-30,10042,Sense and Sensibility +Jonathan Rosenbaum,fresh,0114388,Chicago Reader,I can't say I remembered this 1995 feature too clearly a couple of days later; but I certainly had a good time as I watched it.,2007-02-09,10042,Sense and Sensibility +Geoff Andrew,fresh,0114388,Time Out,Thompson and Winslet give fine performances ably supported by the rest of the ensemble.,2006-06-24,10042,Sense and Sensibility +Janet Maslin,fresh,0114388,New York Times,We need no further proof that this material is ageless.,2003-05-21,10042,Sense and Sensibility +Kenneth Turan,fresh,0114388,Los Angeles Times,"The sensibility may be a bit off, but there is more than enough sense involved in this mid-Atlantic Austen to make up the difference.",2001-02-13,10042,Sense and Sensibility +Louis B. Parks,fresh,0114388,Houston Chronicle,The film is packed with pleasing performances by stage-trained actors.,2000-01-01,10042,Sense and Sensibility +James Berardinelli,fresh,0114388,ReelViews,Told with deft skill and a pleasantly humorous romantic touch.,2000-01-01,10042,Sense and Sensibility +Susan Stark,fresh,0114388,Detroit News,It's bliss.,2000-01-01,10042,Sense and Sensibility +John Hartl,fresh,0114388,Film.com,"A triumph for Taiwan's most famous director, Ang Lee.",2000-01-01,10042,Sense and Sensibility +Sean Means,fresh,0114388,Film.com,Thompson's script hits its peak by keeping Austen's voice yet finding the satirical smirk behind it.,2000-01-01,10042,Sense and Sensibility +Bruce Reid,fresh,0114388,Film.com,"Sense and Sensibility is funny, expansive, and a delight to spend company with.",2000-01-01,10042,Sense and Sensibility +Mike Clark,fresh,0114388,USA Today,"The movie is good fun, boasting a dozen vivid characters and two that moviegoers will take to heart.",2000-01-01,10042,Sense and Sensibility +Roger Ebert,rotten,0114388,Chicago Sun-Times,"Sense and Sensibility is an enjoyable film, and yet it left me somehow unsatisfied.",2000-01-01,10042,Sense and Sensibility +Rita Kempley,none,0114388,Washington Post,Demonstrates how little humankind has evolved in matters of the heart.,2000-01-01,10042,Sense and Sensibility +Joe Baltake,fresh,0114388,Sacramento Bee,Exquisitely detailed and impeccably acted.,2000-01-01,10042,Sense and Sensibility +Mick LaSalle,fresh,0114388,San Francisco Chronicle,"An exuberant, well- crafted film that gets the audience involved on a gut level.",2000-01-01,10042,Sense and Sensibility +Owen Gleiberman,rotten,0113101,Entertainment Weekly,,2011-09-07,13075,Four Rooms +Jonathan Rosenbaum,rotten,0113101,Chicago Reader,"The results are mainly awful, and even Roth got saddled with a mannered part that he can't comfortably play.",2007-03-13,13075,Four Rooms +Emanuel Levy,rotten,0113101,Variety,"Four of the hottest indie directors--Anders, Rockwell, Tarantino, and Rodrigues--miss a unique opportunity to display their idiosyncratic talents resulting in a tedious anthology in which 2 segments are inept, one barely decent, and one OK (guess whose)",2006-12-28,13075,Four Rooms +,rotten,0113101,Time Out,They should have called this One Room and released it as a Rodriguez short.,2006-01-26,13075,Four Rooms +Janet Maslin,rotten,0113101,New York Times,"The less said about this career-denting fiasco, the better.",2003-05-20,13075,Four Rooms +Jack Mathews,rotten,0113101,Los Angeles Times,Sounds better than it is.,2001-02-13,13075,Four Rooms +Mike Clark,rotten,0113101,USA Today,"Four Rooms has been cut substantially since a disastrous September reception at the Toronto Film Festival, though it's hard to imagine it running any longer.",2000-01-01,13075,Four Rooms +Roger Ebert,rotten,0113101,Chicago Sun-Times,"The four segments are widely different in quality. On the useful scale of the Michelin guides, one is worth a trip, another is worth a detour, and the other two are a colossal waste of bandwidth.",2000-01-01,13075,Four Rooms +Hal Hinson,rotten,0113101,Washington Post,Four Rooms asserts itself as a goof so laboriously and aggressively that you almost feel pinned back in your seat.,2000-01-01,13075,Four Rooms +Edward Guthmann,rotten,0113101,San Francisco Chronicle,"The result is a batch of shrill, self-indulgent sketches that turn so wretched in spots you start to wonder if the filmmakers wanted them to be bad.",2000-01-01,13075,Four Rooms +Desson Thomson,rotten,0113101,Washington Post,The segments are uniformly weak.,2000-01-01,13075,Four Rooms +James Berardinelli,rotten,0113101,ReelViews,Four Rooms has to be one of 1995's major disappointments.,2000-01-01,13075,Four Rooms +,rotten,0113101,Entertainment Weekly,,1996-12-26,13075,Four Rooms +Leonard Klady,none,0112281,Variety,,2008-12-03,10604,Ace Ventura: When Nature Calls +Geoff Andrew,none,0112281,Time Out,,2007-08-16,10604,Ace Ventura: When Nature Calls +Janet Maslin,none,0112281,New York Times,,2003-05-20,10604,Ace Ventura: When Nature Calls +,none,0112281,Globe and Mail,,2002-04-12,10604,Ace Ventura: When Nature Calls +Kenneth Turan,none,0112281,Los Angeles Times,,2001-02-13,10604,Ace Ventura: When Nature Calls +Joe Baltake,none,0112281,Sacramento Bee,,2000-01-01,10604,Ace Ventura: When Nature Calls +Peter Stack,none,0112281,San Francisco Chronicle,,2000-01-01,10604,Ace Ventura: When Nature Calls +James Berardinelli,rotten,0112281,ReelViews,,2000-01-01,10604,Ace Ventura: When Nature Calls +,none,0112281,Washington Post,,2000-01-01,10604,Ace Ventura: When Nature Calls +Susan Wloszczyna,rotten,0112281,USA Today,"There's so little to watch besides Carrey, in fact, it makes you actually miss (gasp!) Sean Young from Ace 1.",2000-01-01,10604,Ace Ventura: When Nature Calls +,fresh,0112281,Entertainment Weekly,,1995-11-10,10604,Ace Ventura: When Nature Calls +Brian Lowry,rotten,0113845,Variety,Bounces along with a lame script and inconsistent pace.,2009-03-26,14560,Money Train +Nigel Floyd,rotten,0113845,Time Out,Hardly worth the four-year wait.,2006-06-24,14560,Money Train +Stephen Holden,fresh,0113845,New York Times,"More viscerally charged than ""Speed"" and hipper than ""Die Hard With a Vengeance,"" the movie is a careening, screeching joyride that showers sparks like fireworks.",2003-05-20,14560,Money Train +Mick LaSalle,fresh,0113845,San Francisco Chronicle,,2002-06-18,14560,Money Train +Kenneth Turan,fresh,0113845,Los Angeles Times,"""Money Train"" is a by-the-numbers action-buddy picture, and few directors run through those numbers as smoothly as Joseph Ruben.",2001-02-13,14560,Money Train +Hal Hinson,rotten,0113845,Washington Post,"Even if they only charged a token, it would be too much.",2000-01-01,14560,Money Train +Mike Clark,rotten,0113845,USA Today,"It's stupid, but also breezier than the year's other 12-score releases not worth a second look.",2000-01-01,14560,Money Train +Susan Stark,rotten,0113845,Detroit News,,2000-01-01,14560,Money Train +James Berardinelli,rotten,0113845,ReelViews,,2000-01-01,14560,Money Train +Ken Tucker,rotten,0113845,Entertainment Weekly,"A big, noisy headache of a movie...",1995-11-22,14560,Money Train +Owen Gleiberman,fresh,0113161,Entertainment Weekly,,2011-09-07,13680,Get Shorty +David Ansen,fresh,0113161,Newsweek,"Hollywood has been in love with mobsters since the beginning of movies. But the other side of the equation has seldom been considered. That is, until now.",2008-05-07,13680,Get Shorty +Variety Staff,fresh,0113161,Variety,A drolly offbeat look at Hollywood mores dedicated to the proposition that the best preparation for becoming a film producer is a stint in the criminal underworld.,2008-05-07,13680,Get Shorty +Jonathan Rosenbaum,fresh,0113161,Chicago Reader,An entertaining comedy-thriller adapted by Scott Frank from the Elmore Leonard best-seller and directed with bounce (if not much nuance) by Barry Sonnenfeld.,2008-05-07,13680,Get Shorty +,fresh,0113161,Time Out,Everything clicks.,2006-06-24,13680,Get Shorty +Janet Maslin,fresh,0113161,New York Times,"It's part of the joke here that Chili is a die-hard cineaste and loves reminiscing about smart, stylish tough-guy films he has enjoyed. Get Shorty belongs on that list.",2003-05-20,13680,Get Shorty +Edward Guthmann,fresh,0113161,San Francisco Chronicle,"It's Travolta -- smooth, commanding, handsome as ever, a cool, rhythmic bop in his walk -- who owns the film.",2002-06-18,13680,Get Shorty +Peter Travers,fresh,0113161,Rolling Stone,The result is one of the best movies of the year and by far the most entertaining.,2001-05-12,13680,Get Shorty +Kenneth Turan,fresh,0113161,Los Angeles Times,In the category of amiable diversions it's awfully tough to improve on.,2001-02-13,13680,Get Shorty +Hal Hinson,fresh,0113161,Washington Post,Irresistibly charming.,2000-01-01,13680,Get Shorty +,fresh,0113161,USA Today,"Minor, but amusingly droll.",2000-01-01,13680,Get Shorty +Roger Ebert,fresh,0113161,Chicago Sun-Times,"One of the pleasures of Get Shorty is watching the way the plot moves effortlessly from crime to the movies - not a long distance, since both industries are based on fear, greed, creativity and intimidation.",2000-01-01,13680,Get Shorty +Desson Thomson,fresh,0113161,Washington Post,"This comic potboiler about gangsters in Hollywood would be a great piece of fun even without Travolta. But as a loan shark from Miami with a charming bedside manner and bigtime movie dreams, he raises the fun quotient into the sublime.",2000-01-01,13680,Get Shorty +James Berardinelli,fresh,0113161,ReelViews,"While it's quite possible for the cinematically unaware to enjoy this film, this is a real treat for movie buffs. The story is as much about the love of motion pictures as it is about gangsters.",2000-01-01,13680,Get Shorty +Susan Stark,fresh,0113161,Detroit News,,2000-01-01,13680,Get Shorty +,fresh,0113161,Entertainment Weekly,,1995-10-20,13680,Get Shorty +Todd McCarthy,none,0112722,Variety,,2008-09-02,14047,Copycat +,none,0112722,Time Out,,2006-02-09,14047,Copycat +Janet Maslin,none,0112722,New York Times,,2003-05-20,14047,Copycat +,none,0112722,Globe and Mail,,2002-04-12,14047,Copycat +Kenneth Turan,none,0112722,Los Angeles Times,,2001-02-13,14047,Copycat +Roger Ebert,fresh,0112722,Chicago Sun-Times,,2000-01-01,14047,Copycat +Joe Baltake,none,0112722,Sacramento Bee,,2000-01-01,14047,Copycat +Susan Stark,fresh,0112722,Detroit News,,2000-01-01,14047,Copycat +James Berardinelli,fresh,0112722,ReelViews,,2000-01-01,14047,Copycat +Mike Clark,rotten,0112722,USA Today,"Copycat, despite two tough-babe leads to kill for, flies in more directions than scattered kitty litter.",2000-01-01,14047,Copycat +Peter Stack,none,0112722,San Francisco Chronicle,,2000-01-01,14047,Copycat +Rita Kempley,none,0112722,Washington Post,,2000-01-01,14047,Copycat +,fresh,0112722,Entertainment Weekly,,1995-10-27,14047,Copycat +Ben Kenigsberg,rotten,1186367,Time Out,,2011-11-17,770780587,Ninja Assassin +David Jenkins,rotten,1186367,Time Out,A garish and poorly filmed chop-socky frolic that makes about as much sense as an Escher painting viewed through Vaseline-smudged Ray-Bans.,2010-01-22,770780587,Ninja Assassin +Kevin Lee,rotten,1186367,Time Out New York,Perhaps such phenomenal slaughter is best left to the imagination.,2009-12-02,770780587,Ninja Assassin +A.O. Scott,rotten,1186367,At the Movies,"The problem is that the fight sequences -- the only reason anyone sees a movie like this in the first place -- are muddy, chaotic and boring. Even diehard fans of this genre would be well advised to skip this one.",2009-11-30,770780587,Ninja Assassin +Jeannette Catsoulis,rotten,1186367,New York Times,"This saga, set in Berlin, is more committed to its bloodletting than to any of its characters.",2009-11-25,770780587,Ninja Assassin +Dan Kois,rotten,1186367,Washington Post,A movie that provides plenty of jolts but precious little pleasure.,2009-11-25,770780587,Ninja Assassin +Kyle Smith,fresh,1186367,New York Post,This movie knows exactly what it is: Gonzo silliness about bodies turned into human salsa.,2009-11-25,770780587,Ninja Assassin +Brian Miller,rotten,1186367,Village Voice,"Shouldn't throwing stars be silent? If they're gonna sound like gunshots, why not just use guns?",2009-11-25,770780587,Ninja Assassin +Mick LaSalle,rotten,1186367,San Francisco Chronicle,"It's a gorefest, a borefest and a snorefest.",2009-11-25,770780587,Ninja Assassin +Jason Anderson,rotten,1186367,Toronto Star,"Thanks to the movie's dire script, flat performances and excessively slick, tricked-out fight scenes, it gets increasingly hard to care about anything that goes on here, even when it happens to be visible without the use of night-vision goggles.",2009-11-25,770780587,Ninja Assassin +Stephen Cole,rotten,1186367,Globe and Mail,"This one is simply a diverting, uncommonly violent action flick. No need for an extended critical postmortem. Except to say the Wachowski brothers' trademark seems to have turned into a designer brand dedicated to producing inexpensive knockoffs.",2009-11-25,770780587,Ninja Assassin +Tom Long,fresh,1186367,Detroit News,"Rain is a very talented slaughterer. He could kill you with a pair of tweezers, a hair dryer, two bananas, whatever. Be glad he's a good ninja.",2009-11-25,770780587,Ninja Assassin +J. R. Jones,rotten,1186367,Chicago Reader,"When a movie's first scene shows one thug getting the top of his head sliced off and another being chopped diagonally in half, you know you're not in for much of a dramatic crescendo.",2009-11-25,770780587,Ninja Assassin +Chris Vognar,fresh,1186367,Dallas Morning News,"What's a recovering ninja assassin to do? Why, paint the screen bright red, of course. Splatter it on. We're talking streaks and rivers of blood -- bloody swords, bloody clothes and, my personal favorite, bloody stumps.",2009-11-25,770780587,Ninja Assassin +Stephanie Zacharek,fresh,1186367,Salon.com,"Ninja Assassin lives in the moment, a visceral gouge of a picture, and sections of it move so fast -- and are so intriguingly, dimly lit -- that you have to use your imagination a bit to discern what's happening.",2009-11-24,770780587,Ninja Assassin +Kathleen Murphy,rotten,1186367,MSN Movies,"Heads may roll, torsos get severed and geysers of blood spurt, but no amount of CGI'd gore can save 'Assassin' from being dramatically lame, visually impaired and kinetically flat-footed.",2009-11-24,770780587,Ninja Assassin +Wesley Morris,rotten,1186367,Boston Globe,The credits for Ninja Assassin list two screenwriters and one director. But it's fair to say the movie has come straight out of a box.,2009-11-24,770780587,Ninja Assassin +Joe Williams,rotten,1186367,St. Louis Post-Dispatch,"This amateurish action flick is so lacking in personality or punch, it ought to be titled ""V for Video Store Discount Bin.""",2009-11-24,770780587,Ninja Assassin +Chris Nashawaty,fresh,1186367,Entertainment Weekly,"Let's be honest, killing is this film's business... and business is good.",2009-11-24,770780587,Ninja Assassin +Michael Phillips,rotten,1186367,Chicago Tribune,"McTeigue can barely shoot straight, and the editing is so hack-y, you have to take the stunts and fight choreography on faith.",2009-11-24,770780587,Ninja Assassin +Joe Leydon,none,0114168,Variety,,2008-06-06,10466,Powder +Derek Adams,none,0114168,Time Out,,2006-02-09,10466,Powder +Caryn James,none,0114168,New York Times,,2003-05-20,10466,Powder +,none,0114168,Globe and Mail,,2002-04-12,10466,Powder +James Berardinelli,rotten,0114168,ReelViews,,2000-01-01,10466,Powder +Mike Clark,rotten,0114168,USA Today,"Performed to the hilt by Flanery and filmed with conviction by Victor Salva, the movie is finally too solemn to survive its pushy musical strings.",2000-01-01,10466,Powder +Desson Thomson,none,0114168,Washington Post,,2000-01-01,10466,Powder +Mick LaSalle,none,0114168,San Francisco Chronicle,,2000-01-01,10466,Powder +Rita Kempley,none,0114168,Washington Post,,2000-01-01,10466,Powder +Susan Stark,rotten,0114168,Detroit News,,2000-01-01,10466,Powder +Roger Ebert,rotten,0114168,Chicago Sun-Times,,2000-01-01,10466,Powder +,rotten,0114168,Entertainment Weekly,,1995-10-27,10466,Powder +Owen Gleiberman,fresh,0113627,Entertainment Weekly,,2011-09-07,13165,Leaving Las Vegas +Richard Schickel,fresh,0113627,TIME Magazine,"We're not talking high, morally instructive tragedy here, just a hard lesson in postmodernist outlawry and its sad little anarchies.",2008-09-19,13165,Leaving Las Vegas +Leonard Klady,fresh,0113627,Variety,"The film pulls no punches, takes no prisoners and flies in the face of feel-good pictures.",2008-02-11,13165,Leaving Las Vegas +Jonathan Rosenbaum,fresh,0113627,Chicago Reader,"The plot goes nowhere, but under the pornographic circumstances Figgis, Cage, and Shue all do fine jobs.",2008-02-11,13165,Leaving Las Vegas +Geoff Andrew,rotten,0113627,Time Out,It certainly has the courage of its convictions.,2006-06-24,13165,Leaving Las Vegas +Janet Maslin,fresh,0113627,New York Times,"Small, searing film.",2003-05-20,13165,Leaving Las Vegas +Peter Travers,fresh,0113627,Rolling Stone,A uniquely hypnotic and haunting love story sparked by Nicolas Cage and Elisabeth Shue at their career best.,2001-05-12,13165,Leaving Las Vegas +Kenneth Turan,fresh,0113627,Los Angeles Times,A film laden with virtues but difficult to embrace.,2001-02-13,13165,Leaving Las Vegas +James Berardinelli,fresh,0113627,ReelViews,"Nicolas Cage, who has a track record of immersing himself in parts, gives one of the year's most powerful acting turns.",2000-01-01,13165,Leaving Las Vegas +Susan Stark,fresh,0113627,Detroit News,,2000-01-01,13165,Leaving Las Vegas +Roger Ebert,fresh,0113627,Chicago Sun-Times,"Cage, a resourceful and daring actor, has never been better.",2000-01-01,13165,Leaving Las Vegas +Mike Clark,fresh,0113627,USA Today,"Tough to watch, but haunting enough to deserve its initial praise.",2000-01-01,13165,Leaving Las Vegas +,fresh,0113627,Entertainment Weekly,,1995-10-27,13165,Leaving Las Vegas +,none,0114057,Variety,,2012-02-23,13094,Othello +Todd McCarthy,none,0114057,Variety,,2009-03-26,13094,Othello +,none,0114057,Houston Chronicle,,2008-10-18,13094,Othello +Peter Travers,none,0114057,Rolling Stone,,2008-10-18,13094,Othello +Anna Smith,fresh,0114057,Time Out,A highly engaging attempt at Shakespeare's most domestic tragedy.,2006-01-26,13094,Othello +Janet Maslin,fresh,0114057,New York Times,Mr. Branagh's superb performance...guarantees this film an immediacy that any audience will understand.,2003-05-20,13094,Othello +,fresh,0114057,Hollywood Reporter,Davies has done an admirable job of condensing the sprawling action.,2002-10-15,13094,Othello +Kevin Thomas,fresh,0114057,Los Angeles Times,Parker has shown how involving and moving Shakespeare can still be on the screen.,2001-02-13,13094,Othello +Desson Thomson,rotten,0114057,Washington Post,"Parker, whose screenplay strips down the original play, merely produces a lackluster essence.",2000-01-01,13094,Othello +James Berardinelli,fresh,0114057,ReelViews,"For sheer impact, this Othello can stand side-by-side with the versions brought to the screen by Orson Welles (as restored in 1992) and Lawrence Olivier.",2000-01-01,13094,Othello +Susan Stark,fresh,0114057,Detroit News,,2000-01-01,13094,Othello +Mike Clark,fresh,0114057,USA Today,"The movie is roughly on the same cinematic level as the Mel Gibson Hamlet, though it tends to get under your skin a little more once it gets rolling.",2000-01-01,13094,Othello +Roger Ebert,rotten,0114057,Chicago Sun-Times,"... Will not give its viewers much of an idea of the Shakespeare play, and may inadvertently give them other ideas, about interracial love, that were not much on Shakespeare's mind.",2000-01-01,13094,Othello +Rita Kempley,rotten,0114057,Washington Post,"Passion, like outpourings of iambic pentameter, isn't part of this picture's equation.",2000-01-01,13094,Othello +Mick LaSalle,rotten,0114057,San Francisco Chronicle,"The real question is, could director Oliver Parker have done worse?",2000-01-01,13094,Othello +,fresh,0114057,Entertainment Weekly,,1995-12-22,13094,Othello +Joe Leydon,none,0114011,Variety,,2009-03-26,10534,Now and Then +,none,0114011,Time Out,,2006-01-26,10534,Now and Then +Caryn James,none,0114011,New York Times,,2003-05-20,10534,Now and Then +Edward Guthmann,fresh,0114011,San Francisco Chronicle,,2002-06-18,10534,Now and Then +,none,0114011,Globe and Mail,,2002-04-12,10534,Now and Then +Laura Blumenfeld,none,0114011,Washington Post,,2000-01-01,10534,Now and Then +Susan Stark,rotten,0114011,Detroit News,,2000-01-01,10534,Now and Then +James Berardinelli,rotten,0114011,ReelViews,,2000-01-01,10534,Now and Then +,rotten,0114011,USA Today,"Now and Then is successful, but only now and then.",2000-01-01,10534,Now and Then +Roger Ebert,rotten,0114011,Chicago Sun-Times,,2000-01-01,10534,Now and Then +Derek Elley,none,0114117,Variety,,2009-04-01,10064,Persuasion +Derek Adams,none,0114117,Time Out,,2006-02-09,10064,Persuasion +Caryn James,fresh,0114117,New York Times,"The film offers the same pleasures as an Austen novel, as the audience sinks into a comforting, orderly world where life-shattering disruptions are handled with elegant ease.",2003-05-20,10064,Persuasion +Peter Stack,fresh,0114117,San Francisco Chronicle,Austen fans: Prepare to be swept away.,2002-06-18,10064,Persuasion +,none,0114117,Globe and Mail,,2002-04-12,10064,Persuasion +Kenneth Turan,none,0114117,Los Angeles Times,,2001-02-13,10064,Persuasion +Hal Hinson,fresh,0114117,Washington Post,"Michell's approach to Persuasion indicates that he is the rarest of literary translators -- one who is genuinely interested in a work's themes, its characters and what the author has to say about the world in which they exist.",2000-01-01,10064,Persuasion +Desson Thomson,fresh,0114117,Washington Post,"There's a wonderful, unhurried delicacy about Persuasion, Roger Mitchell's adaptation of Jane Austen's final novel.",2000-01-01,10064,Persuasion +Jeff Millar,fresh,0114117,Houston Chronicle,"Persuasion is Jane without pain, E-Z Austen. It's a delight.",2000-01-01,10064,Persuasion +Roger Ebert,fresh,0114117,Chicago Sun-Times,"Much of the movie's emotional work has to be done by...faces and eyes, while other people speak of other things, and to see that happening is frustrating, because it happens so slowly, and romantic, because it happens at all.",2000-01-01,10064,Persuasion +Joe Baltake,none,0114117,Sacramento Bee,,2000-01-01,10064,Persuasion +James Berardinelli,fresh,0114117,ReelViews,,2000-01-01,10064,Persuasion +Mike Clark,fresh,0114117,USA Today,Vanessa Redgrave has never been more likable on screen than in her buoyantly athletic turn here.,2000-01-01,10064,Persuasion +,fresh,0114117,Entertainment Weekly,,1995-09-27,10064,Persuasion +Michael Wilmington,fresh,0112682,Chicago Tribune,"Set in a wondrously seedy waterfront world populated with runaway children and grotesque, sinister adults, it glistens with dense fantasies, technological feats that make the catch-phrase ""state of the art"" seem antique.",2012-12-07,13050,La cité des enfants perdus +Jonathan Rosenbaum,rotten,0112682,Chicago Reader,The emotions seem almost as manufactured as the sets.,2012-12-07,13050,La cité des enfants perdus +Derek Elley,fresh,0112682,Variety,"With each frame filled to bursting point with visual detail and multiplaned design, plus razor-sharp cutting that often eliminates transitions, it's not a movie you can afford to take your eyes off for a second.",2009-03-26,13050,La cité des enfants perdus +Geoff Andrew,fresh,0112682,Time Out,Extraordinary.,2006-02-09,13050,La cité des enfants perdus +Stephen Holden,rotten,0112682,New York Times,Watching the film is like leafing through a giant sketchbook crammed with intriguing ideas that can't all be comfortably fitted into the same master plan.,2003-05-20,13050,La cité des enfants perdus +Kevin Thomas,fresh,0112682,Los Angeles Times,"The City of Lost Children is a stunningly surreal fantasy, a fable of longing and danger, of heroic deeds and bravery, set in a brilliantly realized world of its own. It is one of the most audacious, original films of the year.",2002-08-15,13050,La cité des enfants perdus +Jeff Millar,fresh,0112682,Houston Chronicle,"The City of Lost Children is a series of associated visual stimuli so imaginative and omnivorous that their spectacle has the effect of wearing us out. Nevertheless, if you think of yourself as warped, you really must see this.",2000-01-01,13050,La cité des enfants perdus +James Berardinelli,fresh,0112682,ReelViews,The City of Lost Children is as visually striking and daringly offbeat as its predecessor.,2000-01-01,13050,La cité des enfants perdus +Mike Clark,rotten,0112682,USA Today,"Children hasn't enough of a human dimension to be 'fun' itself, but it's still warped enough to amuse anyone with a tilted frame of mind.",2000-01-01,13050,La cité des enfants perdus +Peter Stack,fresh,0112682,San Francisco Chronicle,The French fantasy adventure The City of Lost Children is a dark phantasmagoria so visually amazing and provocative -- yet dense and confusing -- that viewers may need to see it more than once to take it all in.,2000-01-01,13050,La cité des enfants perdus +Roger Ebert,fresh,0112682,Chicago Sun-Times,"Many people will probably not find themselves sympathetic to this movie's overachieving technological pretensions, while others will find it the best film in months or years.",2000-01-01,13050,La cité des enfants perdus +,none,0115012,Variety,,2012-02-23,14872,Yao a yao yao dao waipo qiao +Lisa Schwarzbaum,fresh,0115012,Entertainment Weekly,,2011-09-07,14872,Yao a yao yao dao waipo qiao +Derek Elley,none,0115012,Variety,,2009-03-26,14872,Yao a yao yao dao waipo qiao +Derek Adams,none,0115012,Time Out,,2006-06-24,14872,Yao a yao yao dao waipo qiao +Janet Maslin,none,0115012,New York Times,,2003-05-20,14872,Yao a yao yao dao waipo qiao +Kevin Thomas,none,0115012,Los Angeles Times,,2001-02-13,14872,Yao a yao yao dao waipo qiao +James Berardinelli,fresh,0115012,ReelViews,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Rita Kempley,none,0115012,Washington Post,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Joe Baltake,none,0115012,Sacramento Bee,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Edward Guthmann,none,0115012,San Francisco Chronicle,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Desson Thomson,none,0115012,Washington Post,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Roger Ebert,rotten,0115012,Chicago Sun-Times,,2000-01-01,14872,Yao a yao yao dao waipo qiao +,none,0115012,Houston Chronicle,,2000-01-01,14872,Yao a yao yao dao waipo qiao +Mike Clark,fresh,0115012,USA Today,Shanghai Triad concludes the sublime seven-movie collaboration of Chinese filmmaker Zhang Yimou and actress Gong Li with a bang worthy of the most jubilant New Year's Eve.,2000-01-01,14872,Yao a yao yao dao waipo qiao +,fresh,0115012,Entertainment Weekly,,1995-12-22,14872,Yao a yao yao dao waipo qiao +Owen Gleiberman,rotten,0112792,Entertainment Weekly,,2011-09-07,13453,Dangerous Minds +Todd McCarthy,none,0112792,Variety,,2008-11-20,13453,Dangerous Minds +James Berardinelli,rotten,0112792,ReelViews,,2008-08-19,13453,Dangerous Minds +,none,0112792,Time Out,,2006-01-26,13453,Dangerous Minds +Janet Maslin,none,0112792,New York Times,,2003-05-20,13453,Dangerous Minds +Peter Travers,fresh,0112792,Rolling Stone,"Pfeiffer gives a funny, scrappy performance that makes you feel a committed teacher's fire to make a difference.",2001-05-12,13453,Dangerous Minds +Kenneth Turan,rotten,0112792,Los Angeles Times,"The tale screenwriter Ronald Bass came up with, and the way director John N. Smith tells it, is stereotypical, predictable and simplified to the point of meaninglessness.",2001-02-13,13453,Dangerous Minds +Kevin McManus,rotten,0112792,Washington Post,"If only the filmmakers had used some subtlety in telling the story, they could have done right by the real LouAnne Johnson.",2000-01-01,13453,Dangerous Minds +Edward Guthmann,fresh,0112792,San Francisco Chronicle,"What makes it work is the integrity of Pfeiffer's performance and Smith's direction, and the high spirits of the young, racially diverse supporting cast.",2000-01-01,13453,Dangerous Minds +Roger Ebert,rotten,0112792,Chicago Sun-Times,"The movie pretends to show poor black kids being bribed into literacy by Dylan and candy bars, but actually it is the crossover white audience that is being bribed with mind-candy in the form of safe words by the two Dylans.",2000-01-01,13453,Dangerous Minds +Joe Baltake,fresh,0112792,Sacramento Bee,"A no-frills, single-minded drama driven by Pfeiffer's totally committed performance.",2000-01-01,13453,Dangerous Minds +Susan Stark,fresh,0112792,Detroit News,"The movie has real emotional and reportorial credibility, a prime source of its power.",2000-01-01,13453,Dangerous Minds +Tom Keogh,fresh,0112792,Film.com,Pfeiffer has a lot of good moments as Johnson.,2000-01-01,13453,Dangerous Minds +Bradley Steinbacher,rotten,0112792,Film.com,Stay home and watch Welcome Back Kotter. It's more enlightening.,2000-01-01,13453,Dangerous Minds +Rita Kempley,rotten,0112792,Washington Post,"Pfieffer is absurdly miscast: Sly Stallone would make a more plausible Mr. Chips than the frail, squeaky actress does a nine-year veteran of the Marine Corps.",2000-01-01,13453,Dangerous Minds +,rotten,0112792,Entertainment Weekly,,1995-08-11,13453,Dangerous Minds +Roger Ebert,fresh,0114952,Chicago Sun-Times,,2000-01-01,770927333,Wings of Courage +Mike Clark,rotten,0114952,USA Today,"This 40-minute epic about mountain survival in the wake of a plane crash is like sitting through Alive again, though in this case there isn't anything for the hero to eat.",2000-01-01,770927333,Wings of Courage +Caryn James,none,0114952,New York Times,,2000-01-01,770927333,Wings of Courage +Carrie Rickey,fresh,0112431,Philadelphia Inquirer,"Babe is not, strictly speaking, a kid's movie. It is a preposterously funny fable that strikes a chord with adults, too.",2013-07-30,9898,Babe +Gary Dretzka,fresh,0112431,Chicago Tribune,"For children, the movie will play like a storybook come to life. Adults, at first, will marvel at the special effects and puppetry. But ultimately, they'll be won over by the nuances of a story that finds a fresh way to deliver a timeless message.",2013-07-30,9898,Babe +Doug Thomas,fresh,0112431,Seattle Times,A film that is exceptional in its technical effects and its graceful ability to entertain.,2013-07-30,9898,Babe +Terrence Rafferty,fresh,0112431,New Yorker,"[It's] a comedy of animal manners that is much funnier and much cannier than any recent movie about human relationships: a lovely, stubbornly idiosyncratic fable of aspiration and survival.",2013-07-30,9898,Babe +Jack Kroll,fresh,0112431,Newsweek,It has a surprising charm.,2008-05-13,9898,Babe +Lisa Schwarzbaum,fresh,0112431,Entertainment Weekly,"Australian director Chris Noonan and producer George Miller show what real talent and imagination can do, even without big-name humans as costars.",2008-05-13,9898,Babe +Jonathan Rosenbaum,fresh,0112431,Chicago Reader,"The characters (both animal and human) are solidly conceived, and the storytelling and visuals are expertly fashioned.",2008-05-13,9898,Babe +Leonard Klady,fresh,0112431,Variety,A dazzling family entertainment with enormous charm that utilizes breathtaking technical innovation.,2008-05-13,9898,Babe +,fresh,0112431,Time Out,"Charming, eccentric and very amusing.",2006-01-26,9898,Babe +Peter Stack,fresh,0112431,San Francisco Chronicle,"A lovely, intelligent gem of G-rated entertainment that is also rib-tickling funny.",2002-06-18,9898,Babe +Kenneth Turan,fresh,0112431,Los Angeles Times,"If only people would be more like these animals, the world, though hardly saner, would certainly be a lot more fun.",2001-02-13,9898,Babe +Rita Kempley,fresh,0112431,Washington Post,The underlying tricks are never allowed to upstage the story in all its humble sweetness.,2000-01-01,9898,Babe +Susan Wloszczyna,fresh,0112431,USA Today,A silk purse among children's entertainment.,2000-01-01,9898,Babe +Stephen Holden,fresh,0112431,New York Times,"The movie, directed by Chris Noonan, who wrote the screenplay with George Miller, takes a child's-eye view of a world that is photographed to look like a storybook come to life.",2000-01-01,9898,Babe +Desson Thomson,fresh,0112431,Washington Post,"A hilarious fantasy, about a plucky piglet that learns how to tend sheep, Babe is a barnyard charmer.",2000-01-01,9898,Babe +Roger Ebert,fresh,0112431,Chicago Sun-Times,"Babe is a movie made with charm and wit, and unlike some family movies it does not condescend, not for a second.",2000-01-01,9898,Babe +James Berardinelli,fresh,0112431,ReelViews,"Through a mixture of imaginative storytelling, impressive animatronics, and irresistible cuteness, Babe casts a spell over all viewers -- young, old, or somewhere in between.",2000-01-01,9898,Babe +Owen Gleiberman,fresh,0112637,Entertainment Weekly,,2011-09-07,15563,Carrington +Derek Elley,none,0112637,Variety,,2008-10-18,15563,Carrington +,none,0112637,Time Out,,2006-06-24,15563,Carrington +Janet Maslin,none,0112637,New York Times,,2003-05-20,15563,Carrington +,none,0112637,Globe and Mail,,2002-04-12,15563,Carrington +Kenneth Turan,none,0112637,Los Angeles Times,,2001-02-13,15563,Carrington +James Berardinelli,fresh,0112637,ReelViews,,2000-01-01,15563,Carrington +Rita Kempley,none,0112637,Washington Post,,2000-01-01,15563,Carrington +Desson Thomson,none,0112637,Washington Post,,2000-01-01,15563,Carrington +Roger Ebert,fresh,0112637,Chicago Sun-Times,,2000-01-01,15563,Carrington +Susan Stark,fresh,0112637,Detroit News,,2000-01-01,15563,Carrington +Mike Clark,rotten,0112637,USA Today,"The leads do physically resemble their real-life prototypes, judging from last year's coffee-table book on Carrington's art and personal circle. But the snail's pacing, vague writing and Thompson herself leave a fatal void.",2000-01-01,15563,Carrington +,fresh,0112637,Entertainment Weekly,,1995-11-10,15563,Carrington +Owen Gleiberman,rotten,0112818,Entertainment Weekly,,2011-09-07,16611,Dead Man Walking +Emanuel Levy,fresh,0112818,Variety,"Tim Robbins's balanced yet uncompromising approach refuses to judge any of the characters, including the killer (superlatively played by Sean Penn), instead giving each a fair chance to present their case with dignity and respect.",2006-06-10,16611,Dead Man Walking +,none,0112818,Time Out,,2006-01-26,16611,Dead Man Walking +Hal Hinson,fresh,0112818,Washington Post,"An intelligent, balanced, devastating movie.",2002-01-31,16611,Dead Man Walking +Kenneth Turan,fresh,0112818,Los Angeles Times,"Takes us along on the reluctant, difficult, essentially spiritual journey these two unlikely people make together.",2001-02-13,16611,Dead Man Walking +James Berardinelli,fresh,0112818,ReelViews,"Dead Man Walking could easily be manipulative or exploitative, but it's neither. Instead, this is hard-hitting drama that neither accepts nor offers quarter.",2000-01-01,16611,Dead Man Walking +Sean Means,fresh,0112818,Film.com,A thought-provoking drama not to be missed or dismissed.,2000-01-01,16611,Dead Man Walking +Tom Keogh,rotten,0112818,Film.com,"Robbins, who also wrote the script, is no Truman Capote, let alone a Victor Hugo, and his film trips up constantly on indecisiveness about what it is he's trying to say.",2000-01-01,16611,Dead Man Walking +Susan Stark,fresh,0112818,Detroit News,It will send you home with more than a few long thoughts.,2000-01-01,16611,Dead Man Walking +Mike Clark,fresh,0112818,USA Today,"is the finest, least compromised film about capital punishment ever advancing a gently stated 'anti' view but going the extra 100 miles to give victims their due.",2000-01-01,16611,Dead Man Walking +Roger Ebert,fresh,0112818,Chicago Sun-Times,"Absorbing, surprising, technically superb and worth talking about for a long time afterward",2000-01-01,16611,Dead Man Walking +Bruce Reid,fresh,0112818,Film.com,"Robbins and Susan Sarandon, have crafted a film that transcends its own political message by a scrupulous attention to detail.",2000-01-01,16611,Dead Man Walking +Jonathan F. Richards,fresh,0112818,Film.com,"Don't go unadvised, and don't plan anything too frivolous for right afterwards. But do go.",2000-01-01,16611,Dead Man Walking +John Hartl,fresh,0112818,Film.com,"A daring stand and a daring, uncompromised film.",2000-01-01,16611,Dead Man Walking +Joe Baltake,fresh,0112818,Sacramento Bee,Its objectivity is what makes it so controversial and fascinating.,2000-01-01,16611,Dead Man Walking +Edward Guthmann,fresh,0112818,San Francisco Chronicle,Acting rarely gets better than this.,2000-01-01,16611,Dead Man Walking +Janet Maslin,fresh,0112818,New York Times,Penn gives an astonishing performance and delivers exactly what Dead Man Walking needs.,2000-01-01,16611,Dead Man Walking +Stanley Kauffmann,rotten,0112818,The New Republic,The picture is cloudy in intent.,2000-01-01,16611,Dead Man Walking +Keith Simanton,fresh,0112818,Film.com,"Sarandon, who won the Oscar for Best Actress for this role, is superb, but Penn is extraordinary.",2000-01-01,16611,Dead Man Walking +Richard Schickel,fresh,0112818,TIME Magazine,Its final moments leave us awash in emotion.,2000-01-01,16611,Dead Man Walking +Godfrey Cheshire,none,0112286,Variety,,2008-10-18,9990,Across the Sea of Time +,none,0112286,Time Out,,2008-01-18,9990,Across the Sea of Time +Jeff Strickler,none,0112286,Minneapolis Star Tribune,,2002-11-06,9990,Across the Sea of Time +Mike Clark,rotten,0112286,USA Today,"Employing 3-D and PSE sound, then projected on a screen that suggests a small skyscraper, the new show at West Side Manhattan's Sony IMAX theater is, visually speaking, nothing but a clear day... but it definitely put me in scat-mode.",2000-01-01,9990,Across the Sea of Time +Janet Maslin,none,0112286,New York Times,,2000-01-01,9990,Across the Sea of Time +Leonard Klady,fresh,0113442,Variety,"The film's underlying sentiment is conveyed effectively, if obviously.",2009-08-03,10778,It Takes Two +,rotten,0113442,Time Out,"Alas, the Olsen girls are not immediately heart-warming.",2006-06-24,10778,It Takes Two +Stephen Holden,rotten,0113442,New York Times,"Under the direction of Andy Tennant, the Olsen sisters lay on the icky-poo cuteness with several trowels, often delivering their lines as though they were reciting the alphabet.",2003-05-20,10778,It Takes Two +Edward Guthmann,none,0113442,San Francisco Chronicle,"A harmless caper that ought to thrill girls under 12, and offer modest diversion to their parents.",2002-06-18,10778,It Takes Two +Kevin Thomas,fresh,0113442,Los Angeles Times,Writer Deborah Dean Davis and director Andy Tennant are fully aware of the absolute predictability of their material and therefore make the getting to an inevitable ending as much fun as possible.,2001-02-13,10778,It Takes Two +Susan Stark,rotten,0113442,Detroit News,,2000-01-01,10778,It Takes Two +Mike Clark,rotten,0113442,USA Today,A rote variation on Mark Twain's The Prince and the Pauper that is marginally salvaged by those spunky Olsen twins from ABC's Full House.,2000-01-01,10778,It Takes Two +Roger Ebert,rotten,0113442,Chicago Sun-Times,"It's so featherbrained and lightweight, it almost elevates its inconsequence into a style.",2000-01-01,10778,It Takes Two +Hal Hinson,rotten,0113442,Washington Post,"With their perilously wide, Walter Keane eyes, the Olsen twins are cute enough, but compared with other child performers their charms seem forced.",2000-01-01,10778,It Takes Two +,rotten,0113442,Entertainment Weekly,,1995-11-17,10778,It Takes Two +Stephen Holden,none,0112749,New York Times,,2004-08-30,11010,"Cry, the Beloved Country" +Kevin Thomas,none,0112749,Los Angeles Times,,2001-02-13,11010,"Cry, the Beloved Country" +Susan Stark,fresh,0112749,Detroit News,,2000-01-01,11010,"Cry, the Beloved Country" +Roger Ebert,rotten,0112749,Chicago Sun-Times,,2000-01-01,11010,"Cry, the Beloved Country" +Tom Green,fresh,0112749,USA Today,Especially heart-rending thanks to superb performances by James Earl Jones and Richard Harris.,2000-01-01,11010,"Cry, the Beloved Country" +Desson Thomson,none,0112749,Washington Post,,2000-01-01,11010,"Cry, the Beloved Country" +Joe Baltake,none,0112749,Sacramento Bee,,2000-01-01,11010,"Cry, the Beloved Country" +Peter Stack,none,0112749,San Francisco Chronicle,,2000-01-01,11010,"Cry, the Beloved Country" +James Berardinelli,fresh,0112749,ReelViews,,2000-01-01,11010,"Cry, the Beloved Country" +Joe Morgenstern,none,0114279,Wall Street Journal,,2012-01-21,13265,Richard III +Owen Gleiberman,fresh,0114279,Entertainment Weekly,,2011-09-07,13265,Richard III +Godfrey Cheshire,fresh,0114279,Variety,A sure-fire crowd-pleaser among recent Shakespeare movies.,2008-07-09,13265,Richard III +Hal Hinson,fresh,0114279,Washington Post,"In a shamelessly entertaining display of acting brilliance, McKellen 'plays' the demon's good arm as if it were a Stradivarius, executing one showy stunt after another.",2008-02-27,13265,Richard III +Stephen Garrett,fresh,0114279,Time Out,This triumphant take on the Crookback king is as different from Olivier's '50s historical pageant as chalk is from malmsey.,2006-06-24,13265,Richard III +Andrew Geller,fresh,0114279,New York Times,It is all in the grand manner of Shakespearean tragedies.,2003-05-21,13265,Richard III +Kenneth Turan,fresh,0114279,Los Angeles Times,"This is Shakespeare exciting enough for even the most dubious, which, after all, is no less than the man deserves.",2001-02-13,13265,Richard III +Mike Clark,rotten,0114279,USA Today,The updating is the kind of fanciful exercise far better suited to the stage than to the literal confines of the screen.,2000-01-01,13265,Richard III +Mick LaSalle,fresh,0114279,San Francisco Chronicle,"Combines a shrewd understanding of Shakespeare with a healthy, low-brow approach to cinema.",2000-01-01,13265,Richard III +Susan Stark,fresh,0114279,Detroit News,,2000-01-01,13265,Richard III +Jeff Millar,fresh,0114279,Houston Chronicle,McKellen's enormous performance as Richard represents the film's biggest tinkering with theatrical canon.,2000-01-01,13265,Richard III +Desson Thomson,fresh,0114279,Washington Post,"The actors are uniformly good, including Broadbent's unctuous Buckingham and Hawthorne's sweet, unsuspecting Clarence.",2000-01-01,13265,Richard III +James Berardinelli,fresh,0114279,ReelViews,"While this curious clash between a near-modern setting and the much older source material might seem confounding, it actually serves to energize the play, as well as making it more palatable to present-day audiences.",2000-01-01,13265,Richard III +,fresh,0114279,Entertainment Weekly,,1995-12-29,13265,Richard III +Todd McCarthy,fresh,0112819,Variety,"Dead Presidents may eventually box itself into a narrative dead end, but its muscular engagement of weighty themes and explosive situations makes it a powerful drama.",2009-03-26,13396,Dead Presidents +,rotten,0112819,Time Out,"There are intriguing aspects to this yarn, and the brothers can choreograph a scene, but you get the impression that they learned all they know from other movies, the blood and guts is gratuitous...",2006-01-26,13396,Dead Presidents +Caryn James,rotten,0112819,New York Times,"Like those overreaching sophomore term papers we can all laugh at now, this disappointing film may free the Hughes brothers to move on to fresher, more inspired work.",2003-05-20,13396,Dead Presidents +Peter Stack,rotten,0112819,San Francisco Chronicle,"It's an overly ambitious effort that strains to work as a coming-of-age drama, a 1960s period piece and a searing comment on the way African American GIs went largely unappreciated for their war efforts.",2002-06-18,13396,Dead Presidents +Peter Travers,rotten,0112819,Rolling Stone,What emerges is an uneasy blend of didacticism and juiced-up bloodletting (the brothers don't know when to stop with the exploding squibs) that bury the film's message and its good intentions.,2001-05-12,13396,Dead Presidents +Kenneth Turan,fresh,0112819,Los Angeles Times,"Made with fluid skill and a passion for storytelling, its tale of how the Vietnam War and American society affect a black Marine remains accessible while confounding expectations.",2001-02-13,13396,Dead Presidents +Hal Hinson,fresh,0112819,Washington Post,"Dead Presidents is like a shotgun blast in the face: It's that powerful, that lethal, that ugly.",2000-01-01,13396,Dead Presidents +James Berardinelli,fresh,0112819,ReelViews,"People of any color can sympathize with the plight of Anthony Curtis and understand, if not agree with, the eventual choices life forces him to make.",2000-01-01,13396,Dead Presidents +Mike Clark,fresh,0112819,USA Today,Messy but mesmerizing.,2000-01-01,13396,Dead Presidents +Susan Stark,fresh,0112819,Detroit News,,2000-01-01,13396,Dead Presidents +Desson Thomson,rotten,0112819,Washington Post,"Unfortunately, the story manages to be intense (and very bloody), heartfelt and superficial, all at the same time.",2000-01-01,13396,Dead Presidents +Roger Ebert,rotten,0112819,Chicago Sun-Times,"Here is a film that feels incomplete, as if its last step is into thin air. Scene by scene you feel its skill, but you leave the theater wondering about the meaning of it all.",2000-01-01,13396,Dead Presidents +,fresh,0112819,Entertainment Weekly,,1995-10-06,13396,Dead Presidents +Lisa Schwarzbaum,fresh,0114272,Entertainment Weekly,,2011-09-07,13568,Restoration +James Greenberg,none,0114272,Hollywood Reporter,,2011-02-08,13568,Restoration +Godfrey Cheshire,none,0114272,Variety,,2009-03-26,13568,Restoration +Susan Stark,rotten,0114272,Detroit News,,2008-10-18,13568,Restoration +Geoff Andrew,rotten,0114272,Time Out,Engaging if uneven.,2006-02-09,13568,Restoration +Janet Maslin,fresh,0114272,New York Times,"Since the robust 17th-century picaresque tale is not enjoying any current vogue, the success of ""Restoration"" can be considered a very pleasant surprise.",2003-05-20,13568,Restoration +Kevin Thomas,rotten,0114272,Los Angeles Times,The film is overcome by the rumbling workings of a creaky plot as the story grows more serious.,2002-08-15,13568,Restoration +Peter Stack,rotten,0114272,San Francisco Chronicle,"The movie takes on a somber, fitful atmosphere of straining epic proportions. But it strays into an episodic bog that leaves it gasping for dramatic life.",2002-06-18,13568,Restoration +Peter Travers,fresh,0114272,Rolling Stone,"Lively, lavish and grandly acted pageant.",2001-05-12,13568,Restoration +Jeff Millar,fresh,0114272,Houston Chronicle,"While this sly and sumptuous new film offers just the single word as its title, it will make you think of all you learned about Restoration comedy -- and drama -- in that long-ago History of the Theater 101 course.",2000-01-01,13568,Restoration +James Berardinelli,fresh,0114272,ReelViews,"Solid entertainment, especially in a season when Hollywood's releases are repeatedly causing grimaces.",2000-01-01,13568,Restoration +Mike Clark,rotten,0114272,USA Today,What virtues the movie has are cosmetic.,2000-01-01,13568,Restoration +Rita Kempley,fresh,0114272,Washington Post,"A garishly gilded, gloriously overstuffed costume drama.",2000-01-01,13568,Restoration +Roger Ebert,fresh,0114272,Chicago Sun-Times,Restoration avoids the pitfalls of pious historical reconstructions and plunges right into the cauldron.,2000-01-01,13568,Restoration +,none,0113855,Variety,,2012-02-23,10565,Mortal Kombat +Lisa Schwarzbaum,rotten,0113855,Entertainment Weekly,,2011-09-07,10565,Mortal Kombat +Leonard Klady,fresh,0113855,Variety,"Where others have sunk in the mire of imitation, director Paul Anderson and writer Kevin Droney effect a viable balance between exquisitely choreographed action and ironic visual and verbal counterpoint.",2008-09-22,10565,Mortal Kombat +Derek Adams,fresh,0113855,Time Out,"British director Anderson does a fair job with what he was given: four good-looking leads, some very impressive sfx, Babylonian sets, a bone-crunching soundtrack, and a battery of well-choreographed fights.",2006-06-24,10565,Mortal Kombat +Stephen Holden,fresh,0113855,New York Times,The most intriguing is a glassy-eyed follower whose right hand shoots out a hissing reptile that can extend itself for miles. Exotic creatures like these make watching Mortal Kombat feel like being in a high-tech fun house.,2003-05-20,10565,Mortal Kombat +Richard Harrington,rotten,0113855,Washington Post,"Likely to satisfy only the core audience already hooked on video and arcade games, and even that's not a sure thing.",2000-01-01,10565,Mortal Kombat +Laura Evenson,rotten,0113855,San Francisco Chronicle,"The movie has everything a teenage boy could want... Everything, that is, but an interesting plot, decent dialogue and compelling acting.",2000-01-01,10565,Mortal Kombat +Sean Means,rotten,0113855,Film.com,"The movie that most nearly approximates a video game: lots of action, no plot, eye-catching computer effects and a dollop of violence.",2000-01-01,10565,Mortal Kombat +John Hartl,rotten,0113855,Film.com,"Just looks and plays a lot like Johnny Mnemonic, Double Dragon and other video-game-inspired, mayhem-filled messes.",2000-01-01,10565,Mortal Kombat +Ben Walters,fresh,0337978,Time Out,Len Wiseman handles many of the set-pieces with flair and tension.,2011-11-17,494020502,Live Free or Die Hard +Bob Mondello,fresh,0337978,NPR.org,"It's not remotely plausible, but with Willis' McClane leaping onto the tailfins of passing jet fighters and bringing down helicopters by launching police cars at them, there's enough stuff blowing up that action fans won't mind much.",2008-10-18,494020502,Live Free or Die Hard +Andrea Gronvall,rotten,0337978,Chicago Reader,The bad guys' omnipotence at nearly every turn dilutes the film's suspense.,2008-01-04,494020502,Live Free or Die Hard +Owen Gleiberman,fresh,0337978,Entertainment Weekly,"An enjoyable pop projection of post-9/11 anxiety. That said, it also makes you nostalgic for the days when irresponsible action movies didn't have to deal with it.",2007-11-28,494020502,Live Free or Die Hard +Kyle Smith,fresh,0337978,New York Post,"What's the fourth ""Die Hard"" called? I keep forgetting. ""Die Hard: With a Pension""? ""Die Hardened Arteries""? ""Die Laughing""?",2007-07-31,494020502,Live Free or Die Hard +Jonathan F. Richards,fresh,0337978,Film.com,"Movie characters like McClane are the Paul Bunyans and John Henrys and Pecos Bills of our age, the stuff of tall tales spun with the technology of an age whose campfires are found in multiplexes with stadium seating.",2007-07-15,494020502,Live Free or Die Hard +Joshua Rothkopf,rotten,0337978,Time Out New York,The rookie mistakes are legion.,2007-07-12,494020502,Live Free or Die Hard +Andrew Sarris,fresh,0337978,New York Observer,Willis should not be the victim of facile stereotyping. He brings more heart and humor to apocalyptic pulp fiction than any other actor I can think of offhand.,2007-07-11,494020502,Live Free or Die Hard +Rene Rodriguez,fresh,0337978,Miami Herald,"Far from the crass, just-for-the-money sequel it appeared to be on paper. It's a genuine blast.",2007-06-30,494020502,Live Free or Die Hard +Joe Morgenstern,fresh,0337978,Wall Street Journal,"Terrific entertainment, and startlingly shrewd in the bargain, a combination of minimalist performances -- interestingly minimalist -- and maximalist stunts that make you laugh, as you gape, at their thunderous extravagance.",2007-06-28,494020502,Live Free or Die Hard +Peter Rainer,fresh,0337978,Christian Science Monitor,Easily the best in the series since the first one.,2007-06-28,494020502,Live Free or Die Hard +Rob Nelson,rotten,0337978,Village Voice,"The real intrigue has to do with whether McClane -- 'a Timex watch in a digital age,' per the lead baddie (Timothy Olyphant) -- can log in to 2007.",2007-06-27,494020502,Live Free or Die Hard +Stephanie Zacharek,fresh,0337978,Salon.com,"Willis' John McClane, with that sly, sideways smile, is like an old acquaintance you don't mind running into. He may be older and balder, but he's none the worse for the wear. And he can still take a punch.",2007-06-27,494020502,Live Free or Die Hard +James Berardinelli,rotten,0337978,ReelViews,"Live Free or Die Hard may work better for an audience that doesn't know much about the series than it will for Die Hard die hards, who will be wondering who that impersonator is and what he did with the real John McClane.",2007-06-27,494020502,Live Free or Die Hard +Rick Groen,rotten,0337978,Globe and Mail,"This paradox comes with an attendant fallacy: that the best way to solve the static problem is to make the stunts even larger, the bangs even bigger. Wrong: More action just stops the film longer.",2007-06-27,494020502,Live Free or Die Hard +Richard Schickel,fresh,0337978,TIME Magazine,"It is a movie born to be forgotten-except as something that against your better judgment, you had a pretty good time watching back in the summer of '07.",2007-06-27,494020502,Live Free or Die Hard +Rob Salem,fresh,0337978,Toronto Star,"Live Free or Die Hard is indeed a worthy successor to the original -- not perhaps quite as good, but close.",2007-06-27,494020502,Live Free or Die Hard +Richard Roeper,fresh,0337978,Chicago Sun-Times,"The post-9/11 techno-terrorist stuff works, the fights are creative and funny, and Willis is in top form in his career-defining role.",2007-06-27,494020502,Live Free or Die Hard +Ty Burr,rotten,0337978,Boston Globe,"Sorry, boys. After two decades, the first film still does more with one skyscraper than Live Free or Die Hard does with an entire country.",2007-06-27,494020502,Live Free or Die Hard +Kenneth Turan,fresh,0337978,Los Angeles Times,That this implausible stew works as well as it does is in part a tribute to the unlikely but enjoyable rapport that forms between old school McClane and his youthful computer-savvy companion.,2007-06-26,494020502,Live Free or Die Hard +Leonard Klady,none,0113347,Variety,,2009-03-27,10836,How to Make an American Quilt +Derek Adams,none,0113347,Time Out,,2006-06-24,10836,How to Make an American Quilt +Caryn James,none,0113347,New York Times,,2003-05-20,10836,How to Make an American Quilt +Peter Stack,fresh,0113347,San Francisco Chronicle,,2002-06-18,10836,How to Make an American Quilt +,none,0113347,Globe and Mail,,2002-04-12,10836,How to Make an American Quilt +Linton Weeks,none,0113347,Washington Post,,2000-01-01,10836,How to Make an American Quilt +,fresh,0113347,USA Today,"Despite its hard-sell coming attraction and pot-smoking granny singing rock oldies, How to Make an American Quilt turns out to be a wealth of old-style Hollywood magic.",2000-01-01,10836,How to Make an American Quilt +James Berardinelli,fresh,0113347,ReelViews,,2000-01-01,10836,How to Make an American Quilt +Joe Baltake,none,0113347,Sacramento Bee,,2000-01-01,10836,How to Make an American Quilt +Roger Ebert,rotten,0113347,Chicago Sun-Times,,2000-01-01,10836,How to Make an American Quilt +Eve Zibart,none,0113347,Washington Post,,2000-01-01,10836,How to Make an American Quilt +Susan Stark,fresh,0113347,Detroit News,,2000-01-01,10836,How to Make an American Quilt +,fresh,0113347,Entertainment Weekly,,1995-10-06,10836,How to Make an American Quilt +Michael Wilmington,fresh,0047478,Chicago Tribune,The greatest movie ever made about warriors and battle.,2013-03-26,16992,Shichinin no samurai +,fresh,0047478,TIME Magazine,"Again and again, Kurosawa sends a dark thrill through his audience with a touch of sensuous physical reality.",2009-04-20,16992,Shichinin no samurai +Dave Kehr,fresh,0047478,Chicago Reader,"Kurosawa's film is a model of long-form construction, ably fitting its asides and anecdotes into a powerful suspense structure that endures for all of the film's 208 minutes.",2007-03-01,16992,Shichinin no samurai +Variety Staff,fresh,0047478,Variety,"Besides the well-manned battlescenes, the pic has a good feeling for characterization and time.",2007-03-01,16992,Shichinin no samurai +,fresh,0047478,Time Out,The epic action scenes involving cavalry and samurai are still without peer.,2006-06-24,16992,Shichinin no samurai +James Berardinelli,fresh,0047478,ReelViews,Seven Samurai is an unforgettable masterpiece -- the work of one of the world's greatest filmmakers at the height of his powers.,2003-05-29,16992,Shichinin no samurai +Bosley Crowther,fresh,0047478,New York Times,"[Kurosawa] has loaded his film with unusual and exciting physical incidents and made the whole thing graphic in a hard, realistic western style.",2003-05-20,16992,Shichinin no samurai +Glenn Lovell,fresh,0047478,San Jose Mercury News,The archetypal action classic.,2002-10-24,16992,Shichinin no samurai +Desson Thomson,fresh,0047478,Washington Post,The greatest action movie ever made.,2002-09-27,16992,Shichinin no samurai +Ty Burr,fresh,0047478,Boston Globe,"Moves like hot mercury, and it draws a viewer so thoroughly into its world that real life can seem thick and dull when the lights come up.",2002-09-06,16992,Shichinin no samurai +J. Hoberman,fresh,0047478,Village Voice,"Rich in detail, vivid in characterization, leisurely in exposition, this 207-minute epic is bravura filmmaking.",2002-08-27,16992,Shichinin no samurai +Roger Ebert,fresh,0047478,Chicago Sun-Times,"Akira Kurosawa's The Seven Samurai (1954) is not only a great film in its own right, but the source of a genre that would flow through the rest of the century.",2001-08-28,16992,Shichinin no samurai +Laura Shapiro,fresh,0114148,Newsweek,"Just about everything in this lavish, animated feature is for the pigtail set.",2008-09-02,9544,Pocahontas +Richard Corliss,fresh,0114148,TIME Magazine,"[A] handsome, deeply felt, even more deeply reverent animated musical.",2008-09-02,9544,Pocahontas +Jonathan Rosenbaum,fresh,0114148,Chicago Reader,Overall this seems like a reasonable stab at an impossible agenda.,2008-09-02,9544,Pocahontas +Rita Kempley,rotten,0114148,Washington Post,All Disney has really done in its disappointing 33rd animated feature is revive the stereotype of the Noble Savage.,2008-09-02,9544,Pocahontas +Jeremy Gerard,fresh,0114148,Variety,The Disney artists have created a vivid palette for the picture.,2008-05-26,9544,Pocahontas +Owen Gleiberman,rotten,0114148,Entertainment Weekly,Why make a Disney cartoon and take all the fun out of it?,2007-02-27,9544,Pocahontas +,rotten,0114148,Time Out,"Pocahontas can't get stirred dramatically for political correctness, the finale will please nobody, and the songs are duff. That said, there are enough incidental felicities to pass the time pleasantly.",2006-06-24,9544,Pocahontas +Janet Maslin,fresh,0114148,New York Times,Any damage such revisionist history may impose on young minds is offset by the honestly inspiring thoughts Pocahontas offers.,2003-05-20,9544,Pocahontas +Peter Stack,fresh,0114148,San Francisco Chronicle,"Disney's 33rd animated feature, and its first with characters based on real people, is a stunning movie with clever twists, vivid characterizations, insightful songs and a surprising harvest of revisionist history.",2002-06-18,9544,Pocahontas +Peter Travers,fresh,0114148,Rolling Stone,"Disney deserves praise for raising the ante on its ambitions in animation. Next time, though, a little less civics lesson and a little more heart.",2001-05-12,9544,Pocahontas +Kenneth Turan,rotten,0114148,Los Angeles Times,"Adult viewers, spoiled by what has come before, may feel that this film, which relates the legendary romance between a chief's daughter and English adventurer John Smith in the New World, is more by-the-numbers than inspired.",2001-02-13,9544,Pocahontas +Desson Thomson,rotten,0114148,Washington Post,"As for the songs, they're guaranteed to keep your shoes glued to the floor",2000-01-01,9544,Pocahontas +Mike Clark,fresh,0114148,USA Today,"Imagine a cult Disney cartoon, for this may be it.",2000-01-01,9544,Pocahontas +James Berardinelli,fresh,0114148,ReelViews,"Taking advantage of the studio's breathtakingly intricate animation, directors Mike Gabriel and Eric Goldberg have breathed vitality into this, the fifth 'new wave' Disney animated picture.",2000-01-01,9544,Pocahontas +Roger Ebert,fresh,0114148,Chicago Sun-Times,"Pocahontas is the best-looking of the modern Disney animated features, and one of the more thoughtful: It is about real issues, even if it treats them with naive idealism.",2000-01-01,9544,Pocahontas +Derek Elley,none,0114916,Variety,,2009-03-26,13234,When Night Is Falling +,none,0114916,Time Out,,2006-01-26,13234,When Night Is Falling +Stephen Holden,none,0114916,New York Times,,2003-05-20,13234,When Night Is Falling +,none,0114916,Globe and Mail,,2002-04-12,13234,When Night Is Falling +Jack Mathews,rotten,0114916,Los Angeles Times,"It is so focused on its own boldness, its dare-to-shock sensuality (the film got an NC-17 from the MPAA, but is being released unrated), that nothing else comes through.",2001-02-13,13234,When Night Is Falling +Roger Ebert,rotten,0114916,Chicago Sun-Times,When Night is Falling has too many unintended laughs for its passion to be convincing.,2000-01-01,13234,When Night Is Falling +Edward Guthmann,fresh,0114916,San Francisco Chronicle,"Rozema is a fabulist with a strong visual sense, and she creates a distinctive, enclosed world to illustrate Camille's odyssey.",2000-01-01,13234,When Night Is Falling +James Berardinelli,rotten,0114916,ReelViews,"Symbols are supposed to be subtle, but Rozema is intent upon bludgeoning the audience with them.",2000-01-01,13234,When Night Is Falling +Doug Thomas,fresh,0114814,Seattle Times,"An imaginative, entertaining crime mystery with plenty of nerve and vigor.",2013-06-18,16303,The Usual Suspects +Jay Boyar,fresh,0114814,Orlando Sentinel,"If the pleasures of The Usual Suspects are the more superficial ones of ingenuity and style, those are abundantly available. The twists and turns of the plot are an awful lot of fun, while the ending is genuinely satisfying and surprising.",2013-06-18,16303,The Usual Suspects +Anthony Lane,fresh,0114814,New Yorker,"In a season of fat blockbusters, a picture as brainy, bitter, and compact as this one comes as a shock and a treat.",2013-06-18,16303,The Usual Suspects +Michael Wilmington,fresh,0114814,Chicago Tribune,"It's a nerve-shredding suspense movie about corruption, a bravura actor's show full of deliciously twisted cops and robbers, and a complex riddle packed with unexpected turns.",2013-06-18,16303,The Usual Suspects +Jack Kroll,fresh,0114814,Newsweek,"For many true movie fiends, noir is the key American movie type, and the most fun when it's done right. The Usual Suspects is done right.",2013-01-18,16303,The Usual Suspects +Jonathan Rosenbaum,rotten,0114814,Chicago Reader,"I didn't believe this story for a minute, even in movie terms -- though it's less offensive than a piece of junk like Apt Pupil, Singer's subsequent feature.",2011-03-28,16303,The Usual Suspects +Todd McCarthy,fresh,0114814,Variety,A terrific cast of exciting actors socks over this absorbingly complicated yarn that's been spun in seductively slick fashion by director Bryan Singer.,2008-10-18,16303,The Usual Suspects +Geoff Andrew,fresh,0114814,Time Out,"Singer creates a classy, thought-provoking mystery that is pleasingly old-fashioned and absolutely modern in the sly, slightly self-conscious play it makes with myth and methods of storytelling.",2006-06-24,16303,The Usual Suspects +Janet Maslin,fresh,0114814,New York Times,"This movie finally isn't anything more than an intricate feat of gamesmanship, but it's still quite something to see.",2003-05-20,16303,The Usual Suspects +Peter Travers,fresh,0114814,Rolling Stone,"The Usual Suspects is the freshest, funniest and scariest crime thriller to come along since Pulp Fiction.",2001-05-12,16303,The Usual Suspects +Kenneth Turan,fresh,0114814,Los Angeles Times,"But like a tale from the Arabian Nights, told for the sheer pleasure of storytelling, this elegant puzzle not only enjoys showing off, it also has something to show.",2001-02-13,16303,The Usual Suspects +Joe Baltake,fresh,0114814,Sacramento Bee,"Nothing is what it seems in this layered, velvety movie (which was shot in handsome wide-screen format) -- the truth keeps shifting -- and nothing matters either.",2000-01-01,16303,The Usual Suspects +James Berardinelli,fresh,0114814,ReelViews,"The Usual Suspects is an accomplished synthesis of noir elements and, as such, is an entertaining entry to the genre.",2000-01-01,16303,The Usual Suspects +Sean Means,fresh,0114814,Film.com,"Next to the steady diet of Hollywood formula, contrived plots and situations a regular moviegoer can spot a mile off, The Usual Suspects is something quite different: A movie that's smarter than you are.",2000-01-01,16303,The Usual Suspects +Andy Spletzer,fresh,0114814,Film.com,"After I first saw the film, I recommended it to people as an entertaining and commercial crime thriller; a standard story done very well. And then I saw it again. The movie is so much better the second time.",2000-01-01,16303,The Usual Suspects +Hal Hinson,fresh,0114814,Washington Post,"The twist at the end is a corker, but crucial questions remain unanswered. What's interesting, though, is how little this intrudes on our enjoyment.",2000-01-01,16303,The Usual Suspects +Mike Clark,fresh,0114814,USA Today,Director Bryan Singer gives his film enough surface flash to entertain future late-night cable possibilities.,2000-01-01,16303,The Usual Suspects +Mick LaSalle,fresh,0114814,San Francisco Chronicle,"As entertainment, the film is a lukewarm experience. But as a piece of construction, The Usual Suspects is a slick bit of business.",2000-01-01,16303,The Usual Suspects +Tom Keogh,fresh,0114814,Film.com,"Lots of fun and a very handsome, widescreen production by director Bryan Singer, who co-wrote the original script with once-and-future partner (and ex-private detective) Christopher McQuarrie.",2000-01-01,16303,The Usual Suspects +Roger Ebert,rotten,0114814,Chicago Sun-Times,"Once again, my comprehension began to slip, and finally I wrote down: 'To the degree that I do understand, I don't care.'",2000-01-01,16303,The Usual Suspects +Owen Gleiberman,fresh,0113819,Entertainment Weekly,,2011-09-07,13502,Mighty Aphrodite +Todd McCarthy,none,0113819,Variety,,2008-06-09,13502,Mighty Aphrodite +Derek Adams,none,0113819,Time Out,,2006-06-24,13502,Mighty Aphrodite +Janet Maslin,none,0113819,New York Times,,2003-05-20,13502,Mighty Aphrodite +Leah Garchik,fresh,0113819,San Francisco Chronicle,,2002-06-18,13502,Mighty Aphrodite +,none,0113819,Globe and Mail,,2002-04-12,13502,Mighty Aphrodite +Peter Travers,none,0113819,Rolling Stone,,2001-05-12,13502,Mighty Aphrodite +Kenneth Turan,none,0113819,Los Angeles Times,,2001-02-13,13502,Mighty Aphrodite +Mike Clark,rotten,0113819,USA Today,"Were Mira Sorvino's all-redeeming, possibly best- list-bound performance to melt away, it would immediately be obvious how malnourished this amiably minor effort is.",2000-01-01,13502,Mighty Aphrodite +Roger Ebert,fresh,0113819,Chicago Sun-Times,,2000-01-01,13502,Mighty Aphrodite +Joe Baltake,none,0113819,Sacramento Bee,,2000-01-01,13502,Mighty Aphrodite +,none,0113819,Washington Post,,2000-01-01,13502,Mighty Aphrodite +Susan Stark,rotten,0113819,Detroit News,,2000-01-01,13502,Mighty Aphrodite +James Berardinelli,fresh,0113819,ReelViews,,2000-01-01,13502,Mighty Aphrodite +,fresh,0113819,Entertainment Weekly,,1995-10-27,13502,Mighty Aphrodite +Janet Maslin,none,0110299,New York Times,,2003-05-20,19570,Lamerica +James Berardinelli,fresh,0110299,ReelViews,,2000-01-01,19570,Lamerica +Peter Stack,none,0110299,San Francisco Chronicle,,2000-01-01,19570,Lamerica +Stanley Kauffmann,none,0110299,The New Republic,,2000-01-01,19570,Lamerica +Joe Leydon,none,0112499,Variety,,2009-03-26,11156,The Big Green +Stephen Holden,none,0112499,New York Times,,2003-05-20,11156,The Big Green +Roger Ebert,rotten,0112499,Chicago Sun-Times,,2000-01-01,11156,The Big Green +William F. Powers,none,0112499,Washington Post,,2000-01-01,11156,The Big Green +Peter Stack,none,0112499,San Francisco Chronicle,,2000-01-01,11156,The Big Green +Melissa Anderson,rotten,0791304,Time Out,,2011-11-17,655713889,Georgia Rule +J. R. Jones,rotten,0791304,Chicago Reader,"The confused script trades in such heavy topics as alcoholism and child sexual abuse, but every dramatic scene plays like one of those schmaltzy Happy Days moments that inevitably drew a big 'Awwwwww!' from the studio audience.",2007-12-03,655713889,Georgia Rule +Melissa Anderson,rotten,0791304,Time Out New York,The film is unforgivable.,2007-05-19,655713889,Georgia Rule +Rex Reed,rotten,0791304,New York Observer,"Time for a new book by Jane Fonda, and this time I expect a full chapter on how she got snookered into doing Georgia Rule.",2007-05-16,655713889,Georgia Rule +,none,0791304,St. Louis Post-Dispatch,,2007-05-12,655713889,Georgia Rule +James Berardinelli,rotten,0791304,ReelViews,"The central problem with the movie isn't that it deals with several hot-button topics, but that it addresses them with a shocking lack of emotional honesty.",2007-05-12,655713889,Georgia Rule +Claudia Puig,rotten,0791304,USA Today,Georgia Rule doesn't make you feel good; it makes you queasy.,2007-05-11,655713889,Georgia Rule +Peter Howell,rotten,0791304,Toronto Star,"You'd think that decree No. 1 for a movie about rules would be to know exactly what kind of picture you're making and selling. Georgia Rule fails that basic test, and a whole lot of other ones besides.",2007-05-11,655713889,Georgia Rule +Jeff Shannon,fresh,0791304,Seattle Times,As an acting showcase -- the supporting roles are as rich as the leads -- Georgia Rule is undeniably one of the year's best American dramedies.,2007-05-11,655713889,Georgia Rule +Mick LaSalle,rotten,0791304,San Francisco Chronicle,"It's a creepy, tone-deaf movie about three generations of women.",2007-05-11,655713889,Georgia Rule +Stephen Whitty,rotten,0791304,Newark Star-Ledger,A murky blend of melodrama and comedy.,2007-05-11,655713889,Georgia Rule +Kyle Smith,rotten,0791304,New York Post,"Do not take your mom to Georgia Rule unless she's Roseanne Barr. You may expect a three-generational chick flick, but what you get is a child-rape comedy.",2007-05-11,655713889,Georgia Rule +Elizabeth Weitzman,rotten,0791304,New York Daily News,Misguided at best and repellent at worst.,2007-05-11,655713889,Georgia Rule +Rene Rodriguez,rotten,0791304,Miami Herald,"You can see what they are striving for, but Georgia Rule is so artificial, it feels like more of a flow chart than a slice of life.",2007-05-11,655713889,Georgia Rule +Liam Lacey,rotten,0791304,Globe and Mail,"Not to excuse her apparent lack of professionalism, but can you blame Lohan for showing up to work in bad shape?",2007-05-11,655713889,Georgia Rule +Terry Lawson,rotten,0791304,Detroit Free Press,"If there is a 'What Were They Thinking?' Hall of Shame, there's a whole wall preserved for Georgia Rule, a feel-good, mothers-and-daughters comedy about child sexual abuse.",2007-05-11,655713889,Georgia Rule +Lisa Kennedy,fresh,0791304,Denver Post,"There's little gussied up in this surprisingly tart mother-child-grandchild reunion picture, written by Mark Andrus.",2007-05-11,655713889,Georgia Rule +Richard Roeper,rotten,0791304,Chicago Sun-Times,It's a shame Lohan's best work to date is bogged down in a film that wants to be in the same league as Terms of Endearment but is only marginally better than Divine Secrets of the Ya-Ya Sisterhood.,2007-05-11,655713889,Georgia Rule +Ty Burr,rotten,0791304,Boston Globe,"Georgia Rule is a bad idea dreadfully executed -- On Golden Pond with fellatio jokes and whimsical incest melodrama and Fonda playing her dad (who, more and more, she eerily resembles).",2007-05-11,655713889,Georgia Rule +Joe Morgenstern,rotten,0791304,Wall Street Journal,"Certain words should be reserved for special occasions. 'Abysmal' is one of them, and Georgia Rule is as special as such occasions get.",2007-05-10,655713889,Georgia Rule +Brendan Kelly,none,0113541,Variety,,2012-02-23,770718383,Kids of the Round Table +Owen Gleiberman,rotten,0113321,Entertainment Weekly,,2011-09-07,10161,Home for the Holidays +Emanuel Levy,fresh,0113321,Variety,"Foster's second directorial effort is a vividly drawn if too episodic portrait of an eccentric family, well acted by the entire cast, especially Holly Hunter and Robery Downey Jr.",2008-10-18,10161,Home for the Holidays +,rotten,0113321,Time Out,A modest film (in every sense) which pushes the gags too hard.,2006-02-09,10161,Home for the Holidays +Janet Maslin,rotten,0113321,New York Times,Spirited but uneven.,2003-05-20,10161,Home for the Holidays +Mick LaSalle,fresh,0113321,San Francisco Chronicle,"Neither caustic nor sentimental, it's a film that maybe half the people on Earth have at one time considered writing.",2002-06-18,10161,Home for the Holidays +Peter Travers,rotten,0113321,Rolling Stone,"Foster keeps the party hopping, although more dark humor would have helped before she winds it down with sentiment and bromides.",2001-05-12,10161,Home for the Holidays +Kenneth Turan,rotten,0113321,Los Angeles Times,"Foster and Richter, of course, want to do more than make audiences laugh; they want us to be touched by their characters' humanity and take an interest in a budding romance, but that rarely is the case.",2001-02-13,10161,Home for the Holidays +Susan Stark,fresh,0113321,Detroit News,,2000-01-01,10161,Home for the Holidays +Rita Kempley,rotten,0113321,Washington Post,"With many of the conversations going on simultaneously, it's difficult -- sometimes even impossible -- to know who is saying what and to whom.",2000-01-01,10161,Home for the Holidays +Susan Wloszczyna,fresh,0113321,USA Today,"With her keen actor's instincts, Foster piles on plenty for her terrific cast to chew on and for us to savor.",2000-01-01,10161,Home for the Holidays +Roger Ebert,fresh,0113321,Chicago Sun-Times,"The movie, which is about the Thanksgiving family reunion from hell, is not exactly a comedy and yet not a drama, either. Like many family reunions, it has a little of both elements, and the strong sense that madness is being held just out of sight.",2000-01-01,10161,Home for the Holidays +James Berardinelli,rotten,0113321,ReelViews,"Aside from a few effective, low-key scenes, the movie doesn't involve the viewer.",2000-01-01,10161,Home for the Holidays +,rotten,0113321,Entertainment Weekly,,1995-11-03,10161,Home for the Holidays +Derek Elley,none,0110877,Variety,,2012-02-23,10294,Il postino +Lisa Schwarzbaum,fresh,0110877,Entertainment Weekly,,2011-09-07,10294,Il postino +,fresh,0110877,Entertainment Weekly,,2011-04-04,10294,Il postino +David Rooney,none,0110877,Variety,,2008-09-02,10294,Il postino +Derek Adams,none,0110877,Time Out,,2006-06-24,10294,Il postino +Janet Maslin,none,0110877,New York Times,,2003-05-20,10294,Il postino +Peter Stack,fresh,0110877,San Francisco Chronicle,,2002-06-18,10294,Il postino +Kenneth Turan,none,0110877,Los Angeles Times,,2001-02-13,10294,Il postino +James Berardinelli,fresh,0110877,ReelViews,,2000-01-01,10294,Il postino +,none,0110877,Washington Post,,2000-01-01,10294,Il postino +,fresh,0110877,USA Today,"The Postman (Il Postino) is slight, but it's tough to imagine anyone not liking it.",2000-01-01,10294,Il postino +Roger Ebert,fresh,0110877,Chicago Sun-Times,,2000-01-01,10294,Il postino +Joe Baltake,none,0110877,Sacramento Bee,,2000-01-01,10294,Il postino +Brendan Kelly,none,0112714,Variety,,2009-03-26,771032448,Le confessionnal +,none,0112714,Time Out,,2006-06-24,771032448,Le confessionnal +,none,0113419,Entertainment Weekly,,2009-11-06,10854,The Indian in the Cupboard +,none,0113419,Variety,,2009-03-26,10854,The Indian in the Cupboard +David Ansen,none,0113419,Newsweek,,2008-11-04,10854,The Indian in the Cupboard +Geoff Andrew,none,0113419,Time Out,,2006-02-09,10854,The Indian in the Cupboard +Janet Maslin,none,0113419,New York Times,,2004-08-30,10854,The Indian in the Cupboard +,none,0113419,Globe and Mail,,2002-04-12,10854,The Indian in the Cupboard +James Berardinelli,fresh,0113419,ReelViews,,2000-01-01,10854,The Indian in the Cupboard +Roger Ebert,rotten,0113419,Chicago Sun-Times,,2000-01-01,10854,The Indian in the Cupboard +Joe Baltake,none,0113419,Sacramento Bee,,2000-01-01,10854,The Indian in the Cupboard +Frank Ahrens,none,0113419,Washington Post,,2000-01-01,10854,The Indian in the Cupboard +Joe Brown,none,0113419,Washington Post,,2000-01-01,10854,The Indian in the Cupboard +Edward Guthmann,none,0113419,San Francisco Chronicle,,2000-01-01,10854,The Indian in the Cupboard +Owen Gleiberman,fresh,0113862,Entertainment Weekly,,2011-09-07,10217,Mr. Holland's Opus +Emanuel Levy,fresh,0113862,Variety,"This idealized tribute to a charismatic teacher who devotes himself to music appreciation has the same old-fashioned texture and sticky sentimentality as Goodbye Mr. Chips (of 1939), but Dreyfuss gives an effective, surprisingly restrained performance",2007-01-29,10217,Mr. Holland's Opus +Derek Adams,none,0113862,Time Out,,2006-06-24,10217,Mr. Holland's Opus +Janet Maslin,none,0113862,New York Times,,2003-05-20,10217,Mr. Holland's Opus +Peter Stack,fresh,0113862,San Francisco Chronicle,,2002-06-18,10217,Mr. Holland's Opus +Peter Travers,none,0113862,Rolling Stone,,2001-05-12,10217,Mr. Holland's Opus +Jack Mathews,none,0113862,Los Angeles Times,,2001-02-13,10217,Mr. Holland's Opus +Joe Baltake,none,0113862,Sacramento Bee,,2000-01-01,10217,Mr. Holland's Opus +Susan Stark,fresh,0113862,Detroit News,,2000-01-01,10217,Mr. Holland's Opus +Mike Clark,rotten,0113862,USA Today,An overwrought Disney weeper.,2000-01-01,10217,Mr. Holland's Opus +James Berardinelli,fresh,0113862,ReelViews,,2000-01-01,10217,Mr. Holland's Opus +,none,0113862,Washington Post,,2000-01-01,10217,Mr. Holland's Opus +,fresh,0113862,Entertainment Weekly,,1995-12-29,10217,Mr. Holland's Opus +Godfrey Cheshire,rotten,0116126,Variety,"Full of very obvious spoofery, and funnier in concept than in execution.",2008-02-05,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Stephen Holden,fresh,0116126,New York Times,A free-for-all comic spoof that brings the 'hood' genre of Hollywood films full circle.,2004-08-30,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Susan Wloszczyna,rotten,0116126,USA Today,"Rude, crude and outrageous.",2000-01-01,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Esther Iverem,fresh,0116126,Washington Post,"Outrageous is the key word here. In many successful scenes, the Wayans deftly play on our assumptions and cliches.",2000-01-01,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Mick LaSalle,fresh,0116126,San Francisco Chronicle,"Things might be bad, the movie suggests, but they're not so bad you can't laugh.",2000-01-01,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Susan Stark,rotten,0116126,Detroit News,,2000-01-01,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +,rotten,0116126,Entertainment Weekly,,1800-01-01,17240,Don't Be a Menace to South Central While Drinking Your Juice in the Hood +Lisa Schwarzbaum,rotten,0118002,Entertainment Weekly,,2011-09-07,15133,Two If by Sea +Leonard Klady,none,0118002,Variety,,2008-10-18,15133,Two If by Sea +Geoff Andrew,none,0118002,Time Out,,2006-02-09,15133,Two If by Sea +Janet Maslin,none,0118002,New York Times,,2003-05-20,15133,Two If by Sea +Peter Travers,none,0118002,Rolling Stone,,2001-05-12,15133,Two If by Sea +Susan Stark,rotten,0118002,Detroit News,,2000-01-01,15133,Two If by Sea +Susan Wloszczyna,rotten,0118002,USA Today,[An] aimless romantic-comedy caper.,2000-01-01,15133,Two If by Sea +James Berardinelli,rotten,0118002,ReelViews,,2000-01-01,15133,Two If by Sea +Joe Baltake,none,0118002,Sacramento Bee,,2000-01-01,15133,Two If by Sea +Rita Kempley,none,0118002,Washington Post,,2000-01-01,15133,Two If by Sea +Peter Stack,none,0118002,San Francisco Chronicle,,2000-01-01,15133,Two If by Sea +,rotten,0118002,Entertainment Weekly,,1995-06-01,15133,Two If by Sea +Owen Gleiberman,rotten,0115683,Entertainment Weekly,,2011-09-07,11184,Bio-Dome +John Anderson,rotten,0115683,Los Angeles Times,"Despite the advances humankind has made since dragging itself out of the primordial ooze, Shore is a successful comedian.",2009-08-04,11184,Bio-Dome +,rotten,0115683,Entertainment Weekly,"Even with the low expectations any reasonable viewer brings to a Shore flick, this rates only stupid-plus.",2009-08-04,11184,Bio-Dome +Leonard Klady,rotten,0115683,Variety,It's not by any means inspired madness.,2009-03-26,11184,Bio-Dome +Stephen Holden,rotten,0115683,New York Times,Inept in almost every respect.,2003-05-20,11184,Bio-Dome +Peter Stack,rotten,0115683,San Francisco Chronicle,America faces the very real prospect that Pauly Shore is the most annoying comic alive.,2001-08-01,11184,Bio-Dome +Susan Stark,rotten,0115683,Detroit News,,2001-08-01,11184,Bio-Dome +Hal Hinson,rotten,0115683,Washington Post,A spoof of eco-consciousness starring one-man toxic spill Pauly Shore.,2001-08-01,11184,Bio-Dome +Geoff Andrew,none,0116839,Time Out,,2006-06-24,12839,Lawnmower Man 2: Beyond Cyberspace +Daniel M. Kimmel,fresh,0116839,Variety,"No one is going to see Lawnmower Man 2 for the acting, however; the film rises or falls on its special effects...",2005-04-29,12839,Lawnmower Man 2: Beyond Cyberspace +Stephen Holden,none,0116839,New York Times,,2003-05-20,12839,Lawnmower Man 2: Beyond Cyberspace +Susan Stark,rotten,0116839,Detroit News,,2000-01-01,12839,Lawnmower Man 2: Beyond Cyberspace +Richard Harrington,none,0116839,Washington Post,,2000-01-01,12839,Lawnmower Man 2: Beyond Cyberspace +Andy Seiler,rotten,0116839,USA Today,"Mowing the lawn might be more involving than watching this subpar sci-fi sequel, which manages to be complicated and witless at the same time.",2000-01-01,12839,Lawnmower Man 2: Beyond Cyberspace +Todd McCarthy,none,0114753,Variety,,2009-03-26,12799,Two Bits +Stephen Holden,none,0114753,New York Times,,2003-05-20,12799,Two Bits +Mick LaSalle,none,0114753,San Francisco Chronicle,,2002-06-18,12799,Two Bits +,none,0114753,Los Angeles Times,,2001-02-13,12799,Two Bits +Mike Clark,rotten,0114753,USA Today,"If King of the Hill couldn't draw patrons despite appearing on tons of 10-best lists, what's a comparably themed small-change remembrance gonna do?",2000-01-01,12799,Two Bits +Susan Stark,rotten,0114753,Detroit News,,2000-01-01,12799,Two Bits +James Berardinelli,fresh,0114753,ReelViews,,2000-01-01,12799,Two Bits +,rotten,0114753,Entertainment Weekly,,1995-11-22,12799,Two Bits +Lisa Schwarzbaum,fresh,0113149,Entertainment Weekly,,2011-09-07,15053,Gazon maudit +,none,0113149,Time Out,,2006-01-26,15053,Gazon maudit +,none,0113149,Los Angeles Times,,2001-02-14,15053,Gazon maudit +Janet Maslin,none,0113149,New York Times,,2000-01-01,15053,Gazon maudit +Joe Baltake,none,0113149,Sacramento Bee,,2000-01-01,15053,Gazon maudit +James Berardinelli,rotten,0113149,ReelViews,,2000-01-01,15053,Gazon maudit +Roger Ebert,rotten,0113149,Chicago Sun-Times,,2000-01-01,15053,Gazon maudit +Edward Guthmann,none,0113149,San Francisco Chronicle,,2000-01-01,15053,Gazon maudit +,none,0113149,Houston Chronicle,,2000-01-01,15053,Gazon maudit +Esther Iverem,none,0113149,Washington Post,,2000-01-01,15053,Gazon maudit +Susan Stark,rotten,0113149,Detroit News,,2000-01-01,15053,Gazon maudit +,fresh,0113149,Entertainment Weekly,,1995-01-18,15053,Gazon maudit +Owen Gleiberman,fresh,0116367,Entertainment Weekly,Imagine two movies plucked from opposite sides of the video store.,2008-11-18,12984,From Dusk Till Dawn +Todd McCarthy,fresh,0116367,Variety,"A deliriously trashy, exuberantly vulgar, lavishly appointed exploitation picture, this weird combo of road-kill movie and martial-arts vampire gorefest is made to order for the stimulation of teenage boys.",2008-11-18,12984,From Dusk Till Dawn +Jonathan Rosenbaum,fresh,0116367,Chicago Reader,"On a mindless exploitation level this is pretty good, but on other levels it seems to make promises that it fails to deliver on.",2008-11-18,12984,From Dusk Till Dawn +Hal Hinson,rotten,0116367,Washington Post,"A tired, humorless pastiche of various exploitation genres that is not the least bit imaginative in its campy deconstruction of conventions.",2008-11-18,12984,From Dusk Till Dawn +,fresh,0116367,Time Out,"Rodriguez has a lot of fun dreaming up cool ways to kill people (he's making this his life's work), but he also gets something resembling a performance from Tarantino and transforms Clooney into a full-fledged movie star.",2006-01-26,12984,From Dusk Till Dawn +Janet Maslin,rotten,0116367,New York Times,"Mr. Rodriguez demonstrates his talents more clearly than ever -- he's visually inventive, quick-witted and a fabulous editor -- while still hampering himself with sophomoric material.",2003-05-20,12984,From Dusk Till Dawn +Mick LaSalle,rotten,0116367,San Francisco Chronicle,The picture shows what happens when a writer (Tarantino) and a director (Rodriguez) come together and reinforce each other's worst tendencies and misconceptions.,2002-06-18,12984,From Dusk Till Dawn +Andy Seiler,rotten,0116367,USA Today,"As the bloodsuckers attack our 'heroes' again and again, you feel like you're watching a video game -- from dusk to dawn.",2000-01-01,12984,From Dusk Till Dawn +James Berardinelli,fresh,0116367,ReelViews,"It's great fun, but certainly not great art.",2000-01-01,12984,From Dusk Till Dawn +Joe Baltake,fresh,0116367,Sacramento Bee,"The sickest, most perverted movie within memory. Guiltily, I liked it. But what the hell is it?",2000-01-01,12984,From Dusk Till Dawn +Desson Thomson,rotten,0116367,Washington Post,"The movie, which treats you with contempt for even watching it, is a monument to its own lack of imagination.",2000-01-01,12984,From Dusk Till Dawn +David Denby,none,0113010,New Yorker,,2010-11-02,14922,Fair Game +Brian Lowry,none,0113010,Variety,,2009-03-26,14922,Fair Game +,none,0113010,Time Out,,2006-01-26,14922,Fair Game +Stephen Holden,none,0113010,New York Times,,2003-05-20,14922,Fair Game +Mick LaSalle,fresh,0113010,San Francisco Chronicle,An enjoyable movie.,2002-06-18,14922,Fair Game +Liam Lacey,rotten,0113010,Globe and Mail,One could scavenge the thesaurus to find synonyms for 'awkward' to describe Crawford's performance.,2002-04-12,14922,Fair Game +Peter Travers,rotten,0113010,Rolling Stone,"Crawford packs a phallic pistol and traipses through the rain in a transparent slip. Share the fantasy, babe.",2001-05-12,14922,Fair Game +Kenneth Turan,rotten,0113010,Los Angeles Times,The lamest model-turned-actress movie since Lauren Hutton co-starred with Evel Knievel in the misbegotten Viva Knievel!,2001-02-13,14922,Fair Game +James Berardinelli,rotten,0113010,ReelViews,"Howlingly bad -- so awful, in fact, that it can actually be enjoyed on a certain level.",2000-01-01,14922,Fair Game +Hal Hinson,rotten,0113010,Washington Post,"The movie is fast, slick and dumb as a post.",2000-01-01,14922,Fair Game +Roger Ebert,rotten,0113010,Chicago Sun-Times,Works as a thriller for anyone who lives entirely in the present. Those with longer memories will find the film grows increasingly funny as it rolls along.,2000-01-01,14922,Fair Game +,rotten,0113010,Entertainment Weekly,,1995-11-03,14922,Fair Game +Stephen Garrett,fresh,0384642,Time Out New York,Will Ferrell has become the most unlikely embodiment of wholesome family fun since Fred MacMurray gave up film noir for My Three Sons.,2007-08-16,11,Kicking & Screaming +,none,0384642,Time Out,,2006-06-24,11,Kicking & Screaming +John Monaghan,rotten,0384642,Detroit Free Press,... barely watchable.,2005-05-21,11,Kicking & Screaming +Rex Reed,rotten,0384642,New York Observer,"A zero, but the title describes how the audience is likely to react, perfectly.",2005-05-19,11,Kicking & Screaming +Michael O'Sullivan,rotten,0384642,Washington Post,Ferrell is one of the film's few bright lights. It's a shame to hide that subversive beacon under a bushel of dully inspirational sports movie cliches.,2005-05-13,11,Kicking & Screaming +Ann Hornaday,rotten,0384642,Washington Post,"As lazy, bloated and TV-screen- friendly as shameless promos come.",2005-05-13,11,Kicking & Screaming +Malene Arpe,fresh,0384642,Toronto Star,If you're into Will Ferrell.,2005-05-13,11,Kicking & Screaming +Moira MacDonald,rotten,0384642,Seattle Times,"It just plods along, harmless but lifeless, going exactly where you think it's going.",2005-05-13,11,Kicking & Screaming +Mick LaSalle,rotten,0384642,San Francisco Chronicle,"Sit in a room by yourself, look at a blank screen for 90 minutes, and you'll have more of a chance of laughing at your own thoughts than you will at this movie.",2005-05-13,11,Kicking & Screaming +Roger Moore,rotten,0384642,Orlando Sentinel,Stop me if you've heard this before.,2005-05-13,11,Kicking & Screaming +Lisa Rose,fresh,0384642,Newark Star-Ledger,"Silly, mindless and derivative, but Duvall brings some bite to the proceedings and Ferrell is dependably amusing.",2005-05-13,11,Kicking & Screaming +Kyle Smith,rotten,0384642,New York Post,"Both Duvall and Mike Ditka, who plays himself and helps coach Phil's team, spend too much of the movie on the bench, and while they're there, the jokes run thin.",2005-05-13,11,Kicking & Screaming +Jami Bernard,rotten,0384642,New York Daily News,Even a soccer-savvy audience has better things to do -- like instilling unsportsmanlike behavior in their kids or sabotaging rival teams.,2005-05-13,11,Kicking & Screaming +Amy Biancolli,fresh,0384642,Houston Chronicle,"Most of the time, [the kids] go along. Most of the time we do, too.",2005-05-13,11,Kicking & Screaming +Leah McLaren,rotten,0384642,Globe and Mail,A limping string of laboured sight gags and sentimental cliches.,2005-05-13,11,Kicking & Screaming +Robert Denerstein,rotten,0384642,Denver Rocky Mountain News,"Doesn't quite deliver the comedy goods, but it plays well in spurts and, thanks to Ferrell, remains slightly off-kilter.",2005-05-13,11,Kicking & Screaming +Michael Booth,rotten,0384642,Denver Post,The sort of almost-there family movie for which half-stars exist in ratings.,2005-05-13,11,Kicking & Screaming +Ty Burr,rotten,0384642,Boston Globe,"Rather shakily directed by Jesse (son of Bob) Dylan, who possibly knows something about larger-than-life fathers.",2005-05-13,11,Kicking & Screaming +Kevin Crust,rotten,0384642,Los Angeles Times,The kind of movie that makes you wonder why anyone would even bother making it in the first place.,2005-05-12,11,Kicking & Screaming +Claudia Puig,rotten,0384642,USA Today,A good script is the most essential ingredient for a good movie. Hiring a comedian isn't enough.,2005-05-12,11,Kicking & Screaming +Emanuel Levy,fresh,0119683,Variety,Without a doubt the most emotionally powerful and handsomely mounted production of the story yet.,2009-03-26,10311,Les misérables +,rotten,0119683,Globe and Mail,,2002-04-24,10311,Les misérables +Jay Carr,fresh,0119683,Boston Globe,,2000-01-01,10311,Les misérables +Charles Taylor,rotten,0119683,Salon.com,"The movie's whole virtuous conception of Jean Valjean sticks in my craw. He's haunted and hunted, but he reeks of a reasoned, noble superiority that's a pretty sterile quality in the hero of an epic.",2000-01-01,10311,Les misérables +Janet Maslin,fresh,0119683,New York Times,"With a first-rate cast and a venerable storytelling style, it fluently condenses Victor Hugo's epic novel and retrieves some of its suspenseful momentum.",2000-01-01,10311,Les misérables +James Berardinelli,fresh,0119683,ReelViews,"Towering over the entire film is Liam Neeson, the Irish actor who seems at home in any kind of picture, whether it transpires in contemporary America, World War II Germany, or centuries-ago Scotland.",2000-01-01,10311,Les misérables +,fresh,0119683,USA Today,,2000-01-01,10311,Les misérables +Susan Stark,fresh,0119683,Detroit News,,2000-01-01,10311,Les misérables +Mick LaSalle,rotten,0119683,San Francisco Chronicle,"It never sinks, but it never really soars either, though here and there it hits a powerful moment.",2000-01-01,10311,Les misérables +Roger Ebert,rotten,0119683,Chicago Sun-Times,"It contains the moments of high drama, clearly outlines all the motivations, is easy to follow and lacks only passion. A story filled with outrage and idealism becomes somehow merely picturesque.",2000-01-01,10311,Les misérables +,rotten,0119683,Entertainment Weekly,,1998-05-01,10311,Les misérables +Lisa Schwarzbaum,rotten,0115644,Entertainment Weekly,,2011-09-07,11134,Bed of Roses +Brian Lowry,none,0115644,Variety,,2008-11-20,11134,Bed of Roses +,none,0115644,Time Out,,2006-01-26,11134,Bed of Roses +Janet Maslin,none,0115644,New York Times,,2003-05-20,11134,Bed of Roses +Jack Mathews,none,0115644,Los Angeles Times,,2001-02-13,11134,Bed of Roses +Roger Ebert,rotten,0115644,Chicago Sun-Times,,2000-01-01,11134,Bed of Roses +Mike Clark,rotten,0115644,USA Today,"Don't blame the leads, but the movie has less emotional resonance than an old FTD florist commercial with Merlin Olsen.",2000-01-01,11134,Bed of Roses +Joe Baltake,none,0115644,Sacramento Bee,,2000-01-01,11134,Bed of Roses +Mick LaSalle,none,0115644,San Francisco Chronicle,,2000-01-01,11134,Bed of Roses +James Berardinelli,fresh,0115644,ReelViews,,2000-01-01,11134,Bed of Roses +Susan Stark,rotten,0115644,Detroit News,,2000-01-01,11134,Bed of Roses +Hal Hinson,none,0115644,Washington Post,,2000-01-01,11134,Bed of Roses +,rotten,0115644,Entertainment Weekly,,1995-06-01,11134,Bed of Roses +Lisa Schwarzbaum,rotten,0115676,Entertainment Weekly,,2011-09-07,12385,Big Bully +Dennis Harvey,none,0115676,Variety,,2009-03-26,12385,Big Bully +Stephen Holden,none,0115676,New York Times,,2003-05-20,12385,Big Bully +Kevin Thomas,none,0115676,Los Angeles Times,,2001-02-13,12385,Big Bully +Susan Wloszczyna,rotten,0115676,USA Today,A moronic buddy comedy with a fuzzy-wuzzy coating.,2000-01-01,12385,Big Bully +,rotten,0115676,Entertainment Weekly,,1996-01-26,12385,Big Bully +Ken Tucker,rotten,0114367,Entertainment Weekly,"Based on a short story by the great nutball sci-fi writer Philip K. Dick, Screamers is more like a high-pitched rip-off of Alien.",2010-07-06,13955,Screamers +Brendan Kelly,fresh,0114367,Variety,"A fun, fast-paced futuristic thriller with enough jolts per frame to keep even the most impatient action fan happy.",2009-03-26,13955,Screamers +Derek Adams,rotten,0114367,Time Out,"The design and effects teams have lent scale and impact to the futuristic locations and sets. If only Duguay's flashy, aimless direction had succeeded in filling these barren wastes and antiseptic interiors with something resembling human life.",2006-06-24,13955,Screamers +Stephen Holden,rotten,0114367,New York Times,"Until it succumbs to one cliche too many, Screamers, which was directed by Christian Duguay, does an efficient job of generating a stomach-knotting tension.",2003-05-20,13955,Screamers +Jack Mathews,rotten,0114367,Los Angeles Times,There's nothing exhilarating or enjoyable in any of this.,2001-02-13,13955,Screamers +Susan Stark,rotten,0114367,Detroit News,,2000-01-01,13955,Screamers +James Berardinelli,fresh,0114367,ReelViews,"Screamers oozes atmosphere. It's a dark film that borrows heavily from the likes of the Alien films, Dune, Blade Runner, and John Carpenter's updated The Thing.",2000-01-01,13955,Screamers +Susan Wloszczyna,rotten,0114367,USA Today,"A pile of recycled space junk, it alienates even while flinging body parts into the audience's yawning faces.",2000-01-01,13955,Screamers +Roger Ebert,rotten,0114367,Chicago Sun-Times,It's not exactly a bad movie; it's made with a certain imagination and intelligence. But its future is so grungy and grim it makes our current mess look like Utopia.,2000-01-01,13955,Screamers +Mick LaSalle,rotten,0114367,San Francisco Chronicle,In its last minutes Screamers becomes the last thing it intends to be -- laughable.,2000-01-01,13955,Screamers +Dave Kehr,fresh,0113973,New York Daily News,"As recorded in the great wealth of documentary footage Ofteringer has assembled, the cheekbones slowly collapse and the blue eyes become watery, their owner becoming more and more dependent on hard drugs and fast living.",2013-08-02,770745893,Nico Icon +Bruce Diones,fresh,0113973,New Yorker,"With extraordinary technique, Ofteringer paints a moody, melancholy picture of a legend who decayed into the ghost of herself.",2013-08-02,770745893,Nico Icon +Owen Gleiberman,fresh,0113973,Entertainment Weekly,,2011-09-07,770745893,Nico Icon +Dennis Harvey,none,0113973,Variety,,2009-04-02,770745893,Nico Icon +,none,0113973,Time Out,,2006-01-26,770745893,Nico Icon +Stephen Holden,fresh,0113973,New York Times,"That voyeuristic fascination with doomed glamour is one of the guilty pleasures of Susanne Ofteringer's utterly haunting documentary film, Nico Icon.",2003-05-20,770745893,Nico Icon +,none,0113973,Los Angeles Times,,2001-02-14,770745893,Nico Icon +Edward Guthmann,fresh,0113973,San Francisco Chronicle,"Nico-Icon is more than the investigation of a doomed celebrity: It's also a mirror reflecting her friends, her audience and pop culture.",2000-01-01,770745893,Nico Icon +Joe Baltake,none,0113973,Sacramento Bee,,2000-01-01,770745893,Nico Icon +James Berardinelli,rotten,0113973,ReelViews,"Though Nico Icon is replete with fascinating tidbits about the model-turned- singer's opinions and lovers, it does little to bring us understanding of the real person.",2000-01-01,770745893,Nico Icon +Roger Ebert,fresh,0113973,Chicago Sun-Times,"The movie has no moral or message, does not attempt to rehabilitate Nico as an anti-heroine, and finds mostly emptiness and sadness in her life. I have a feeling Nico would have enjoyed it.",2000-01-01,770745893,Nico Icon +,fresh,0113973,Entertainment Weekly,,1995-09-08,770745893,Nico Icon +Owen Gleiberman,fresh,0112744,Entertainment Weekly,,2011-09-07,14909,The Crossing Guard +David Rooney,none,0112744,Variety,,2009-03-26,14909,The Crossing Guard +,none,0112744,Time Out,,2006-02-09,14909,The Crossing Guard +Janet Maslin,none,0112744,New York Times,,2004-08-30,14909,The Crossing Guard +,none,0112744,Globe and Mail,,2002-04-12,14909,The Crossing Guard +Kenneth Turan,none,0112744,Los Angeles Times,,2001-02-13,14909,The Crossing Guard +Joe Baltake,none,0112744,Sacramento Bee,,2000-01-01,14909,The Crossing Guard +Desson Thomson,none,0112744,Washington Post,,2000-01-01,14909,The Crossing Guard +Roger Ebert,rotten,0112744,Chicago Sun-Times,,2000-01-01,14909,The Crossing Guard +Edward Guthmann,none,0112744,San Francisco Chronicle,,2000-01-01,14909,The Crossing Guard +Hal Hinson,none,0112744,Washington Post,,2000-01-01,14909,The Crossing Guard +Mike Clark,fresh,0112744,USA Today,"though Penn doesn't always seem to know where he's going, his movie doesn't altogether miss its destination.",2000-01-01,14909,The Crossing Guard +James Berardinelli,rotten,0112744,ReelViews,,2000-01-01,14909,The Crossing Guard +,fresh,0112744,Entertainment Weekly,,1995-11-16,14909,The Crossing Guard +Lisa Schwarzbaum,rotten,0116731,Entertainment Weekly,,2011-09-07,15422,The Juror +Brian Lowry,none,0116731,Variety,,2008-07-22,15422,The Juror +Geoff Andrew,none,0116731,Time Out,,2006-02-09,15422,The Juror +Janet Maslin,none,0116731,New York Times,,2004-08-30,15422,The Juror +Peter Stack,fresh,0116731,San Francisco Chronicle,,2002-06-18,15422,The Juror +Kenneth Turan,none,0116731,Los Angeles Times,,2001-02-13,15422,The Juror +Susan Stark,rotten,0116731,Detroit News,,2000-01-01,15422,The Juror +Stanley Kauffmann,none,0116731,The New Republic,,2000-01-01,15422,The Juror +Roger Ebert,rotten,0116731,Chicago Sun-Times,,2000-01-01,15422,The Juror +Joe Baltake,none,0116731,Sacramento Bee,,2000-01-01,15422,The Juror +Rita Kempley,none,0116731,Washington Post,,2000-01-01,15422,The Juror +Mike Clark,rotten,0116731,USA Today,Moore needs The Juror like she needs another scarlet letter; the 'D-for-dopey' here is hanging down to everyone's knees.,2000-01-01,15422,The Juror +James Berardinelli,rotten,0116731,ReelViews,,2000-01-01,15422,The Juror +,rotten,0116731,Entertainment Weekly,,1996-02-02,15422,The Juror +,none,0112445,Time Out,,2006-01-26,405589990,Badkonake sefid +Janet Maslin,none,0112445,New York Times,,2003-05-20,405589990,Badkonake sefid +Kenneth Turan,fresh,0112445,Los Angeles Times,"By putting itself in sync with the rhythms of everyday life, it offers a reminder that the simplest forms of filmmaking can be the most satisfying.",2001-02-14,405589990,Badkonake sefid +Jonathan Rosenbaum,none,0112445,Chicago Reader,,2000-01-01,405589990,Badkonake sefid +Edward Guthmann,fresh,0112445,San Francisco Chronicle,"We need to fall in love with Razieh to see the film properly, and we do.",2000-01-01,405589990,Badkonake sefid +Stanley Kauffmann,rotten,0112445,The New Republic,"Panahi has much the same kind of talent, a concern to make his film a kind of home for its characters, but he has not yet found [Kiarostami's] secret, how to find and hold the still point of the turning world.",2000-01-01,405589990,Badkonake sefid +Andy Spletzer,fresh,0112445,Film.com,"Raziah takes everything at face value, forcing us to look again at people and situations we would immediately judge as good or bad -- reason enough to see this film.",2000-01-01,405589990,Badkonake sefid +Tom Keogh,fresh,0112445,Film.com,Panahi brings film back to its elemental magic.,2000-01-01,405589990,Badkonake sefid +Joe Baltake,fresh,0112445,Sacramento Bee,"Memorably simple, memorably resonant.",2000-01-01,405589990,Badkonake sefid +Keith Simanton,rotten,0112445,Film.com,"There are LONG stretches of... well, real time.",2000-01-01,405589990,Badkonake sefid +James Berardinelli,fresh,0112445,ReelViews,"Those with the patience to sit through all eighty-five minutes will uncover a sublime, unconventionally engrossing story.",2000-01-01,405589990,Badkonake sefid +,none,0114660,Variety,,2012-02-23,13612,Things to Do in Denver When You're Dead +Todd McCarthy,none,0114660,Variety,,2008-11-21,13612,Things to Do in Denver When You're Dead +Geoff Andrew,none,0114660,Time Out,,2006-06-24,13612,Things to Do in Denver When You're Dead +Janet Maslin,none,0114660,New York Times,,2003-05-20,13612,Things to Do in Denver When You're Dead +Peter Travers,none,0114660,Rolling Stone,,2001-05-12,13612,Things to Do in Denver When You're Dead +Kenneth Turan,none,0114660,Los Angeles Times,,2001-02-13,13612,Things to Do in Denver When You're Dead +Susan Stark,rotten,0114660,Detroit News,,2000-01-01,13612,Things to Do in Denver When You're Dead +Mike Clark,fresh,0114660,USA Today,"Yet another debut about urban lowlifes filmed by wanna-be Tarantinos, Denver boasts a distinctive personality and a colorful cast that any police lineup would be proud to call its own.",2000-01-01,13612,Things to Do in Denver When You're Dead +Rita Kempley,none,0114660,Washington Post,,2000-01-01,13612,Things to Do in Denver When You're Dead +Joe Baltake,none,0114660,Sacramento Bee,,2000-01-01,13612,Things to Do in Denver When You're Dead +Mick LaSalle,none,0114660,San Francisco Chronicle,,2000-01-01,13612,Things to Do in Denver When You're Dead +Desson Thomson,none,0114660,Washington Post,,2000-01-01,13612,Things to Do in Denver When You're Dead +James Berardinelli,rotten,0114660,ReelViews,,2000-01-01,13612,Things to Do in Denver When You're Dead +Roger Ebert,rotten,0114660,Chicago Sun-Times,,2000-01-01,13612,Things to Do in Denver When You're Dead +,rotten,0114660,Entertainment Weekly,,1995-12-01,13612,Things to Do in Denver When You're Dead +,none,0112379,Variety,,2009-02-06,16030,Antonia +Geoff Andrew,none,0112379,Time Out,,2006-06-24,16030,Antonia +Jeff Millar,fresh,0112379,Houston Chronicle,Odd feminist fun.,2000-01-01,16030,Antonia +Joe Baltake,fresh,0112379,Sacramento Bee,"Here is female empowerment as you've never seen it on screen before, with the narrative daring to make no compromises at all.",2000-01-01,16030,Antonia +Janet Maslin,fresh,0112379,New York Times,Written and directed with quirky charm by Marleen Gorris.,2000-01-01,16030,Antonia +Tom Keogh,fresh,0112379,Film.com,"Pleasant, if too-precious.",2000-01-01,16030,Antonia +John Teegarden,fresh,0112379,Film.com,This is the rare film that does actually succeed in suggesting the experience of a lifetime.,2000-01-01,16030,Antonia +James Berardinelli,fresh,0112379,ReelViews,Gorris has fashioned a rare and wonderful world capable of provoking both laughter and tears -- sometimes at the same time.,2000-01-01,16030,Antonia +Roger Ebert,fresh,0112379,Chicago Sun-Times,"Even if [Gorris] is too optimistic, I am glad her movie made me feel hopeful and cheerful.",2000-01-01,16030,Antonia +Lyall Bush,fresh,0112379,Film.com,"It's an ambitious project, this telling of a whole life as well as its consequences, and Gorris manages to pull it off.",2000-01-01,16030,Antonia +Edward Guthmann,rotten,0112379,San Francisco Chronicle,"Antonia is obviously our point person here, but she's such a sour pickle that you never get to ease into her story.",2000-01-01,16030,Antonia +,fresh,0112379,Entertainment Weekly,,1995-09-12,16030,Antonia +Emanuel Levy,fresh,0114039,Variety,"Based on Clifton Taulbert's book, this sensitive memory film about the author's coming of age in the segregated South is an emotionally quiet saga, plaved against a tumultuous era in black communal life.",2007-01-10,11564,Once Upon a Time... When We Were Colored +,none,0114039,Time Out,,2006-06-24,11564,Once Upon a Time... When We Were Colored +Linda Lee,none,0114039,New York Times,,2003-05-21,11564,Once Upon a Time... When We Were Colored +Kevin Thomas,none,0114039,Los Angeles Times,,2001-02-14,11564,Once Upon a Time... When We Were Colored +Susan Stark,fresh,0114039,Detroit News,,2000-01-01,11564,Once Upon a Time... When We Were Colored +,none,0114039,Washington Post,,2000-01-01,11564,Once Upon a Time... When We Were Colored +James Berardinelli,fresh,0114039,ReelViews,,2000-01-01,11564,Once Upon a Time... When We Were Colored +Mike Clark,fresh,0114039,USA Today,"Though the film exhibits a vaguely nostalgic tone, it's hardly sugar-coated, displaying an increasingly discernible edge to its portrayal of racist realities.",2000-01-01,11564,Once Upon a Time... When We Were Colored +Mick LaSalle,none,0114039,San Francisco Chronicle,,2000-01-01,11564,Once Upon a Time... When We Were Colored +Roger Ebert,fresh,0114039,Chicago Sun-Times,,2000-01-01,11564,Once Upon a Time... When We Were Colored +Emanuel Levy,none,0113612,Variety,,2009-03-26,770673265,Last Summer in the Hamptons +Geoff Andrew,none,0113612,Time Out,,2006-06-24,770673265,Last Summer in the Hamptons +Janet Maslin,none,0113612,New York Times,,2003-05-20,770673265,Last Summer in the Hamptons +Kevin Thomas,none,0113612,Los Angeles Times,,2001-02-14,770673265,Last Summer in the Hamptons +Susan Stark,fresh,0113612,Detroit News,,2000-01-01,770673265,Last Summer in the Hamptons +James Berardinelli,fresh,0113612,ReelViews,,2000-01-01,770673265,Last Summer in the Hamptons +Joe Baltake,none,0113612,Sacramento Bee,,2000-01-01,770673265,Last Summer in the Hamptons +Mick LaSalle,none,0113612,San Francisco Chronicle,,2000-01-01,770673265,Last Summer in the Hamptons +Lisa Schwarzbaum,fresh,0112365,Entertainment Weekly,,2011-09-07,14485,Angels and Insects +Todd McCarthy,none,0112365,Variety,,2009-03-26,14485,Angels and Insects +Geoff Andrew,none,0112365,Time Out,,2006-02-09,14485,Angels and Insects +Janet Maslin,none,0112365,New York Times,,2004-08-30,14485,Angels and Insects +Stanley Kauffmann,none,0112365,The New Republic,,2002-10-06,14485,Angels and Insects +Kenneth Turan,none,0112365,Los Angeles Times,,2001-02-13,14485,Angels and Insects +,none,0112365,Houston Chronicle,,2000-01-01,14485,Angels and Insects +Roger Ebert,fresh,0112365,Chicago Sun-Times,,2000-01-01,14485,Angels and Insects +James Berardinelli,fresh,0112365,ReelViews,,2000-01-01,14485,Angels and Insects +Edward Guthmann,none,0112365,San Francisco Chronicle,,2000-01-01,14485,Angels and Insects +Mike Clark,fresh,0112365,USA Today,"No matter what you think this adaptation of A.S. Byatt's novella Morpho Eugenia sounds like, it's better and certainly kinkier than your best parlor-game guess.",2000-01-01,14485,Angels and Insects +Susan Stark,fresh,0112365,Detroit News,,2000-01-01,14485,Angels and Insects +Rita Kempley,none,0112365,Washington Post,,2000-01-01,14485,Angels and Insects +Joe Baltake,none,0112365,Sacramento Bee,,2000-01-01,14485,Angels and Insects +,fresh,0112365,Entertainment Weekly,,1995-06-01,14485,Angels and Insects +Brian Lowry,rotten,0118158,Variety,"The filmmakers take a rather facile, anachronistic ""Oprah""-esque approach toward the boys' feelings about their families and the Skipper's role as a ""tough love""-minded surrogate father.",2008-07-25,10752,White Squall +Trevor Johnston,fresh,0118158,Time Out,"This particular landlubber felt like jelly for the rest of the day, notwithstanding the hokey courtroom showdown that closes the picture.",2006-01-26,10752,White Squall +Janet Maslin,rotten,0118158,New York Times,"Despite great scenery, the distinctive visual ideas of Mr. Scott (Alien, Blade Runner) and the strong dramatic presence of Mr. Bridges, most of White Squall remains listless and tame.",2003-05-20,10752,White Squall +Peter Travers,fresh,0118158,Rolling Stone,"Typically, Bridges gives a deftly understated performance uncluttered by vanity or shallow pathos. No wonder he's not a star.",2001-05-12,10752,White Squall +Jack Mathews,fresh,0118158,Los Angeles Times,"The 20 or so minutes we spend with the Albatross in the squall is high adventure, to be sure. Everything else is ballast.",2001-02-13,10752,White Squall +Mike Clark,rotten,0118158,USA Today,Far too much of this handsomely mounted adventure is devoted to routinely dramatized adolescent minutiae.,2000-01-01,10752,White Squall +Kevin McManus,fresh,0118158,Washington Post,"The heavy-handedness of these final scenes will probably ruin the movie for some people, while others will enjoy its earnestness and energy. Count me among the latter group.",2000-01-01,10752,White Squall +Susan Stark,fresh,0118158,Detroit News,,2000-01-01,10752,White Squall +Jeff Millar,fresh,0118158,Houston Chronicle,"Director Ridley Scott, who more than anyone else founded post-1960s visceral filmmaking, is at the top of his form in White Squall.",2000-01-01,10752,White Squall +Richard Leiby,rotten,0118158,Washington Post,"The movie's a shipload of coming-of-age blather, supplemented with enough rolling-sea footage to make the audience yearn for both Dramamine and a decent drowning scene.",2000-01-01,10752,White Squall +James Berardinelli,fresh,0118158,ReelViews,"This film offers just about everything, including a twenty-minute white-knuckle sequence and a chance to shed a few tears. In short, it's first-rate entertainment.",2000-01-01,10752,White Squall +Peter Stack,rotten,0118158,San Francisco Chronicle,"Although only slightly more than two hours, the film seems becalmed for days in what seems a dramatic doldrum.",2000-01-01,10752,White Squall +Roger Ebert,fresh,0118158,Chicago Sun-Times,I enjoyed the movie for the sheer physical exuberance of its adventure.,2000-01-01,10752,White Squall +,fresh,0118158,Entertainment Weekly,"This rousing salute to the power of the elements, the lost innocence of the Kennedy era, and the goodness of young men when they are allowed to ripen with their shirts off is, above all, a tone poem.",1996-02-02,10752,White Squall +Leonard Klady,fresh,0116151,Variety,"It's a first-class, stylish farce with a brisk pace and cool wit.",2009-03-26,12002,Dunston Checks In +Derek Adams,rotten,0116151,Time Out,"An unruly orangutan plus an opulent hotel setting equals a natural disaster, or in this case a kids' movie.",2006-01-26,12002,Dunston Checks In +Stephen Holden,none,0116151,New York Times,,2003-05-20,12002,Dunston Checks In +Kevin Thomas,none,0116151,Los Angeles Times,,2001-02-13,12002,Dunston Checks In +James Berardinelli,rotten,0116151,ReelViews,"There isn't much of a story. The minimal plot exists exclusively to get the orangutan Dunston (played by ""Sam"") into as many odd, potentially-comic circumstances as possible.",2000-01-01,12002,Dunston Checks In +Susan Stark,rotten,0116151,Detroit News,,2000-01-01,12002,Dunston Checks In +Joe Baltake,none,0116151,Sacramento Bee,,2000-01-01,12002,Dunston Checks In +,none,0116151,Washington Post,,2000-01-01,12002,Dunston Checks In +Mick LaSalle,none,0116151,San Francisco Chronicle,,2000-01-01,12002,Dunston Checks In +,rotten,0116151,Entertainment Weekly,,1996-01-12,12002,Dunston Checks In +Cliff Doerksen,rotten,0779982,Time Out,,2011-11-17,647845018,Black Sheep +Nigel Floyd,fresh,0779982,Time Out,"The performances may be uneven, but the flawed characters are believable, the sheep surprisingly scary and the animal antics often laugh-out-loud funny.",2007-10-10,647845018,Black Sheep +Bruce Westbrook,fresh,0779982,Houston Chronicle,This lurid lunacy from New Zealand is a horror-humor cross-breed of animal lore and giddy gore.,2007-08-10,647845018,Black Sheep +,none,0779982,St. Louis Post-Dispatch,,2007-08-04,647845018,Black Sheep +Terry Lawson,fresh,0779982,Detroit Free Press,"Anyone lacking a taste for red meat will likely say bah to the one-joke juiciness of Black Sheep, but ovine enthusiasts will be licking their chops.",2007-08-03,647845018,Black Sheep +Andrea Gronvall,rotten,0779982,Chicago Reader,Stunning vistas of New Zealand's rolling countryside aren't enough to carry this lame 2006 horror spoof about a lab experiment gone awry.,2007-07-11,647845018,Black Sheep +Andrew Sarris,fresh,0779982,New York Observer,The most gruesomely satisfying spectacle for hard-core environmentalists would be that of a group of foreign investors in the evil enterprise being gobbled up by a flock of rampaging sheep.,2007-07-11,647845018,Black Sheep +Bruce Newman,rotten,0779982,San Jose Mercury News,"...Black Sheep never rises above sensation and splatter, or goes beyond the one thing it does best: It bites.",2007-07-06,647845018,Black Sheep +Peter Hartlaub,fresh,0779982,San Francisco Chronicle,"Black Sheep is never very frightening, but it's clever and fun, with a memorable amount of humor and gore. Imagine if the Monty Python folks made the killer rabbit part from Holy Grail into a full-length movie.",2007-07-06,647845018,Black Sheep +Jim Emerson,rotten,0779982,Chicago Sun-Times,"Like Snakes on a Plane, the whole movie is essentially contained within the title. All the picture itself does is to repeat that concept for 87 minutes.",2007-07-06,647845018,Black Sheep +Colin Covert,fresh,0779982,Minneapolis Star Tribune,It's the Triumph of the Lambs.,2007-07-05,647845018,Black Sheep +Michael Phillips,rotten,0779982,Chicago Tribune,I suspect [director Jonathan] King's next film will be better.,2007-07-05,647845018,Black Sheep +Owen Gleiberman,rotten,0779982,Entertainment Weekly,"A strenuous goof, one that will test your tolerance for the violence of the lambs.",2007-07-05,647845018,Black Sheep +Richard Roeper,rotten,0779982,Ebert & Roeper,"I pretty much hated it. Like the zombie spoof Fido from a couple of weeks ago, this is a one-joke movie -- and the one joke gets old fast.",2007-06-25,647845018,Black Sheep +David Fear,rotten,0779982,Time Out New York,Only a 12-year-old boy would view this collection of squishy grotesqueries and squirting arteries as perfect Friday-night entertainment.,2007-06-23,647845018,Black Sheep +A.O. Scott,fresh,0779982,New York Times,"Black Sheep is essentially a silly, grisly elaboration of a simple idea: What if sheep started feasting on human flesh and turning their victims into huge ovine zombies?",2007-06-22,647845018,Black Sheep +Kyle Smith,fresh,0779982,New York Post,"A one-joke skit that trots in a straight line, and your enjoyment of it will depend entirely on how many times you need to see gonzo sheep rip out human entrails.",2007-06-22,647845018,Black Sheep +Sam Adams,fresh,0779982,Los Angeles Times,Rife with bloody gore and funny gags.,2007-06-21,647845018,Black Sheep +John Anderson,fresh,0779982,Newsday,"It's still relatively early in 2007, but this wry comedy about sheep gone baaaaad promises to be the best vampire-flesh-eating livestock movie of the year.",2007-06-21,647845018,Black Sheep +,fresh,0779982,New York Magazine,"Absurdly, magnificently gruesome.",2007-06-21,647845018,Black Sheep +Brian Lowry,none,0113972,Variety,,2009-03-26,13222,Nick of Time +,none,0113972,Time Out,,2006-01-26,13222,Nick of Time +Linda Lee,none,0113972,New York Times,,2003-05-21,13222,Nick of Time +Edward Guthmann,none,0113972,San Francisco Chronicle,,2002-06-18,13222,Nick of Time +,none,0113972,Globe and Mail,,2002-04-12,13222,Nick of Time +Peter Travers,none,0113972,Rolling Stone,,2001-05-12,13222,Nick of Time +Kevin Thomas,none,0113972,Los Angeles Times,,2001-02-13,13222,Nick of Time +Susan Stark,rotten,0113972,Detroit News,,2000-01-01,13222,Nick of Time +James Berardinelli,rotten,0113972,ReelViews,,2000-01-01,13222,Nick of Time +Desson Thomson,none,0113972,Washington Post,,2000-01-01,13222,Nick of Time +Roger Ebert,rotten,0113972,Chicago Sun-Times,,2000-01-01,13222,Nick of Time +Rita Kempley,none,0113972,Washington Post,,2000-01-01,13222,Nick of Time +Mike Clark,rotten,0113972,USA Today,The most preposterous movie in theaters isn't the Ace Ventura sequel (or even Money Train) but this wanna-be nail-biter.,2000-01-01,13222,Nick of Time +,rotten,0113972,Entertainment Weekly,,1995-11-22,13222,Nick of Time +Todd McCarthy,none,0113490,Variety,,2008-11-13,12440,The Journey of August King +Janet Maslin,none,0113490,New York Times,,2004-08-30,12440,The Journey of August King +Jack Mathews,none,0113490,Los Angeles Times,,2001-02-13,12440,The Journey of August King +Peter Stack,none,0113490,San Francisco Chronicle,,2000-01-01,12440,The Journey of August King +Rita Kempley,none,0113490,Washington Post,,2000-01-01,12440,The Journey of August King +Roger Ebert,rotten,0113490,Chicago Sun-Times,,2000-01-01,12440,The Journey of August King +James Berardinelli,fresh,0113490,ReelViews,,2000-01-01,12440,The Journey of August King +Owen Gleiberman,rotten,0117002,Entertainment Weekly,,2011-09-07,14651,Mary Reilly +Godfrey Cheshire,none,0117002,Variety,,2009-03-26,14651,Mary Reilly +Derek Adams,none,0117002,Time Out,,2006-02-09,14651,Mary Reilly +Janet Maslin,none,0117002,New York Times,,2003-05-20,14651,Mary Reilly +Peter Stack,rotten,0117002,San Francisco Chronicle,"The film is too mannered, too stuffy.",2002-06-18,14651,Mary Reilly +Kenneth Turan,rotten,0117002,Los Angeles Times,"Sluggish and interminable, Mary Reilly makes good on little of its potential to be disturbing and none of its chance to be emotionally involving.",2001-02-14,14651,Mary Reilly +Susan Stark,rotten,0117002,Detroit News,"Unfortunately, your response to the bizarre story of terror and lust that dare not speak their name is pretty well limited to Roberts' response -- which is, in turn, limited by her technique.",2000-01-01,14651,Mary Reilly +Mike Clark,rotten,0117002,USA Today,A perversely courageous disaster that audiences will simply hate.,2000-01-01,14651,Mary Reilly +James Berardinelli,fresh,0117002,ReelViews,"Mary Reilly is haunting, not only because of its foggy, shadowy settings, but because of the questions it encourages us to ask about ourselves and others.",2000-01-01,14651,Mary Reilly +Roger Ebert,fresh,0117002,Chicago Sun-Times,Mary Reilly works as Gothic melodrama because it understands the genre so well.,2000-01-01,14651,Mary Reilly +Stanley Kauffmann,rotten,0117002,The New Republic,The story lacks purpose.,2000-01-01,14651,Mary Reilly +Jeff Millar,rotten,0117002,Houston Chronicle,Director Frears seems more interested in the atmosphere than the narrative.,2000-01-01,14651,Mary Reilly +,rotten,0117002,Entertainment Weekly,,1996-02-23,14651,Mary Reilly +Owen Gleiberman,rotten,0114825,Entertainment Weekly,,2011-09-07,14915,Vampire in Brooklyn +Brian Lowry,none,0114825,Variety,,2009-03-26,14915,Vampire in Brooklyn +,none,0114825,Time Out,,2006-01-26,14915,Vampire in Brooklyn +Caryn James,none,0114825,New York Times,,2003-05-20,14915,Vampire in Brooklyn +Jack Mathews,none,0114825,Los Angeles Times,,2002-08-14,14915,Vampire in Brooklyn +Peter Stack,rotten,0114825,San Francisco Chronicle,"Vampire in Brooklyn is neither funny nor frightening and comes up a tedious middle-road hybrid from veteran scaremeister Wes Craven, who directed.",2002-06-18,14915,Vampire in Brooklyn +Liam Lacey,rotten,0114825,Globe and Mail,Neither as good as it might be nor as bad as you might expect.,2002-04-12,14915,Vampire in Brooklyn +Roger Ebert,rotten,0114825,Chicago Sun-Times,To call this a comedy is a sign of optimism; to call it a comeback for Murphy is a sign of blind faith.,2000-01-01,14915,Vampire in Brooklyn +Susan Wloszczyna,rotten,0114825,USA Today,Murphy's pale efforts are enough to make one fondly recall Blacula. Now that was one sucker who knew how to make a film that didn't.,2000-01-01,14915,Vampire in Brooklyn +Susan Stark,rotten,0114825,Detroit News,"They're no match, though, for the crushing disappointment of having to watch Murphy on the comic sidelines. It's like going to a Barbra Streisand concert and being asked to listen with her while the rhythm section sings.",2000-01-01,14915,Vampire in Brooklyn +James Berardinelli,rotten,0114825,ReelViews,Doesn't live up to its promise or premise.,2000-01-01,14915,Vampire in Brooklyn +Desson Thomson,rotten,0114825,Washington Post,"This modern fable is little more than a Murphy potboiler, something to while away a couple of hours, rather than fondly remember.",2000-01-01,14915,Vampire in Brooklyn +Hal Hinson,rotten,0114825,Washington Post,"Craven can't keep the comic elements in balance with the horror, and as a result there's no tension or dramatic pull.",2000-01-01,14915,Vampire in Brooklyn +,rotten,0114825,Entertainment Weekly,,1995-10-27,14915,Vampire in Brooklyn +Joe Morgenstern,none,0115639,Wall Street Journal,,2011-01-22,13143,Beautiful Girls +Richard Schickel,fresh,0115639,TIME Magazine,Beautiful Girls is always in touch with reality but never drowned in it.,2009-11-27,13143,Beautiful Girls +Todd McCarthy,rotten,0115639,Variety,This startlingly uneventful compendium of thick-headed boy-talk and female tolerance squanders a fine cast on incredibly ordinary characters and situations.,2009-03-26,13143,Beautiful Girls +,fresh,0115639,Time Out,"Women may be unimpressed, but men will squirm with recognition.",2006-01-26,13143,Beautiful Girls +Edward Guthmann,rotten,0115639,San Francisco Chronicle,It's the women who break the monotony of this dudes-in-flux saga...,2002-06-18,13143,Beautiful Girls +Peter Travers,fresh,0115639,Rolling Stone,"In a relationship that skirts bad taste, Hutton and Portman make tender movie magic, giving this big-screen spin on Friends its only moments of true romantic yearning.",2001-05-12,13143,Beautiful Girls +Jack Mathews,rotten,0115639,Los Angeles Times,"The dialogue isn't the only problem with Beautiful Girls. The characters are bad, too.",2001-02-14,13143,Beautiful Girls +Roger Ebert,fresh,0115639,Chicago Sun-Times,What's nicest about the film is the way it treasures the good feelings people can have for one another.,2000-01-01,13143,Beautiful Girls +Rita Kempley,fresh,0115639,Washington Post,"Hutton, understated but not bland for a change, gives his best performance in years.",2000-01-01,13143,Beautiful Girls +Janet Maslin,fresh,0115639,New York Times,"Portman, a budding knockout, is scene-stealingly good even in an overly showy role.",2000-01-01,13143,Beautiful Girls +Desson Thomson,fresh,0115639,Washington Post,"The movie is wry, touching and fun to sit through...",2000-01-01,13143,Beautiful Girls +Jeff Millar,fresh,0115639,Houston Chronicle,"Portman was memorable as the little girl in The Professional, but her work here throws off an eeriness in its revelation of such huge talent in one so young.",2000-01-01,13143,Beautiful Girls +Susan Stark,fresh,0115639,Detroit News,,2000-01-01,13143,Beautiful Girls +James Berardinelli,rotten,0115639,ReelViews,"Borrowing heavily from other, better films, director Ted Demme and screenwriter Scott Rosenberg give each of their male protagonists a case of commitment angst.",2000-01-01,13143,Beautiful Girls +Mike Clark,fresh,0115639,USA Today,"The movie lacks the stature or consistency to be truly beautiful -- but you know, it is kind of cute.",2000-01-01,13143,Beautiful Girls +Lisa Schwarzbaum,rotten,0115639,Entertainment Weekly,"There is absolutely nothing going on in Beautiful Girls that you haven't seen... [in] any other artistic endeavor in which untethered young men and women, bound by geography and fortified by beer, shamble their way toward overdue maturity.",1996-02-09,13143,Beautiful Girls +Owen Gleiberman,rotten,0115759,Entertainment Weekly,,2011-09-07,13733,Broken Arrow +,none,0115759,Time Out,,2006-02-09,13733,Broken Arrow +Mick LaSalle,fresh,0115759,San Francisco Chronicle,,2002-06-18,13733,Broken Arrow +Peter Travers,none,0115759,Rolling Stone,,2001-05-12,13733,Broken Arrow +Kenneth Turan,none,0115759,Los Angeles Times,,2001-02-13,13733,Broken Arrow +,none,0115759,Washington Post,,2000-01-01,13733,Broken Arrow +James Berardinelli,fresh,0115759,ReelViews,,2000-01-01,13733,Broken Arrow +Susan Stark,rotten,0115759,Detroit News,,2000-01-01,13733,Broken Arrow +Mike Clark,fresh,0115759,USA Today,"Directed with the keen action instincts Woo brought to The Killer, Hard-Boiled and other cult causes from his career in Hong Kong.",2000-01-01,13733,Broken Arrow +Joe Baltake,none,0115759,Sacramento Bee,,2000-01-01,13733,Broken Arrow +Janet Maslin,none,0115759,New York Times,,2000-01-01,13733,Broken Arrow +Roger Ebert,rotten,0115759,Chicago Sun-Times,,2000-01-01,13733,Broken Arrow +,rotten,0115759,Entertainment Weekly,,1996-02-09,13733,Broken Arrow +Todd McCarthy,none,0113403,Variety,,2009-03-26,577442432,In the Bleak Midwinter +Geoff Andrew,none,0113403,Time Out,,2006-06-24,577442432,In the Bleak Midwinter +Stephen Holden,none,0113403,New York Times,,2004-08-30,577442432,In the Bleak Midwinter +Jack Mathews,none,0113403,Los Angeles Times,,2001-02-14,577442432,In the Bleak Midwinter +Joe Baltake,none,0113403,Sacramento Bee,,2000-01-01,577442432,In the Bleak Midwinter +Mick LaSalle,none,0113403,San Francisco Chronicle,,2000-01-01,577442432,In the Bleak Midwinter +James Berardinelli,fresh,0113403,ReelViews,,2000-01-01,577442432,In the Bleak Midwinter +Roger Ebert,fresh,0113403,Chicago Sun-Times,,2000-01-01,577442432,In the Bleak Midwinter +Hal Hinson,none,0113403,Washington Post,,2000-01-01,577442432,In the Bleak Midwinter +,rotten,0113403,USA Today,[An] inoffensive trifle.,2000-01-01,577442432,In the Bleak Midwinter +Lisa Nesselson,none,0113247,Variety,,2008-08-06,98832611,La haine +,none,0113247,Globe and Mail,,2006-09-23,98832611,La haine +Derek Adams,none,0113247,Time Out,,2006-06-24,98832611,La haine +Caryn James,none,0113247,New York Times,,2003-05-20,98832611,La haine +Edward Guthmann,none,0113247,San Francisco Chronicle,,2002-06-18,98832611,La haine +Kevin Thomas,none,0113247,Los Angeles Times,,2001-02-13,98832611,La haine +Mike Clark,fresh,0113247,USA Today,Writer-director Mathieu Kassovitz mines so much tension and pointed dialogue from a low budget and deceptively simple premise that you wonder why so much of current Hollywood's own social realism ends up shooting $50 million blanks.,2000-01-01,98832611,La haine +James Berardinelli,fresh,0113247,ReelViews,,2000-01-01,98832611,La haine +,none,0113247,Washington Post,,2000-01-01,98832611,La haine +Roger Ebert,fresh,0113247,Chicago Sun-Times,"Hate is, I suppose, a Generation X film, whatever that means, but more mature and insightful than the American Gen X movies.",2000-01-01,98832611,La haine +,fresh,0113247,Entertainment Weekly,,1996-02-09,98832611,La haine +,none,0295605,Time Out,,2011-11-17,8270,Going Shopping +Dave Calhoun,none,0295605,Time Out New York,,2007-08-16,8270,Going Shopping +,none,0295605,Time Out,,2006-06-24,8270,Going Shopping +Robert Denerstein,rotten,0295605,Denver Rocky Mountain News,"Jaglom's concentrated approach serves up some insight to be sure, but the movie states its case in the first 10 minutes and then proceeds to run out of things to say, almost as quickly as the women in this movie think they've run out of things to wear.",2006-03-31,8270,Going Shopping +Michael Booth,rotten,0295605,Denver Post,"Alleges support of women, yet fetishizes their objects instead of their relationships.",2006-03-31,8270,Going Shopping +Michael Wilmington,fresh,0295605,Chicago Tribune,"[Henry] Jaglom's Going Shopping is a nifty little oddity, another of his unlikely, entertaining movie hybrids.",2006-02-02,8270,Going Shopping +Ruthe Stein,rotten,0295605,San Francisco Chronicle,It's the last and least successful of indie director Henry Jaglom's trilogy looking at female issues.,2005-12-02,8270,Going Shopping +Wesley Morris,rotten,0295605,Boston Globe,The trouble with Going Shopping is that it's clogged with personalities and styles that don't congeal.,2005-12-02,8270,Going Shopping +Marta Barber,fresh,0295605,Miami Herald,Going Shopping can make a wonderful outing for girlfriends. It's fun.,2005-11-23,8270,Going Shopping +Owen Gleiberman,fresh,0295605,Entertainment Weekly,"Going Shopping is sharp and funny about all the things that shopping can mean to the women who live to do it, and even to those who don't.",2005-10-12,8270,Going Shopping +Kevin Thomas,fresh,0295605,Los Angeles Times,"At times movies seem rife with misogyny, yet Jaglom consistently expresses a love for women in his films.",2005-09-30,8270,Going Shopping +Lael Loewenstein,rotten,0295605,Variety,"Inadvertently reduces women to a variety of cliches, probably reinforcing many men's worst fears.",2005-09-30,8270,Going Shopping +Gene Seymour,rotten,0295605,Newsday,"Not only is indulgence a frequent subject for Jaglom, it also sums up what his movies do -- and what they demand from their audience, sometimes to tedious degrees.",2005-09-30,8270,Going Shopping +Stephen Whitty,rotten,0295605,Newark Star-Ledger,"None of these is a character you want to spend much time with, and even with the diverting guest appearances, this is still strictly discount merchandise.",2005-09-30,8270,Going Shopping +Kyle Smith,fresh,0295605,New York Post,Comes as close as any film to explaining what the deal is with women and shopping.,2005-09-30,8270,Going Shopping +Elizabeth Weitzman,fresh,0295605,New York Daily News,[Has] enough moments of insight to blunt charges of sexist stereotyping.,2005-09-30,8270,Going Shopping +Sheri Linden,rotten,0295605,Hollywood Reporter,Zeroes in on retail mania with a flimsy wire hanger of a premise.,2005-09-30,8270,Going Shopping +Stephen Holden,rotten,0295605,New York Times,"Going Shopping...has enough smart, knowing touches and enough easy spontaneity among its well-chosen actors to make you wish it added up to more than what it turns out to be: a flighty, motor-mouthed cinematic divertissement.",2005-09-29,8270,Going Shopping +Scott Foundas,fresh,0295605,L.A. Weekly,Henry Jaglom completes his informal trilogy on estrogen-laced obsessions with this seriocomic exploration of women and clothes.,2005-09-29,8270,Going Shopping +Akiva Gottlieb,rotten,0295605,Village Voice,Henry Jaglom's latest study of contemporary female obsessions among a noxious clan of West L.A. bourgeoisie is of more pathological than cinematic interest.,2005-09-27,8270,Going Shopping +Owen Gleiberman,fresh,0113283,Entertainment Weekly,,2011-09-07,21104,Heidi Fleiss: Hollywood Madam +Derek Adams,none,0113283,Time Out,,2007-08-16,21104,Heidi Fleiss: Hollywood Madam +Mick LaSalle,fresh,0113283,San Francisco Chronicle,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +,none,0113283,Los Angeles Times,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Stanley Kauffmann,none,0113283,The New Republic,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Janet Maslin,none,0113283,New York Times,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Roger Ebert,fresh,0113283,Chicago Sun-Times,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Hal Hinson,none,0113283,Washington Post,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Desson Thomson,none,0113283,Washington Post,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +James Berardinelli,rotten,0113283,ReelViews,,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +Mike Clark,fresh,0113283,USA Today,[A] superior example of ambush journalism.,2002-04-16,21104,Heidi Fleiss: Hollywood Madam +,fresh,0113283,Entertainment Weekly,,1995-06-01,21104,Heidi Fleiss: Hollywood Madam +Jack Kroll,fresh,0115907,Newsweek,"Its chief pleasure is the acting of the big cast, notably Pacino. At 55, he has a haggard, life-wrestling beauty and a street eloquence that has more innocence than De Niro and more sincerity than Nicholson.",2013-01-18,14698,City Hall +Owen Gleiberman,fresh,0115907,Entertainment Weekly,,2011-09-07,14698,City Hall +Leonard Klady,none,0115907,Variety,,2009-03-26,14698,City Hall +,none,0115907,Time Out,,2006-06-24,14698,City Hall +Mick LaSalle,fresh,0115907,San Francisco Chronicle,,2002-06-18,14698,City Hall +Peter Travers,none,0115907,Rolling Stone,,2001-05-12,14698,City Hall +Kenneth Turan,none,0115907,Los Angeles Times,,2001-02-13,14698,City Hall +,none,0115907,Washington Post,,2000-01-01,14698,City Hall +James Berardinelli,rotten,0115907,ReelViews,,2000-01-01,14698,City Hall +Stanley Kauffmann,none,0115907,The New Republic,,2000-01-01,14698,City Hall +Janet Maslin,none,0115907,New York Times,,2000-01-01,14698,City Hall +Susan Stark,fresh,0115907,Detroit News,,2000-01-01,14698,City Hall +Joe Baltake,none,0115907,Sacramento Bee,,2000-01-01,14698,City Hall +Mike Clark,rotten,0115907,USA Today,A watchable but never pulsating portrait of mayoral wheeling-dealing.,2000-01-01,14698,City Hall +Roger Ebert,rotten,0115907,Chicago Sun-Times,,2000-01-01,14698,City Hall +,fresh,0115907,Entertainment Weekly,,1996-02-16,14698,City Hall +David Rooney,none,0115734,Variety,,2009-03-26,12952,Bottle Rocket +Joe Baltake,fresh,0115734,Sacramento Bee,"Works on its own modest, limited terms and, despite the obvious fun involved, never feels self-indulgent.",2000-01-01,12952,Bottle Rocket +Roger Ebert,rotten,0115734,Chicago Sun-Times,"I can't recommend the film -- it's too unwound and indulgent -- but I have a certain affection for it, and I'm looking forward to whatever Anderson and the Wilsons do next.",2000-01-01,12952,Bottle Rocket +Janet Maslin,fresh,0115734,New York Times,"A mildly facetious tone limits Anderson's film to the lightweight, but the collective enthusiasm behind this debut effort still comes through.",2000-01-01,12952,Bottle Rocket +Mike Clark,fresh,0115734,USA Today,"A little deal, this movie is like a bottle rocket itself: a big bang for the money.",2000-01-01,12952,Bottle Rocket +Susan Stark,rotten,0115734,Detroit News,,2000-01-01,12952,Bottle Rocket +Rita Kempley,fresh,0115734,Washington Post,Gets by on quirky charm and slacker chic -- but just barely.,2000-01-01,12952,Bottle Rocket +James Berardinelli,rotten,0115734,ReelViews,"Starts and finishes strong, but, somewhere in the middle, it loses its focus and its way.",2000-01-01,12952,Bottle Rocket +Desson Thomson,fresh,0115734,Washington Post,"A hilarious, inventive and goofy breath of fresh air.",2000-01-01,12952,Bottle Rocket +Mick LaSalle,rotten,0115734,San Francisco Chronicle,"A grueling, numbing black hole.",2000-01-01,12952,Bottle Rocket +Leonard Klady,rotten,0117102,Variety,"The hip, smart yarn has a bite not seen in American movies since The War of the Roses.",2008-06-26,11643,Mr. Wrong +Mick LaSalle,rotten,0117102,San Francisco Chronicle,A dreadful movie.,2002-06-18,11643,Mr. Wrong +James Berardinelli,rotten,0117102,ReelViews,"This is a romantic comedy parody, but how can you satirize something that's a comedy to begin with? If this motion picture is an example, not only can't it be done, but the result is downright ugly.",2000-01-01,11643,Mr. Wrong +Susan Stark,rotten,0117102,Detroit News,,2000-01-01,11643,Mr. Wrong +Rita Kempley,rotten,0117102,Washington Post,"A sour, listless debunking of romantic comedies.",2000-01-01,11643,Mr. Wrong +Susan Wloszczyna,rotten,0117102,USA Today,"Like its title character, Mr. Wrong doesn't know when to quit.",2000-01-01,11643,Mr. Wrong +Janet Maslin,rotten,0117102,New York Times,"As directed sloppily by Nick Castle, this comedy barely lets its main characters develop, even though either of them could be great fun.",2000-01-01,11643,Mr. Wrong +,rotten,0117102,Entertainment Weekly,"Pullman, who can usually shade a character so subtly between sweetie and sucker, is made to veer manically into jerkhood for no particular reason except that the filmmakers couldn't come up with anything smarter to propel this galumphing caper along.",1996-02-16,11643,Mr. Wrong +Derek Elley,none,0118040,Variety,,2009-03-26,16143,Unforgettable +Geoff Andrew,none,0118040,Time Out,,2006-06-24,16143,Unforgettable +Mick LaSalle,none,0118040,San Francisco Chronicle,,2002-06-18,16143,Unforgettable +Kevin Thomas,none,0118040,Los Angeles Times,,2001-02-13,16143,Unforgettable +Susan Stark,rotten,0118040,Detroit News,,2000-01-01,16143,Unforgettable +Janet Maslin,none,0118040,New York Times,,2000-01-01,16143,Unforgettable +James Berardinelli,rotten,0118040,ReelViews,,2000-01-01,16143,Unforgettable +,none,0118040,Houston Chronicle,,2000-01-01,16143,Unforgettable +Susan Wloszczyna,rotten,0118040,USA Today,A B-grade murder mystery with a sci-fi twist.,2000-01-01,16143,Unforgettable +Roger Ebert,rotten,0118040,Chicago Sun-Times,,2000-01-01,16143,Unforgettable +Owen Gleiberman,rotten,0116483,Entertainment Weekly,[A] one-joke Caddyshack for the blitzed and jaded.,2008-04-15,11221,Happy Gilmore +Brian Lowry,rotten,0116483,Variety,"There are about three minutes of funny material in Happy Gilmore, and pretty much all of them are in the trailer.",2008-04-15,11221,Happy Gilmore +,fresh,0116483,Time Out,Superior disposable comedy.,2006-06-24,11221,Happy Gilmore +Edward Guthmann,fresh,0116483,San Francisco Chronicle,"It may smell awful from a distance, especially if you have low tolerance for lowbrow humor, but up close this yarn about an unlikely golf star is fairly painless.",2002-06-18,11221,Happy Gilmore +Kevin Thomas,rotten,0116483,Los Angeles Times,You don't feel that Sandler and director Dennis Dugan are trying for the kind of subversiveness that might just make Happy's brutal anarchy more effective.,2001-02-13,11221,Happy Gilmore +Stephen Holden,rotten,0116483,New York Times,"Happy's tantrums, which the movie pretends are liberating explosions of self-expression, aren't nearly maniacal enough to reach comic delirium.",2000-01-01,11221,Happy Gilmore +Susan Stark,rotten,0116483,Detroit News,,2000-01-01,11221,Happy Gilmore +Louis B. Parks,fresh,0116483,Houston Chronicle,"Sandler plays this a lot smarter than, say, a Jim Carrey character, and with less slapstick. Still, this is not delicate, subtle stuff: It's smart low-brow, and only for those who like their humor a bit offbeat.",2000-01-01,11221,Happy Gilmore +Mike Clark,fresh,0116483,USA Today,"The story has all the thickness of a well-trimmed green, but it's a decent excuse for some heady sight gags.",2000-01-01,11221,Happy Gilmore +Roger Ebert,rotten,0116483,Chicago Sun-Times,The Happy Gilmore character is strange. I guess we are supposed to like him.,2000-01-01,11221,Happy Gilmore +Richard Harrington,fresh,0116483,Washington Post,"Happy Gilmore may not be an ace in the hole, but it beats par by a long shot.",2000-01-01,11221,Happy Gilmore +James Berardinelli,rotten,0116483,ReelViews,"Sandler's movie is worth a few laughs, but not many of the comic sequences are original, and even fewer are inspired.",2000-01-01,11221,Happy Gilmore +Jeff Shannon,fresh,0112579,Seattle Times,"With Eastwood as Kincaid and Meryl Streep as Francesca, this carefully observant love story turns Waller's pop-lit passion into screen art.",2013-07-31,10187,The Bridges of Madison County +Carrie Rickey,fresh,0112579,Philadelphia Inquirer,"Bridges is an admirable achievement, one that probably does more to reposition its maker as someone who can carry a movie without carrying a gun than as the director/star of a Love Story for the Loving Care set.",2013-07-31,10187,The Bridges of Madison County +Jay Boyar,fresh,0112579,Orlando Sentinel,"The result, if rather thin and certainly far from a masterpiece, is nevertheless quite lovely. This affecting little film is easily one of Eastwood's best efforts as a director.",2013-07-31,10187,The Bridges of Madison County +Anthony Lane,fresh,0112579,New Yorker,The two leads' sly comic rhythm is miles removed from the book's failing solemnity.,2013-07-31,10187,The Bridges of Madison County +Gene Siskel,fresh,0112579,Chicago Tribune,"Eastwood's Bridges has the energy and spontaneity of a picture that was shot quickly. And that serves the material well, because it removes the solemnity that could stiffle a modern classic.",2013-07-31,10187,The Bridges of Madison County +Jonathan Rosenbaum,rotten,0112579,Chicago Reader,"Despite all his craft and sincerity, [Eastwood] and screenwriter Richard LaGravenese can't quite turn Robert James Waller's cardboard best-seller into flesh and bone.",2013-07-31,10187,The Bridges of Madison County +Rita Kempley,fresh,0112579,Washington Post,"Bridges is an old-fashioned ""women's film"" that pits the heroine's romantic urges against her matriarchal duties. In fact, the film is at its dramatic best when Francesca is finally obliged, like Sophie, to make her choice.",2013-07-31,10187,The Bridges of Madison County +Joe Morgenstern,fresh,0112579,Wall Street Journal,"Streep makes her character known in no time flat. Intelligence, humor, blocked ambition, self-irony -- they're all contained in Francesca's quick response when Robert asks if she has any plans for the afternoon.",2012-01-07,10187,The Bridges of Madison County +Owen Gleiberman,fresh,0112579,Entertainment Weekly,"Meryl Streep and Clint Eastwood, as Waller's tenderly plaintive heartland lovers, are so visually and spiritually right they seem to have walked right off the page.",2011-09-07,10187,The Bridges of Madison County +Desson Thomson,fresh,0112579,Washington Post,"What follows is, essentially, gothic-romantic bunk. But there's a nicely stylized, below-the-surface courtship between the performers. They make you forget that, at their very core, they are hackneyed creations.",2010-07-06,10187,The Bridges of Madison County +Richard Corliss,fresh,0112579,TIME Magazine,"Madison County is Eastwood's gift to women: to Francesca, to all the girls he's loved before -- and to Streep, who alchemizes literary mawkishness into intelligent movie passion.",2008-10-27,10187,The Bridges of Madison County +Todd McCarthy,fresh,0112579,Variety,"Given the intelligent restraint of the treatment, this is about as fine an adaptation of this material as one could hope for...",2008-06-23,10187,The Bridges of Madison County +Geoff Andrew,fresh,0112579,Time Out,"Immaculately performed, and assembled with wit and sensitivity, this is one of the most satisfying weepies in years.",2006-06-24,10187,The Bridges of Madison County +Janet Maslin,fresh,0112579,New York Times,"Limited by the vapidity of this material while he trims its excesses with the requisite machete, Mr. Eastwood locates a moving, elegiac love story at the heart of Mr. Waller's self-congratulatory overkill.",2004-05-17,10187,The Bridges of Madison County +Mick LaSalle,fresh,0112579,San Francisco Chronicle,What the movie does that the book couldn't do is tap into the poignancy that comes of seeing two stars who used to be young and beautiful suddenly looking very mortal.,2002-06-18,10187,The Bridges of Madison County +Kenneth Turan,fresh,0112579,Los Angeles Times,Screenwriter LaGravenese ought to get the Croix de Guerre for doing battle with Waller's fatuous prose and paring Bridges down to its most appealing fantasy romance essence.,2001-02-13,10187,The Bridges of Madison County +James Berardinelli,fresh,0112579,ReelViews,"The Bridges of Madison County is a beautiful film, not only in the way it was photographed, but for the manner through which the characters are revealed to us.",2000-01-01,10187,The Bridges of Madison County +Roger Ebert,fresh,0112579,Chicago Sun-Times,"I've seen the movie twice now and was even more involved the second time, because I was able to pay more attention to the nuances of voice and gesture.",2000-01-01,10187,The Bridges of Madison County +Mike Clark,fresh,0112579,USA Today,"The gap between touchy-feely and touching isn't easy to span, so credit judicious pruning on the one hand and a beefed-up script on the other for getting perhaps the best possible movie out of Robert James Waller's The Bridges of Madison County.",2000-01-01,10187,The Bridges of Madison County +Eric Hansen,none,0110251,Variety,,2009-03-26,770675260,Keiner liebt mich +Geoff Andrew,none,0110251,Time Out,,2006-01-26,770675260,Keiner liebt mich +,none,0110251,New York Times,,2001-11-13,770675260,Keiner liebt mich +Mick LaSalle,none,0110251,San Francisco Chronicle,,2001-11-13,770675260,Keiner liebt mich +Joe Baltake,none,0110251,Sacramento Bee,,2001-11-13,770675260,Keiner liebt mich +Kevin Thomas,none,0110251,Los Angeles Times,,2001-11-13,770675260,Keiner liebt mich +James Berardinelli,fresh,0110251,ReelViews,,2001-11-13,770675260,Keiner liebt mich +Leonard Klady,none,0117110,Variety,,2008-10-18,9510,Muppet Treasure Island +Derek Adams,none,0117110,Time Out,,2006-02-09,9510,Muppet Treasure Island +Kevin Thomas,none,0117110,Los Angeles Times,,2001-02-14,9510,Muppet Treasure Island +Joe Baltake,none,0117110,Sacramento Bee,,2000-01-01,9510,Muppet Treasure Island +Susan Wloszczyna,fresh,0117110,USA Today,Geena Davis and Renny Harlin couldn't cut it with Cutthroat Island. Steven Spielberg nearly got the hook for Hook. But leave it to Miss Piggy and Kermit to discover uncharted gold in the shipwrecked-pirate genre.,2000-01-01,9510,Muppet Treasure Island +Stephen Holden,none,0117110,New York Times,,2000-01-01,9510,Muppet Treasure Island +Roger Ebert,rotten,0117110,Chicago Sun-Times,,2000-01-01,9510,Muppet Treasure Island +,none,0117110,Washington Post,,2000-01-01,9510,Muppet Treasure Island +Peter Stack,none,0117110,San Francisco Chronicle,,2000-01-01,9510,Muppet Treasure Island +James Berardinelli,fresh,0117110,ReelViews,,2000-01-01,9510,Muppet Treasure Island +Susan Stark,fresh,0117110,Detroit News,,2000-01-01,9510,Muppet Treasure Island +,fresh,0117110,Entertainment Weekly,,1996-02-16,9510,Muppet Treasure Island +Michael Wilmington,fresh,0112573,Chicago Tribune,"In this mix of historical tragedy and hip adventure, Gibson may be as galvanic a movie swashbuckler as Errol Flynn and Burt Lancaster were in their day.",2013-02-24,12866,Braveheart +Anthony Lane,fresh,0112573,New Yorker,"The political argument that ensues is pretty dull, but the battle scenes are the loudest and most convincing in years: Gibson has learned from Kurosawa in lending a clarifying thrust to what is, essentially, chaos.",2013-02-24,12866,Braveheart +Jack Kroll,fresh,0112573,Newsweek,Braveheart looks like a true epic -- even if it is both bloody and bloody long.,2008-01-28,12866,Braveheart +Brian Lowry,fresh,0112573,Variety,"A huge, bloody and sprawling epic, Braveheart is the sort of massive vanity piece that would be easy to disparage if it didn't essentially deliver.",2008-01-28,12866,Braveheart +Geoff Andrew,rotten,0112573,Time Out,Pure hokum.,2006-02-09,12866,Braveheart +Peter Travers,fresh,0112573,Rolling Stone,"Though the film dawdles a bit with the shimmery, dappled love stuff involving Wallace with a Scottish peasant and a French princess, the action will pin you to your seat.",2001-05-12,12866,Braveheart +Peter Rainer,fresh,0112573,Los Angeles Times,"As a filmmaker, [Gibson] lacks the epic gift, but the movie, scripted by Randall (no relation) Wallace, works on a fairly basic level as a hiss-the-English medieval Western.",2001-02-13,12866,Braveheart +Paula Nechak,rotten,0112573,Film.com,"Braveheart opts to turn cowardly, settling for the magnification of Gibson's idol status, forfeiting the complex, more nebulous magnificence of the real Sir William Wallace and virtually excising the strategic brilliance of Robert The Bruce.",2000-01-01,12866,Braveheart +John Hartl,fresh,0112573,Film.com,There's a matter-of-fact grittiness about Braveheart that infects even its occasional touches of mysticism and photogenic romance.,2000-01-01,12866,Braveheart +Peter Stack,rotten,0112573,San Francisco Chronicle,At times the film seems an obsessive ode to Mel Gibson machismo.,2000-01-01,12866,Braveheart +Sean Means,fresh,0112573,Film.com,"Gibson's raw energy and storytelling power in Braveheart are undeniable. If the film doesn't meet his ambitions, it's because he set the bar so high.",2000-01-01,12866,Braveheart +James Berardinelli,fresh,0112573,ReelViews,"With its clashing armies, heartstopping action, and grand sense of romance, this is the sort of film it's a pleasure to see and review.",2000-01-01,12866,Braveheart +Roger Ebert,fresh,0112573,Chicago Sun-Times,An action epic with the spirit of the Hollywood swordplay classics and the grungy ferocity of The Road Warrior.,2000-01-01,12866,Braveheart +Desson Thomson,rotten,0112573,Washington Post,A rambling disappointment.,2000-01-01,12866,Braveheart +Caryn James,fresh,0112573,New York Times,One of the most spectacular entertainments in years.,2000-01-01,12866,Braveheart +Hal Hinson,fresh,0112573,Washington Post,[Gibson] has created a completely adequate modern facsimile of the classic romantic epic.,2000-01-01,12866,Braveheart +Mike Clark,fresh,0112573,USA Today,"Though lumpy and even redundant, Braveheart constantly rebounds on some bold note.",2000-01-01,12866,Braveheart +Richard Schickel,rotten,0112573,TIME Magazine,Everybody knows that a non-blubbering clause is standard in all movie stars' contracts. Too bad there isn't one banning self-indulgence when they direct.,2000-01-01,12866,Braveheart +Owen Gleiberman,fresh,0112573,Entertainment Weekly,It takes a real star to make suffering this sexy.,1995-05-26,12866,Braveheart +A.D. Murphy,fresh,0075314,Variety,It's a powerful film and a terrific showcase for the versatility of star Robert De Niro.,2012-02-23,16625,Taxi Driver +Dave Calhoun,fresh,0075314,Time Out,"Bickle is complex, intriguing and never one-note.",2011-05-10,16625,Taxi Driver +J. Hoberman,fresh,0075314,Village Voice,"Like Werner Herzog's Aguirre or Coppola's Apocalypse Now, Taxi Driver is auteurist psychodrama.",2011-03-15,16625,Taxi Driver +Richard Schickel,rotten,0075314,TIME Magazine,[Scorsese] seems to need scripts with well-designed humor and performers with the spirit of Ellen Burstyn to compensate for what seems to be a fundamentally depressed view of life and the belief that sobriety is the equivalent of seriousness.,2009-08-30,16625,Taxi Driver +Ben Walters,fresh,0075314,Time Out,"New York may have changed, but Taxi Driver is as powerful and painful as ever.",2006-02-09,16625,Taxi Driver +Michael Atkinson,fresh,0075314,Village Voice,"Martin Scorsese's history-making scald is truly a phenomenon from another day and age. Which is to say, imagine a like-minded film of this decade killing at the box office and getting nommed for Best Picture.",2005-01-04,16625,Taxi Driver +Vincent Canby,fresh,0075314,New York Times,"You may want to argue with Taxi Driver at the end, and with good reason, but it won't be a waste of time.",2003-05-20,16625,Taxi Driver +Desson Thomson,fresh,0075314,Washington Post,"Since the mid-1970s, the movie has become presciently emblematic of our emotionally diseased, violence-prone culture.",2000-01-01,16625,Taxi Driver +Mick LaSalle,fresh,0075314,San Francisco Chronicle,The heart and soul of Taxi Driver are twisted in a way that can't be faked or copied.,2000-01-01,16625,Taxi Driver +Roger Ebert,fresh,0075314,Chicago Sun-Times,One of the best and most powerful of all films.,2000-01-01,16625,Taxi Driver +James Berardinelli,fresh,0075314,ReelViews,"A masterful psychological study, the depth of which can only fully be appreciated on repeat viewings.",2000-01-01,16625,Taxi Driver +Jonathan Rosenbaum,fresh,0075314,Chicago Reader,"Perhaps the most formally ravishing-as well as the most morally and ideologically problematic-film ever directed by Martin Scorsese, the 1976 Taxi Driver remains a disturbing landmark for the kind of voluptuous doublethink it helped ratify.",2000-01-01,16625,Taxi Driver +Owen Gleiberman,fresh,0113326,Entertainment Weekly,,2011-09-07,14249,Hung fan kui +,fresh,0113326,Time Out,"Chan's insistence on his own fallibility and vulnerability, taken with virtuoso scenes like the fight involving 101 domestic appliances, shows why he means more to his countless fans than six US action stars put together.",2006-02-09,14249,Hung fan kui +Jonathan Rosenbaum,fresh,0113326,Chicago Reader,"It's light on plot and character, but the stunts are well staged.",2004-01-28,14249,Hung fan kui +Kenneth Turan,fresh,0113326,Los Angeles Times,For once a film's ad line has a whiff of truth about it: 'No Fear. No Stuntman. No Equal.',2001-02-13,14249,Hung fan kui +Sean Means,fresh,0113326,Film.com,The fun of Rumble in the Bronx is watching Chan build up one inventive and off-the-wall action scene after another.,2000-01-01,14249,Hung fan kui +Mick LaSalle,rotten,0113326,San Francisco Chronicle,An awkward hybrid of Asian and American film techniques.,2000-01-01,14249,Hung fan kui +Roger Ebert,fresh,0113326,Chicago Sun-Times,"The whole point is Jackie Chan - and, like Astaire and Rogers, he does what he does better than anybody.",2000-01-01,14249,Hung fan kui +Desson Thomson,rotten,0113326,Washington Post,It's not often you find a movie as exciting and awful as Rumble in the Bronx.,2000-01-01,14249,Hung fan kui +James Berardinelli,fresh,0113326,ReelViews,"Unlike most action stars, Chan understands acting. His face is as flexible as his body, and, when he's moving, he's like a violent, supercharged combination of Gene Kelly, Fred Astaire, and Buster Keaton.",2000-01-01,14249,Hung fan kui +Mike Clark,fresh,0113326,USA Today,"You can smirk at Rumble and deny its pedigree with some justification, as long as you concede that it's 10 times more fun to watch than Before and After and Mary Reilly put together.",2000-01-01,14249,Hung fan kui +Bruce Reid,fresh,0113326,Film.com,Awe-inspiring.,2000-01-01,14249,Hung fan kui +Shannon Gee,fresh,0113326,Film.com,"The very medium of the moving picture exists to create the suspension of disbelief, and there is no greater live performer than Chan to make us believe you can beat up a street gang with a linen jacket and refrigerators.",2000-01-01,14249,Hung fan kui +Stephen Holden,rotten,0113326,New York Times,"A giddy triple somersault of a film that makes no sense whatsoever, although in its best moments it is as much fun to watch as a death-defying circus act.",2000-01-01,14249,Hung fan kui +Susan Stark,fresh,0113326,Detroit News,"More than a martial arts whiz, the 41-year-old Chan possesses the comic timing of a born clown, the grace of a Broadway hoofer and the daredevil bravado of an Evel Knievel.",2000-01-01,14249,Hung fan kui +Joe Baltake,fresh,0113326,Sacramento Bee,"The film may look amateurish, but the camera-work is fluid, the best to catch Chan's choreography.",2000-01-01,14249,Hung fan kui +John Hartl,fresh,0113326,Film.com,"As the star cheerfully camouflages massive bandages on a twisted ankle, we also get a glimpse of just how far Chan is willing to go to please his audience.",2000-01-01,14249,Hung fan kui +Richard Corliss,fresh,0113326,TIME Magazine,"As the guy who cleans up a ghetto, helps a crippled kid and does battle with a rampaging Hovercraft, Chan shows off the muscle of a superhero and the charm of a deft comedian.",2000-01-01,14249,Hung fan kui +Keith Simanton,fresh,0113326,Film.com,"Chan, doing everything at once including all his own stunts, has an infectious energy that will help to remind you why you love movies.",2000-01-01,14249,Hung fan kui +Godfrey Cheshire,none,0115645,Variety,,2009-03-26,12423,Before and After +,none,0115645,Time Out,,2006-01-26,12423,Before and After +Edward Guthmann,none,0115645,San Francisco Chronicle,,2002-06-18,12423,Before and After +Peter Travers,none,0115645,Rolling Stone,,2001-05-12,12423,Before and After +Jack Mathews,none,0115645,Los Angeles Times,,2001-02-14,12423,Before and After +James Berardinelli,fresh,0115645,ReelViews,,2000-01-01,12423,Before and After +Janet Maslin,none,0115645,New York Times,,2000-01-01,12423,Before and After +Mike Clark,rotten,0115645,USA Today,"Despite Meryl Streep, Liam Neeson and the usually estimable Edward Furlong, this nonevent huffs and puffs to attain even the level of an ordinary motion picture.",2000-01-01,12423,Before and After +Susan Stark,fresh,0115645,Detroit News,,2000-01-01,12423,Before and After +Hal Hinson,none,0115645,Washington Post,,2000-01-01,12423,Before and After +Joe Baltake,none,0115645,Sacramento Bee,,2000-01-01,12423,Before and After +Roger Ebert,rotten,0115645,Chicago Sun-Times,,2000-01-01,12423,Before and After +,rotten,0115645,Entertainment Weekly,,1996-02-23,12423,Before and After +Brendan Kelly,none,0113774,Variety,,2009-03-26,159371762,Margaret's Museum +Derek Adams,none,0113774,Time Out,,2006-02-09,159371762,Margaret's Museum +Jeff Strickler,none,0113774,Minneapolis Star Tribune,,2002-11-06,159371762,Margaret's Museum +Kevin Thomas,none,0113774,Los Angeles Times,,2001-02-14,159371762,Margaret's Museum +Roger Ebert,fresh,0113774,Chicago Sun-Times,,2000-01-01,159371762,Margaret's Museum +Ruthe Stein,none,0113774,San Francisco Chronicle,,2000-01-01,159371762,Margaret's Museum +Janet Maslin,none,0113774,New York Times,,2000-01-01,159371762,Margaret's Museum +Stanley Kauffmann,none,0113774,The New Republic,,2000-01-01,159371762,Margaret's Museum +,none,0112556,Time Out,,2006-02-09,770678024,Le bonheur est dans le pré +Lisa Schwarzbaum,fresh,0112373,Entertainment Weekly,,2011-09-07,11541,Anne Frank Remembered +Emanuel Levy,fresh,0112373,Variety,"New insignts about Anne's spicy personality and immense curiosity are revealed by Holocaust survivors Hanneli Goslar and particularly Miep Gies, an office employee of Anne's father who was one of the main helpers to the families in hiding.",2006-02-15,11541,Anne Frank Remembered +Jonathan Rosenbaum,none,0112373,Chicago Reader,,2002-06-12,11541,Anne Frank Remembered +Kevin Thomas,fresh,0112373,Los Angeles Times,"Just when you might well have thought that pretty much all had been said and done about Anne Frank, this film makes us realize how much there still is to know about her and her times.",2001-02-14,11541,Anne Frank Remembered +Tom Keogh,fresh,0112373,Film.com,"Remarkable, deeply moving work that attempts to answer the haunting question, Who was Anne Frank?",2000-01-01,11541,Anne Frank Remembered +James Berardinelli,fresh,0112373,ReelViews,"If the story of each of Hitler's victims was told with the sensitivity and power of Anne Frank Remembered, there would not be enough buckets in the world to hold all the tears.",2000-01-01,11541,Anne Frank Remembered +Gillian Gaar,fresh,0112373,Film.com,"Anne's story of courage in the face of horrendous circumstances is a fine legacy, and Anne Frank Remembered reaffirms how relevant her message is today.",2000-01-01,11541,Anne Frank Remembered +Stephen Holden,fresh,0112373,New York Times,The film's accumulated force is a testament to the power of understatement.,2000-01-01,11541,Anne Frank Remembered +Carrie Gorringe,rotten,0112373,Film.com,"Anne Frank Remembered tells the audience very little about Anne, but the film speaks volumes concerning the problematic aspects of Holocaust representation.",2000-01-01,11541,Anne Frank Remembered +Roger Ebert,fresh,0112373,Chicago Sun-Times,"In the film's most extraordinary discovery, we see the only existing film footage of Anne Frank, taken one day in 1941, before the Franks went into hiding.",2000-01-01,11541,Anne Frank Remembered +Keith Simanton,fresh,0112373,Film.com,"If this is not the best film about the Holocaust, it does strongly chronicle the sad fate of one of its most famous victims.",2000-01-01,11541,Anne Frank Remembered +Dominique Dibbell,fresh,0112373,Film.com,The interviews constitute the emotional backbone. The mere existence of these survivors is eloquent testimony to events so cruel they defy belief.,2000-01-01,11541,Anne Frank Remembered +John Hartl,fresh,0112373,Film.com,"Of all the movies and television productions that have told her story, this is the most valuable and satisfying.",2000-01-01,11541,Anne Frank Remembered +Lyall Bush,fresh,0112373,Film.com,"In retracing the short life and grotesque death of the century's best known diarist, Anna Frank, it has its own private dignity.",2000-01-01,11541,Anne Frank Remembered +Edward Guthmann,fresh,0112373,San Francisco Chronicle,"A tender, elaborately detailed account of a life curtailed.",2000-01-01,11541,Anne Frank Remembered +Joe Baltake,fresh,0112373,Sacramento Bee,"An accomplishment, a genuinely humbling one.",2000-01-01,11541,Anne Frank Remembered +Stanley Kauffmann,fresh,0112373,The New Republic,"The film adds little to previous factual knowledge, but it deepens our connections with the story through the power of film itself.",2000-01-01,11541,Anne Frank Remembered +,fresh,0112373,Entertainment Weekly,,1995-06-08,11541,Anne Frank Remembered +Owen Gleiberman,fresh,0115033,Entertainment Weekly,,2011-09-07,14722,The Young Poisoner's Handbook +Todd McCarthy,none,0115033,Variety,,2009-03-26,14722,The Young Poisoner's Handbook +Geoff Andrew,none,0115033,Time Out,,2006-06-24,14722,The Young Poisoner's Handbook +Kenneth Turan,none,0115033,Los Angeles Times,,2001-02-14,14722,The Young Poisoner's Handbook +Hal Hinson,none,0115033,Washington Post,,2000-01-01,14722,The Young Poisoner's Handbook +Janet Maslin,none,0115033,New York Times,,2000-01-01,14722,The Young Poisoner's Handbook +Roger Ebert,fresh,0115033,Chicago Sun-Times,,2000-01-01,14722,The Young Poisoner's Handbook +Edward Guthmann,none,0115033,San Francisco Chronicle,,2000-01-01,14722,The Young Poisoner's Handbook +James Berardinelli,fresh,0115033,ReelViews,,2000-01-01,14722,The Young Poisoner's Handbook +Joe Baltake,none,0115033,Sacramento Bee,,2000-01-01,14722,The Young Poisoner's Handbook +,fresh,0115033,Entertainment Weekly,,1995-01-20,14722,The Young Poisoner's Handbook +Sarah Kerr,rotten,0116606,New Yorker,"A bleak, annoyingly quirky Gen-X recasting of the When Harry Met Sally notion that true love is based on friendship.",2013-07-30,14133,If Lucy Fell +Lisa Schwarzbaum,rotten,0116606,Entertainment Weekly,,2011-09-07,14133,If Lucy Fell +Janet Maslin,rotten,0116606,New York Times,"All coy grins and daffy mugging, Mr. Stiller plays the role as if aspiring to become the Elliott Gould of his generation. Compared with jumping off the Brooklyn Bridge, that's a reasonable goal.",2000-01-01,14133,If Lucy Fell +Jeff Millar,fresh,0116606,Houston Chronicle,"If Lucy Fell is funnier more often than not, and when it's not being funny it's at least being strange. I'll take strange over what most major-distributor comedies are when they're not being funny.",2000-01-01,14133,If Lucy Fell +Susan Stark,rotten,0116606,Detroit News,,2000-01-01,14133,If Lucy Fell +Roger Ebert,rotten,0116606,Chicago Sun-Times,"There is an affectation that I find particularly annoying, and that is when people choose to perform at a level below their natural intelligence.",2000-01-01,14133,If Lucy Fell +Peter Stack,rotten,0116606,San Francisco Chronicle,"It's airy, fluffy and ultimately uninteresting.",2000-01-01,14133,If Lucy Fell +Hal Hinson,fresh,0116606,Washington Post,"If Lucy Fell should be a chore, and yet I kept catching myself having a good time.",2000-01-01,14133,If Lucy Fell +Susan Wloszczyna,rotten,0116606,USA Today,"Sadly, the story is nowhere as original as the details and performances.",2000-01-01,14133,If Lucy Fell +James Berardinelli,rotten,0116606,ReelViews,"A disappointingly superficial romantic comedy. There's no chemistry between any of the characters. The acting is mediocre, with Schaeffer and Parker exhibiting no screen presence.",2000-01-01,14133,If Lucy Fell +,rotten,0116606,Entertainment Weekly,,1996-03-08,14133,If Lucy Fell +Leonard Klady,none,0114536,Variety,,2009-03-26,12792,Steal Big Steal Little +Derek Adams,none,0114536,Time Out,,2006-02-09,12792,Steal Big Steal Little +Caryn James,none,0114536,New York Times,,2003-05-20,12792,Steal Big Steal Little +Jack Mathews,none,0114536,Los Angeles Times,,2002-08-15,12792,Steal Big Steal Little +Mick LaSalle,none,0114536,San Francisco Chronicle,,2002-06-18,12792,Steal Big Steal Little +,none,0114536,Globe and Mail,,2002-04-12,12792,Steal Big Steal Little +James Berardinelli,rotten,0114536,ReelViews,,2000-01-01,12792,Steal Big Steal Little +,rotten,0114536,USA Today,Overlong and overreaching.,2000-01-01,12792,Steal Big Steal Little +Hal Hinson,none,0114536,Washington Post,,2000-01-01,12792,Steal Big Steal Little +Roger Ebert,rotten,0114536,Chicago Sun-Times,,2000-01-01,12792,Steal Big Steal Little +Joe Baltake,none,0114536,Sacramento Bee,,2000-01-01,12792,Steal Big Steal Little +Leonard Klady,none,0117427,Variety,,2009-03-26,12220,Race the Sun +Esther Iverem,none,0117427,Washington Post,,2000-01-01,12220,Race the Sun +Peter Stack,none,0117427,San Francisco Chronicle,,2000-01-01,12220,Race the Sun +Stephen Holden,none,0117427,New York Times,,2000-01-01,12220,Race the Sun +Susan Stark,rotten,0117427,Detroit News,,2000-01-01,12220,Race the Sun +James Berardinelli,rotten,0117427,ReelViews,,2000-01-01,12220,Race the Sun +,rotten,0117427,Entertainment Weekly,,1996-03-22,12220,Race the Sun +Todd McCarthy,none,0106473,Variety,,2009-03-26,18756,The Boys of St. Vincent +Janet Maslin,none,0106473,New York Times,,2003-05-20,18756,The Boys of St. Vincent +Peter Stack,none,0106473,San Francisco Chronicle,,2000-01-01,18756,The Boys of St. Vincent +,fresh,0106473,Entertainment Weekly,,1992-01-01,18756,The Boys of St. Vincent +Owen Gleiberman,rotten,0103859,Entertainment Weekly,,2011-09-07,13112,Boomerang +Lawrence Cohn,rotten,0103859,Variety,In Boomerang Eddie Murphy straitjackets himself in an ill-fitting comedy vehicle that's desperately in need of a reality check.,2008-03-18,13112,Boomerang +Jonathan Rosenbaum,fresh,0103859,Chicago Reader,"The general idea is to exploit a certain amount of role reversal, and Reginald Hudlin, who directed House Party, does a fairly good job of making this fun.",2008-03-18,13112,Boomerang +Stephen Garrett,rotten,0103859,Time Out,"The film is far too slick to be ineffective, but its attempts to play with the sex-war theme are often unbelievably crass.",2006-06-24,13112,Boomerang +Janet Maslin,rotten,0103859,New York Times,"There's something paradoxical about the ease he radiates in playing a man who is supposed to be a smashing success. As an underdog, Mr. Murphy worked much harder.",2003-05-20,13112,Boomerang +Peter Travers,rotten,0103859,Rolling Stone,"For all the sex talk in Boomerang, there's very little nudity. The only thing naked is Murphy's vanity.",2001-06-06,13112,Boomerang +Hal Hinson,fresh,0103859,Washington Post,"Boomerang is the funniest, most sophisticated movie of Eddie Murphy's career.",2000-01-01,13112,Boomerang +Roger Ebert,fresh,0103859,Chicago Sun-Times,"Whatever [Murphy] was thinking during the dark days of his career slump, it seems to have paid off handsomely.",2000-01-01,13112,Boomerang +Joe Brown,fresh,0103859,Washington Post,"Murphy gives his most appealing performance to date, using his smug, self-satisfied, sly smile as a joke on his own well-known screen persona.",2000-01-01,13112,Boomerang +,rotten,0103859,Entertainment Weekly,,1992-07-01,13112,Boomerang +Derek Elley,none,0109424,Variety,,2009-03-26,10641,Chung Hing sam lam +,none,0109424,Time Out,,2006-06-24,10641,Chung Hing sam lam +Janet Maslin,none,0109424,New York Times,,2004-08-30,10641,Chung Hing sam lam +Kevin Thomas,fresh,0109424,Los Angeles Times,"As fresh as falling rain, a pair of love stories full of pain and humor.",2001-02-14,10641,Chung Hing sam lam +Jeff Millar,fresh,0109424,Houston Chronicle,It's interesting enough to watch for most of its length because of Wong's incisive camera work and his intense immersion of the Hong Kong night culture.,2000-01-01,10641,Chung Hing sam lam +Roger Ebert,fresh,0109424,Chicago Sun-Times,"This is the kind of movie you'll relate to if you love film itself, rather than its surface aspects such as story and stars.",2000-01-01,10641,Chung Hing sam lam +James Berardinelli,fresh,0109424,ReelViews,"Once the viewer gets past bouts of confusion (the film demands more than one viewing), the result is a uniquely memorable look at the ties that bind all people.",2000-01-01,10641,Chung Hing sam lam +Gary Kamiya,rotten,0109424,Salon.com,"A frenetic one-way ride through The Land of Vaporous Plot, with stops along the way at Irritatingly Cute Extended Metaphor City.",2000-01-01,10641,Chung Hing sam lam +Mick LaSalle,fresh,0109424,San Francisco Chronicle,More impressive than engaging.,2000-01-01,10641,Chung Hing sam lam +Joe Baltake,fresh,0109424,Sacramento Bee,"A movie that has Tarantino's brand of kinetic, eccentric energy but that's much more soulful.",2000-01-01,10641,Chung Hing sam lam +David Rooney,none,0114808,Variety,,2009-03-26,14665,L'uomo delle stelle +Geoff Andrew,none,0114808,Time Out,,2006-06-24,14665,L'uomo delle stelle +,none,0114808,Los Angeles Times,,2001-02-14,14665,L'uomo delle stelle +Susan Stark,fresh,0114808,Detroit News,,2000-01-01,14665,L'uomo delle stelle +Janet Maslin,none,0114808,New York Times,,2000-01-01,14665,L'uomo delle stelle +Roger Ebert,fresh,0114808,Chicago Sun-Times,"The movie is not as special as Cinema Paradiso, but in its own way it is enchanted, too. Mother of God, what faces.",2000-01-01,14665,L'uomo delle stelle +Joe Baltake,none,0114808,Sacramento Bee,,2000-01-01,14665,L'uomo delle stelle +Edward Guthmann,none,0114808,San Francisco Chronicle,,2000-01-01,14665,L'uomo delle stelle +Mike Clark,rotten,0114808,USA Today,"The central story, belatedly introduced, may prove rudely downbeat for viewers who lapped up Paradiso's sentiment.",2000-01-01,14665,L'uomo delle stelle +James Berardinelli,fresh,0114808,ReelViews,,2000-01-01,14665,L'uomo delle stelle +Desson Thomson,none,0114808,Washington Post,,2000-01-01,14665,L'uomo delle stelle +,none,0114808,Houston Chronicle,,2000-01-01,14665,L'uomo delle stelle +Stanley Kauffmann,none,0114808,The New Republic,,2000-01-01,14665,L'uomo delle stelle +Rita Kempley,none,0114808,Washington Post,,2000-01-01,14665,L'uomo delle stelle +,fresh,0114808,Entertainment Weekly,,1995-09-21,14665,L'uomo delle stelle +Lisa Schwarzbaum,fresh,0116324,Entertainment Weekly,David O. Russell has a twisted mind; I like that in a man.,2011-09-07,15654,Flirting with Disaster +Todd McCarthy,fresh,0116324,Variety,"This whacked-out road comedy about a young man's search for his real parents takes any number of unexpected turns, most of them bitingly funny.",2009-03-26,15654,Flirting with Disaster +,fresh,0116324,Time Out,"The neurotic frenzy threatens to annoy, but Russell's edgy, abbreviated style generates farcical comic friction without sacrificing character.",2006-01-26,15654,Flirting with Disaster +Edward Guthmann,fresh,0116324,San Francisco Chronicle,,2002-06-18,15654,Flirting with Disaster +Susan Stark,fresh,0116324,Detroit News,,2000-01-01,15654,Flirting with Disaster +Roger Ebert,fresh,0116324,Chicago Sun-Times,"There are conventions in this sort of story, and Russell seems to violate most of them. He allows the peculiarities of his characters to lead them away from the plot line and into perplexities of their own.",2000-01-01,15654,Flirting with Disaster +Susan Wloszczyna,fresh,0116324,USA Today,Hang on and prepare to laugh continually.,2000-01-01,15654,Flirting with Disaster +James Berardinelli,fresh,0116324,ReelViews,,2000-01-01,15654,Flirting with Disaster +Desson Thomson,fresh,0116324,Washington Post,"The perpetual motion is a deliciously hysterical rush. This offbeat, documentary-like comedy becomes geometrically funnier as it goes along.",2000-01-01,15654,Flirting with Disaster +Janet Maslin,fresh,0116324,New York Times,"[A] wonderfully mad odyssey of a movie, in which a man sets out to find his biological parents and winds up meeting more weirdos than Alice found down the rabbit hole.",2000-01-01,15654,Flirting with Disaster +Derek Elley,none,0110647,Variety,,2009-03-26,9537,The Neverending Story III +,none,0110647,Time Out,,2006-01-26,9537,The Neverending Story III +Lisa Nesselson,none,0110217,Variety,,2009-03-26,770921029,Jupiter's Wife +Walter Goodman,none,0110217,New York Times,,2003-05-20,770921029,Jupiter's Wife +James Berardinelli,rotten,0110217,ReelViews,,2000-01-01,770921029,Jupiter's Wife +Edward Guthmann,none,0110217,San Francisco Chronicle,,2000-01-01,770921029,Jupiter's Wife +Todd McCarthy,none,0114131,Variety,,2009-03-26,16558,Pie in the Sky +Robert Denerstein,none,0114131,Denver Rocky Mountain News,,2002-08-09,16558,Pie in the Sky +Andrew Sarris,none,0145653,New York Observer,,2007-04-27,14147,Angela's Ashes +Geoff Andrew,none,0145653,Time Out,,2006-02-09,14147,Angela's Ashes +,none,0145653,Houston Chronicle,,2005-07-21,14147,Angela's Ashes +Peter Rainer,none,0145653,New York Magazine,,2004-08-07,14147,Angela's Ashes +Jeff Strickler,none,0145653,Minneapolis Star Tribune,,2002-11-06,14147,Angela's Ashes +,fresh,0145653,Globe and Mail,,2002-03-19,14147,Angela's Ashes +Janet Maslin,rotten,0145653,New York Times,The film isn't wrenching enough to do it justice.,2000-01-01,14147,Angela's Ashes +Cody Clark,rotten,0145653,Mr. Showbiz,"If Parker had aimed more at capturing the author's unique voice, and worried less about getting the details right, his movie might have been extraordinary.",2000-01-01,14147,Angela's Ashes +Michael Wilmington,fresh,0145653,Chicago Tribune,There is in the film a beauty and ambition rare in most current movies.,2000-01-01,14147,Angela's Ashes +Todd McCarthy,rotten,0145653,Variety,"Mostly misses the humor, lyricism and emotional charge of Frank McCourt's magical and magnificent memoir.",2000-01-01,14147,Angela's Ashes +Jonathan Foreman,fresh,0145653,New York Post,"Watson, the queen of suffering-female roles, is as good as ever.",2000-01-01,14147,Angela's Ashes +Owen Gleiberman,rotten,0145653,Entertainment Weekly,Angela's Ashes is the soggiest dud of all the major holiday releases.,2000-01-01,14147,Angela's Ashes +Steve Murray,rotten,0145653,Atlanta Journal-Constitution,Mostly it's a series of visits to the welfare line.,2000-01-01,14147,Angela's Ashes +Roger Ebert,rotten,0145653,At the Movies,Lacking a heart.,2000-01-01,14147,Angela's Ashes +Jay Carr,rotten,0145653,Boston Globe,The film is too often trapped in its own reverence and solemnity.,2000-01-01,14147,Angela's Ashes +Peter Brunette,rotten,0145653,Film.com,"I'm sure the producers of Angela's Ashes meant well, but they got the wrong guy to direct it.",2000-01-01,14147,Angela's Ashes +Kenneth Turan,rotten,0145653,Los Angeles Times,"Primitive peoples, or so it's said, resist being photographed, believing that the creation of an image robs them of their souls. A quaint notion, perhaps, but how else can you explain what's happened to Angela's Ashes?",2000-01-01,14147,Angela's Ashes +Susan Stark,rotten,0145653,Detroit News,"For all its fidelity to the spirit and, in extended passages, to the letter of McCourt's book, however, Parker's film falls short.",2000-01-01,14147,Angela's Ashes +Joe Baltake,none,0145653,Sacramento Bee,,2000-01-01,14147,Angela's Ashes +John Anderson,fresh,0145653,Newsday,"There's a compelling momentum to Angela's Ashes, Alan Parker's very faithful, if poetically subordinate, version of McCourt's book, which imposed elegance on squalor and intelligence on the indolence cultivated by poverty.",2000-01-01,14147,Angela's Ashes +,fresh,0113107,Entertainment Weekly,,2010-12-25,770671715,Frankie Starlight +,none,0113107,Time Out,,2006-01-26,770671715,Frankie Starlight +Janet Maslin,none,0113107,New York Times,,2003-05-20,770671715,Frankie Starlight +,none,0113107,Globe and Mail,,2002-04-12,770671715,Frankie Starlight +Edward Guthmann,none,0113107,San Francisco Chronicle,,2000-01-01,770671715,Frankie Starlight +James Berardinelli,fresh,0113107,ReelViews,,2000-01-01,770671715,Frankie Starlight +Owen Gleiberman,rotten,0256524,Entertainment Weekly,,2011-09-07,11829,The Curse of the Jade Scorpion +,none,0256524,Time Out,,2006-02-09,11829,The Curse of the Jade Scorpion +Robert Denerstein,rotten,0256524,Denver Rocky Mountain News,"The movie has an odd feeling, both lush and listless. It's enough to make us believe Allen's comic batteries need recharging.",2002-08-09,11829,The Curse of the Jade Scorpion +Peter Rainer,rotten,0256524,New York Magazine,"The romance between C.W. and Betty Ann doesn't have much ardor, repressed or otherwise.",2002-01-22,11829,The Curse of the Jade Scorpion +Stephen Hunter,fresh,0256524,Washington Post,"Mid-level, pretty-but-not- hugely-funny Allen film.",2002-01-06,11829,The Curse of the Jade Scorpion +David Edelstein,rotten,0256524,Slate,"It's evidently important to Allen to work, work, work, but he's starting to make his movies by rote instead of passion.",2001-08-31,11829,The Curse of the Jade Scorpion +Jonathan Rosenbaum,fresh,0256524,Chicago Reader,[Allen's] let his guard down and has allowed himself and his audience to relax -- something that doesn't often happen when the specters of class and European art hover over his pictures.,2001-08-31,11829,The Curse of the Jade Scorpion +Desson Thomson,rotten,0256524,Washington Post,"Despite an appealing, even ingenious premise, Scorpion is another quippy but uninspired comedy.",2001-08-24,11829,The Curse of the Jade Scorpion +Moira MacDonald,fresh,0256524,Seattle Times,"The director may be coasting with Jade Scorpion, but audiences will likely have too much fun to care.",2001-08-24,11829,The Curse of the Jade Scorpion +Mick LaSalle,fresh,0256524,San Francisco Chronicle,"Many of the jokes fall flat, and the film has a musty smell about it, like an apartment someone has been living in for too long. Yet the picture plays out pleasantly, and Allen creates a world that's easy to inhabit.",2001-08-24,11829,The Curse of the Jade Scorpion +Joe Baltake,fresh,0256524,Sacramento Bee,In spite of its dated ways -- or perhaps because of them -- it just may be the most youthful film you'll see this summer.,2001-08-24,11829,The Curse of the Jade Scorpion +Jay Boyar,rotten,0256524,Orlando Sentinel,About as insignificant as a movie can be without blowing right off the screen.,2001-08-24,11829,The Curse of the Jade Scorpion +John Anderson,fresh,0256524,Newsday,"The frothiest, funniest comedy he has made since Manhattan Murder Mystery.",2001-08-24,11829,The Curse of the Jade Scorpion +Lou Lumenick,fresh,0256524,New York Post,Enormous fun.,2001-08-24,11829,The Curse of the Jade Scorpion +Eric Harrison,rotten,0256524,Houston Chronicle,"This new one has a clever premise, is well-acted, and has a polished, deliberately antiquated look, but it elicits more shrugs than laughs.",2001-08-24,11829,The Curse of the Jade Scorpion +Liam Lacey,rotten,0256524,Globe and Mail,"Feels like an exercise in seasoned craft with an occasional good line, which can't help seeming hugely lacking in ambition. There's a prevailing sense that the wind has gone out of Allen's artistic sails.",2001-08-24,11829,The Curse of the Jade Scorpion +Susan Stark,rotten,0256524,Detroit News,"The title is, to be sure, delightful but the movie itself is, finally, a trifle.",2001-08-24,11829,The Curse of the Jade Scorpion +Terry Lawson,rotten,0256524,Detroit Free Press,"In nearly four decades of filmmaking, Woody Allen has been hilarious, brilliant, maddening, contrary and unsettling. Never, though, has he been so ordinary.",2001-08-24,11829,The Curse of the Jade Scorpion +Roger Ebert,rotten,0256524,Chicago Sun-Times,"The movie is a pleasure to watch, the craft is voluptuous to regard, but The Curse of the Jade Scorpion lacks the elusive zing of inspiration.",2001-08-24,11829,The Curse of the Jade Scorpion +Jay Carr,fresh,0256524,Boston Globe,"There's nothing major here, certainly nothing on the order of my favorite among Allen's retro workouts of the past decade, Bullets Over Broadway. But it's entertaining all the same.",2001-08-24,11829,The Curse of the Jade Scorpion +Derek Adams,none,0114500,Time Out,,2006-06-24,770683531,Sonic Outlaws +Jonathan Rosenbaum,none,0114500,Chicago Reader,,2005-04-09,770683531,Sonic Outlaws +Janet Maslin,none,0114500,New York Times,,2005-04-09,770683531,Sonic Outlaws +Leonard Klady,fresh,0116130,Variety,"It's good-natured, innocuous frivolity that should raise a few smiles and generate good but not great spring box office.",2008-11-21,10114,Down Periscope +,rotten,0116130,Time Out,"he construction is so ramshackle (or the mood so PC) that the film-makers put a woman (Holly) on board, then can't find a thing to do with her.",2006-01-26,10114,Down Periscope +Susan Wloszczyna,rotten,0116130,USA Today,"A soggy sub sandwich layered with cheesy action, stale jokes and gung-ho baloney.",2000-01-01,10114,Down Periscope +Stephen Holden,rotten,0116130,New York Times,"The tone of the acting, which is set by Mr. Grammer's blandly laid-back performance, is all wrong for a genre that demands over-the-top hamming.",2000-01-01,10114,Down Periscope +Susan Stark,rotten,0116130,Detroit News,,2000-01-01,10114,Down Periscope +Hal Hinson,rotten,0116130,Washington Post,"More laid-back here than he is on television, Grammer seems to barely break a sweat.",2000-01-01,10114,Down Periscope +Edward Guthmann,rotten,0116130,San Francisco Chronicle,"After that auspicious opening, it sinks.",2000-01-01,10114,Down Periscope +James Berardinelli,rotten,0116130,ReelViews,"There are occasional laughs, but, as with most movies that think they're funnier than they actually are, most of the jokes fall flat.",2000-01-01,10114,Down Periscope +,rotten,0116130,Entertainment Weekly,,1996-03-01,10114,Down Periscope +David Rooney,none,0113125,Variety,,2009-03-26,770807977,From the Journals of Jean Seberg +,none,0113125,Time Out,,2006-01-26,770807977,From the Journals of Jean Seberg +,none,0113125,Los Angeles Times,,2001-02-14,770807977,From the Journals of Jean Seberg +Caryn James,none,0113125,New York Times,,2000-01-01,770807977,From the Journals of Jean Seberg +Roger Ebert,fresh,0113125,Chicago Sun-Times,,2000-01-01,770807977,From the Journals of Jean Seberg +,none,0113125,Houston Chronicle,,2000-01-01,770807977,From the Journals of Jean Seberg +Edward Guthmann,none,0113125,San Francisco Chronicle,,2000-01-01,770807977,From the Journals of Jean Seberg +Stanley Kauffmann,none,0113125,The New Republic,,2000-01-01,770807977,From the Journals of Jean Seberg +James Berardinelli,fresh,0113125,ReelViews,,2000-01-01,770807977,From the Journals of Jean Seberg +Jonathan Rosenbaum,fresh,0113125,Chicago Reader,,1996-03-01,770807977,From the Journals of Jean Seberg +Bob Mondello,none,0483726,NPR.org,,2008-10-18,314387293,Man of the Year +Michael Wilmington,rotten,0483726,Chicago Tribune,Levinson has written and directed in many genres. But rarely has he made a film as indecisive and diffident as Man of the Year.,2006-10-21,314387293,Man of the Year +Richard Roeper,fresh,0483726,Ebert & Roeper,A surprisingly complex and dark satire that skewers the media as well as the political process.,2006-10-17,314387293,Man of the Year +,none,0483726,St. Louis Post-Dispatch,,2006-10-15,314387293,Man of the Year +James Berardinelli,rotten,0483726,ReelViews,"Man of the Year makes telling points and has a lot to say, but it loses its voice along with its consistency around the mid-way point, and that will likely make it an also-ran in the box office race.",2006-10-13,314387293,Man of the Year +Stephanie Zacharek,rotten,0483726,Salon.com,"It's a comedy, a political thriller, a love story: Barry Levinson's Man of the Year tries to be all things to all people and fails on every count -- a little like the generic, ineffectual politicians it's pretending to excoriate.",2006-10-13,314387293,Man of the Year +Joe Morgenstern,rotten,0483726,Wall Street Journal,"A few observations about the hollowness of party politics, plus Robin Williams doing lots of funny shtick as a Jon Stewart-like comic running for president, have been thrown together with low regard for logic or consistent tone.",2006-10-13,314387293,Man of the Year +Moira MacDonald,rotten,0483726,Seattle Times,"Barry Levinson's Man of the Year squanders a promising premise; it's ultimately overlong, underwritten and strangely unfunny.",2006-10-13,314387293,Man of the Year +Mick LaSalle,fresh,0483726,San Francisco Chronicle,"A genre-less, imaginative riff by an intelligent filmmaker on the state of the country.",2006-10-13,314387293,Man of the Year +Roger Moore,rotten,0483726,Orlando Sentinel,"It's a nearly tone-deaf satire of American politics and the culture of celebrity, a comedy without enough laughs, a satire without enough bite.",2006-10-13,314387293,Man of the Year +Stephen Whitty,rotten,0483726,Newark Star-Ledger,Only in filmmaking does one very good idea plus another very good idea sometimes add up to one less-than-great picture.,2006-10-13,314387293,Man of the Year +Kyle Smith,rotten,0483726,New York Post,"Man of the Year is longer than the FDR administration, less funny than Calvin Coolidge and deader than Abe Lincoln.",2006-10-13,314387293,Man of the Year +Jack Mathews,rotten,0483726,New York Daily News,A few moments do not make a new Mr. Smith Goes to Washington. Frank Capra can continue to rest in peace.,2006-10-13,314387293,Man of the Year +Rene Rodriguez,rotten,0483726,Miami Herald,The second half of Man of the Year bears practically no relation to the irreverent comedy the movie's trailer sells you -- much like a politician who doesn't keep any of the promises that lured you to vote for him.,2006-10-13,314387293,Man of the Year +Amy Biancolli,fresh,0483726,Houston Chronicle,"Man of the Year isn't Movie of the Year. It might have been an ironic condemnation of electoral fraud and the malignant sway of corporate profits. But for a while, anyway, it had my vote.",2006-10-13,314387293,Man of the Year +Kate Taylor,rotten,0483726,Globe and Mail,Man of the Year is a moderately funny little movie that isn't pointed enough to successfully skewer its political targets.,2006-10-13,314387293,Man of the Year +Tom Long,rotten,0483726,Detroit News,"Man of the Year is a well-intentioned mess, a dated, yuk-it-up sloppy civics lesson with such a lack of conviction that it backs away from the very questions it poses.",2006-10-13,314387293,Man of the Year +Terry Lawson,fresh,0483726,Detroit Free Press,"No one will mistake Man of the Year for movie of the year, but it says some things worth being said without the usual straight face.",2006-10-13,314387293,Man of the Year +Robert Denerstein,rotten,0483726,Denver Rocky Mountain News,Man of the Year starts out funny -- at least that's the intention -- and then morphs into a kind of paranoid thriller. Neither one of the movie's split personalities is particularly good.,2006-10-13,314387293,Man of the Year +Lisa Kennedy,fresh,0483726,Denver Post,"There's a Preston Sturges lesson in Man of the Year: Entertaining folks is its own civic duty. At times, making citizens laugh (and think) might be the most honorable profession of all.",2006-10-13,314387293,Man of the Year +Owen Gleiberman,fresh,0107076,Entertainment Weekly,,2011-09-07,14158,Hard Target +Emanuel Levy,rotten,0107076,Variety,"A disappointing American debut of the Hong Kong cult director John Woo is a decent action vehicle by standards of its star Jean-Claude Van Damme but, hampered by a B script and flat characters, it doesn't bear Woo's auteurist signature and unique vision",2006-10-10,14158,Hard Target +Derek Adams,fresh,0107076,Time Out,"It's what Hollywood wanted Woo for: bigger, brighter explosions.",2006-06-24,14158,Hard Target +Janet Maslin,fresh,0107076,New York Times,"Presenting Mr. Van Damme as reverentially as Sergio Leone did the young Clint Eastwood, Mr. Woo displays a real aptitude for malignant mischief, which is this story's stock in trade.",2004-08-30,14158,Hard Target +Peter Travers,fresh,0107076,Rolling Stone,"Even when the acting is hammy, notably Wilford Brimley's turn as Chance's Cajun uncle, Woo stages every fight with hypnotic grace.",2001-05-12,14158,Hard Target +Richard Harrington,rotten,0107076,Washington Post,"Woo, a master of stylized violence and explosive action, has had to buy into America's fascination with explosive effects and reaction. Something gets lost in the transition.",2000-01-01,14158,Hard Target +James Berardinelli,fresh,0107076,ReelViews,"Its characters are poorly-developed, the plot is the pinnacle of absurdity, and the acting, at best, is well over-the-top. Nevertheless, on the most basic, visceral level, the film succeeds.",2000-01-01,14158,Hard Target +Desson Thomson,rotten,0107076,Washington Post,"Essentially, Hard Target is a risk-averse Van Damme vehicle, steered by many hands, and set on tracks leading directly to the delivery entrances of the country's video stores.",2000-01-01,14158,Hard Target +,fresh,0107076,Entertainment Weekly,,1800-01-01,14158,Hard Target +Gene Siskel,rotten,0118055,Chicago Tribune,Is it worse as a love story or as a drama about the sorry state of television news? The answer: It's a tie.,2013-01-16,11087,Up Close & Personal +Lisa Schwarzbaum,rotten,0118055,Entertainment Weekly,,2011-09-07,11087,Up Close & Personal +Leonard Klady,none,0118055,Variety,,2009-03-26,11087,Up Close & Personal +Geoff Andrew,none,0118055,Time Out,,2006-02-09,11087,Up Close & Personal +Mick LaSalle,fresh,0118055,San Francisco Chronicle,,2002-06-18,11087,Up Close & Personal +Anita Gates,none,0118055,New York Times,,2000-01-01,11087,Up Close & Personal +,none,0118055,Houston Chronicle,,2000-01-01,11087,Up Close & Personal +Susan Stark,fresh,0118055,Detroit News,,2000-01-01,11087,Up Close & Personal +Joe Baltake,none,0118055,Sacramento Bee,,2000-01-01,11087,Up Close & Personal +Stanley Kauffmann,none,0118055,The New Republic,,2000-01-01,11087,Up Close & Personal +Mike Clark,rotten,0118055,USA Today,This is one of those untaxing time-killers where you spend a lot of time pondering which of its actress's changing hairstyles you like best.,2000-01-01,11087,Up Close & Personal +Roger Ebert,fresh,0118055,Chicago Sun-Times,,2000-01-01,11087,Up Close & Personal +,none,0118055,Washington Post,,2000-01-01,11087,Up Close & Personal +James Berardinelli,rotten,0118055,ReelViews,,2000-01-01,11087,Up Close & Personal +,rotten,0118055,Entertainment Weekly,,1996-03-01,11087,Up Close & Personal +Jonathan Rosenbaum,fresh,0115685,Chicago Reader,"This isn't the supreme masterpiece it might have been, but Nichols's direction is very polished and some of the lines and details are awfully funny.",2011-05-29,12915,The Birdcage +Hal Hinson,fresh,0115685,Washington Post,"If The Birdcage isn't exactly the Mike Nichols-Elaine May movie of our dreams, it does manage to transform what was formerly a campy bit of French fluff into one of the loopiest, most hysterical family-values movies ever made.",2011-05-27,12915,The Birdcage +Todd McCarthy,fresh,0115685,Variety,The Birdcage is a scream.,2009-03-26,12915,The Birdcage +,rotten,0115685,Time Out,It doesn't so much champion diversity as celebrate conformity.,2006-06-24,12915,The Birdcage +Edward Guthmann,rotten,0115685,San Francisco Chronicle,A glossy miscalculation with Nathan Lane and Robin Williams.,2002-06-18,12915,The Birdcage +Desson Thomson,fresh,0115685,Washington Post,"Basically, the movie's an extended setup for a dinner-table comedy of errors, in which the mismatched relatives confront one another in a nerve-racking test of appearances.",2000-01-01,12915,The Birdcage +Susan Stark,fresh,0115685,Detroit News,,2000-01-01,12915,The Birdcage +James Berardinelli,fresh,0115685,ReelViews,One of those rare motion pictures with side-splitting laughs where the humor never stays dormant for long.,2000-01-01,12915,The Birdcage +Susan Wloszczyna,fresh,0115685,USA Today,Far less plastic than most cross-dressing comedies.,2000-01-01,12915,The Birdcage +Roger Ebert,fresh,0115685,Chicago Sun-Times,"What makes Mike Nichols' version more than just a retread is good casting in the key roles, and a wicked screenplay by Elaine May, who keeps the original story but adds little zingers here and there.",2000-01-01,12915,The Birdcage +Janet Maslin,fresh,0115685,New York Times,An American remake with plenty of new pizazz.,2000-01-01,12915,The Birdcage +Owen Gleiberman,fresh,0115685,Entertainment Weekly,The beauty of The Birdcage is that its jokes and its message are one and the same. These characters couldn't change themselves if they tried. And only a fool would want them to.,1996-03-06,12915,The Birdcage +Lisa Schwarzbaum,fresh,0112585,Entertainment Weekly,,2011-09-07,14213,The Brothers McMullen +Todd McCarthy,none,0112585,Variety,,2008-10-18,14213,The Brothers McMullen +,none,0112585,Time Out,,2006-02-09,14213,The Brothers McMullen +Joe Williams,fresh,0112585,St. Louis Post-Dispatch,,2005-07-07,14213,The Brothers McMullen +Janet Maslin,none,0112585,New York Times,,2004-08-30,14213,The Brothers McMullen +Peter Stack,fresh,0112585,San Francisco Chronicle,,2002-06-18,14213,The Brothers McMullen +,none,0112585,Globe and Mail,,2002-04-12,14213,The Brothers McMullen +Peter Travers,fresh,0112585,Rolling Stone,,2001-05-12,14213,The Brothers McMullen +Kenneth Turan,fresh,0112585,Los Angeles Times,,2001-02-13,14213,The Brothers McMullen +Joe Baltake,none,0112585,Sacramento Bee,,2000-01-01,14213,The Brothers McMullen +Rita Kempley,none,0112585,Washington Post,,2000-01-01,14213,The Brothers McMullen +James Berardinelli,fresh,0112585,ReelViews,,2000-01-01,14213,The Brothers McMullen +Desson Thomson,none,0112585,Washington Post,,2000-01-01,14213,The Brothers McMullen +Roger Ebert,fresh,0112585,Chicago Sun-Times,,2000-01-01,14213,The Brothers McMullen +,fresh,0112585,Entertainment Weekly,,1995-08-09,14213,The Brothers McMullen +Jonathan Rosenbaum,rotten,0112442,Chicago Reader,"The cops never seem to know what they're doing, but then neither do the filmmakers, though I can't imagine that casual audiences will care since there are plenty of big explosions at the end to reward them.",2010-02-05,16193,Bad Boys +Todd McCarthy,fresh,0112442,Variety,"Even when it's not particularly funny, their interplay is engaging, and their lively, raucous personalities keep the proceedings punchy and watchable for the slightly overlong running time.",2009-03-26,16193,Bad Boys +,rotten,0112442,Time Out,"Unfortunately, the movie is a couple of rewrites short of 'developed', and the thriller configurations are stale.",2006-01-26,16193,Bad Boys +Caryn James,fresh,0112442,New York Times,"This film isn't aiming for high-toned drama, just high-energy entertainment, which is what it delivers.",2003-05-20,16193,Bad Boys +Peter Travers,rotten,0112442,Rolling Stone,It's all special-effects noise and nonsense.,2001-05-12,16193,Bad Boys +Kenneth Turan,rotten,0112442,Los Angeles Times,"Given how much good Bad Boys is going to do for Martin Lawrence's feature career, it's a pity the film couldn't do any more for itself.",2001-02-13,16193,Bad Boys +Mick LaSalle,fresh,0112442,San Francisco Chronicle,A good half-hour's worth of nonsense in the middle keeps Bad Boys from being little better than a break- even proposition.,2000-01-01,16193,Bad Boys +Roger Ebert,rotten,0112442,Chicago Sun-Times,"This movie is so good-looking it deserves a decent screenplay, instead of one more lope down memory lane.",2000-01-01,16193,Bad Boys +Desson Thomson,rotten,0112442,Washington Post,"Even by the low-low standards of cheap action flicks, this one's bad, boys.",2000-01-01,16193,Bad Boys +Rita Kempley,rotten,0112442,Washington Post,"Bad Boys is relentless formulaic fodder for the explosion-starved; it's loud, shallow, sexist and a complete waste of time.",2000-01-01,16193,Bad Boys +James Berardinelli,rotten,0112442,ReelViews,"Bad Boys takes the often-traveled road, and leads the audience to a dead end.",2000-01-01,16193,Bad Boys +Owen Gleiberman,rotten,0112442,Entertainment Weekly,"Of course, the Simpson-Bruckheimer approach may still work at the box office (the only place it ever really mattered, anyway). By now, though, I'd like to think most moviegoers have had a permanent overdose.",1995-05-19,16193,Bad Boys +Daniel M. Kimmel,fresh,0112342,Variety,"Harmless family fare might be deemed politically correct for its concern for endangered species, but whitewashing of Chinese regime will strike adults... as somewhat bizarre.",2005-05-08,11237,The Amazing Panda Adventure +Stephen Holden,none,0112342,New York Times,,2003-05-20,11237,The Amazing Panda Adventure +Kevin Thomas,none,0112342,Los Angeles Times,,2002-08-15,11237,The Amazing Panda Adventure +Susan Wloszczyna,rotten,0112342,USA Today,"Pandas are many things. Adorable fuzzballs. Voracious eaters. Vanishing species. But, as actors, they are black and white and dull all over, which The Amazing Panda Adventure demonstrates all too well.",2000-01-01,11237,The Amazing Panda Adventure +Rita Kempley,none,0112342,Washington Post,,2000-01-01,11237,The Amazing Panda Adventure +James Berardinelli,rotten,0112342,ReelViews,,2000-01-01,11237,The Amazing Panda Adventure +Mick LaSalle,none,0112342,San Francisco Chronicle,,2000-01-01,11237,The Amazing Panda Adventure +Todd McCarthy,none,0112461,Variety,,2009-03-26,16445,The Basketball Diaries +Owen Gleiberman,fresh,0112461,Entertainment Weekly,"For those few soul-freezing moments, you get a glimpse of the great actor Leonardo DiCaprio is going to be.",2008-03-24,16445,The Basketball Diaries +Jonathan Rosenbaum,rotten,0112461,Chicago Reader,"Significantly, the movie keeps the hero's reformation offscreen as well as unexplained; it's more interested in shock effects than in candor or elucidation.",2008-03-24,16445,The Basketball Diaries +,rotten,0112461,Time Out,"The angel-faced DiCaprio is a gifted actor, but he lacks the authority and physical presence to keep us with him.",2006-01-26,16445,The Basketball Diaries +Janet Maslin,rotten,0112461,New York Times,"The star shines, but the movie is hard to watch.",2004-08-30,16445,The Basketball Diaries +Peter Travers,rotten,0112461,Rolling Stone,You leave The Basketball Diaries believing that Leonardo DiCaprio can do anything.,2001-05-12,16445,The Basketball Diaries +Kenneth Turan,rotten,0112461,Los Angeles Times,"Although it masquerades as a cautionary tale about the horrors of heroin, this epic of teen-age angst is more accurately seen as a reverential wallow in the gutter of self-absorption.",2001-02-13,16445,The Basketball Diaries +Edward Guthmann,rotten,0112461,San Francisco Chronicle,"Amazingly, though, even with Kalvert's lack of style and vision, the greatness of DiCaprio's performance is undiminished.",2000-01-01,16445,The Basketball Diaries +Roger Ebert,rotten,0112461,Chicago Sun-Times,Will there ever be a market for a movie about a character who hurries past his drug phase because he can't wait to tell you what he did after he pulled his act together? Probably not.,2000-01-01,16445,The Basketball Diaries +James Berardinelli,fresh,0112461,ReelViews,"Facile escapes are rejected, and the resolution is acceptable because we can believe it. In fact, that's the reason this film works as well as it does: credibility.",2000-01-01,16445,The Basketball Diaries +Hal Hinson,fresh,0112461,Washington Post,DiCaprio goes as far into the hell of drug abuse as any actor ever has -- and comes out a star.,2000-01-01,16445,The Basketball Diaries +Joe Brown,rotten,0112461,Washington Post,"A movie for masochists, an unrelentingly ugly 'Just Say No' propaganda movie, it might have been bankrolled by Nancy Reagan.",2000-01-01,16445,The Basketball Diaries +Mike Clark,rotten,0112461,USA Today,"DiCaprio has so much presence that he almost saves the day, but this is a movie that'll make you want to opt for Jim Carrey's The Basketball Diaries.",2000-01-01,16445,The Basketball Diaries +Lisa Schwarzbaum,rotten,0112427,Entertainment Weekly,,2011-09-07,14450,An Awfully Big Adventure +Geoff Andrew,none,0112427,Time Out,,2006-02-09,14450,An Awfully Big Adventure +Janet Maslin,none,0112427,New York Times,,2003-05-20,14450,An Awfully Big Adventure +Edward Guthmann,none,0112427,San Francisco Chronicle,,2002-06-18,14450,An Awfully Big Adventure +Peter Rainer,none,0112427,Los Angeles Times,,2001-02-13,14450,An Awfully Big Adventure +Roger Ebert,rotten,0112427,Chicago Sun-Times,,2000-01-01,14450,An Awfully Big Adventure +Desson Thomson,none,0112427,Washington Post,,2000-01-01,14450,An Awfully Big Adventure +James Berardinelli,rotten,0112427,ReelViews,,2000-01-01,14450,An Awfully Big Adventure +Rita Kempley,none,0112427,Washington Post,,2000-01-01,14450,An Awfully Big Adventure +,rotten,0112427,Entertainment Weekly,,1995-07-21,14450,An Awfully Big Adventure +Robert Koehler,none,0405163,Variety,,2008-06-19,190816055,The Moguls +Mark Rahner,rotten,0405163,Seattle Times,It ranges from awkward to excruciating.,2007-12-14,190816055,The Moguls +Colin Covert,rotten,0405163,Minneapolis Star Tribune,This sort of thing was done much better by the British years ago in The Full Monty and Calendar Girls. There's really no call for an American rehash.,2007-12-13,190816055,The Moguls +Richard Roeper,rotten,0405163,Ebert & Roeper,Do not waste your time with The Amateurs.,2007-12-10,190816055,The Moguls +Dennis Lim,rotten,0405163,Los Angeles Times,"There are no laughs to be found in writer-director Michael Traeger's would-be comedy The Amateurs, but there is one big mystery: how actors of this caliber could have been convinced to take part.",2007-12-07,190816055,The Moguls +Hazel-Dawn Dumpert,rotten,0405163,L.A. Weekly,"As a writer, Traeger is consternatingly adolescent and glib.",2007-12-06,190816055,The Moguls +Peter Travers,fresh,0405163,Rolling Stone,You'll notice that the actors are way overqualified for this nonsense. But the kick they get out of one another is what pulls you in.,2006-09-07,190816055,The Moguls +Ben Walters,rotten,0405163,Time Out,"If there's something hypocritically coy about a sex comedy without sex (let alone a porn industry without victims), there's also something refreshing about the characters' unabashed good nature -- at least until the grievously saccharine finale.",2006-05-06,190816055,The Moguls +Joe Brown,fresh,0112384,Washington Post,"Even if you know how it all turned out (and you should), this amazing journey is harrowing and exhilarating.",2013-07-30,11116,Apollo 13 +Joe Morgenstern,fresh,0112384,Wall Street Journal,The film succeeds brilliantly at organizing great gobs of information into powerful drama.,2013-07-30,11116,Apollo 13 +Jay Boyar,fresh,0112384,Orlando Sentinel,Hanks is a terrific choice for the lead because he can appear strong and military without slipping over into Sgt. Rock corniness.,2013-07-30,11116,Apollo 13 +Michael Wilmington,fresh,0112384,Chicago Tribune,"Apollo 13, one of the most exciting adventure movies of the year, proves that science history can be just as thrilling as science fiction.",2013-07-30,11116,Apollo 13 +Desmond Ryan,fresh,0112384,Philadelphia Inquirer,"Howard is not above pushing buttons of his own and milking the big moments. But they are indeed big moments, and the manipulation is not intrusive. He has made a can-do movie for our can't-do age.",2013-07-30,11116,Apollo 13 +Terrence Rafferty,fresh,0112384,New Yorker,"The film, despite its raggedness, is stirring. In the end, this failed mission seems like the most impressive achievement of the entire space program: a triumph not of planning but of inspired improvisation.",2013-07-30,11116,Apollo 13 +Jonathan Rosenbaum,fresh,0112384,Chicago Reader,"This meticulous but ultimately rather pedestrian drama gradually won me over as a minor if watchable example of the ""victory through defeat"" brand of military heroism that John Ford specialized in.",2011-06-01,11116,Apollo 13 +Kenneth Turan,rotten,0112384,Los Angeles Times,"Self-conscious about its heroism with portrayals that lean toward the glib and the professionally uplifting, the film milks our sympathies too readily to be emotionally convincing.",2010-07-06,11116,Apollo 13 +Todd McCarthy,fresh,0112384,Variety,This engrossing account of the nation's most perilous moon shot embodies what many people consider to be old-fashioned American virtues in a virtually pristine state.,2010-07-06,11116,Apollo 13 +Rita Kempley,fresh,0112384,Washington Post,"Apollo 13, Ron Howard's soaring salute to space exploration, lifts off with a payload of the right stuff-courage, can-do, grace under pressure and other qualities derided as machismo by some and applauded as old-fashioned values by others.",2010-07-06,11116,Apollo 13 +Gene Siskel,fresh,0112384,Chicago Tribune,"Major, rousing, thoroughly professional Hollywood entertainment that will dazzle you with its re-creations of historical events, take you inside the space capsule and the Houston command center, and leave you wondering where our heroes [have gone].",2008-10-18,11116,Apollo 13 +Geoff Andrew,fresh,0112384,Time Out,"For a 'space movie', both the special effects and photography are surprisingly pedestrian. Where it scores is in subtly restating traditional notions of male heroism.",2006-02-09,11116,Apollo 13 +Janet Maslin,fresh,0112384,New York Times,"Playing the tough, commanding Jim Lovell is a substantial stretch for Mr. Hanks, but as usual his seeming ingenuousness overshadows all else about the role. There's not a false move to anything he does on screen.",2003-05-20,11116,Apollo 13 +Ted Fry,fresh,0112384,Seattle Times,"If you thought Tom Hanks was just an ordinary big-screen star, wait until you've seen him eight stories tall.",2002-09-20,11116,Apollo 13 +David Hunter,fresh,0112384,Hollywood Reporter,"The special effects and many scenes of weightlessness look as good or better than in the original, while the Oscar-winning sound and James Horner's rousing score make good use of the hefty audio system.",2002-09-20,11116,Apollo 13 +Susan Stark,fresh,0112384,Detroit News,"The re-release of Ron Howard's Apollo 13 in the IMAX format proves absolutely that really, really, really good things can come in enormous packages.",2002-09-20,11116,Apollo 13 +David Chute,fresh,0112384,L.A. Weekly,"On a purely pictorial level, this is one of the best-looking IMAX movies ever.",2002-09-19,11116,Apollo 13 +Jane Sumner,fresh,0112384,Dallas Morning News,"Blowing up some 35mm films to an image 10 times larger could magnify their plot faults and performance shortcomings. But Apollo 13, with its taut cast, script and direction, profits from the process.",2002-09-19,11116,Apollo 13 +Richard Roeper,fresh,0112384,Ebert & Roeper,It's a great American adventure and a wonderful film to bring to IMAX.,2002-09-03,11116,Apollo 13 +Peter Travers,fresh,0112384,Rolling Stone,It's easily Howard's best film.,2001-05-12,11116,Apollo 13 +Owen Gleiberman,fresh,0114287,Entertainment Weekly,,2011-09-07,13275,Rob Roy +Todd McCarthy,rotten,0114287,Variety,"Rob Roy has its diversions, but they are unfortunately outweighed by some heavy baggage that contains not enough of substance.",2009-03-26,13275,Rob Roy +Geoff Andrew,fresh,0114287,Time Out,"Neeson makes a less dashing action hero than did Day-Lewis, but he brings enough gravitas to his role to endow his love for his wife Mary (Lange) and his conflict with Cunningham with real emotional punch.",2006-02-09,13275,Rob Roy +Janet Maslin,fresh,0114287,New York Times,"Rob Roy is best watched for local color and for its hearty, hot-blooded stars.",2003-05-20,13275,Rob Roy +Peter Stack,rotten,0114287,San Francisco Chronicle,"With such a cast and the setting of the Highlands, plus a story with a gold mine of dramatic potential, it is a puzzle why Rob Roy is so uninvolving.",2002-06-18,13275,Rob Roy +Peter Travers,rotten,0114287,Rolling Stone,You always know where it's going even as it meanders for two and a half hours getting there.,2001-05-12,13275,Rob Roy +Kenneth Turan,rotten,0114287,Los Angeles Times,No more than moderately satisfying.,2001-02-13,13275,Rob Roy +Rita Kempley,rotten,0114287,Washington Post,"Director Michael Caton-Jones and Sharp, both Scotsmen, are so caught up in the legend that they don't seem to notice that RR is about as heroic as a hatful of haggis.",2000-01-01,13275,Rob Roy +Roger Ebert,fresh,0114287,Chicago Sun-Times,"Strange. I thought I had seen enough sword fights in movies to last a lifetime, but I was wrong.",2000-01-01,13275,Rob Roy +James Berardinelli,fresh,0114287,ReelViews,"As embodied by Liam Neeson, Rob Roy is a tremendous protagonist -- a naive man whose belief in honor and whose love for a woman, family, and clan make him a figure to cheer for.",2000-01-01,13275,Rob Roy +Desson Thomson,fresh,0114287,Washington Post,"If you're in a forgiving, campy frame of mind (which I must have been the night I saw this), there's cheap pleasure to be gained from the experience.",2000-01-01,13275,Rob Roy +,fresh,0114287,Entertainment Weekly,,1995-04-07,13275,Rob Roy +Nigel Floyd,fresh,0430912,Time Out,"As a stand-alone film, this doesn't work; but viewed through the prism of the original, it offers some twisted, self-conscious pleasures.",2006-06-24,133759604,Basic Instinct 2 +David Edelstein,rotten,0430912,New York Magazine,Stupefyingly lackluster.,2006-04-21,133759604,Basic Instinct 2 +Jonathan Rosenbaum,rotten,0430912,Chicago Reader,"Like many sequels this is actually a remake, and it suffers from the law of diminishing returns.",2006-04-21,133759604,Basic Instinct 2 +Dennis Lim,rotten,0430912,Village Voice,"The plot, already mired in nonsensical backstory, collapses with the late-inning introduction of a tired metafictional device (not to mention a wildly lunging Usual Suspects twist).",2006-04-04,133759604,Basic Instinct 2 +Richard Roeper,rotten,0430912,Ebert & Roeper,"Basic Instinct 2 has a stylish look and a few sexy moments, but the plot goes from confusing to implausible to absolutely ludicrous in the final sequence.",2006-04-03,133759604,Basic Instinct 2 +Peter Howell,rotten,0430912,Toronto Star,Even the ice pick looks like it really doesn't want to be there.,2006-03-31,133759604,Basic Instinct 2 +Claudia Puig,rotten,0430912,USA Today,"The 1992 phenomenon was creepy, tense and sexually charged in a bold yet tawdry way. This sequel lacks even a shred of those elements.",2006-03-31,133759604,Basic Instinct 2 +Stephanie Zacharek,rotten,0430912,Salon.com,"If you're trying to reinvigorate the art of the stylish thriller, the movie you come up with needs to be stylish and it needs to be thrilling. Basic Instinct 2, written by Leora Barish and Henry Bean and directed by Michael Caton-Jones, is neither.",2006-03-31,133759604,Basic Instinct 2 +Moira MacDonald,rotten,0430912,Seattle Times,"Despite all the heavy breathing and mood lighting, Basic Instinct 2 is so dull that you might find yourself easily distracted by side issues.",2006-03-31,133759604,Basic Instinct 2 +Ruthe Stein,rotten,0430912,San Francisco Chronicle,"What Basic Instinct 2 is missing, besides any of the trashy good fun of the original, is a subtitle. Here's a suggestion: A Girl's Guide to Dressing for Her Shrink.",2006-03-31,133759604,Basic Instinct 2 +James Berardinelli,rotten,0430912,ReelViews,"This film is unable to involve, entertain, or titillate. Basically, it stinks.",2006-03-31,133759604,Basic Instinct 2 +Steven Rea,rotten,0430912,Philadelphia Inquirer,"Stone's purring, snarling, bedroom kink is embarrassing.",2006-03-31,133759604,Basic Instinct 2 +Roger Moore,rotten,0430912,Orlando Sentinel,But the movie is a baroque little mystery of so little mystery or consequence that you're literally sitting there waiting for the next full body cavity search.,2006-03-31,133759604,Basic Instinct 2 +Kyle Smith,rotten,0430912,New York Post,"At this point, there are inflatable toys that are livelier than Stone, but how can you tell the difference? Basic Instinct 2 is not an erotic thriller. It's taxidermy.",2006-03-31,133759604,Basic Instinct 2 +Jack Mathews,rotten,0430912,New York Daily News,"As with the first film, BI2 abounds with red herrings and misdirection, and comes up with an equally ambiguous Did she or didn't she? ending. But there are problems here beyond its staleness.",2006-03-31,133759604,Basic Instinct 2 +Rene Rodriguez,rotten,0430912,Miami Herald,"Few expected Basic Instinct 2 to be very good, but no one expected it to be this boring.",2006-03-31,133759604,Basic Instinct 2 +Bruce Westbrook,rotten,0430912,Houston Chronicle,"Using the same basic plot as 1992's original, BI2 feels less like a sequel than a remake whose shelf life has expired.",2006-03-31,133759604,Basic Instinct 2 +Kirk Honeycutt,rotten,0430912,Hollywood Reporter,The only real intrigue comes in the film's risky flirtation with high camp.,2006-03-31,133759604,Basic Instinct 2 +Rick Groen,rotten,0430912,Globe and Mail,"The original movie lacked sense, but it did possess that sizzle. This one has neither.",2006-03-31,133759604,Basic Instinct 2 +Tom Long,rotten,0430912,Detroit News,"In the end, this is a movie that makes the original Basic Instinct look good. And in a way, that's quite a feat.",2006-03-31,133759604,Basic Instinct 2 +Owen Gleiberman,fresh,0112462,Entertainment Weekly,"By now, Jim Carrey is doing sarcastic takes on his own sarcasm, and there's something funny and a little scary in that.",2010-07-06,11174,Batman Forever +Jonathan Rosenbaum,rotten,0112462,Chicago Reader,"Joel Schumacher submits to the Wagnerian bombast with an overly busy surface, and the script by Lee and Janet Scott Batchler and Akiva Goldsman basically runs through the formula as if it's a checklist.",2007-04-16,11174,Batman Forever +Brian Lowry,rotten,0112462,Variety,"As for Kilmer, he gamely steps into the dual Batman/Wayne role but can't get much traction, finding, as Michael Keaton had, that beyond a stern jaw there's not much to be done with it, since the suit does most of the work.",2007-04-16,11174,Batman Forever +,rotten,0112462,Time Out,The second sequel to Tim Burton's 1989 blockbuster makes its predecessors appear models of subtlety and coherence.,2006-01-26,11174,Batman Forever +Janet Maslin,fresh,0112462,New York Times,"The film recovers from that initial confusion to get stronger as it goes along, and to shape up as a free-form playground for its various masquerading stars.",2003-05-20,11174,Batman Forever +Peter Travers,fresh,0112462,Rolling Stone,Batman Forever is in and out but wins in the end by staying true to its unbridled comic spirit.,2001-05-12,11174,Batman Forever +Kenneth Turan,fresh,0112462,Los Angeles Times,This loud and boisterous comic book confidential is serviceable enough to satisfy.,2001-02-13,11174,Batman Forever +James Berardinelli,fresh,0112462,ReelViews,"It's lighter, brighter, funnier, faster-paced, and a whole lot more colorful than before.",2000-01-01,11174,Batman Forever +Roger Ebert,fresh,0112462,Chicago Sun-Times,It's great bubble gum for the eyes.,2000-01-01,11174,Batman Forever +Desson Thomson,fresh,0112462,Washington Post,"Carrey lights up an otherwise over-scripted, over-frenetic potboiler.",2000-01-01,11174,Batman Forever +Sean Means,rotten,0112462,Film.com,"Minds in neutral, zoning out on the eye candy.",2000-01-01,11174,Batman Forever +Gillian Gaar,fresh,0112462,Film.com,"The highs? Jim Carrey's Riddler, hands down.",2000-01-01,11174,Batman Forever +Mick LaSalle,fresh,0112462,San Francisco Chronicle,A grand- scale effort that's more awe-inspiring than completely successful as entertainment.,2000-01-01,11174,Batman Forever +Tom Keogh,rotten,0112462,Film.com,"Kilmer's good, not surprisingly, but he doesn't get to do a lot.",2000-01-01,11174,Batman Forever +Susan Wloszczyna,fresh,0112462,USA Today,"Bigger, battier and better.",2000-01-01,11174,Batman Forever +Owen Gleiberman,fresh,0061395,Entertainment Weekly,,2011-09-07,770689374,Belle de jour +,none,0061395,Variety,,2009-03-26,770689374,Belle de jour +Philip Wuntch,fresh,0061395,Dallas Morning News,"A delicacy, a passionate and compassionate study of erotica.",2006-08-03,770689374,Belle de jour +Roger Ebert,fresh,0061395,Chicago Sun-Times,"It is possibly the best-known erotic film of modern times, perhaps the best.",2006-07-01,770689374,Belle de jour +Andrew Sarris,fresh,0061395,New York Observer,"Of all the supposedly challenging attractions playing locally in our supposedly more enlightened era, the most compellingly erotic and entertaining spectacle is still provided by Belle de Jour",2006-04-19,770689374,Belle de jour +Michael Atkinson,fresh,0061395,Village Voice,This silly little masterpiece regards Deneuve as the goddess of light she really was -- a figment of our collective appetite for the unreal.,2006-04-11,770689374,Belle de jour +,none,0061395,Time Out,,2006-01-26,770689374,Belle de jour +Renata Adler,fresh,0061395,New York Times,Every detail has been so carefully thought out that seeing it again is like seeing it in another key.,2003-05-20,770689374,Belle de jour +Edward Guthmann,fresh,0061395,San Francisco Chronicle,"A wise, enormously enjoyable film about the power of fantasy -- a toast to the importance of dreams.",2002-06-18,770689374,Belle de jour +James Berardinelli,fresh,0061395,ReelViews,Much of the film works because of the capable acting of Deneuve.,2000-01-01,770689374,Belle de jour +Rita Kempley,rotten,0061395,Washington Post,"The director may have been ahead of his time, but he displays no more compassion for his characters than a psycho killer shows for his victims.",2000-01-01,770689374,Belle de jour +,fresh,0061395,Entertainment Weekly,,1968-04-10,770689374,Belle de jour +Owen Gleiberman,rotten,0112495,Entertainment Weekly,,2011-09-07,16915,Beyond Rangoon +Todd McCarthy,none,0112495,Variety,,2009-03-26,16915,Beyond Rangoon +,none,0112495,Time Out,,2006-06-24,16915,Beyond Rangoon +Kenneth Turan,rotten,0112495,Los Angeles Times,"In attempting to make its politics palatable as entertainment, the film has grafted them onto a boatload of Hollywood implausibilities whose excesses cripple believability.",2002-08-15,16915,Beyond Rangoon +Rick Groen,rotten,0112495,Globe and Mail,"As an exercise in art, or even polemics, Beyond Rangoon is beyond redemption, but still works its occasional magic with extraordinary flair.",2002-04-12,16915,Beyond Rangoon +Peter Travers,rotten,0112495,Rolling Stone,Yet one more film -- that defines Third World political unrest through its effect on a white liberal.,2001-05-12,16915,Beyond Rangoon +Edward Guthmann,rotten,0112495,San Francisco Chronicle,"Boorman's metaphysical musings might work if he integrated them more fully into his film, instead of making them secondary to action sequences.",2000-01-01,16915,Beyond Rangoon +Joe Baltake,fresh,0112495,Sacramento Bee,"It's fascinating and rewarding to watch [Arquette] evolve, with much credibility, from her own personal state of immaturity to a state of full growth.",2000-01-01,16915,Beyond Rangoon +Caryn James,fresh,0112495,New York Times,"A rare film, one that is intelligent, emotional and exciting.",2000-01-01,16915,Beyond Rangoon +Roger Ebert,fresh,0112495,Chicago Sun-Times,"Because the film is well acted and directed, and the Malaysian locations are exotic and seductive, I got involved even though the story ... was so clearly concocted.",2000-01-01,16915,Beyond Rangoon +Hal Hinson,rotten,0112495,Washington Post,"An odd movie, brilliant in places, but frustrating all the same.",2000-01-01,16915,Beyond Rangoon +James Berardinelli,fresh,0112495,ReelViews,"Besides being an intelligent and gripping thriller with a solid grounding in real, recent historical events, Beyond Rangoon also gives movie-goers a rare opportunity to watch a female hero.",2000-01-01,16915,Beyond Rangoon +,rotten,0112495,Entertainment Weekly,,1995-08-25,16915,Beyond Rangoon +Owen Gleiberman,rotten,0112541,Entertainment Weekly,,2011-09-07,14891,Blue in the Face +David Stratton,none,0112541,Variety,,2009-03-26,14891,Blue in the Face +,none,0112541,Time Out,,2006-06-24,14891,Blue in the Face +Janet Maslin,none,0112541,New York Times,,2003-05-20,14891,Blue in the Face +,none,0112541,Globe and Mail,,2002-04-12,14891,Blue in the Face +Peter Travers,none,0112541,Rolling Stone,,2001-05-12,14891,Blue in the Face +Kevin Thomas,none,0112541,Los Angeles Times,,2001-02-13,14891,Blue in the Face +Joe Baltake,none,0112541,Sacramento Bee,,2000-01-01,14891,Blue in the Face +Roger Ebert,rotten,0112541,Chicago Sun-Times,,2000-01-01,14891,Blue in the Face +Peter Stack,none,0112541,San Francisco Chronicle,,2000-01-01,14891,Blue in the Face +Hal Hinson,none,0112541,Washington Post,,2000-01-01,14891,Blue in the Face +Susan Stark,rotten,0112541,Detroit News,,2000-01-01,14891,Blue in the Face +James Berardinelli,fresh,0112541,ReelViews,,2000-01-01,14891,Blue in the Face +Leonard Klady,none,0109370,Variety,,2008-10-18,11304,Canadian Bacon +,none,0109370,Time Out,,2006-06-24,11304,Canadian Bacon +Stephen Holden,none,0109370,New York Times,,2003-05-20,11304,Canadian Bacon +William F. Powers,none,0109370,Washington Post,,2000-01-01,11304,Canadian Bacon +Susan Stark,rotten,0109370,Detroit News,,2000-01-01,11304,Canadian Bacon +Peter Stack,none,0109370,San Francisco Chronicle,,2000-01-01,11304,Canadian Bacon +Mike Clark,rotten,0109370,USA Today,The best thing you can say about this scattershot political satire is that the late John Candy's next-to-last picture is relatively funnier and less depressing than his valedictory Wagons East.,2000-01-01,11304,Canadian Bacon +Owen Gleiberman,rotten,0112642,Entertainment Weekly,A fairy tale with the soul of a rerun.,2010-07-06,76202668,Casper +Jonathan Rosenbaum,rotten,0112642,Chicago Reader,It's not clear why Steven Spielberg's Amblin decided to make a live-action entertainment starring the least interesting and most saccharine of all 50s cartoon characters.,2007-04-18,76202668,Casper +Brian Lowry,rotten,0112642,Variety,"Once the audience has become inured to the wide-eyed protagonist and impressive digitized effects, there's little sense of wonder or awe to be found.",2007-04-18,76202668,Casper +Wally Hammond,fresh,0112642,Time Out,"The set design, however, merely disguises what is in fact an intimate and likeable picture.",2006-06-24,76202668,Casper +Caryn James,fresh,0112642,New York Times,"Casper's movie is not the cleverest one around, but its hero may be the most lovable.",2003-05-20,76202668,Casper +Mick LaSalle,fresh,0112642,San Francisco Chronicle,"This doesn't usually happen to me, but 15 minutes before the end of Casper I suddenly realized that if I didn't take a deep breath, I was going to start sobbing.",2002-06-18,76202668,Casper +Roger Ebert,fresh,0112642,Chicago Sun-Times,"As a technical achievement, it's impressive, and entertaining. And there is even a little winsome philosophy.",2000-01-01,76202668,Casper +Rita Kempley,rotten,0112642,Washington Post,"As expected, it features extra-spectral effects, slews of celebrity guest shots and splendidly decorated sets. For all of that, though, the film is duller than a dead man's eyes.",2000-01-01,76202668,Casper +James Berardinelli,rotten,0112642,ReelViews,"Without the talent of Ricci, Casper would have been a truly barren motion picture. As it is, it's still not very good.",2000-01-01,76202668,Casper +Desson Thomson,rotten,0112642,Washington Post,"The horror, the horror.",2000-01-01,76202668,Casper +Susan Wloszczyna,rotten,0112642,USA Today,"Casper moves like a dirge, especially when it sinks into a meditation on death a la Ghost. As specter spectacles go, Casper is a bit of a ghost bust.",2000-01-01,76202668,Casper +Owen Gleiberman,fresh,0112688,Entertainment Weekly,,2011-09-07,14040,Clockers +Richard Schickel,fresh,0112688,TIME Magazine,"There is a force and focus in Lee's work, an absence of intellectual posturing and a willingness to let his material speak for itself that he has not achieved before.",2008-09-22,14040,Clockers +Jonathan Rosenbaum,rotten,0112688,Chicago Reader,"The performances are strong, but the spectator often feels adrift in an overly busy intrigue.",2008-09-22,14040,Clockers +Todd McCarthy,rotten,0112688,Variety,"A study of the urban dope-dealing culture and its toll on everyone who comes in contact with it, the picture has an insider's feel that is constantly undercut by the filmmaker's impulse to editorialize.",2008-06-09,14040,Clockers +,fresh,0112688,Time Out,"The result is a more sober, mournful and meditative expressionism than you'd expect. That's not to say the film isn't suspenseful, but the director's distaste for the inner city's gun culture is clear to see. Superbly acted.",2006-02-09,14040,Clockers +Kenneth Turan,fresh,0112688,Los Angeles Times,Helping make these points is as strong a cast as Lee has yet worked with.,2002-08-15,14040,Clockers +Edward Guthmann,fresh,0112688,San Francisco Chronicle,Has the strengths of Spike Lee's best work without the preachiness and gimmicky camera moves of his weakest.,2002-06-18,14040,Clockers +Peter Travers,fresh,0112688,Rolling Stone,Clockers thunders home with the bruising urgency of a story that needs to be told.,2001-05-12,14040,Clockers +Kevin McManus,fresh,0112688,Washington Post,"A real, wicked thrill.",2000-01-01,14040,Clockers +James Berardinelli,fresh,0112688,ReelViews,"Clockers uses unexpected narrative turns to accentuate the themes of lost innocence and uncultivated potential, and affirms that tragic melodrama is not a prerequisite for emotional impact.",2000-01-01,14040,Clockers +Mike Clark,fresh,0112688,USA Today,"Lee captures the despair, self-delusion, occasional terror and frequent humor of a praised and popular novel, aided by the potent acting his direction virtually guarantees.",2000-01-01,14040,Clockers +Hal Hinson,rotten,0112688,Washington Post,"What we get mostly in the film is a sense of Lee flailing, struggling to get a handle on his material.",2000-01-01,14040,Clockers +Roger Ebert,fresh,0112688,Chicago Sun-Times,"Although Clockers is, as I suggested, a murder mystery, in solving its murder, it doesn't even begin to find a solution to the system that led to the murder. That is the point.",2000-01-01,14040,Clockers +,fresh,0112688,Entertainment Weekly,,1995-09-13,14040,Clockers +Lisa Schwarzbaum,rotten,0112715,Entertainment Weekly,,2011-09-07,11009,Congo +Brian Lowry,rotten,0112715,Variety,Feels as if the picture were edited to leave the action sequences in while removing any connecting material that might have helped them make sense.,2008-06-17,11009,Congo +Stephen Garrett,rotten,0112715,Time Out,"Dreadfully muddled, but mildly diverting.",2006-02-09,11009,Congo +Janet Maslin,rotten,0112715,New York Times,"This glib, overheated film about vicious primates delivers little suspense...",2003-05-20,11009,Congo +Kenneth Turan,rotten,0112715,Los Angeles Times,The entire tone of the book has been transformed from tension to tongue-in-cheek with dismal results.,2001-02-13,11009,Congo +Lucy Mohl,rotten,0112715,Film.com,"A movie that appears to have been designed first as a future theme park, and then as a major motion-picture.",2000-01-01,11009,Congo +Hal Hinson,rotten,0112715,Washington Post,"In every frame, it aspires to be a theme park.",2000-01-01,11009,Congo +James Berardinelli,rotten,0112715,ReelViews,This is easily the worst filmed version of anything penned by the prolific author.,2000-01-01,11009,Congo +Mick LaSalle,rotten,0112715,San Francisco Chronicle,"As you stand there with your $7, ask yourself, 'Do I really want to see a rubber gorilla smoke a cigar?' If necessary, ask yourself twice.",2000-01-01,11009,Congo +Desson Thomson,rotten,0112715,Washington Post,The least interesting adventure ever filmed.,2000-01-01,11009,Congo +,rotten,0112715,USA Today,Marshall can't decide whether he's making a thriller or a laff-it-up lark.,2000-01-01,11009,Congo +Roger Ebert,fresh,0112715,Chicago Sun-Times,"A splendid example of a genre no longer much in fashion, the jungle adventure story.",2000-01-01,11009,Congo +Greg Burkman,rotten,0112715,Film.com,It's the first bomb of another endless summer of commercial Hollywood crap.,2000-01-01,11009,Congo +,rotten,0112715,Entertainment Weekly,,1995-06-09,11009,Congo +Todd McCarthy,none,0112740,Variety,,2012-02-23,13167,Crimson Tide +Owen Gleiberman,fresh,0112740,Entertainment Weekly,,2011-09-07,13167,Crimson Tide +Variety Staff,fresh,0112740,Variety,This is a boy's movie all the way.,2009-03-26,13167,Crimson Tide +,fresh,0112740,Time Out,"The screenplay may be credited to Michael Schiffer, but the punchy dialogue has Quentin Tarantino written all over it. The cast has a ball.",2006-06-24,13167,Crimson Tide +Jonathan Foreman,fresh,0112740,New York Post,,2004-01-17,13167,Crimson Tide +Janet Maslin,rotten,0112740,New York Times,"Isn't there something awfully satisfying about the throbbing missiles and cathartic explosions that constitute this film's main excitement? Maybe so, but nothing else here delivers a comparable thrill.",2003-05-20,13167,Crimson Tide +Desson Thomson,none,0112740,Washington Post,,2002-09-10,13167,Crimson Tide +Mick LaSalle,fresh,0112740,San Francisco Chronicle,Crimson Tide has everything you could want from an action thriller and a few other things you usually can't hope to expect.,2002-06-18,13167,Crimson Tide +Rick Groen,fresh,0112740,Globe and Mail,"Nope, this picture doesn't bear thinking about, but, if you resist that nasty temptation, setting all your mental gauges at Dead Slow, the flow of the action will see you through.",2002-04-12,13167,Crimson Tide +Kenneth Turan,fresh,0112740,Los Angeles Times,"If ever a picture crackled, Crimson Tide fits the description.",2001-02-13,13167,Crimson Tide +Susan Wloszczyna,fresh,0112740,USA Today,Crimson Tide is pop-action naval gazing at its finest.,2000-01-01,13167,Crimson Tide +Rita Kempley,none,0112740,Washington Post,,2000-01-01,13167,Crimson Tide +Roger Ebert,fresh,0112740,Chicago Sun-Times,"This is the rare kind of war movie that not only thrills people while they're watching it, but invites them to leave the theater actually discussing the issues.",2000-01-01,13167,Crimson Tide +James Berardinelli,fresh,0112740,ReelViews,"Because of the contained environment, submarines make great settings for thrillers, with the throbbing of the engines sounding like a pulse. Crimson Tide is no exception -- the atmosphere alone is sufficient to keep the audience on edge.",2000-01-01,13167,Crimson Tide +,fresh,0112740,Entertainment Weekly,,1995-05-12,13167,Crimson Tide +Owen Gleiberman,fresh,0109508,Entertainment Weekly,,2011-09-07,14345,Crumb +Todd McCarthy,none,0109508,Variety,,2009-03-11,14345,Crumb +,none,0109508,Time Out,,2006-06-24,14345,Crumb +Stephen Holden,none,0109508,New York Times,,2003-05-20,14345,Crumb +Peter Travers,none,0109508,Rolling Stone,,2001-05-12,14345,Crumb +Stanley Kauffmann,none,0109508,The New Republic,,2000-01-01,14345,Crumb +Roger Ebert,fresh,0109508,Chicago Sun-Times,,2000-01-01,14345,Crumb +Mike Clark,fresh,0109508,USA Today,"Crumb's sense of humor is his saving personal grace and the movie's insurance policy against total immersion into the morbid. But just so you know, Crumb fully earns its most revealing screen credit: 'David Lynch Presents.'",2000-01-01,14345,Crumb +Edward Guthmann,none,0109508,San Francisco Chronicle,,2000-01-01,14345,Crumb +Hal Hinson,none,0109508,Washington Post,,2000-01-01,14345,Crumb +Desson Thomson,none,0109508,Washington Post,,2000-01-01,14345,Crumb +James Berardinelli,fresh,0109508,ReelViews,,2000-01-01,14345,Crumb +,fresh,0109508,Entertainment Weekly,,1995-05-19,14345,Crumb +Owen Gleiberman,fresh,0112851,Entertainment Weekly,,2011-09-07,16836,Desperado +Todd McCarthy,none,0112851,Variety,,2008-06-06,16836,Desperado +Geoff Andrew,fresh,0112851,Time Out,"Rodriguez's second feature may be a rambling, derivative exercise in gratuitous violence, but its determination to proceed as if the word 'restraint' never existed makes for gleeful entertainment.",2006-01-26,16836,Desperado +Janet Maslin,rotten,0112851,New York Times,"Mr. Rodriguez may be good enough to make a film about anything, but Desperado would collapse if its characters had to do anything but play with guns.",2003-05-20,16836,Desperado +Kenneth Turan,rotten,0112851,Los Angeles Times,"What Rodriguez has essentially done in Desperado is make a slicker, more expensive copy of what came before. And what looked promising for $7,000 looks tiresome for a whole lot more.",2002-08-15,16836,Desperado +Mick LaSalle,rotten,0112851,San Francisco Chronicle,"The routine gets tiresome for the Mariachi, and for the audience, too, after about an hour.",2002-06-18,16836,Desperado +Peter Travers,fresh,0112851,Rolling Stone,Desperado is best when Rodriguez lets his playful side cut through the blare of a born filmmaker indulging his first chance at high-end Hollywood fireworks.,2001-05-12,16836,Desperado +Rita Kempley,rotten,0112851,Washington Post,"On the whole, watching the film is about as much fun as sitting on a cactus.",2000-01-01,16836,Desperado +Roger Ebert,rotten,0112851,Chicago Sun-Times,"What happens looks terrific. Now if [Rodriguez] can harness that technical facility to a screenplay that's more story than setup, he might really have something.",2000-01-01,16836,Desperado +Mike Clark,rotten,0112851,USA Today,"Desperado, which is nothing but set pieces, snoozes between its scenes of carnage.",2000-01-01,16836,Desperado +James Berardinelli,rotten,0112851,ReelViews,Bloated and overlong.,2000-01-01,16836,Desperado +Desson Thomson,fresh,0112851,Washington Post,"In this movie, words and actions speak equally loudly.",2000-01-01,16836,Desperado +,fresh,0112851,Entertainment Weekly,,1995-08-25,16836,Desperado +,none,0112857,Variety,,2012-02-23,13753,Devil in a Blue Dress +Lisa Schwarzbaum,rotten,0112857,Entertainment Weekly,,2011-09-07,13753,Devil in a Blue Dress +Todd McCarthy,fresh,0112857,Variety,"Entering the main flow of the story relatively late, Don Cheadle steals all his scenes as a live-wire, trigger-happy old buddy of Easy's from Texas, while Sizemore and Mel Winkler, as colorful underworld figures, make strong impressions.",2009-03-26,13753,Devil in a Blue Dress +Geoff Andrew,fresh,0112857,Time Out,Sheer pleasure.,2006-01-26,13753,Devil in a Blue Dress +Janet Maslin,fresh,0112857,New York Times,"The role of Easy looks as tailor-made for Mr. Washington as his suit, and it shows off the full effect of this actor's movie-star dazzle.",2003-05-20,13753,Devil in a Blue Dress +Kenneth Turan,fresh,0112857,Los Angeles Times,"A fluid, persuasive piece of movie-making graced with the considerable visual sophistication.",2002-08-15,13753,Devil in a Blue Dress +Mick LaSalle,fresh,0112857,San Francisco Chronicle,The film also does a convincing job of re-creating Los Angeles of 1948 with both specificity and poetry.,2002-06-18,13753,Devil in a Blue Dress +Liam Lacey,rotten,0112857,Globe and Mail,"A bland, workaday detective flick.",2002-04-12,13753,Devil in a Blue Dress +Peter Travers,fresh,0112857,Rolling Stone,"The movie simmers with pungent suspense, humor and eroticism.",2001-05-12,13753,Devil in a Blue Dress +Desson Thomson,fresh,0112857,Washington Post,Franklin's picture is effortlessly wise beneath its entertaining surface.,2000-01-01,13753,Devil in a Blue Dress +Mike Clark,rotten,0112857,USA Today,"A hoary Chinatown knock-off wrapped in a seductively novel black-culture veneer, with a dash of Laura added for bad measure.",2000-01-01,13753,Devil in a Blue Dress +Hal Hinson,fresh,0112857,Washington Post,"First-rate American pulp -- fast, absorbing and substantive.",2000-01-01,13753,Devil in a Blue Dress +James Berardinelli,fresh,0112857,ReelViews,"While Devil in a Blue Dress never develops the taut momentum of Franklin's previous effort, One False Move, it maintains audience involvement.",2000-01-01,13753,Devil in a Blue Dress +Joe Baltake,fresh,0112857,Sacramento Bee,The fascinating bits of racial history that director Carl Franklin has folded into the vibrant milieu of a post-World War II Los Angeles pushes his Devil in a Blue Dress somewhat beyond the usual nostalgia/noir status.,2000-01-01,13753,Devil in a Blue Dress +Susan Stark,fresh,0112857,Detroit News,,2000-01-01,13753,Devil in a Blue Dress +Roger Ebert,fresh,0112857,Chicago Sun-Times,"I liked the movie without quite being caught up in it: I liked the period, tone and look more than the story, which I never really cared much about.",2000-01-01,13753,Devil in a Blue Dress +,rotten,0112857,Entertainment Weekly,,1995-09-29,13753,Devil in a Blue Dress +Owen Gleiberman,fresh,0112864,Entertainment Weekly,,2011-09-07,15786,Die Hard: With a Vengeance +David Ansen,none,0112864,Newsweek,,2008-04-07,15786,Die Hard: With a Vengeance +Brian Lowry,rotten,0112864,Variety,"Degenerates into an improbable, confusing series of chases and an overly involved heist that takes far too long to set up.",2007-06-25,15786,Die Hard: With a Vengeance +,rotten,0112864,Time Out,"There's little wit or originality on offer, just the familiar escalation of car chases and big bangs.",2006-01-26,15786,Die Hard: With a Vengeance +Caryn James,fresh,0112864,New York Times,"Pure action, with bigger and better explosions and stunts.",2004-08-30,15786,Die Hard: With a Vengeance +Peter Travers,fresh,0112864,Rolling Stone,"It's a tense, terrifically funny action dazzler with a wow level in special effects that will be hard to top.",2001-05-12,15786,Die Hard: With a Vengeance +Peter Rainer,rotten,0112864,Los Angeles Times,"The big set pieces don't build, really, they just pile up.",2001-02-21,15786,Die Hard: With a Vengeance +Rita Kempley,rotten,0112864,Washington Post,Explosions aren't so funny anymore.,2000-01-01,15786,Die Hard: With a Vengeance +Roger Ebert,fresh,0112864,Chicago Sun-Times,"Basically a wind-up action toy, cleverly made, and delivered with high energy. It delivers just what it advertises, with a vengeance.",2000-01-01,15786,Die Hard: With a Vengeance +James Berardinelli,rotten,0112864,ReelViews,"While parts one and two built momentum to an exhausting, exhilarating climax, part three has too many peaks and valleys (and, it seems, more of the latter than the former).",2000-01-01,15786,Die Hard: With a Vengeance +Mick LaSalle,fresh,0112864,San Francisco Chronicle,An audience on the edge of its seat doesn't quibble about plot points.,2000-01-01,15786,Die Hard: With a Vengeance +Desson Thomson,none,0112864,Washington Post,A triumph.,2000-01-01,15786,Die Hard: With a Vengeance +Mike Clark,rotten,0112864,USA Today,"Put to the sequel litmus test, queasily spectacular Vengeance would only rate a footnote without a strong original to exploit -- or a protracted telephone-terrorist subplot to steal from Dirty Harry 1.",2000-01-01,15786,Die Hard: With a Vengeance +,fresh,0112864,Entertainment Weekly,,1995-05-19,15786,Die Hard: With a Vengeance +Jonathan Rosenbaum,rotten,0112887,Chicago Reader,"Striking to look at, though often offensively opportunistic, this mainly comes across as a throwaway shocker with energy to spare. There's not much thought in evidence though.",2011-01-14,17217,The Doom Generation +Variety Staff,fresh,0112887,Variety,"A nihilistic comedy about a trio of alienated youngsters, pic is bold not only in its art design, but also in its narrative and tone, a mixture of satire and horror with heavy dosage of steamy sex and macabre violence.",2009-03-26,17217,The Doom Generation +Emanuel Levy,fresh,0112887,Variety,"Inspired by Godard's classic Band Apart, Araki's fifth feature is his most audacious and most technically accomplished film to date, reflecting the larger than usual budget and gained experience.",2006-06-20,17217,The Doom Generation +,fresh,0112887,Time Out,Imagine Natural Born Killers with a sense of humour.,2006-01-26,17217,The Doom Generation +Janet Maslin,rotten,0112887,New York Times,"Sledgehammer direction, heavy irony and the easiest imaginable targets hardly show talent off to good advantage.",2003-05-20,17217,The Doom Generation +Peter Travers,fresh,0112887,Rolling Stone,It's a savagely funny ride fueled by Araki's insight and blunt compassion.,2001-05-12,17217,The Doom Generation +Kevin Thomas,rotten,0112887,Los Angeles Times,Plays like a low-budget Natural Born Killers -- and that is not intended as a compliment.,2001-02-13,17217,The Doom Generation +Joe Baltake,fresh,0112887,Sacramento Bee,"In terms of filmmaking, point of view and oddball sense of humor, Araki's film is better than both [Kids and Natural Born Killers].",2000-01-01,17217,The Doom Generation +Roger Ebert,rotten,0112887,Chicago Sun-Times,"This is the kind of movie where the filmmaker hopes to shock you with sickening carnage and violent amorality, while at the same time holding himself carefully aloof from it with his style.",2000-01-01,17217,The Doom Generation +Edward Guthmann,rotten,0112887,San Francisco Chronicle,"Amy's a screaming, speed-addled banshee, and not the sort of chick you'd want to run into late at night (or spend 85 minutes with in a darkened theater).",2000-01-01,17217,The Doom Generation +Desson Thomson,fresh,0112887,Washington Post,The violence becomes commonplace. The crudities never end. But there are hip benefits for staying to watch.,2000-01-01,17217,The Doom Generation +Hal Hinson,rotten,0112887,Washington Post,An arty atrocity for thugs and sub-literates that makes Natural Born Killers look like The Sound of Music.,2000-01-01,17217,The Doom Generation +Kathy Fennessy,fresh,0112887,Film.com,"More like Natural Born Killers than any other film that comes to mind, but it's ultimately sexier, funnier, and much more 'alternative' (in every sense of the word).",2000-01-01,17217,The Doom Generation +Richard Corliss,fresh,0112887,TIME Magazine,"Not every kid may be as mad and morose as Araki's lost boys... But a lot are, and in this fevered fantasy of Armageddon, he's got their number.",2000-01-01,17217,The Doom Generation +Tom Keogh,fresh,0112887,Film.com,"You sense that there is so much more at stake here than meets the eye, an extraordinary anger about and fear of 90s purposelessness and predatory intolerance.",2000-01-01,17217,The Doom Generation +Steve Daly,rotten,0112887,Entertainment Weekly,Good luck searching for meaning -- you'll find mostly blood and epithets.,1995-10-25,17217,The Doom Generation +David Stratton,none,0113044,Variety,,2009-03-26,15019,Feast of July +,none,0113044,Time Out,,2006-01-26,15019,Feast of July +Stephen Holden,none,0113044,New York Times,,2003-05-20,15019,Feast of July +,none,0113044,Globe and Mail,,2002-04-12,15019,Feast of July +Hal Hinson,none,0113044,Washington Post,,2000-01-01,15019,Feast of July +Joe Baltake,none,0113044,Sacramento Bee,,2000-01-01,15019,Feast of July +Roger Ebert,rotten,0113044,Chicago Sun-Times,,2000-01-01,15019,Feast of July +Susan Stark,rotten,0113044,Detroit News,,2000-01-01,15019,Feast of July +James Berardinelli,fresh,0113044,ReelViews,,2000-01-01,15019,Feast of July +Peter Stack,none,0113044,San Francisco Chronicle,,2000-01-01,15019,Feast of July +,fresh,0113044,Entertainment Weekly,,1995-10-13,15019,Feast of July +,none,0113071,Variety,,2012-02-23,12767,First Knight +Owen Gleiberman,fresh,0113071,Entertainment Weekly,,2011-09-07,12767,First Knight +,none,0113071,Time Out,,2006-01-26,12767,First Knight +Janet Maslin,none,0113071,New York Times,,2003-05-20,12767,First Knight +,none,0113071,Globe and Mail,,2002-04-12,12767,First Knight +Peter Travers,fresh,0113071,Rolling Stone,"Whenever Zucker stops piling on battle scenes as if he were directing Braveheart, his film casts a romantic spell.",2001-05-12,12767,First Knight +Todd McCarthy,fresh,0113071,Variety,"Aside from casting Richard Gere as Lancelot, First Knight marches out as an agreeably intelligent, mature and well-mounted telling of the legendary King Arthur story.",2001-02-13,12767,First Knight +Kenneth Turan,rotten,0113071,Los Angeles Times,"The problem for him[Gere], and the film, comes when the non-physical acting begins.",2001-02-13,12767,First Knight +Rita Kempley,rotten,0113071,Washington Post,"Pillaged of such mainstays as Merlin and Morgan le Fay-as well as magic, majesty and depth-'Camelot' has become 'Camelite.'",2000-01-01,12767,First Knight +James Berardinelli,rotten,0113071,ReelViews,"Bad acting, dumb dialogue, and confusing cinematography abound, creating one of the most shoddy Camelot stories to date.",2000-01-01,12767,First Knight +Sean Means,rotten,0113071,Film.com,"...lots of action and chivalrous pomp, but no magic.",2000-01-01,12767,First Knight +Richard Schickel,fresh,0113071,TIME Magazine,"[E]very era has the right--maybe even the duty--to reinvent the Arthurian legend according to its lights, and so there is something instructive and entertaining about this version.",2000-01-01,12767,First Knight +John Teegarden,rotten,0113071,Film.com,"I've never seen a film -- whether it was based on a book, a play, or in this case a timeless legend -- treat its source material with such cavalier disregard.",2000-01-01,12767,First Knight +Susan Wloszczyna,fresh,0113071,USA Today,"[I]f you tingle at the sound of metal unsheathing and the sight of flaming arrows whizzing through moonlight, you'll probably be swept away by this shining Knight in amour.",2000-01-01,12767,First Knight +Roger Ebert,rotten,0113071,Chicago Sun-Times,"The movie is entertaining enough in its own way, and Sean Connery makes a splendid King Arthur, but compared with the earlier films[Rob Roy and Braveheart] this one seems thin and unconvincing.",2000-01-01,12767,First Knight +Joe Baltake,fresh,0113071,Sacramento Bee,"...lushly romantic, almost quaint...",2000-01-01,12767,First Knight +Eve Zibart,rotten,0113071,Washington Post,"There's swordplay to the hilt, but the story itself never quite gets in Gere.",2000-01-01,12767,First Knight +Edward Guthmann,fresh,0113071,San Francisco Chronicle,"...a handsome, entertaining twist on the King Arthur legend...",2000-01-01,12767,First Knight +,fresh,0113071,Entertainment Weekly,,1995-07-07,12767,First Knight +,none,0113114,Variety,,2012-02-23,12210,Free Willy 2: The Adventure Home +Lisa Schwarzbaum,fresh,0113114,Entertainment Weekly,,2011-09-07,12210,Free Willy 2: The Adventure Home +Leonard Klady,none,0113114,Variety,,2009-03-26,12210,Free Willy 2: The Adventure Home +,none,0113114,Time Out,,2006-01-26,12210,Free Willy 2: The Adventure Home +Caryn James,none,0113114,New York Times,,2003-05-20,12210,Free Willy 2: The Adventure Home +Mick LaSalle,none,0113114,San Francisco Chronicle,,2002-06-18,12210,Free Willy 2: The Adventure Home +,none,0113114,Globe and Mail,,2002-04-12,12210,Free Willy 2: The Adventure Home +Peter Rainer,none,0113114,Los Angeles Times,,2001-02-13,12210,Free Willy 2: The Adventure Home +Rita Kempley,none,0113114,Washington Post,,2000-01-01,12210,Free Willy 2: The Adventure Home +Desson Thomson,none,0113114,Washington Post,,2000-01-01,12210,Free Willy 2: The Adventure Home +Roger Ebert,rotten,0113114,Chicago Sun-Times,,2000-01-01,12210,Free Willy 2: The Adventure Home +Susan Wloszczyna,rotten,0113114,USA Today,"As with most unnecessary sequels, FW2 takes a similar plot -- reunited during a camping trip, Jesse saves Willy and vice versa -- and spreads it thinner, like watered-down tartar sauce.",2000-01-01,12210,Free Willy 2: The Adventure Home +,fresh,0113114,Entertainment Weekly,,1995-07-21,12210,Free Willy 2: The Adventure Home +Steven Rea,fresh,0113243,Philadelphia Inquirer,"Hackers isn't a very good movie, but it's a darn sight more fun than The Net.",2013-05-03,10572,Hackers +Jay Boyar,rotten,0113243,Orlando Sentinel,"After the mechanics of the thriller plot start to kick in, the film drags. And when it's time for the big cyber-showdown, we're stuck, once again, with footage of frantic typing.",2013-05-03,10572,Hackers +Michael Wilmington,rotten,0113243,Chicago Tribune,This is a movie that sums up the worst of the computer era: zapping you with techno-cliches and trapping you in constant visual crash and burn.,2013-05-03,10572,Hackers +Bruce Diones,fresh,0113243,New Yorker,"The story is negligible, but it offers the same order of fun as a good rock video: the marriage of images and music.",2013-05-03,10572,Hackers +Owen Gleiberman,rotten,0113243,Entertainment Weekly,"What's most grating about Hackers, however, is the guileless way the movie buys in to the computer-kid-as-elite-rebel mystique currently being peddled by magazines like Wired.",2011-09-07,10572,Hackers +Jonathan Rosenbaum,fresh,0113243,Chicago Reader,"Without being any sort of miracle, this engaging and lively exploitation fantasy-thriller about computer hackers, anarchistic in spirit, succeeds at just about everything The Net failed to.",2011-01-14,10572,Hackers +Joe Leydon,rotten,0113243,Variety,There is a great deal more style than substance here.,2008-06-09,10572,Hackers +,fresh,0113243,Time Out,"The sappy ending's hard to take, but the on-line showdown between The Plague, the Secret Service and the united worldwide community of hackers is nail-biting.",2006-02-09,10572,Hackers +Janet Maslin,rotten,0113243,New York Times,"Though this scheme involves loads of important data, it manages to sound dopey all the same.",2003-05-20,10572,Hackers +David Kronke,rotten,0113243,Los Angeles Times,It gives you more insight into the minds of Hollywood hacks than of computer hackers.,2002-08-15,10572,Hackers +Joe Brown,rotten,0113243,Washington Post,How do you make typing look exciting?,2000-01-01,10572,Hackers +Mike Clark,fresh,0113243,USA Today,"To its credit, Hackers recalls the pumped-up energy of Pump Up the Volume, as well as its casting prowess.",2000-01-01,10572,Hackers +Hal Hinson,rotten,0113243,Washington Post,"Tirelessly modish, hyper-glossy, super-superficial. It's also cacophonous. And, for all of its drum-beating for brain power, dumb.",2000-01-01,10572,Hackers +Roger Ebert,fresh,0113243,Chicago Sun-Times,"The movie is well directed, written and acted, and while it is no doubt true that in real life no hacker could do what the characters in this movie do, it is no doubt equally true that what hackers can do would not make a very entertaining movie.",2000-01-01,10572,Hackers +James Berardinelli,rotten,0113243,ReelViews,"What's uncovered beneath the flashy skin is an old-fashioned, film-by-numbers thriller.",2000-01-01,10572,Hackers +Peter Stack,rotten,0113243,San Francisco Chronicle,What it lacks in substance and plausibility it makes up in inventive imagery and deft shadings of a world of scheming cyberpunks.,2000-01-01,10572,Hackers +Lisa Schwarzbaum,fresh,0113464,Entertainment Weekly,,2011-09-07,13718,Jeffrey +,none,0113464,Variety,,2009-03-26,13718,Jeffrey +Geoff Andrew,none,0113464,Time Out,,2006-02-09,13718,Jeffrey +Caryn James,none,0113464,New York Times,,2003-05-20,13718,Jeffrey +Edward Guthmann,rotten,0113464,San Francisco Chronicle,"It's not a total bust, and some of the performances are charming, but it never matches the gleeful, irreverent mischief it had on stage.",2002-06-18,13718,Jeffrey +Peter Travers,fresh,0113464,Rolling Stone,"Rudnick, adapting his off-Broadway hit, deftly blends uproarious fun and touching gravity.",2001-05-12,13718,Jeffrey +Kevin Thomas,rotten,0113464,Los Angeles Times,"Wildly uneven, and it aims at the lowest common denominator in its exceedingly broad comedy.",2001-02-13,13718,Jeffrey +Hal Hinson,rotten,0113464,Washington Post,"While this may sound intriguing, the picture merely jumps around clumsily from incident to incident.",2000-01-01,13718,Jeffrey +Tom Green,rotten,0113464,USA Today,It is startling that such a funny play is not so funny a movie.,2000-01-01,13718,Jeffrey +James Berardinelli,fresh,0113464,ReelViews,"If nothing else, Rudnick and director Christopher Ashley know how to keep the audience off balance and in stitches.",2000-01-01,13718,Jeffrey +Roger Ebert,rotten,0113464,Chicago Sun-Times,It's more a series of sketches and momentary inspirations than a story that grows interesting.,2000-01-01,13718,Jeffrey +Joe Baltake,fresh,0113464,Sacramento Bee,"It comes with a superficially sunny sitcom adorableness that ... mixes well with Rudnick's smart, scathing, urban and very dark one-liners.",2000-01-01,13718,Jeffrey +,fresh,0113464,Entertainment Weekly,,1995-08-18,13718,Jeffrey +,none,0113481,Variety,,2012-02-23,16834,Johnny Mnemonic +Owen Gleiberman,rotten,0113481,Entertainment Weekly,,2011-09-07,16834,Johnny Mnemonic +Todd McCarthy,none,0113481,Variety,,2009-03-26,16834,Johnny Mnemonic +Geoff Andrew,none,0113481,Time Out,,2006-06-24,16834,Johnny Mnemonic +Caryn James,none,0113481,New York Times,,2003-05-20,16834,Johnny Mnemonic +Mick LaSalle,fresh,0113481,San Francisco Chronicle,,2002-06-18,16834,Johnny Mnemonic +Peter Rainer,none,0113481,Los Angeles Times,,2001-02-13,16834,Johnny Mnemonic +James Berardinelli,rotten,0113481,ReelViews,,2000-01-01,16834,Johnny Mnemonic +Roger Ebert,rotten,0113481,Chicago Sun-Times,,2000-01-01,16834,Johnny Mnemonic +Rita Kempley,none,0113481,Washington Post,,2000-01-01,16834,Johnny Mnemonic +Mike Clark,rotten,0113481,USA Today,You can have a better time title-scanning Johnny pics in an alphabetical video guide than you can enduring the latest Blade Runner knockoff: Johnny Mnemonic.,2000-01-01,16834,Johnny Mnemonic +,rotten,0113481,Entertainment Weekly,,1995-05-26,16834,Johnny Mnemonic +Owen Gleiberman,rotten,0113492,Entertainment Weekly,"The movie, by the end, practically seems intent on destroying itself.",2010-07-06,13602,Judge Dredd +Todd McCarthy,rotten,0113492,Variety,"A thunderous, unoriginal futuristic hardware show for teenage boys.",2009-03-26,13602,Judge Dredd +Jonathan Rosenbaum,rotten,0113492,Chicago Reader,"Directed without inspiration by Danny Cannon from a stupid script by Michael De Luca, William Wisher, and Steven de Souza.",2007-04-25,13602,Judge Dredd +Geoff Andrew,rotten,0113492,Time Out,"This slam-bang Stallone vehicle never quite delivers what its confident, fizzing visuals seem to promise.",2006-02-09,13602,Judge Dredd +Caryn James,rotten,0113492,New York Times,"Although it is full of noise and fake firepower, Dredd simply lies there on the screen until the final scenes.",2003-05-20,13602,Judge Dredd +Mick LaSalle,rotten,0113492,San Francisco Chronicle,"Usually engaging and sympathetic, Stallone is blank and tongue-tied here, an immovable slab in the midst of 95 minutes of gunfire, explosions and Gothic excess.",2002-06-18,13602,Judge Dredd +Peter Rainer,rotten,0113492,Los Angeles Times,"The director doesn't provide much kinetic movie-making pleasure but he knows enough to jam the screen with clamor. It's not excitement, exactly. It's simulated excitement.",2001-02-13,13602,Judge Dredd +James Berardinelli,rotten,0113492,ReelViews,"Sometimes, it's rather amusing, but it's impossible to decide whether this is accidental or on purpose.",2000-01-01,13602,Judge Dredd +Roger Ebert,rotten,0113492,Chicago Sun-Times,"Stallone survives it, but his supporting cast, also including an uninvolved Joan Chen and a tremendously intense Jurgen Prochnow, isn't well used.",2000-01-01,13602,Judge Dredd +Rita Kempley,rotten,0113492,Washington Post,"Aside from the affable Schneider and the able Lane, the cast seems to be in deep shock. Um, make that Dredd lock.",2000-01-01,13602,Judge Dredd +Susan Wloszczyna,rotten,0113492,USA Today,"Never has such a big, dumb movie seemed so small, as it shrinks from Blade Runner sharp to Jetsonian junky.",2000-01-01,13602,Judge Dredd +Brian Lowry,none,0113500,Variety,,2012-02-23,11590,Jury Duty +Lisa Schwarzbaum,rotten,0113500,Entertainment Weekly,,2011-09-07,11590,Jury Duty +,none,0113500,Variety,,2009-03-26,11590,Jury Duty +Janet Maslin,none,0113500,New York Times,,2003-05-20,11590,Jury Duty +,none,0113500,Globe and Mail,,2002-04-12,11590,Jury Duty +,none,0113500,Los Angeles Times,,2001-02-13,11590,Jury Duty +Desson Thomson,none,0113500,Washington Post,,2000-01-01,11590,Jury Duty +Peter Stack,none,0113500,San Francisco Chronicle,,2000-01-01,11590,Jury Duty +Hal Hinson,none,0113500,Washington Post,,2000-01-01,11590,Jury Duty +,rotten,0113500,USA Today,,2000-01-01,11590,Jury Duty +Roger Ebert,rotten,0113500,Chicago Sun-Times,,2000-01-01,11590,Jury Duty +Owen Gleiberman,rotten,0113540,Entertainment Weekly,,2011-09-07,16795,Kids +Todd McCarthy,none,0113540,Variety,,2009-03-26,16795,Kids +Geoff Andrew,none,0113540,Time Out,,2006-06-24,16795,Kids +Janet Maslin,fresh,0113540,New York Times,"Frightening, frank and serious, a wake-up call to the world.",2003-05-20,16795,Kids +Edward Guthmann,fresh,0113540,San Francisco Chronicle,"None of the advance hype on Kids can prepare you for the raw, stripped-down reality that Larry Clark captures in his astonishing first film.",2002-06-18,16795,Kids +Peter Travers,none,0113540,Rolling Stone,,2001-05-12,16795,Kids +Kenneth Turan,none,0113540,Los Angeles Times,,2001-02-13,16795,Kids +Roger Ebert,fresh,0113540,Chicago Sun-Times,Kids is the kind of movie that needs to be talked about afterward.,2000-01-01,16795,Kids +James Berardinelli,fresh,0113540,ReelViews,"Kids shows what transpires when children are set adrift in a heartless world, and warns us what happens -- and is already happening -- in the absence of love and guidance.",2000-01-01,16795,Kids +Rita Kempley,rotten,0113540,Washington Post,"Kids, a disturbingly voyeuristic look at adolescent promiscuity, is virtually child pornography disguised as a cautionary documentary.",2000-01-01,16795,Kids +Joe Baltake,none,0113540,Sacramento Bee,,2000-01-01,16795,Kids +Desson Thomson,rotten,0113540,Washington Post,"Ostensibly about the banality of youthful evil, Kids is simply about its own banality.",2000-01-01,16795,Kids +,rotten,0113540,Entertainment Weekly,,1995-07-28,16795,Kids +Owen Gleiberman,fresh,0113677,Entertainment Weekly,"A hip indie version of Truffaut's Day for Night, Living in Oblivion celebrates the very act of filmmaking as grand folly, a triumph of absurdist heroism.",2011-09-07,13774,Living in Oblivion +Geoff Andrew,fresh,0113677,Time Out,A treat.,2006-06-24,13774,Living in Oblivion +Mick LaSalle,fresh,0113677,San Francisco Chronicle,"A very funny picture that presents the world of independent film making as a nightmare of conflicting egos, budgetary squalor and incompetence.",2002-06-18,13774,Living in Oblivion +Desson Thomson,fresh,0113677,Washington Post,"""Oblivion"" has a surrealistic, guilty-fun quality. It feels almost too good to be true.",2000-01-01,13774,Living in Oblivion +James Berardinelli,fresh,0113677,ReelViews,,2000-01-01,13774,Living in Oblivion +Hal Hinson,fresh,0113677,Washington Post,"So you wanna make a movie? Well, first, you should see ""Living in Oblivion,"" Tom DiCillo's savagely funny satire of the world of independent filmmaking.",2000-01-01,13774,Living in Oblivion +Joe Leydon,none,0113690,Variety,,2009-03-26,17372,Lord of Illusions +Geoff Andrew,none,0113690,Time Out,,2006-02-09,17372,Lord of Illusions +Stephen Holden,none,0113690,New York Times,,2003-05-20,17372,Lord of Illusions +Kevin Thomas,none,0113690,Los Angeles Times,,2002-08-15,17372,Lord of Illusions +Richard Harrington,none,0113690,Washington Post,,2000-01-01,17372,Lord of Illusions +Mick LaSalle,none,0113690,San Francisco Chronicle,,2000-01-01,17372,Lord of Illusions +Mike Clark,rotten,0113690,USA Today,"Barker's visual side dominates its literary equivalent this time out, resulting in a time-killer that may amuse fans until illusion is shattered by the rolling of the end credits.",2000-01-01,17372,Lord of Illusions +Roger Ebert,fresh,0113690,Chicago Sun-Times,,2000-01-01,17372,Lord of Illusions +Joe Baltake,none,0113690,Sacramento Bee,,2000-01-01,17372,Lord of Illusions +Owen Gleiberman,fresh,0107447,Entertainment Weekly,,2011-09-07,285256258,Love & Human Remains +Todd McCarthy,none,0107447,Variety,,2008-10-18,285256258,Love & Human Remains +Geoff Andrew,none,0107447,Time Out,,2006-06-24,285256258,Love & Human Remains +Caryn James,none,0107447,New York Times,,2004-08-30,285256258,Love & Human Remains +Peter Travers,none,0107447,Rolling Stone,,2001-05-12,285256258,Love & Human Remains +Kenneth Turan,none,0107447,Los Angeles Times,,2001-02-13,285256258,Love & Human Remains +Roger Ebert,rotten,0107447,Chicago Sun-Times,"The result is kind of a mess, but an intriguing one; it's not a very good movie, but you don't stop watching it.",2000-01-01,285256258,Love & Human Remains +Joe Baltake,none,0107447,Sacramento Bee,,2000-01-01,285256258,Love & Human Remains +Mick LaSalle,none,0107447,San Francisco Chronicle,,2000-01-01,285256258,Love & Human Remains +Frank Ahrens,none,0107447,Washington Post,,2000-01-01,285256258,Love & Human Remains +,fresh,0107447,USA Today,Quirky movie.,2000-01-01,285256258,Love & Human Remains +James Berardinelli,rotten,0107447,ReelViews,,2000-01-01,285256258,Love & Human Remains +,fresh,0107447,Entertainment Weekly,,1800-01-01,285256258,Love & Human Remains +Todd McCarthy,none,0113729,Variety,,2012-02-23,770687255,Mad Love +Leonard Klady,none,0113749,Variety,,2009-03-26,13599,Mallrats +Derek Adams,none,0113749,Time Out,,2006-06-24,13599,Mallrats +Janet Maslin,rotten,0113749,New York Times,"Mallrats mixes clever bits and an appealing quirkiness (which goes a long way) with gross-out practical jokes, needless repetition and obvious padding, since it has no real plot.",2003-05-20,13599,Mallrats +Peter Stack,none,0113749,San Francisco Chronicle,"The movie has a few amusing '70s references and there's a wonderfully weird sequence featuring a topless fortune-teller. Overall, though, moviegoers can find much better deals.",2002-06-18,13599,Mallrats +,none,0113749,Globe and Mail,,2002-04-12,13599,Mallrats +Kenneth Turan,rotten,0113749,Los Angeles Times,"If the Sundance Institute or the AFI ever offers a course advising directors of successful first films what to avoid the second time around, Mallrats could be at the heart of the curriculum.",2001-02-13,13599,Mallrats +Roger Ebert,rotten,0113749,Chicago Sun-Times,The fatal flaw in plotting the material is that we don't care.,2000-01-01,13599,Mallrats +,rotten,0113749,USA Today,"Smith has slicked up his follow-up vision of Slackerville USA, but the outcome is nowhere near as brash and original.",2000-01-01,13599,Mallrats +James Berardinelli,rotten,0113749,ReelViews,"Despite a broad range of effective comedy and a decent laugh-per-minute ratio, Mallrats is likely to be a moderate disappointment for anyone who guffawed their way through the previous film.",2000-01-01,13599,Mallrats +Joe Baltake,none,0113749,Sacramento Bee,,2000-01-01,13599,Mallrats +Hal Hinson,fresh,0113749,Washington Post,"A disjointed but infectious series of comic vignettes, toilet humor, practical jokes, sight gags, even a sort of grunge variation on Keystone Kops slapstick.",2000-01-01,13599,Mallrats +Desson Thomson,rotten,0113749,Washington Post,"Between the routines and retorts, there's a lot of narrative dead air -- and far too many new guests.",2000-01-01,13599,Mallrats +Susan Stark,rotten,0113749,Detroit News,,2000-01-01,13599,Mallrats +,fresh,0113749,Entertainment Weekly,,1995-10-20,13599,Mallrats +,none,0113820,Variety,,2012-02-23,11319,Mighty Morphin Power Rangers: The Movie +Owen Gleiberman,fresh,0113820,Entertainment Weekly,,2011-09-07,11319,Mighty Morphin Power Rangers: The Movie +Joe Leydon,none,0113820,Variety,,2008-10-18,11319,Mighty Morphin Power Rangers: The Movie +Derek Adams,none,0113820,Time Out,,2006-06-24,11319,Mighty Morphin Power Rangers: The Movie +Caryn James,rotten,0113820,New York Times,"Noisy and meant for children only. A bored grown-up's only consolation is that the Rangers' popularity has probably peaked, and the next kiddie phenomenon must be on the way. Don't even think about what it will cost.",2003-05-20,11319,Mighty Morphin Power Rangers: The Movie +Kevin Thomas,fresh,0113820,Los Angeles Times,"Brings the popular TV series to the screen with a barrage of spectacular special effects, a slew of fantastic monsters, a ferociously funny villain -- and, most important, a refreshing lack of pretentiousness.",2001-02-13,11319,Mighty Morphin Power Rangers: The Movie +Kevin McManus,fresh,0113820,Washington Post,"The movie bolts along at a breakneck pace, from an opening sky diving scene to the climactic battle, which finds Ooze cackling away in the cockpit of a mechanical dinosaur.",2000-01-01,11319,Mighty Morphin Power Rangers: The Movie +Roger Ebert,rotten,0113820,Chicago Sun-Times,"What depresses me inutterably is that children, who are fresh and inquisitive, will go to this movie and, for 88 minutes, the movie will do what it can to deaden their imaginations.",2000-01-01,11319,Mighty Morphin Power Rangers: The Movie +,fresh,0113820,USA Today,"Young fans of the six squeaky-clean super teens can look forward to an effects-loaded, energetic adventure that powers up martial-arts acrobatics as it cuts the cheesiness.",2000-01-01,11319,Mighty Morphin Power Rangers: The Movie +Mick LaSalle,rotten,0113820,San Francisco Chronicle,"These are the same performers who appear on the TV show, and you get the feeling this has become more than a meal ticket for them. Hokey dialogue is invested with an intensity that takes you out of the movie and into the psyches of the actors.",2000-01-01,11319,Mighty Morphin Power Rangers: The Movie +Frank Ahrens,fresh,0113820,Washington Post,The production values are much higher than those of the TV shows.,2000-01-01,11319,Mighty Morphin Power Rangers: The Movie +,fresh,0113820,Entertainment Weekly,,1995-06-30,11319,Mighty Morphin Power Rangers: The Movie +,none,0113851,Time Out,,2006-02-09,14455,Moonlight and Valentino +Stephen Holden,none,0113851,New York Times,,2003-05-20,14455,Moonlight and Valentino +Jack Mathews,none,0113851,Los Angeles Times,,2002-08-15,14455,Moonlight and Valentino +Peter Stack,none,0113851,San Francisco Chronicle,,2002-06-18,14455,Moonlight and Valentino +,none,0113851,Globe and Mail,,2002-04-12,14455,Moonlight and Valentino +Roger Ebert,rotten,0113851,Chicago Sun-Times,,2000-01-01,14455,Moonlight and Valentino +Joe Baltake,none,0113851,Sacramento Bee,,2000-01-01,14455,Moonlight and Valentino +Desson Thomson,none,0113851,Washington Post,,2000-01-01,14455,Moonlight and Valentino +James Berardinelli,rotten,0113851,ReelViews,,2000-01-01,14455,Moonlight and Valentino +Hal Hinson,none,0113851,Washington Post,,2000-01-01,14455,Moonlight and Valentino +,rotten,0113851,USA Today,"Moonlight and Valentino is a Hallmark sympathy card of a film, pretty to look at with a message that's sincere. Yet it's hard to take its pretentious platitudes of grief and recovery too personally.",2000-01-01,14455,Moonlight and Valentino +Lisa Schwarzbaum,fresh,0110604,Entertainment Weekly,,2011-09-07,15044,Mute Witness +Emanuel Levy,fresh,0110604,Variety,"Waller's witty, well-crafted yet unpretentious thriller--about American youths who make a movie in Moscow and get involved with the underworld--is a seductive piece of filmmaking that should keep viewers hyperventilating to the last reel.",2006-11-19,15044,Mute Witness +Derek Adams,none,0110604,Time Out,,2006-02-09,15044,Mute Witness +Janet Maslin,none,0110604,New York Times,,2003-05-20,15044,Mute Witness +Kevin Thomas,none,0110604,Los Angeles Times,,2002-08-15,15044,Mute Witness +,none,0110604,Globe and Mail,,2002-04-12,15044,Mute Witness +Mike Clark,fresh,0110604,USA Today,"Though this slight but agreeable nail-biter loses a couple steps before its wrap-up, it's not before offering one of the funniest variations yet on the furious neighbor who wonders what's going on in the upstairs apartment.",2000-01-01,15044,Mute Witness +Peter Stack,none,0110604,San Francisco Chronicle,,2000-01-01,15044,Mute Witness +Roger Ebert,fresh,0110604,Chicago Sun-Times,,2000-01-01,15044,Mute Witness +Joe Baltake,none,0110604,Sacramento Bee,,2000-01-01,15044,Mute Witness +James Berardinelli,rotten,0110604,ReelViews,,2000-01-01,15044,Mute Witness +Desson Thomson,none,0110604,Washington Post,,2000-01-01,15044,Mute Witness +Susan Stark,fresh,0110604,Detroit News,,2000-01-01,15044,Mute Witness +Rita Kempley,none,0110604,Washington Post,,2000-01-01,15044,Mute Witness +,fresh,0110604,Entertainment Weekly,,1995-09-15,15044,Mute Witness +Jonathan Rosenbaum,rotten,0113957,Chicago Reader,A thriller without thrills.,2011-01-14,12771,The Net +Variety Staff,fresh,0113957,Variety,"Riddled with more coincidences and implausibilities than Hitchcock permitted himself in his entire career, The Net still gets by as a reasonably suspenseful, very au courant thriller.",2009-03-26,12771,The Net +,rotten,0113957,Time Out,"Pretty soon she's fleeing from her gun-wielding seducer, trying to recover an identity that's being systematically erased through alteration of her personal computer records, and dodging bullets on spinning carousels.",2006-01-26,12771,The Net +Caryn James,fresh,0113957,New York Times,"The Net is never quite as sleek and chilling as it might have been, but it gives the old story of a wrongly accused innocent a nerve-wracking 90's twist.",2004-08-30,12771,The Net +Mick LaSalle,fresh,0113957,San Francisco Chronicle,"A strong enough suspense thriller, a high-tech version of one of those spiraling nightmares in which an innocent person is chased by assassins and wanted by the police.",2002-06-18,12771,The Net +Hal Hinson,rotten,0113957,Washington Post,The story is standard issue pepped up with a sampling of smart computer talk to give the impression the characters know what they're talking about.,2000-01-01,12771,The Net +Desson Thomson,rotten,0113957,Washington Post,"Unfortunately, in movie theaters, as of now, there are no DELETE buttons.",2000-01-01,12771,The Net +Roger Ebert,fresh,0113957,Chicago Sun-Times,"This stuff is so concocted I had no business caring about it. But I did, because of Bullock.",2000-01-01,12771,The Net +Susan Wloszczyna,rotten,0113957,USA Today,"Reminiscent of a slew of films, including The Pelican Brief and The Fugitive, The Net -- ploddingly directed by Irwin Winkler -- is frustratingly average in almost every other respect.",2000-01-01,12771,The Net +James Berardinelli,rotten,0113957,ReelViews,"Borrowing heavily from Alfred Hitchcock and John Grisham, director Irwin Winkler reduces a potentially-fascinating premise to the spearhead of a routine thriller.",2000-01-01,12771,The Net +Owen Gleiberman,fresh,0113957,Entertainment Weekly,"As an actress, Bullock has it all -- heart and soul, and mind, too.",1995-07-28,12771,The Net +Owen Gleiberman,fresh,0113986,Entertainment Weekly,,2011-09-07,11045,Nine Months +Todd McCarthy,none,0113986,Variety,,2009-03-26,11045,Nine Months +,none,0113986,Time Out,,2006-01-26,11045,Nine Months +Janet Maslin,none,0113986,New York Times,,2003-05-20,11045,Nine Months +Peter Stack,rotten,0113986,San Francisco Chronicle,,2002-06-18,11045,Nine Months +,none,0113986,Globe and Mail,,2002-04-12,11045,Nine Months +Kenneth Turan,none,0113986,Los Angeles Times,,2001-02-13,11045,Nine Months +James Berardinelli,rotten,0113986,ReelViews,,2000-01-01,11045,Nine Months +Desson Thomson,none,0113986,Washington Post,,2000-01-01,11045,Nine Months +Rita Kempley,none,0113986,Washington Post,,2000-01-01,11045,Nine Months +Joe Baltake,none,0113986,Sacramento Bee,,2000-01-01,11045,Nine Months +,rotten,0113986,USA Today,"Writer/director Chris Columbus delivers his usual slapstick and sap shtick, but the sitcom-slick results fall flat.",2000-01-01,11045,Nine Months +Roger Ebert,rotten,0113986,Chicago Sun-Times,,2000-01-01,11045,Nine Months +,fresh,0113986,Entertainment Weekly,,1995-07-14,11045,Nine Months +Owen Gleiberman,fresh,0114095,Entertainment Weekly,"Mary is a spiritual descendant of Holly Golightly, and there's an echo, as well, of Edie Sedgwick, the late Andy Warhol superstar who moved the American-princess-on-a-bender mythology into the drug-rock era.",2008-05-27,16653,Party Girl +Todd McCarthy,fresh,0114095,Variety,Party Girl aspires to be cinematic champagne but comes out tasting more like sparkling cider.,2008-05-27,16653,Party Girl +Jonathan Rosenbaum,rotten,0114095,Chicago Reader,"This exudes trendiness at regular intervals, and otherwise manages to be reasonably charming about Manhattan's melting pot culture, but my general response was still 'Wake me when it's over.'",2008-05-27,16653,Party Girl +Stephen Holden,rotten,0114095,New York Times,"The screenplay, by Ms. Mayer and Harry Birckmayer, has its occasionally funny lines, but not nearly enough to certify the film as a hip urban comedy in tune with the cutting edge of downtown New York.",2003-05-20,16653,Party Girl +Liam Lacey,rotten,0114095,Globe and Mail,"If bad behaviour and smugness were truly charming, Party Girl might be as much fun as it imagines it is. And Madonna might even have a decent movie career.",2002-04-12,16653,Party Girl +Peter Travers,fresh,0114095,Rolling Stone,"What makes it delicious fun is Posey, a party girl for the ages.",2001-05-12,16653,Party Girl +Peter Rainer,fresh,0114095,Los Angeles Times,"Unlike most of the Hollywood Gen X movies, Party Girl actually looks as if it were made from the inside.",2001-02-13,16653,Party Girl +Edward Guthmann,rotten,0114095,San Francisco Chronicle,"If Party Girl weren't so contrived, and if Posey didn't exude such cold hauteur, all of that might have worked.",2000-01-01,16653,Party Girl +Hal Hinson,fresh,0114095,Washington Post,"The movie is poppy, clever and more than enjoyable, but Posey is something else altogether. She's a revelation.",2000-01-01,16653,Party Girl +Joe Baltake,fresh,0114095,Sacramento Bee,Parker Posey will either grate on your nerves or charm the daylights out of you -- or both.,2000-01-01,16653,Party Girl +Roger Ebert,rotten,0114095,Chicago Sun-Times,"It's a showcase leading role for Parker Posey, who obviously has the stuff, and generates wacky charm. But the movie never pulls itself together.",2000-01-01,16653,Party Girl +,fresh,0114095,USA Today,"Though it doesn't exactly bowl you over with its ambitions, this teensy but breezy sleeper can at least be mentioned in a breath with two memorable predecessors it recalls ... Breakfast at Tiffany's.",2000-01-01,16653,Party Girl +Desson Thomson,fresh,0114095,Washington Post,Hip and contemporary without being archly so.,2000-01-01,16653,Party Girl +Owen Gleiberman,rotten,0114194,Entertainment Weekly,,2011-09-07,13074,The Prophecy +Eric Hansen,none,0114194,Variety,,2009-03-26,13074,The Prophecy +,none,0114194,Time Out,,2006-02-09,13074,The Prophecy +Stephen Holden,none,0114194,New York Times,,2003-05-20,13074,The Prophecy +David Kronke,none,0114194,Los Angeles Times,,2002-08-15,13074,The Prophecy +Hal Hinson,none,0114194,Washington Post,,2000-01-01,13074,The Prophecy +Mick LaSalle,none,0114194,San Francisco Chronicle,,2000-01-01,13074,The Prophecy +James Berardinelli,rotten,0114194,ReelViews,,2000-01-01,13074,The Prophecy +,none,0041786,Variety,,2008-11-04,98531290,The Reckless Moment +Bosley Crowther,none,0041786,New York Times,,2006-03-25,98531290,The Reckless Moment +Geoff Andrew,none,0041786,Time Out,,2006-02-09,98531290,The Reckless Moment +Dave Kehr,none,0041786,Chicago Reader,,2003-03-12,98531290,The Reckless Moment +,none,0058083,Variety,,2011-06-29,18440,Fail-Safe +,none,0058083,Time Out,,2006-01-26,18440,Fail-Safe +Owen Gleiberman,rotten,0114345,Entertainment Weekly,,2011-09-07,13614,The Scarlet Letter +Jonathan Rosenbaum,rotten,0114345,Chicago Reader,"""Freely adapted from the novel by Nathaniel Hawthorne,"" the credits say cautiously. I'll say.",2009-08-04,13614,The Scarlet Letter +Todd McCarthy,rotten,0114345,Variety,"A very '90s take on a 1660s tale written in 1850, as a picture of early colonial life it's about as convincing as Pocahontas.",2009-03-26,13614,The Scarlet Letter +Derek Adams,rotten,0114345,Time Out,"Not only does the film bear little resemblance to the source novel, but it's cluttered with ridiculous symbolism.",2006-06-24,13614,The Scarlet Letter +Caryn James,rotten,0114345,New York Times,"If you've read the book you won't know the ending. Let's just say that Indians with flaming arrows come to the rescue. They manage to keep a straight face, which is more than anyone in the audience will be able to do.",2004-08-30,13614,The Scarlet Letter +Peter Stack,fresh,0114345,San Francisco Chronicle,"This is a well-acted, beautiful movie.",2002-06-18,13614,The Scarlet Letter +Kenneth Turan,rotten,0114345,Los Angeles Times,"Though it's unclear what the audience would be for a faithful rendition of the Hawthorne novel, the question of who would ever want to see this one is murkier still.",2001-02-13,13614,The Scarlet Letter +James Berardinelli,rotten,0114345,ReelViews,"Literary purists will be aghast at some of the liberties taken with the original text, but my complaints have more to do with cinematic misjudgments than with those in the book-to-screen translation.",2000-01-01,13614,The Scarlet Letter +Roger Ebert,rotten,0114345,Chicago Sun-Times,"The movie has removed the character's sense of guilt, and therefore the story's drama.",2000-01-01,13614,The Scarlet Letter +Susan Wloszczyna,rotten,0114345,USA Today,Students beware: This is no sub for Cliffs Notes. The script takes more liberties with the text than Elizabeth Berkley did with that pole in Showgirls.,2000-01-01,13614,The Scarlet Letter +Rita Kempley,rotten,0114345,Washington Post,The picture's period furnishings include Hester's 17th-century hot tub.,2000-01-01,13614,The Scarlet Letter +Desson Thomson,rotten,0114345,Washington Post,"Picture yourself trudging out of the theater with a letter ""D"" (for ""disappointment"") firmly pinned to your chest.",2000-01-01,13614,The Scarlet Letter +,rotten,0114345,Entertainment Weekly,,1995-10-13,13614,The Scarlet Letter +Richard Corliss,fresh,0114436,TIME Magazine,"Showgirls... is one of those delirious, hilarious botches that could be taught in film schools as a How Not To.",2013-06-12,16960,Showgirls +Anthony Lane,fresh,0114436,New Yorker,"Berkley's acting debut is a joy, if you can call it acting: she jumps up and down a lot to indicate excitement.",2013-06-12,16960,Showgirls +Jay Boyar,rotten,0114436,Orlando Sentinel,"One thing I'll say for Showgirls, it's educational. But sadly, it isn't much else.",2013-06-12,16960,Showgirls +Owen Gleiberman,rotten,0114436,Entertainment Weekly,,2011-09-07,16960,Showgirls +Stanley Kauffmann,none,0114436,The New Republic,,2009-05-27,16960,Showgirls +Derek Adams,none,0114436,Time Out,,2006-06-24,16960,Showgirls +,none,0114436,Hollywood Reporter,,2004-09-25,16960,Showgirls +Janet Maslin,none,0114436,New York Times,,2003-05-20,16960,Showgirls +Rick Groen,rotten,0114436,Globe and Mail,The script -- a generic blend mixing the soap of All About Eve with the suds of Valley of the Dolls -- is replete with the clunkiest dialogue this side of Peyton Place.,2002-04-12,16960,Showgirls +Kenneth Turan,rotten,0114436,Los Angeles Times,A film of thunderous oafishness that gives adult subject matter the kind of bad name it does not need or deserve.,2001-02-13,16960,Showgirls +Desson Thomson,rotten,0114436,Washington Post,To take Showgirls that seriously (as either trash-art or appalling pornography) wouldn't be worth the exertion.,2000-01-01,16960,Showgirls +Susan Wloszczyna,rotten,0114436,USA Today,"[The script] is as hoary as it is whore-y, whipping out every backstage cliche as he recycles his Flashdance plot into Trashdance.",2000-01-01,16960,Showgirls +Mick LaSalle,rotten,0114436,San Francisco Chronicle,"Think of Flashdance but with an unappealing leading lady playing a woman whose fierce ambition is to do something not admirable, just ridiculous.",2000-01-01,16960,Showgirls +Roger Ebert,rotten,0114436,Chicago Sun-Times,A waste of a perfectly good NC-17 rating.,2000-01-01,16960,Showgirls +James Berardinelli,rotten,0114436,ReelViews,One of the worst films of the year.,2000-01-01,16960,Showgirls +Joe Baltake,rotten,0114436,Sacramento Bee,Showgirls approximates the feeling of someone sleazy putting the make on you. Its brand of sexual harassment makes you feel dirty and not at all flattered.,2000-01-01,16960,Showgirls +Rita Kempley,rotten,0114436,Washington Post,An overcoat movie for men who don't want to be seen going into a porno theater.,2000-01-01,16960,Showgirls +,rotten,0114436,Entertainment Weekly,,1995-09-22,16960,Showgirls +Lisa Schwarzbaum,fresh,0114478,Entertainment Weekly,,2011-09-07,14110,Smoke +David Stratton,none,0114478,Variety,,2008-10-22,14110,Smoke +Derek Adams,none,0114478,Time Out,,2006-06-24,14110,Smoke +Janet Maslin,none,0114478,New York Times,,2003-05-20,14110,Smoke +Edward Guthmann,none,0114478,San Francisco Chronicle,,2002-06-18,14110,Smoke +,none,0114478,Globe and Mail,,2002-04-12,14110,Smoke +Peter Travers,none,0114478,Rolling Stone,,2001-05-12,14110,Smoke +Peter Rainer,none,0114478,Los Angeles Times,,2001-02-13,14110,Smoke +Desson Thomson,none,0114478,Washington Post,,2000-01-01,14110,Smoke +Rita Kempley,none,0114478,Washington Post,,2000-01-01,14110,Smoke +Roger Ebert,fresh,0114478,Chicago Sun-Times,,2000-01-01,14110,Smoke +James Berardinelli,fresh,0114478,ReelViews,,2000-01-01,14110,Smoke +,rotten,0114478,USA Today,"With a cigar box of subplots, this episodic yarn is more numbing than boring, though its increasingly compelling narrative has the ill-timed misfortune to collapse completely in its final talky segment.",2000-01-01,14110,Smoke +,fresh,0114478,Entertainment Weekly,,1995-06-09,14110,Smoke +,none,0114496,Variety,,2012-02-23,13125,Something to Talk About +Lisa Schwarzbaum,fresh,0114496,Entertainment Weekly,,2011-09-07,13125,Something to Talk About +Todd McCarthy,none,0114496,Variety,,2009-03-26,13125,Something to Talk About +Derek Adams,none,0114496,Time Out,,2006-06-24,13125,Something to Talk About +Janet Maslin,none,0114496,New York Times,,2003-05-20,13125,Something to Talk About +Peter Travers,none,0114496,Rolling Stone,,2002-08-30,13125,Something to Talk About +Kenneth Turan,fresh,0114496,Los Angeles Times,Something to Talk About is at its best when Khouri's juicy script is adroitly mixing comedy and pathos.,2001-02-13,13125,Something to Talk About +Desson Thomson,rotten,0114496,Washington Post,"In [Khouri's] zeal to portray a world full of male scum, she creates a morally mismatched, pandering scenario.",2000-01-01,13125,Something to Talk About +Mike Clark,rotten,0114496,USA Today,Everything about Something to Talk About feels off by a few beats.,2000-01-01,13125,Something to Talk About +Mick LaSalle,rotten,0114496,San Francisco Chronicle,"Something to Talk About never goes bad, though it does get corny in places, and it hits a couple of dull patches near the finish.",2000-01-01,13125,Something to Talk About +Roger Ebert,fresh,0114496,Chicago Sun-Times,"Something to Talk About is the kind of movie where you start out wondering how all of these people are related, and end up knowing all too well.",2000-01-01,13125,Something to Talk About +Hal Hinson,fresh,0114496,Washington Post,"The ending is still pat, with lots of reasons for optimism, but Something is not as neatly -- or falsely -- resolved as most Hollywood films.",2000-01-01,13125,Something to Talk About +James Berardinelli,rotten,0114496,ReelViews,"Something to Talk About is weary -- every ounce of energy and originality has long since been wrung out of this formula, and the 'twist' of having the leads already married doesn't do much to spice up things.",2000-01-01,13125,Something to Talk About +Joe Baltake,fresh,0114496,Sacramento Bee,"Under [Hallstrom's] direction, Something To Talk About seems volatile and fresh, as well as tender and sentimental.",2000-01-01,13125,Something to Talk About +,fresh,0114496,Entertainment Weekly,,1995-08-04,13125,Something to Talk About +Owen Gleiberman,rotten,0114508,Entertainment Weekly,,2011-09-07,16824,Species +Godfrey Cheshire,none,0114508,Variety,,2009-03-26,16824,Species +Derek Adams,none,0114508,Time Out,,2006-06-24,16824,Species +Caryn James,none,0114508,New York Times,,2003-05-20,16824,Species +Mick LaSalle,rotten,0114508,San Francisco Chronicle,,2002-06-18,16824,Species +,none,0114508,Globe and Mail,,2002-04-12,16824,Species +Peter Travers,none,0114508,Rolling Stone,,2001-05-12,16824,Species +Peter Rainer,none,0114508,Los Angeles Times,,2001-02-13,16824,Species +Richard Harrington,none,0114508,Washington Post,,2000-01-01,16824,Species +Joe Brown,none,0114508,Washington Post,,2000-01-01,16824,Species +James Berardinelli,rotten,0114508,ReelViews,,2000-01-01,16824,Species +Roger Ebert,rotten,0114508,Chicago Sun-Times,,2000-01-01,16824,Species +,fresh,0114508,USA Today,Ingeniously combines the schlocky fun of '50s sci-fi flicks with the shock tactics of Alien and the cautionary allure of Looking for Mr. Goodbar.,2000-01-01,16824,Species +,rotten,0114508,Entertainment Weekly,,1995-07-07,16824,Species +Lisa Schwarzbaum,fresh,0114534,Entertainment Weekly,,2011-09-07,770738110,The Stars Fell on Henrietta +,fresh,0114534,Entertainment Weekly,,2011-01-01,770738110,The Stars Fell on Henrietta +Todd McCarthy,none,0114534,Variety,,2009-03-26,770738110,The Stars Fell on Henrietta +Stephen Holden,none,0114534,New York Times,,2004-08-30,770738110,The Stars Fell on Henrietta +Kenneth Turan,none,0114534,Los Angeles Times,,2002-08-15,770738110,The Stars Fell on Henrietta +,none,0114534,Globe and Mail,,2002-04-12,770738110,The Stars Fell on Henrietta +Rita Kempley,none,0114534,Washington Post,,2000-01-01,770738110,The Stars Fell on Henrietta +Roger Ebert,rotten,0114534,Chicago Sun-Times,,2000-01-01,770738110,The Stars Fell on Henrietta +Edward Guthmann,none,0114534,San Francisco Chronicle,,2000-01-01,770738110,The Stars Fell on Henrietta +Jack Kroll,fresh,0114558,Newsweek,Director Kathryn Bigelow comes closer than any other filmmaker to turning movies into a virtual reality trip.,2013-01-18,13697,Strange Days +Owen Gleiberman,fresh,0114558,Entertainment Weekly,,2011-09-07,13697,Strange Days +Derek Adams,none,0114558,Time Out,,2006-02-09,13697,Strange Days +Janet Maslin,none,0114558,New York Times,,2003-05-20,13697,Strange Days +Rick Groen,rotten,0114558,Globe and Mail,"Once the premise has lost its promise, and Fiennes's brave attempts at characterization are sacrificed to pseudo-dazzle, everything appears awfully humdrum and, yes, distinctly dated.",2002-04-12,13697,Strange Days +Peter Travers,fresh,0114558,Rolling Stone,Undeniably thrilling and troubling.,2001-05-12,13697,Strange Days +Kenneth Turan,rotten,0114558,Los Angeles Times,"Though the creators of Strange Days may well be interested in its dramatic and thematic elements, they do not have the same touch for these moments as they do for camera pyrotechnics.",2001-02-13,13697,Strange Days +Edward Guthmann,rotten,0114558,San Francisco Chronicle,"Bigelow is so enamored of high-tech thrills, and so mesmerized by the violence she seeks to condemn, that her efforts at 11th-hour moralizing seem limp and halfhearted.",2000-01-01,13697,Strange Days +Joe Baltake,rotten,0114558,Sacramento Bee,"It's a wildly messed-up, unwieldy, 145-minute movie designed specifically for those audiences who the filmmakers believe haven't been brutalized or quite desensitized enough.",2000-01-01,13697,Strange Days +James Berardinelli,fresh,0114558,ReelViews,"It's big, explosive entertainment and, although not directed by Cameron, is very much in the vein we've come to expect from him.",2000-01-01,13697,Strange Days +Roger Ebert,fresh,0114558,Chicago Sun-Times,It's fascinating the way Bigelow is able to suggest so much of VR's impact (and dangers) within a movie - a form of VR that's a century old.,2000-01-01,13697,Strange Days +,fresh,0114558,Entertainment Weekly,,1995-10-13,13697,Strange Days +A.O. Scott,none,0058450,New York Times,,2011-05-17,22029,Les parapluies de Cherbourg +,fresh,0058450,Variety,"Seemingly banal and sentimental on the surface, [director Jacques] Demy has avoided these aspects by tasteful handling and the right balance in emotion, compassion and narrative.",2008-01-11,22029,Les parapluies de Cherbourg +Ben Walters,fresh,0058450,Time Out,Umbrellas makes escapist play with the stuff of kitchen-sink social realism.,2006-02-09,22029,Les parapluies de Cherbourg +Bosley Crowther,rotten,0058450,New York Times,"Not only has he resurrected the quaint and artificial device of having the dialogue set to music and unrealistically sung, but he uses this operatic method to tell a story that is so banal... it wouldn't get beyond a reader in Hollywood.",2005-01-15,22029,Les parapluies de Cherbourg +Kevin Thomas,fresh,0058450,Los Angeles Times,The Umbrellas of Cherbourg has stood the test of time as beautifully as Deneuve and seems likely to enchant future generations as fully as it has audiences over the past four decades.,2004-04-22,22029,Les parapluies de Cherbourg +Jessica Winter,fresh,0058450,Village Voice,A choreography of the everyday timed to Demy's floating long takes and Michel Legrand's at turns jaunty and lachrymose score.,2004-02-10,22029,Les parapluies de Cherbourg +Andrew Sarris,fresh,0058450,New York Observer,Delicately bittersweet.,2004-02-05,22029,Les parapluies de Cherbourg +Hal Hinson,fresh,0058450,Washington Post,A glorious romantic confection unlike any other in movie history.,2003-03-31,22029,Les parapluies de Cherbourg +Desson Thomson,fresh,0058450,Washington Post,An operatic masterpiece of romanticism.,2000-01-01,22029,Les parapluies de Cherbourg +James Berardinelli,fresh,0058450,ReelViews,Far more powerful than one would initially suppose.,2000-01-01,22029,Les parapluies de Cherbourg +Jonathan Rosenbaum,fresh,0058450,Chicago Reader,It's a glorious sight to behold -- though don't forget to listen as well.,2000-01-01,22029,Les parapluies de Cherbourg +Roger Ebert,fresh,0058450,Chicago Sun-Times,"A surprisingly effective film, touching and knowing and, like Deneuve, ageless.",2000-01-01,22029,Les parapluies de Cherbourg +Lisa Schwarzbaum,rotten,0114666,Entertainment Weekly,,2011-09-07,16726,The Tie That Binds +Todd McCarthy,none,0114666,Variety,,2009-03-26,16726,The Tie That Binds +Geoff Andrew,none,0114666,Time Out,,2006-02-09,16726,The Tie That Binds +Stephen Holden,none,0114666,New York Times,,2003-05-20,16726,The Tie That Binds +James Berardinelli,rotten,0114666,ReelViews,,2000-01-01,16726,The Tie That Binds +Mike Clark,rotten,0114666,USA Today,One of the sleaziest movies of the year and certainly the most unpleasant.,2000-01-01,16726,The Tie That Binds +Mick LaSalle,none,0114666,San Francisco Chronicle,,2000-01-01,16726,The Tie That Binds +,rotten,0114666,Entertainment Weekly,,1995-09-08,16726,The Tie That Binds +Todd McCarthy,none,0114663,Variety,,2009-03-26,11402,Three Wishes +Geoff Andrew,none,0114663,Time Out,,2006-02-09,11402,Three Wishes +Caryn James,none,0114663,New York Times,,2003-05-20,11402,Three Wishes +,none,0114663,Globe and Mail,,2002-04-12,11402,Three Wishes +Kevin Thomas,none,0114663,Los Angeles Times,,2001-02-13,11402,Three Wishes +Roger Ebert,rotten,0114663,Chicago Sun-Times,,2000-01-01,11402,Three Wishes +Susan Stark,rotten,0114663,Detroit News,,2000-01-01,11402,Three Wishes +Susan Wloszczyna,rotten,0114663,USA Today,The script is draggy and overly obvious except for a mystifying mumbo-jumble of special effects.,2000-01-01,11402,Three Wishes +Hal Hinson,none,0114663,Washington Post,,2000-01-01,11402,Three Wishes +Mick LaSalle,none,0114663,San Francisco Chronicle,,2000-01-01,11402,Three Wishes +,rotten,0114663,Entertainment Weekly,,1995-11-03,11402,Three Wishes +Todd McCarthy,none,0114702,Variety,,2009-03-26,14367,Total Eclipse +Geoff Andrew,none,0114702,Time Out,,2006-06-24,14367,Total Eclipse +Janet Maslin,none,0114702,New York Times,,2003-05-20,14367,Total Eclipse +,none,0114702,Globe and Mail,,2002-04-12,14367,Total Eclipse +Kenneth Turan,none,0114702,Los Angeles Times,,2001-02-13,14367,Total Eclipse +Gary Kamiya,none,0114702,Salon.com,,2000-01-01,14367,Total Eclipse +Joe Baltake,none,0114702,Sacramento Bee,,2000-01-01,14367,Total Eclipse +Susan Stark,rotten,0114702,Detroit News,,2000-01-01,14367,Total Eclipse +James Berardinelli,fresh,0114702,ReelViews,,2000-01-01,14367,Total Eclipse +Edward Guthmann,none,0114702,San Francisco Chronicle,,2000-01-01,14367,Total Eclipse +Roger Ebert,rotten,0114702,Chicago Sun-Times,,2000-01-01,14367,Total Eclipse +Desson Thomson,none,0114702,Washington Post,,2000-01-01,14367,Total Eclipse +Hal Hinson,none,0114702,Washington Post,,2000-01-01,14367,Total Eclipse +,rotten,0114702,Entertainment Weekly,,1995-11-03,14367,Total Eclipse +Emanuel Levy,rotten,0114682,Variety,"A politically correct comedy about drag queens? This is the American response to the superior Aussie flick Adventures of Priscilla. Macho Wesley Snipes, Patrick Swayze, and John Leguizamo can't lift it above the routine.",2006-12-31,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Geoff Andrew,rotten,0114682,Time Out,"Leguizamo's Chi Chi is the only one who looks anything like a drag queen, let alone a woman; yet we are asked to believe that it's Swayze's breathy Vida and Snipes' squealing Noxeema who've got their stocking seams straight.",2006-02-09,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Janet Maslin,rotten,0114682,New York Times,"Kidron's direction stays flat even when the actors are funny. It doesn't help that the screenplay, by Douglas Carter Beane, is so thin that one of its biggest events is the three main characters' having car trouble.",2003-05-20,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Edward Guthmann,fresh,0114682,San Francisco Chronicle,"Imagine, ""Wong Foo"" suggests, a world where people stopped judging one another and simply surrendered to the silliness that's dormant inside us.",2002-06-18,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +James Berardinelli,rotten,0114682,ReelViews,,2000-01-01,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Rita Kempley,fresh,0114682,Washington Post,"Improbable as this all sounds, ""Wong Foo"" is a great deal of fun and a small step forward in Hollywood's depiction of homosexuals.",2000-01-01,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Joe Brown,fresh,0114682,Washington Post,"Screenwriter Douglas Carter Beane pilfers not just plot elements from ""Priscilla,"" but also stirs in big chunks of ""Fried Green Tomatoes,"" ""Bagdad Cafe,"" ""Auntie Mame,"" ""The Music Man"" and ""Cinderella.""",2000-01-01,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Roger Ebert,rotten,0114682,Chicago Sun-Times,"What is amazing is how the movie manages to be funny and amusing while tippy-toeing around (a) sex, (b) controversy and (c) any originality in the plot.",2000-01-01,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Susan Wloszczyna,rotten,0114682,USA Today,"It's a glam-o-rama party until the trio hits the road. Suddenly, Wong Foo is all cross-dressed with no place to go -- but down.",2000-01-01,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Owen Gleiberman,rotten,0114682,Entertainment Weekly,"Slick and amiable and innocuous as hell, it's a foam-padded farce, as laboriously packaged as its three glam-sister ''heroines.''",1995-09-08,10361,"To Wong Foo Thanks for Everything, Julie Newmar" +Leonard Klady,none,0114781,Variety,,2009-03-26,13970,Under Siege 2: Dark Territory +Geoff Andrew,none,0114781,Time Out,,2006-06-24,13970,Under Siege 2: Dark Territory +Stephen Holden,none,0114781,New York Times,,2003-05-20,13970,Under Siege 2: Dark Territory +Edward Guthmann,none,0114781,San Francisco Chronicle,,2002-06-18,13970,Under Siege 2: Dark Territory +Peter Rainer,none,0114781,Los Angeles Times,,2001-02-13,13970,Under Siege 2: Dark Territory +James Berardinelli,rotten,0114781,ReelViews,,2000-01-01,13970,Under Siege 2: Dark Territory +Richard Harrington,none,0114781,Washington Post,,2000-01-01,13970,Under Siege 2: Dark Territory +Roger Ebert,fresh,0114781,Chicago Sun-Times,,2000-01-01,13970,Under Siege 2: Dark Territory +,fresh,0114781,Entertainment Weekly,,1995-07-14,13970,Under Siege 2: Dark Territory +,none,0114798,Variety,,2012-02-23,12209,Unstrung Heroes +Owen Gleiberman,rotten,0114798,Entertainment Weekly,,2011-09-07,12209,Unstrung Heroes +Todd McCarthy,none,0114798,Variety,,2009-03-26,12209,Unstrung Heroes +Geoff Andrew,none,0114798,Time Out,,2006-06-24,12209,Unstrung Heroes +Janet Maslin,none,0114798,New York Times,,2003-05-20,12209,Unstrung Heroes +,none,0114798,Globe and Mail,,2002-04-12,12209,Unstrung Heroes +Peter Travers,none,0114798,Rolling Stone,,2001-05-12,12209,Unstrung Heroes +James Berardinelli,fresh,0114798,ReelViews,,2000-01-01,12209,Unstrung Heroes +Joe Baltake,none,0114798,Sacramento Bee,,2000-01-01,12209,Unstrung Heroes +Edward Guthmann,none,0114798,San Francisco Chronicle,,2000-01-01,12209,Unstrung Heroes +Roger Ebert,fresh,0114798,Chicago Sun-Times,,2000-01-01,12209,Unstrung Heroes +Susan Stark,rotten,0114798,Detroit News,,2000-01-01,12209,Unstrung Heroes +Rita Kempley,none,0114798,Washington Post,,2000-01-01,12209,Unstrung Heroes +,rotten,0114798,Entertainment Weekly,,1995-09-15,12209,Unstrung Heroes +Lisa Schwarzbaum,fresh,0114805,Entertainment Weekly,,2011-09-07,770695769,Unzipped +Emanuel Levy,fresh,0114805,Variety,"Though uncritical of NY designer Mizrahi, docu is everything that Altman's dreadful Ready to Wear should have been: An insider's view of the fashion world that's hip, light, authentic, revelatory, and always amusing.",2006-09-01,770695769,Unzipped +Geoff Andrew,none,0114805,Time Out,,2006-06-24,770695769,Unzipped +Janet Maslin,none,0114805,New York Times,,2003-05-20,770695769,Unzipped +Mick LaSalle,none,0114805,San Francisco Chronicle,,2002-06-18,770695769,Unzipped +Peter Travers,none,0114805,Rolling Stone,,2001-05-12,770695769,Unzipped +,none,0114805,Los Angeles Times,,2001-02-13,770695769,Unzipped +Roger Ebert,fresh,0114805,Chicago Sun-Times,,2000-01-01,770695769,Unzipped +James Berardinelli,fresh,0114805,ReelViews,,2000-01-01,770695769,Unzipped +Rita Kempley,none,0114805,Washington Post,,2000-01-01,770695769,Unzipped +Joe Baltake,none,0114805,Sacramento Bee,,2000-01-01,770695769,Unzipped +,fresh,0114805,USA Today,"This movie has all the elements that Miramax's other fashion film, Robert Altman's disastrously received Ready to Wear, didn't, including intrigue, humor, irony, pathos and real live supermodels.",2000-01-01,770695769,Unzipped +Joe Brown,none,0114805,Washington Post,,2000-01-01,770695769,Unzipped +,fresh,0114805,Entertainment Weekly,,1995-08-11,770695769,Unzipped +Lisa Schwarzbaum,rotten,0114887,Entertainment Weekly,,2011-09-07,12571,A Walk in the Clouds +,none,0114887,Variety,,2009-03-26,12571,A Walk in the Clouds +,none,0114887,Time Out,,2006-01-26,12571,A Walk in the Clouds +Janet Maslin,none,0114887,New York Times,,2004-08-30,12571,A Walk in the Clouds +Peter Travers,none,0114887,Rolling Stone,,2001-05-12,12571,A Walk in the Clouds +Kevin Thomas,none,0114887,Los Angeles Times,,2001-02-13,12571,A Walk in the Clouds +Joe Baltake,none,0114887,Sacramento Bee,,2000-01-01,12571,A Walk in the Clouds +Mick LaSalle,none,0114887,San Francisco Chronicle,,2000-01-01,12571,A Walk in the Clouds +Roger Ebert,fresh,0114887,Chicago Sun-Times,,2000-01-01,12571,A Walk in the Clouds +James Berardinelli,rotten,0114887,ReelViews,,2000-01-01,12571,A Walk in the Clouds +Joe Brown,none,0114887,Washington Post,,2000-01-01,12571,A Walk in the Clouds +Hal Hinson,none,0114887,Washington Post,,2000-01-01,12571,A Walk in the Clouds +,rotten,0114887,Entertainment Weekly,,1995-08-11,12571,A Walk in the Clouds +Owen Gleiberman,fresh,0114898,Entertainment Weekly,,2011-09-07,10806,Waterworld +Todd McCarthy,none,0114898,Variety,,2009-03-26,10806,Waterworld +,none,0114898,Time Out,,2006-01-26,10806,Waterworld +Janet Maslin,none,0114898,New York Times,,2003-05-20,10806,Waterworld +Mick LaSalle,fresh,0114898,San Francisco Chronicle,It's a genuine vault at greatness that misses the mark -- but survives.,2002-06-18,10806,Waterworld +Kenneth Turan,fresh,0114898,Los Angeles Times,A moderately successful guy's movie with both weak and strong elements where lots of things are brilliantly blown up and few things make any kind of sense.,2001-02-13,10806,Waterworld +Roger Ebert,rotten,0114898,Chicago Sun-Times,"It's one of those marginal pictures you're not unhappy to have seen, but can't quite recommend.",2000-01-01,10806,Waterworld +Mike Clark,fresh,0114898,USA Today,Has the makings of a cult movie.,2000-01-01,10806,Waterworld +Joe Baltake,fresh,0114898,Sacramento Bee,"Waterworld is the movie that didn't happen. Which is a roundabout way of saying that the infamous Universal film is very good, damn good -- not great, mind you, but rousing and continually entertaining.",2000-01-01,10806,Waterworld +James Berardinelli,fresh,0114898,ReelViews,"In the tradition of the old Westerns and Mel Gibson's Road Warrior flicks, this film provides good escapist fun.",2000-01-01,10806,Waterworld +Rita Kempley,rotten,0114898,Washington Post,"Waterworld isn't Fishtar, but Kevin Costner's pricey, post-apocalyptic sloshbuckler isn't a seafaring classic either.",2000-01-01,10806,Waterworld +Desson Thomson,fresh,0114898,Washington Post,"If the story seems a little waterlogged, it's still big, loud, and fun to watch.",2000-01-01,10806,Waterworld +,fresh,0114898,Entertainment Weekly,,1995-07-28,10806,Waterworld +Owen Gleiberman,rotten,0114928,Entertainment Weekly,,2011-09-07,14598,White Man's Burden +Leonard Klady,none,0114928,Variety,,2009-03-26,14598,White Man's Burden +,none,0114928,Time Out,,2006-06-24,14598,White Man's Burden +Jack Mathews,none,0114928,Los Angeles Times,,2003-06-25,14598,White Man's Burden +Stephen Holden,rotten,0114928,New York Times,"Were it not for John Travolta's big-hearted portrayal of an unemployed white factory worker driven to commit a desperate act, the movie would be an emotionally frozen exercise in cautious high-mindedness.",2003-05-20,14598,White Man's Burden +Peter Travers,rotten,0114928,Rolling Stone,White Man's Burden spirals into tragedy but never into stirring drama. It stays stuck at the level of noble experiment.,2001-05-12,14598,White Man's Burden +Joe Baltake,fresh,0114928,Sacramento Bee,Surprisingly lively and entertaining.,2000-01-01,14598,White Man's Burden +Rita Kempley,rotten,0114928,Washington Post,"A ham-fisted, under-imagined dialectic on race relations.",2000-01-01,14598,White Man's Burden +Desson Thomson,rotten,0114928,Washington Post,It's undeniably fascinating to watch this hypothetical experiment for a while. But White Man's Burden starts to feel like an only-passable Twilight Zone episode stretched into a full-length movie.,2000-01-01,14598,White Man's Burden +Mick LaSalle,rotten,0114928,San Francisco Chronicle,"White Man's Burden was worth doing once, if it only to find out it isn't worth doing again.",2000-01-01,14598,White Man's Burden +Mike Clark,rotten,0114928,USA Today,Watching this movie is like watching Godfrey Cambridge's racial switcheroo in 1970's Watermelon Man -- without the laughs.,2000-01-01,14598,White Man's Burden +James Berardinelli,rotten,0114928,ReelViews,There isn't much of a story in White Man's Burden.,2000-01-01,14598,White Man's Burden +Roger Ebert,rotten,0114928,Chicago Sun-Times,"No one looking for an action movie is going to choose this one. Equally obviously, no one interested in a film about racial stereotyping in America wants to sit through chase scenes.",2000-01-01,14598,White Man's Burden +,rotten,0114928,Entertainment Weekly,,1995-12-01,14598,White Man's Burden +Variety Staff,fresh,0043362,Variety,"The role of the retiring master is not an easy one, but a prize in the right hands. Michael Redgrave fills it with distinction.",2009-03-26,770671481,The Browning Version +Tom Milne,fresh,0043362,Time Out,Worth watching for Redgrave's powerfully detailed performance as the schoolmaster.,2006-06-24,770671481,The Browning Version +Dave Kehr,rotten,0043362,Chicago Reader,"What begins as an anti-Goodbye, Mr. Chips ends, thanks to some psychological point stretching, as an imitation of it.",2004-01-10,770671481,The Browning Version +Bosley Crowther,rotten,0043362,New York Times,"The schoolmaster to whom our pity is drawn is a pretty weak and lukewarm individual, hardly fit to be a teacher of growing boys -- even a teacher of classical languages, which he is.",2003-05-20,770671481,The Browning Version +Michael Wilmington,fresh,0112602,Chicago Tribune,Bushwhacked isn't much of a movie. But it made me laugh more than I'd like to admit.,2013-05-28,246223062,Bushwhacked +Leonard Klady,rotten,0112602,Variety,"Riddled with noble sentiments and good intentions, this great-outdoors hijinx is hiking familiar trails with a combination of bathroom humor, cute kids and a fuzzy, happy ending.",2013-01-22,246223062,Bushwhacked +Caryn James,none,0112602,New York Times,,2003-05-20,246223062,Bushwhacked +Peter Stack,rotten,0112602,San Francisco Chronicle,"A little bit of Daniel Stern's mugging, dimwit style of comedy goes a long way.",2002-06-18,246223062,Bushwhacked +Kevin Thomas,rotten,0112602,Los Angeles Times,"[A] strained, way, way over-the-top comedy-thriller in which its star, Daniel Stern, as the film's executive producer, gives himself free rein to mug and show off to increasingly numbing and tedious effect.",2001-02-13,246223062,Bushwhacked +Rita Kempley,rotten,0112602,Washington Post,"With a little effort from viewers, Daniel Stern's dumb comedy, Bushwhacked, might bring on a smile. But don't expect anything so grand as a chuckle.",2000-01-01,246223062,Bushwhacked +James Berardinelli,rotten,0112602,ReelViews,"This is an occasion when it's far better to see the trailer and skip the actual film. Once the opening credits start rolling, it's all downhill.",2000-01-01,246223062,Bushwhacked +Susan Wloszczyna,rotten,0112602,USA Today,A bush-league kiddie comedy in The Mighty Ducks mode.,2000-01-01,246223062,Bushwhacked +Owen Gleiberman,fresh,0111579,Entertainment Weekly,,2011-09-07,13968,Utomlyonnye solntsem +,none,0111579,Time Out,,2006-06-24,13968,Utomlyonnye solntsem +Caryn James,none,0111579,New York Times,,2004-08-30,13968,Utomlyonnye solntsem +,none,0111579,Los Angeles Times,,2001-02-13,13968,Utomlyonnye solntsem +Roger Ebert,rotten,0111579,Chicago Sun-Times,"Burnt by the Sun was not the best of the nominated foreign films (Before the Rain deserved to win), and is not even very original.",2000-01-01,13968,Utomlyonnye solntsem +Leah Garchik,none,0111579,San Francisco Chronicle,,2000-01-01,13968,Utomlyonnye solntsem +,fresh,0111579,USA Today,"Though my foreign Oscar pick would still have been Eat Drink Man Woman, Sun is such a personal close second that I can go with the academy novelty of novelties.",2000-01-01,13968,Utomlyonnye solntsem +Stanley Kauffmann,none,0111579,The New Republic,,2000-01-01,13968,Utomlyonnye solntsem +William F. Powers,none,0111579,Washington Post,,2000-01-01,13968,Utomlyonnye solntsem +James Berardinelli,fresh,0111579,ReelViews,,2000-01-01,13968,Utomlyonnye solntsem +Desson Thomson,none,0111579,Washington Post,,2000-01-01,13968,Utomlyonnye solntsem +,fresh,0111579,Entertainment Weekly,,1994-05-21,13968,Utomlyonnye solntsem +Lisa Schwarzbaum,fresh,0110882,Entertainment Weekly,,2011-09-07,404823600,Before the Rain +Deborah Young,none,0110882,Variety,,2008-10-18,404823600,Before the Rain +,none,0110882,Time Out,,2006-01-26,404823600,Before the Rain +Janet Maslin,none,0110882,New York Times,,2003-05-20,404823600,Before the Rain +Peter Rainer,none,0110882,Los Angeles Times,,2001-02-13,404823600,Before the Rain +Edward Guthmann,none,0110882,San Francisco Chronicle,,2000-01-01,404823600,Before the Rain +Roger Ebert,fresh,0110882,Chicago Sun-Times,,2000-01-01,404823600,Before the Rain +Stanley Kauffmann,none,0110882,The New Republic,,2000-01-01,404823600,Before the Rain +Laura Rozen,none,0110882,Salon.com,,2000-01-01,404823600,Before the Rain +Desson Thomson,none,0110882,Washington Post,,2000-01-01,404823600,Before the Rain +James Berardinelli,fresh,0110882,ReelViews,,2000-01-01,404823600,Before the Rain +Rita Kempley,none,0110882,Washington Post,,2000-01-01,404823600,Before the Rain +Joe Morgenstern,none,0112471,Wall Street Journal,,2011-10-01,12919,Before Sunrise +Owen Gleiberman,fresh,0112471,Entertainment Weekly,,2011-09-07,12919,Before Sunrise +Todd McCarthy,none,0112471,Variety,,2009-03-26,12919,Before Sunrise +,none,0112471,Time Out,,2006-01-26,12919,Before Sunrise +,fresh,0112471,Toronto Star,,2004-07-10,12919,Before Sunrise +Janet Maslin,none,0112471,New York Times,,2003-05-20,12919,Before Sunrise +Mick LaSalle,fresh,0112471,San Francisco Chronicle,,2002-06-18,12919,Before Sunrise +,none,0112471,Globe and Mail,,2002-04-12,12919,Before Sunrise +Peter Rainer,none,0112471,Los Angeles Times,,2001-02-13,12919,Before Sunrise +Hal Hinson,none,0112471,Washington Post,,2000-01-01,12919,Before Sunrise +James Berardinelli,fresh,0112471,ReelViews,,2000-01-01,12919,Before Sunrise +Roger Ebert,fresh,0112471,Chicago Sun-Times,,2000-01-01,12919,Before Sunrise +Desson Thomson,none,0112471,Washington Post,,2000-01-01,12919,Before Sunrise +,fresh,0112471,Entertainment Weekly,,1995-01-27,12919,Before Sunrise +Owen Gleiberman,rotten,0112508,Entertainment Weekly,,2011-09-07,11546,Billy Madison +Brian Lowry,rotten,0112508,Variety,Those unfamiliar with Sandler's antics may...begin to find him annoying sometime between the appearance of the Universal logo and the end of the opening credits.,2008-06-01,11546,Billy Madison +Janet Maslin,fresh,0112508,New York Times,"If you've ever had a yen to relive the third grade, this must be the next best thing.",2003-05-20,11546,Billy Madison +Peter Rainer,rotten,0112508,Los Angeles Times,Director Tamra Davis and screenwriters Sandler and Tim Herlihy scatter the bad jokes like fertilizer. Nothing sprouts.,2001-02-13,11546,Billy Madison +Rita Kempley,rotten,0112508,Washington Post,"As one character tells Billy in the finale: ""Everyone in this room is dumber for having listened to you.""",2000-01-01,11546,Billy Madison +Stephen Garrett,fresh,0796302,Time Out,,2011-11-16,770677842,The Babysitters +Ann Hornaday,rotten,0796302,Washington Post,"It's bad enough that writer-director David Ross indulges in the very perverse kind of Lolita-tinged titillation the film pretends to lament, but then he ties everything up with an oh-well shrug.",2008-05-16,770677842,The Babysitters +Stephen Holden,rotten,0796302,New York Times,"Until it crosses a shadowy line dividing serious comedy from distasteful exploitation, The Babysitters has the makings of an incisive satire of greed and lust in suburbia.",2008-05-09,770677842,The Babysitters +Susan Walker,rotten,0796302,Toronto Star,"The script has a stale air, like something that was doing the rounds for a long time before David Ross found backers to make a film out of it.",2008-05-09,770677842,The Babysitters +Stephen Whitty,rotten,0796302,Newark Star-Ledger,"Although the film is pitched as dark comedy, there's nothing very funny about the sexualization of teenagers.",2008-05-09,770677842,The Babysitters +Kyle Smith,rotten,0796302,New York Post,"I'd call it a depressing soft-core porn flick, but that overstates its titillation factor. Mainly it's just icky.",2008-05-09,770677842,The Babysitters +Joe Neumaier,rotten,0796302,New York Daily News,"It reads like a Cinemax special event, and as good as Leguizamo and Waterston (daughter of Sam) are, the skeevy, fantasy-fulfillment plot that drives David Ross' movie is uncomfortably risky business.",2008-05-09,770677842,The Babysitters +Mark Olsen,fresh,0796302,Los Angeles Times,"The film remains engaging in no small part because of the beguiling and enigmatic performance of [Katherine] Waterston, daughter of Law & Order star Sam Waterston.",2008-05-09,770677842,The Babysitters +Kamal Al-Solaylee,fresh,0796302,Globe and Mail,"Despite the racy content and the alarmist 18A classification, The Babysitters is a remarkably restrained and decent film. It's polished, smoothly edited and shot with simple elegance.",2008-05-09,770677842,The Babysitters +Owen Gleiberman,rotten,0796302,Entertainment Weekly,"The premise is out of '70s porn, and so is the overbroad satire and almost total lack of conviction.",2008-05-07,770677842,The Babysitters +Ed Gonzalez,rotten,0796302,Village Voice,Woefully reductive and painful.,2008-05-07,770677842,The Babysitters +Rex Reed,fresh,0796302,New York Observer,"Like television's Six Feet Under and the recent film Juno, it's the perfect antidote to the dopey, butter-cream-frosted teen flicks of John Hughes -- Pretty in Pink with poison sauce.",2008-05-07,770677842,The Babysitters +Alissa Simon,rotten,0796302,Variety,Ultimately fails to deliver on the audacity of its premise.,2007-09-17,770677842,The Babysitters +Lisa Schwarzbaum,fresh,0112571,Entertainment Weekly,,2011-09-07,13744,Boys on the Side +,none,0112571,Time Out,,2006-06-24,13744,Boys on the Side +Janet Maslin,none,0112571,New York Times,,2003-05-20,13744,Boys on the Side +Peter Rainer,fresh,0112571,Los Angeles Times,The three women are so spirited and funny -- so emotionally keyed into all the hearts and flowers -- that they give the movie their own kind of truth.,2001-02-13,13744,Boys on the Side +Stanley Kauffmann,rotten,0112571,The New Republic,The entire film feels like the result of a market study.,2000-01-01,13744,Boys on the Side +Desson Thomson,rotten,0112571,Washington Post,"Roos and Ross (and I promise never to put those names together again) are so busy jerking the audience from wacky to teary, and back again, they seem blithely unaware of the howling melodrama of it all.",2000-01-01,13744,Boys on the Side +Rita Kempley,fresh,0112571,Washington Post,"An engagingly acted, likable, fried green Thelma & Louise.",2000-01-01,13744,Boys on the Side +James Berardinelli,rotten,0112571,ReelViews,"It's decent mass consumption entertainment, but there's not much in the way of meat.",2000-01-01,13744,Boys on the Side +Roger Ebert,fresh,0112571,Chicago Sun-Times,"It's an original, and what it does best is show how strangers can become friends, and friends can become like family.",2000-01-01,13744,Boys on the Side +Mick LaSalle,fresh,0112571,San Francisco Chronicle,Goldberg and Parker are extraordinary.,2000-01-01,13744,Boys on the Side +,fresh,0112571,Entertainment Weekly,,1995-02-03,13744,Boys on the Side +Lisa Schwarzbaum,fresh,0112757,Entertainment Weekly,,2011-09-07,10558,The Cure +Leonard Klady,none,0112757,Variety,,2009-03-26,10558,The Cure +,none,0112757,Time Out,,2006-06-24,10558,The Cure +Stephen Holden,none,0112757,New York Times,,2004-08-30,10558,The Cure +Kevin Thomas,none,0112757,Los Angeles Times,,2001-02-13,10558,The Cure +Susan Wloszczyna,rotten,0112757,USA Today,Practically screams 'TV movie.',2000-01-01,10558,The Cure +James Berardinelli,rotten,0112757,ReelViews,,2000-01-01,10558,The Cure +Roger Ebert,rotten,0112757,Chicago Sun-Times,,2000-01-01,10558,The Cure +Peter Stack,none,0112757,San Francisco Chronicle,,2000-01-01,10558,The Cure +Megan Rosenfeld,none,0112757,Washington Post,,2000-01-01,10558,The Cure +,fresh,0112757,Entertainment Weekly,,1995-04-21,10558,The Cure +Owen Gleiberman,fresh,0112679,Entertainment Weekly,,2011-09-07,10924,Circle of Friends +Jonathan Rosenbaum,rotten,0112679,Chicago Reader,"Three female friends grow up in a small town in Ireland in the mid-50s and attend college in Dublin in this nostalgic soap opera that's vaguely evocative of Peyton Place, though generally less memorable.",2008-03-11,10924,Circle of Friends +Emanuel Levy,fresh,0112679,Variety,"Old-fashioned and nostalgic, Pat O'Connor's nicely directed tale of friendship between three Irish girls features a strong central performance from Minnie Driver that promises a bright future in Hollywood pictures.",2007-04-27,10924,Circle of Friends +Trevor Johnston,rotten,0112679,Time Out,"The fizzing dialogue gets all the little details right, but the plot's nothing new, and the lingering shots of hibernian greenery aim straight for mid-Atlantic bland-out.",2006-02-09,10924,Circle of Friends +Janet Maslin,fresh,0112679,New York Times,"Beyond eliciting warm, animated performances from his actors (with a cast that also includes Alan Cumming as a hair-raising suitor of Benny's), Mr. O'Connor gives Circle of Friends an enveloping look and sound.",2003-05-20,10924,Circle of Friends +Peter Travers,fresh,0112679,Rolling Stone,Driver's tough core of honesty and wit is bewitching. So's the movie.,2001-05-12,10924,Circle of Friends +Mick LaSalle,rotten,0112679,San Francisco Chronicle,"Young Benny has a nice smile, and she and Jack seem like pleasant people, but in the end (and in the beginning and in the middle) it's hard to get worked up about them.",2000-01-01,10924,Circle of Friends +Hal Hinson,fresh,0112679,Washington Post,"It's not a challenging movie or an original one, but it does have its pleasures -- most notably a radiant, soulful debut performance from Driver.",2000-01-01,10924,Circle of Friends +Desson Thomson,fresh,0112679,Washington Post,"Driver is impulsively sweet, touching and hilarious as she copes with her new, romantic life.",2000-01-01,10924,Circle of Friends +Roger Ebert,fresh,0112679,Chicago Sun-Times,"Heartwarming and poignant, a love story that glows with intelligence and feeling.",2000-01-01,10924,Circle of Friends +James Berardinelli,rotten,0112679,ReelViews,"A lot of films, especially love stories, seek a level of comfort through predictability, but this one goes too far.",2000-01-01,10924,Circle of Friends +Stanley Kauffmann,fresh,0112679,The New Republic,"Like an old-fashioned theater program, it tells you early on who and what each of its characters is -- and so they prove to be, enjoyably.",2000-01-01,10924,Circle of Friends +,fresh,0112679,Entertainment Weekly,,1994-06-01,10924,Circle of Friends +Owen Gleiberman,fresh,0109445,Entertainment Weekly,,2011-09-07,13148,Clerks. +David Ansen,none,0109445,Newsweek,,2008-07-28,13148,Clerks. +James Berardinelli,fresh,0109445,ReelViews,,2008-06-10,13148,Clerks. +Jeff Shannon,none,0109445,Seattle Times,,2007-09-01,13148,Clerks. +,none,0109445,Time Out,,2006-02-09,13148,Clerks. +Janet Maslin,fresh,0109445,New York Times,"A buoyant, bleakly funny comedy chronicling a day's worth of activity at two adjoining stores.",2003-05-20,13148,Clerks. +Rick Groen,fresh,0109445,Globe and Mail,"A hoot one moment, a hiss the next, the film is about as even as a city road after a hard winter. But the script's sheer vigour sees us through.",2002-04-12,13148,Clerks. +Desson Thomson,fresh,0109445,Washington Post,A collegiate and post-collegiate laugh fest.,2000-01-01,13148,Clerks. +Roger Ebert,fresh,0109445,Chicago Sun-Times,Clerks is so utterly authentic that its heroes have never heard of their generation.,2000-01-01,13148,Clerks. +Richard Corliss,fresh,0109445,TIME Magazine,"The film looks no more expensive than it was; some of the acting (by local nonprofessionals) is spectacularly amateurish; the story is a series of anecdotes about hockey, shopping and loving the one you're with. But it's worth loitering in this shop.",2000-01-01,13148,Clerks. +Hal Hinson,rotten,0109445,Washington Post,"Amateurishly acted, clumsily edited and slapped together out of what looks like surveillance camera footage, the thing bumps along not so much on talent as on audacity.",2000-01-01,13148,Clerks. +John Hartl,fresh,0109445,Film.com,"At 24, Smith also knows something about casting. Using a mixture of stage actors and novices, he's found the right ensemble tone to make Clerks seem as spontaneous as it needs to be.",2000-01-01,13148,Clerks. +,fresh,0109445,Entertainment Weekly,,1994-10-19,13148,Clerks. +Emanuel Levy,none,0112883,Variety,,2012-02-23,10330,Don Juan DeMarco +Lisa Schwarzbaum,fresh,0112883,Entertainment Weekly,,2011-09-07,10330,Don Juan DeMarco +,none,0112883,Time Out,,2006-01-26,10330,Don Juan DeMarco +Peter M. Nichols,none,0112883,New York Times,,2003-05-20,10330,Don Juan DeMarco +,none,0112883,Globe and Mail,,2002-04-12,10330,Don Juan DeMarco +Peter Travers,none,0112883,Rolling Stone,,2001-05-12,10330,Don Juan DeMarco +Peter Rainer,none,0112883,Los Angeles Times,,2001-02-13,10330,Don Juan DeMarco +Roger Ebert,rotten,0112883,Chicago Sun-Times,,2000-01-01,10330,Don Juan DeMarco +Desson Thomson,none,0112883,Washington Post,,2000-01-01,10330,Don Juan DeMarco +Hal Hinson,none,0112883,Washington Post,,2000-01-01,10330,Don Juan DeMarco +Mick LaSalle,none,0112883,San Francisco Chronicle,,2000-01-01,10330,Don Juan DeMarco +James Berardinelli,fresh,0112883,ReelViews,,2000-01-01,10330,Don Juan DeMarco +Jack Kroll,rotten,0109635,Newsweek,"In this world of Information Highway sophistication and virtual-reality marvels, the pivotal plot points are all rickety coincidences: an overheard conversation, a fortuitous phone call.",2013-01-18,14350,Disclosure +Owen Gleiberman,fresh,0109635,Entertainment Weekly,A glibly entertaining corporate thriller.,2008-11-05,14350,Disclosure +Jonathan Rosenbaum,rotten,0109635,Chicago Reader,You know in advance what the politics will be: strong women in positions of power are just fine as long as they aren't sexually dominant and obey middle-class rules of propriety.,2008-11-05,14350,Disclosure +Todd McCarthy,fresh,0109635,Variety,"Levinson and Attanasio don't ignore the basics of the tale, but don't indulge them either, subjectively approaching Tom's character to maximize dramatic involvement and treating the most explosive aspects of the story more rationally than emotionally.",2008-06-09,14350,Disclosure +,fresh,0109635,Time Out,"Hokey and classy in equal measure, this is better than it ought to be.",2006-01-26,14350,Disclosure +Janet Maslin,rotten,0109635,New York Times,"This time, it's the author who's the dinosaur.",2003-05-20,14350,Disclosure +Roger Ebert,rotten,0109635,Chicago Sun-Times,"It is an exercise in pure cynicism, with little respect for its subject -- or for its thriller plot, which I defy anyone to explain.",2000-01-01,14350,Disclosure +James Berardinelli,fresh,0109635,ReelViews,"As a thriller, this movie is effective and gripping, if occasionally contrived as a result of overplotting.",2000-01-01,14350,Disclosure +Desson Thomson,rotten,0109635,Washington Post,You should read what happens in the book. It would make a helluva movie.,2000-01-01,14350,Disclosure +Hal Hinson,fresh,0109635,Washington Post,Smashingly entertaining.,2000-01-01,14350,Disclosure +Mick LaSalle,fresh,0109635,San Francisco Chronicle,"As the poor shlub fighting several battles at once -- all of them against shrewder, meaner adversaries -- Douglas is a complex and sympathetic Everyman.",2000-01-01,14350,Disclosure +Variety Staff,fresh,0096316,Variety,"The true story of a great American visionary who was thwarted, if not destroyed, by the established order, Tucker represents the sunniest imaginable telling of an at least partly tragic episode in recent history.",2007-12-12,10430,Tucker: The Man and His Dream +Richard Schickel,fresh,0096316,TIME Magazine,"The result is a film consistent narratively, confident stylistically and abounce with the quaint quality that animated both the hero and his times, something we used to call pep.",2007-12-12,10430,Tucker: The Man and His Dream +Jonathan Rosenbaum,fresh,0096316,Chicago Reader,Francis Coppola's stylish and heartfelt tribute to the innovative automobile designer Preston Thomas Tucker turns out to be one of his most personal and successful movies.,2007-12-12,10430,Tucker: The Man and His Dream +,none,0096316,Time Out,"The cinematic sleight-of-hand parallels the bombast of its hero, but you never get a glimpse of either visionary.",2006-02-09,10430,Tucker: The Man and His Dream +Joe Williams,fresh,0096316,St. Louis Post-Dispatch,,2005-07-07,10430,Tucker: The Man and His Dream +Janet Maslin,fresh,0096316,New York Times,"Mr. Coppola has done things this fancily before, but never with so clear and moving a sense of purpose.",2003-05-20,10430,Tucker: The Man and His Dream +Rita Kempley,rotten,0096316,Washington Post,"Tucker came up with a classic, but poor Coppola has turned a great American tragedy into a gas-guzzling human comedy.",2000-01-01,10430,Tucker: The Man and His Dream +Desson Thomson,fresh,0096316,Washington Post,Nobody does it better: Pristine images glide past you with the just-waxed brilliance of an assembly line of new Tuckers.,2000-01-01,10430,Tucker: The Man and His Dream +Roger Ebert,rotten,0096316,Chicago Sun-Times,"If we're offered a movie named Tucker: The Man and His Dream, we leave feeling cheated if we only get the dream.",2000-01-01,10430,Tucker: The Man and His Dream +Lisa Schwarzbaum,fresh,0109676,Entertainment Weekly,,2011-09-07,14119,Drop Zone +,none,0109676,Time Out,,2006-01-26,14119,Drop Zone +Stephen Holden,none,0109676,New York Times,,2003-05-20,14119,Drop Zone +,none,0109676,Globe and Mail,,2002-04-12,14119,Drop Zone +James Berardinelli,rotten,0109676,ReelViews,,2000-01-01,14119,Drop Zone +Hal Hinson,none,0109676,Washington Post,,2000-01-01,14119,Drop Zone +Desson Thomson,none,0109676,Washington Post,,2000-01-01,14119,Drop Zone +Roger Ebert,rotten,0109676,Chicago Sun-Times,,2000-01-01,14119,Drop Zone +,fresh,0109676,Entertainment Weekly,,1994-12-09,14119,Drop Zone +Lisa Schwarzbaum,rotten,0112854,Entertainment Weekly,,2011-09-07,770669883,Destiny Turns on the Radio +Todd McCarthy,none,0112854,Variety,,2009-03-26,770669883,Destiny Turns on the Radio +,none,0112854,Time Out,,2006-01-26,770669883,Destiny Turns on the Radio +Janet Maslin,none,0112854,New York Times,,2003-05-20,770669883,Destiny Turns on the Radio +,none,0112854,Globe and Mail,,2002-04-12,770669883,Destiny Turns on the Radio +Peter Rainer,none,0112854,Los Angeles Times,,2001-02-13,770669883,Destiny Turns on the Radio +James Berardinelli,rotten,0112854,ReelViews,,2000-01-01,770669883,Destiny Turns on the Radio +Mick LaSalle,none,0112854,San Francisco Chronicle,,2000-01-01,770669883,Destiny Turns on the Radio +Roger Ebert,rotten,0112854,Chicago Sun-Times,,2000-01-01,770669883,Destiny Turns on the Radio +Hal Hinson,none,0112854,Washington Post,,2000-01-01,770669883,Destiny Turns on the Radio +Jonathan Rosenbaum,fresh,0109579,Chicago Reader,"Polanski certainly gets the maximum voltage and precision out of his story and actors, keeping us preternaturally alert to shifting power relationships and delayed revelations.",2010-02-19,14478,Death and the Maiden +Todd McCarthy,fresh,0109579,Variety,"Kingsley shrewdly tantalizes the viewer about his identity, and gets to deliver the text's most riveting monologue at the end. The lesser-known Wilson may be the first among equals, impressing strongly as the equivocating husband.",2008-05-26,14478,Death and the Maiden +Geoff Andrew,fresh,0109579,Time Out,"Polanski wisely never opens out the action from the remote clifftop house. In keeping things claustrophobic, close-up and ambivalent, he heightens the suspense (not to mention the sexual tension).",2006-01-26,14478,Death and the Maiden +Caryn James,fresh,0109579,New York Times,"Mr. Polanski treads lightly on the clumsier lines, and sustains tension by creating an elegant, unobtrusive dance with the camera.",2003-05-20,14478,Death and the Maiden +Mick LaSalle,fresh,0109579,San Francisco Chronicle,Death and the Maiden forces the audience to confront questions about torture and punishment.,2002-06-18,14478,Death and the Maiden +Peter Travers,fresh,0109579,Rolling Stone,Polanski keeps the situation ambiguous to provoke questions of guilt and responsibility.,2001-05-12,14478,Death and the Maiden +James Berardinelli,rotten,0109579,ReelViews,Any degree of tension cultivated by Polanski is frequently undermined by Rafael Yglesias and Ariel Dorfman's sputtering script.,2000-01-01,14478,Death and the Maiden +Roger Ebert,fresh,0109579,Chicago Sun-Times,Richer than its materials might promise.,2000-01-01,14478,Death and the Maiden +Desson Thomson,rotten,0109579,Washington Post,The Polanski touch -- apart from a little suspense here and there -- is limited.,2000-01-01,14478,Death and the Maiden +Hal Hinson,rotten,0109579,Washington Post,The fundamental strength of Weaver's personality doesn't work here. Nor does her particular style of rage and sorrow.,2000-01-01,14478,Death and the Maiden +,fresh,0109579,Entertainment Weekly,,1995-06-01,14478,Death and the Maiden +Owen Gleiberman,rotten,0109642,Entertainment Weekly,,2011-09-07,13329,Dolores Claiborne +Brian Lowry,none,0109642,Variety,,2008-06-16,13329,Dolores Claiborne +,none,0109642,Time Out,,2006-01-26,13329,Dolores Claiborne +Janet Maslin,none,0109642,New York Times,,2003-05-20,13329,Dolores Claiborne +Mick LaSalle,fresh,0109642,San Francisco Chronicle,,2002-06-18,13329,Dolores Claiborne +,none,0109642,Globe and Mail,,2002-04-12,13329,Dolores Claiborne +Peter Travers,none,0109642,Rolling Stone,,2001-05-12,13329,Dolores Claiborne +Kenneth Turan,none,0109642,Los Angeles Times,,2001-02-13,13329,Dolores Claiborne +Roger Ebert,fresh,0109642,Chicago Sun-Times,,2000-01-01,13329,Dolores Claiborne +Hal Hinson,none,0109642,Washington Post,,2000-01-01,13329,Dolores Claiborne +Desson Thomson,none,0109642,Washington Post,,2000-01-01,13329,Dolores Claiborne +James Berardinelli,fresh,0109642,ReelViews,,2000-01-01,13329,Dolores Claiborne +,rotten,0109642,Entertainment Weekly,,1995-03-24,13329,Dolores Claiborne +Owen Gleiberman,fresh,0109686,Entertainment Weekly,"Dumb and Dumber, which features Carrey and Jeff Daniels as nitwits traveling cross-country, is a frayed string of gags posing as a movie. Carrey, though, does literal-minded doofdom with peerless enthusiasm.",2008-04-28,10194,Dumb & Dumber +Variety Staff,fresh,0109686,Variety,The wholeheartedness of this descent into crude and rude humor is so good-natured and precise that it's hard not to partake in the guilty pleasures of the exercise.,2008-04-28,10194,Dumb & Dumber +Jonathan Rosenbaum,rotten,0109686,Chicago Reader,This is a long way from the social comedy of Jerry Lewis. The characters here are ultimately turned into punching bags or punch-line dispensers.,2008-04-28,10194,Dumb & Dumber +,rotten,0109686,Time Out,"Given American cinema's current obsession with innocence and ignorance, at least this never romanticises its protagonists. They are genuinely, irredeemably, 100 per cent no-hopers.",2006-01-26,10194,Dumb & Dumber +,rotten,0109686,Toronto Star,,2003-06-14,10194,Dumb & Dumber +Stephen Holden,fresh,0109686,New York Times,"A movie that fully lives up to its name, right down to an opening credit sequence rife with intentional misspellings and grammatical errors.",2003-05-20,10194,Dumb & Dumber +Desson Thomson,rotten,0109686,Washington Post,"An uneven collection of bodily function jokes, facial gyrations, sexual jibes and pedestrian slapstick.",2000-01-01,10194,Dumb & Dumber +Rita Kempley,rotten,0109686,Washington Post,"An execrable catalogue of doody jokes, Dumb and Dumber is an abominable, abdominal comedy.",2000-01-01,10194,Dumb & Dumber +Peter Stack,fresh,0109686,San Francisco Chronicle,"Inspired, irreverent, spark-driven comedy that takes you places you never thought a movie would go -- even a Jim Carrey movie.",2000-01-01,10194,Dumb & Dumber +Roger Ebert,rotten,0109686,Chicago Sun-Times,"Carrey, I am now convinced, is a true original. In The Mask, he had the screenplay and production to back him up. Here, the filmmaking is more uncertain.",2000-01-01,10194,Dumb & Dumber +James Berardinelli,rotten,0109686,ReelViews,"While I won't claim to have gone through this entire film without laughing, there are some long periods between chuckles.",2000-01-01,10194,Dumb & Dumber +Jonathan Rosenbaum,fresh,0111797,Chicago Reader,Mildly charming.,2009-02-02,17093,Yin shi nan nu +Leonard Klady,fresh,0111797,Variety,Ambitious and entertaining.,2008-07-23,17093,Yin shi nan nu +Geoff Andrew,rotten,0111797,Time Out,"The food metaphor never carries weight, and the characterisations are too shallow to lend the film emotional punch.",2006-01-26,17093,Yin shi nan nu +Janet Maslin,fresh,0111797,New York Times,"Wonderfully seductive, and nicely knowing about all of its characters' appetites.",2003-05-20,17093,Yin shi nan nu +Hal Hinson,fresh,0111797,Washington Post,Eat Drink Man Woman is a delicacy but also something more -- something like food for the heart.,2000-01-01,17093,Yin shi nan nu +James Berardinelli,fresh,0111797,ReelViews,Who said foreign films can't be fun?,2000-01-01,17093,Yin shi nan nu +Desson Thomson,fresh,0111797,Washington Post,"The movie's main appeal -- beyond stomach yearnings caused by its cuisine -- comes from the actors, who infuse their archetypal roles with comedic appeal.",2000-01-01,17093,Yin shi nan nu +Edward Guthmann,fresh,0111797,San Francisco Chronicle,"A spicy, well-written comedy about family, food and independence.",2000-01-01,17093,Yin shi nan nu +,fresh,0111797,Entertainment Weekly,,1994-08-03,17093,Yin shi nan nu +Owen Gleiberman,fresh,0109759,Entertainment Weekly,,2011-09-07,14191,Exotica +Leonard Klady,none,0109759,Variety,,2009-03-26,14191,Exotica +,none,0109759,Time Out,,2006-01-26,14191,Exotica +Joe Williams,fresh,0109759,St. Louis Post-Dispatch,,2005-07-07,14191,Exotica +Caryn James,none,0109759,New York Times,,2003-05-20,14191,Exotica +,none,0109759,Globe and Mail,,2002-04-12,14191,Exotica +Peter Travers,none,0109759,Rolling Stone,,2001-05-12,14191,Exotica +Kevin Thomas,none,0109759,Los Angeles Times,,2001-02-13,14191,Exotica +Hal Hinson,none,0109759,Washington Post,,2000-01-01,14191,Exotica +Stanley Kauffmann,none,0109759,The New Republic,,2000-01-01,14191,Exotica +Roger Ebert,fresh,0109759,Chicago Sun-Times,,2000-01-01,14191,Exotica +James Berardinelli,fresh,0109759,ReelViews,,2000-01-01,14191,Exotica +Desson Thomson,none,0109759,Washington Post,,2000-01-01,14191,Exotica +Mick LaSalle,none,0109759,San Francisco Chronicle,,2000-01-01,14191,Exotica +,fresh,0109759,Entertainment Weekly,,1994-05-16,14191,Exotica +Lisa Schwarzbaum,rotten,0109758,Entertainment Weekly,,2011-09-07,13163,Exit to Eden +Leonard Klady,none,0109758,Variety,,2009-03-26,13163,Exit to Eden +,none,0109758,Time Out,,2006-01-26,13163,Exit to Eden +Janet Maslin,none,0109758,New York Times,,2003-05-20,13163,Exit to Eden +,none,0109758,Globe and Mail,,2002-04-12,13163,Exit to Eden +James Berardinelli,rotten,0109758,ReelViews,,2000-01-01,13163,Exit to Eden +Richard Harrington,none,0109758,Washington Post,,2000-01-01,13163,Exit to Eden +Roger Ebert,rotten,0109758,Chicago Sun-Times,,2000-01-01,13163,Exit to Eden +,rotten,0109758,Entertainment Weekly,,1994-10-14,13163,Exit to Eden +Owen Gleiberman,fresh,0109707,Entertainment Weekly,,2011-09-07,12969,Ed Wood +Todd McCarthy,fresh,0109707,Variety,"Beguiling rather than thrilling, oddly charming instead of transporting, meaning that Disney will have its work cut out for it with what is at heart a cult movie and a film buff's dream.",2008-10-05,12969,Ed Wood +Geoff Andrew,fresh,0109707,Time Out,"It certainly succeeds as a funny, touching tribute to tenacity, energy, ambition and friendship.",2006-01-26,12969,Ed Wood +Janet Maslin,fresh,0109707,New York Times,"Mr. Depp isn't best known as a comic actor, but he gives a witty and captivating performance, bringing wonderful buoyancy to this crazy role.",2003-05-20,12969,Ed Wood +Peter Travers,fresh,0109707,Rolling Stone,"Outrageously disjointed and just as outrageously entertaining, the picture stands as a successful outsider's tribute to a failed kindred spirit.",2001-05-12,12969,Ed Wood +John Hartl,fresh,0109707,Film.com,"In his finest, funniest, most poignant film to date, Tim Burton plays cinematic alchemist, turning drive-in schlock into movie gold.",2000-01-01,12969,Ed Wood +Richard Corliss,rotten,0109707,TIME Magazine,This Ed Wood is dead wood.,2000-01-01,12969,Ed Wood +Lucy Mohl,fresh,0109707,Film.com,[An] oddly affectionate bio-pic.,2000-01-01,12969,Ed Wood +Edward Guthmann,fresh,0109707,San Francisco Chronicle,"An entertaining, oddly affectionate look at the cross-dressing grade-Z moviemaker.",2000-01-01,12969,Ed Wood +Roger Ebert,fresh,0109707,Chicago Sun-Times,"The movie's black and white photography convincingly recaptures the look and feel of 1950s sleaze, including some of the least convincing special effects in movie history.",2000-01-01,12969,Ed Wood +James Berardinelli,rotten,0109707,ReelViews,"Given the finished film, one also has to wonder if Ed Wood was interesting enough to base a two- hour movie on.",2000-01-01,12969,Ed Wood +Hal Hinson,fresh,0109707,Washington Post,"Making a movie about the life of Ed Wood certainly qualifies as an impossible dream, but Burton has pulled it off with wit, imagination and something amazingly close to grace.",2000-01-01,12969,Ed Wood +Desson Thomson,rotten,0109707,Washington Post,"Burton has evoked the surface of Ed Wood's life, but in a story about a man who loves angora and frilly panties, he has barely unbuttoned Wood's uniform.",2000-01-01,12969,Ed Wood +,fresh,0109707,Entertainment Weekly,,1994-09-28,12969,Ed Wood +Lisa Schwarzbaum,rotten,0113117,Entertainment Weekly,,2011-09-07,10131,French Kiss +Joe Morgenstern,none,0113117,Wall Street Journal,,2011-01-22,10131,French Kiss +Brian Lowry,none,0113117,Variety,,2009-03-26,10131,French Kiss +,none,0113117,Time Out,,2006-01-26,10131,French Kiss +Janet Maslin,none,0113117,New York Times,,2003-05-20,10131,French Kiss +Mick LaSalle,fresh,0113117,San Francisco Chronicle,,2002-06-18,10131,French Kiss +,none,0113117,Globe and Mail,,2002-04-12,10131,French Kiss +Peter Rainer,none,0113117,Los Angeles Times,,2001-02-13,10131,French Kiss +Rita Kempley,none,0113117,Washington Post,,2000-01-01,10131,French Kiss +Roger Ebert,rotten,0113117,Chicago Sun-Times,,2000-01-01,10131,French Kiss +Desson Thomson,none,0113117,Washington Post,,2000-01-01,10131,French Kiss +James Berardinelli,rotten,0113117,ReelViews,The delicate air of romance that often makes this sort of film worthwhile is absent.,2000-01-01,10131,French Kiss +,rotten,0113117,Entertainment Weekly,,1995-05-05,10131,French Kiss +Owen Gleiberman,rotten,0113097,Entertainment Weekly,,2011-09-07,11106,Forget Paris +,none,0113097,Variety,,2009-03-26,11106,Forget Paris +,rotten,0113097,Time Out,"Like the relationship it depicts, everything goes terribly slack in the middle.",2006-01-26,11106,Forget Paris +Caryn James,rotten,0113097,New York Times,Mr. Crystal's style as a director is smoothe and bland.,2003-05-20,11106,Forget Paris +Mick LaSalle,rotten,0113097,San Francisco Chronicle,"Since the stories are none too startling, it's hard to see why these otherwise bright people should be so enthusiastic about boring themselves.",2002-06-18,11106,Forget Paris +James Berardinelli,rotten,0113097,ReelViews,"With its uneven tone, Forget Paris doesn't have enough comedy or heartfelt romance to eclipse its faults.",2000-01-01,11106,Forget Paris +Roger Ebert,fresh,0113097,Chicago Sun-Times,It all works.,2000-01-01,11106,Forget Paris +Desson Thomson,rotten,0113097,Washington Post,"This movie has such a naked desire to evoke the human condition, you want to throw a blanket over it.",2000-01-01,11106,Forget Paris +Hal Hinson,rotten,0113097,Washington Post,Shamelessly schmaltzy.,2000-01-01,11106,Forget Paris +Susan Wloszczyna,fresh,0113097,USA Today,"In the marriage-go-round Forget Paris, Debra Winger falls for Billy Crystal because he makes her laugh. Likewise, you will forgive Forget its faults because it will make you chuckle. Hard. And often.",2000-01-01,11106,Forget Paris +,rotten,0113097,Entertainment Weekly,,1995-05-19,11106,Forget Paris +Leonard Klady,none,0113028,Variety,,2009-03-27,12062,Far from Home: The Adventures of Yellow Dog +,none,0113028,Time Out,,2006-01-26,12062,Far from Home: The Adventures of Yellow Dog +Stephen Holden,none,0113028,New York Times,,2003-05-20,12062,Far from Home: The Adventures of Yellow Dog +,none,0113028,Globe and Mail,,2002-04-12,12062,Far from Home: The Adventures of Yellow Dog +,none,0113028,Los Angeles Times,,2001-02-13,12062,Far from Home: The Adventures of Yellow Dog +Peter Stack,none,0113028,San Francisco Chronicle,,2000-01-01,12062,Far from Home: The Adventures of Yellow Dog +William F. Powers,none,0113028,Washington Post,,2000-01-01,12062,Far from Home: The Adventures of Yellow Dog +Todd McCarthy,none,0113198,Variety,,2009-03-27,9564,A Goofy Movie +Derek Adams,rotten,0113198,Time Out,Insipid songs and not much story.,2006-02-09,9564,A Goofy Movie +Stephen Holden,none,0113198,New York Times,,2004-08-30,9564,A Goofy Movie +Peter Rainer,none,0113198,Los Angeles Times,,2001-02-13,9564,A Goofy Movie +Peter Stack,rotten,0113198,San Francisco Chronicle,"An incoherent mess that jumps from one unlikely, brainless, crash-bang situation to another.",2000-01-01,9564,A Goofy Movie +Roger Ebert,fresh,0113198,Chicago Sun-Times,,2000-01-01,9564,A Goofy Movie +Michael O'Sullivan,none,0113303,Washington Post,,2011-09-24,15714,Hideaway +Owen Gleiberman,rotten,0113303,Entertainment Weekly,,2011-09-07,15714,Hideaway +Manohla Dargis,none,0113303,New York Times,,2010-09-13,15714,Hideaway +David Denby,none,0113303,New Yorker,,2010-09-07,15714,Hideaway +Leonard Klady,none,0113303,Variety,,2009-03-26,15714,Hideaway +Janet Maslin,none,0113303,New York Times,,2003-05-20,15714,Hideaway +Mick LaSalle,rotten,0113303,San Francisco Chronicle,,2002-06-18,15714,Hideaway +,none,0113303,Globe and Mail,,2002-04-12,15714,Hideaway +Peter Rainer,none,0113303,Los Angeles Times,,2001-02-13,15714,Hideaway +Roger Ebert,fresh,0113303,Chicago Sun-Times,,2000-01-01,15714,Hideaway +Rita Kempley,none,0113303,Washington Post,,2000-01-01,15714,Hideaway +James Berardinelli,rotten,0113303,ReelViews,,2000-01-01,15714,Hideaway +,rotten,0113303,Entertainment Weekly,,1995-03-03,15714,Hideaway +Lisa Schwarzbaum,rotten,0113089,Entertainment Weekly,,2011-09-07,10846,Fluke +,none,0113089,Variety,,2009-03-26,10846,Fluke +Emanuel Levy,rotten,0113089,Variety,"This strange family fare, about a dog that was once a man, tries unsuccessfully to combine the expected magic of animal adventures with some more serious ideas.",2007-06-25,10846,Fluke +Caryn James,none,0113089,New York Times,,2004-08-30,10846,Fluke +,none,0113089,Globe and Mail,,2002-04-12,10846,Fluke +Kevin Thomas,none,0113089,Los Angeles Times,,2001-02-13,10846,Fluke +Peter Stack,none,0113089,San Francisco Chronicle,,2000-01-01,10846,Fluke +Rita Kempley,none,0113089,Washington Post,,2000-01-01,10846,Fluke +Desson Thomson,none,0113089,Washington Post,,2000-01-01,10846,Fluke +Mike Clark,rotten,0113089,USA Today,"As if banal platitudes about work-vs. -family aren't insufferable enough, there's a kicker gag involving Jackson that'll even have Mister Rogers begging for Pulp Fiction II.",2000-01-01,10846,Fluke +,rotten,0113089,Entertainment Weekly,,1995-06-02,10846,Fluke +Owen Gleiberman,rotten,0109771,Entertainment Weekly,,2011-09-07,13801,Farinelli +Lisa Nesselson,none,0109771,Variety,,2009-04-01,13801,Farinelli +,none,0109771,Time Out,,2006-01-26,13801,Farinelli +Janet Maslin,none,0109771,New York Times,,2004-08-30,13801,Farinelli +Kevin Thomas,fresh,0109771,Los Angeles Times,Artistry abounds in every aspect of the film.,2001-02-13,13801,Farinelli +Stanley Kauffmann,none,0109771,The New Republic,,2000-01-01,13801,Farinelli +Desson Thomson,rotten,0109771,Washington Post,There's something too artificial and highfalutin about the movie.,2000-01-01,13801,Farinelli +James Berardinelli,fresh,0109771,ReelViews,"A fascinating, if occasionally overly melodramatic, recreation of a period when Baroque music ruled Europe.",2000-01-01,13801,Farinelli +Hal Hinson,rotten,0109771,Washington Post,"Because Carlo Broschi, the 18th-century castrato singer known as Farinelli, was himself such an exotic and sensationalistic figure, you'd think that creating a dull movie out of his flamboyant life would be next to impossible. Think again.",2000-01-01,13801,Farinelli +Edward Guthmann,rotten,0109771,San Francisco Chronicle,"Glossy and histrionic, salacious and empty, Farinelli reduces a fascinating story to a series of hissy fits and leering glances.",2000-01-01,13801,Farinelli +Roger Ebert,rotten,0109771,Chicago Sun-Times,"Farinelli, one of the 1995 Oscar nominees in the foreign film category, is onto an interesting story, all right, but it leaves us feeling, like some of Farinelli's lovers, that something is missing.",2000-01-01,13801,Farinelli +Dennis Harvey,none,0113234,Variety,,2009-04-07,17713,Gumby: The Movie +David Kronke,none,0113234,Los Angeles Times,,2001-02-13,17713,Gumby: The Movie +Edward Guthmann,none,0113234,San Francisco Chronicle,,2000-01-01,17713,Gumby: The Movie +Owen Gleiberman,rotten,0109906,Entertainment Weekly,"Ambition is something to respect in an artist, but Charles Burnett's police-corruption drama The Glass Shield is such a maladroit piece of filmmaking that its weighty themes and sclerotic tangle of a plot end up making it a trial to sit through.",2010-07-06,12588,The Glass Shield +Todd McCarthy,fresh,0109906,Variety,A powerful moral drama that tries to deal with the racism at the root of many problems in contempo American society.,2009-03-26,12588,The Glass Shield +,rotten,0109906,Time Out,"The movie feels sketchy, as if Burnett chopped the flesh off his screenplay and left us only the bare bones.",2006-06-24,12588,The Glass Shield +Peter Rainer,fresh,0109906,Los Angeles Times,"It's a rigorous, angry piece of work, but it misses out on the psychological depths that have made Burnett's previous films among the glories of recent American independent moviemaking.",2001-02-13,12588,The Glass Shield +Peter Stack,rotten,0109906,San Francisco Chronicle,"An implausible, wearisome clunker trying to ring true but making only dull thuds.",2000-01-01,12588,The Glass Shield +James Berardinelli,rotten,0109906,ReelViews,"Burnett's screenplay has a tendency to be a little too preachy, especially during the unsatisfying final scene. There's a fine line between getting the message across through subtlety and becoming didactic...",2000-01-01,12588,The Glass Shield +Hal Hinson,rotten,0109906,Washington Post,"It has both ideas and a point of view. But the ideas are far from new, and the point of view is blatantly knee-jerk.",2000-01-01,12588,The Glass Shield +Mike Clark,fresh,0109906,USA Today,"Though no masterpiece, the film is an interesting sidebar for moviegoers who try to keep up; it's like a '50s film noir oddity you catch on 3 a.m. TV, only to find that it's become a more scintillating view than Ben-Hur.",2000-01-01,12588,The Glass Shield +Owen Gleiberman,fresh,0110057,Entertainment Weekly,,2011-09-07,12741,Hoop Dreams +Richard Corliss,fresh,0110057,TIME Magazine,"It's about three hours long. But it moves like Isiah, fast and smooth, and it's over in a heartbreak.",2008-08-03,12741,Hoop Dreams +David Ansen,fresh,0110057,Newsweek,"Hoop Dreams has shown us that the rules of the game are stacked against kids like Gates and Agee. Even better, it shows us how they fight back, with the inside moves of hope.",2008-03-31,12741,Hoop Dreams +Jonathan Rosenbaum,fresh,0110057,Chicago Reader,A heady dose of the American dream and the American nightmare combined -- a numbing investigation of how one point on an exam or one basket or turnover in a game can make all the difference in a family's fortunes.,2007-03-21,12741,Hoop Dreams +Todd McCarthy,fresh,0110057,Variety,"A prodigious achievement that conveys the fabric of modern American life, aspirations and incidentally, sports, in close-up and at length, Hoop Dreams is a documentary slam dunk.",2007-03-21,12741,Hoop Dreams +Derek Adams,fresh,0110057,Time Out,Unforgettable.,2006-06-24,12741,Hoop Dreams +Douglas Pratt,fresh,0110057,Hollywood Reporter,An ironic drama so beautifully sculpted it could be transposed without alteration into a fictional film.,2005-06-08,12741,Hoop Dreams +Caryn James,fresh,0110057,New York Times,The film's great achievement is to reveal the relentless way in which coaches and recruiters refuse to see Arthur and William as anything other than social cliches.,2003-05-20,12741,Hoop Dreams +Roger Ebert,fresh,0110057,Chicago Sun-Times,Along the way it becomes a revealing and heartbreaking story about life in America.,2000-01-01,12741,Hoop Dreams +Hal Hinson,fresh,0110057,Washington Post,The most powerful movie about sports ever made.,2000-01-01,12741,Hoop Dreams +Desson Thomson,fresh,0110057,Washington Post,An extraordinarily affecting documentary.,2000-01-01,12741,Hoop Dreams +James Berardinelli,fresh,0110057,ReelViews,This picture has a legitimate dramatic structure that is equally as compelling as a scripted slice of fiction.,2000-01-01,12741,Hoop Dreams +Mick LaSalle,fresh,0110057,San Francisco Chronicle,A documentary that breathes new life into the subject by showing the everyday reality of that dream.,2000-01-01,12741,Hoop Dreams +,fresh,0110057,Entertainment Weekly,,1994-10-14,12741,Hoop Dreams +Owen Gleiberman,fresh,0110005,Entertainment Weekly,Lynskey and Winslet are extraordinary actresses.,2011-09-07,22544,Heavenly Creatures +David Rooney,fresh,0110005,Variety,"Combines original vision, a drop-dead command of the medium and a successful marriage between a dazzling, kinetic techno-show and a complex, credible portrait of the out-of-control relationship between the crime's two schoolgirl perpetrators.",2008-02-11,22544,Heavenly Creatures +Jonathan Rosenbaum,fresh,0110005,Chicago Reader,"Unlike the campy excess of Jackson's earlier Dead Alive, deliberate overkill ltimately points toward a dearth of ideas rather than a surfeit.",2008-02-11,22544,Heavenly Creatures +Geoff Andrew,fresh,0110005,Time Out,"Acted with conviction, and directed and written with febrile vibrancy.",2006-06-24,22544,Heavenly Creatures +Joe Williams,fresh,0110005,St. Louis Post-Dispatch,,2005-07-07,22544,Heavenly Creatures +Janet Maslin,fresh,0110005,New York Times,"Stylish and eerily compelling before it overplays its campy excesses, Heavenly Creatures does have a feverish intensity to recommend it.",2003-05-20,22544,Heavenly Creatures +Peter Travers,fresh,0110005,Rolling Stone,1994 spellbinder.,2001-05-12,22544,Heavenly Creatures +James Berardinelli,fresh,0110005,ReelViews,"Revealed in unforgettable fashion by a capable director, the events that unfold in this film are not easily forgotten.",2000-01-01,22544,Heavenly Creatures +Desson Thomson,fresh,0110005,Washington Post,"Jackson (who wrote the script with Frances Walsh) evokes the girlsa(TM) fantasy world with scenes featuring plasticene figures, creating an eerie, metaphysical dimension to the movie.",2000-01-01,22544,Heavenly Creatures +Hal Hinson,fresh,0110005,Washington Post,"Powerful, evocative movie.",2000-01-01,22544,Heavenly Creatures +Edward Guthmann,fresh,0110005,San Francisco Chronicle,An unforgettable experience.,2000-01-01,22544,Heavenly Creatures +Roger Ebert,fresh,0110005,Chicago Sun-Times,"What makes Jackson's film enthralling and frightening is the way it shows these two unhappy girls, creating an alternative world so safe and attractive they thought it was worth killing for.",2000-01-01,22544,Heavenly Creatures +Caryn James,rotten,0110066,New York Times,"Turns out to be an inane fish-out-of-water comedy. Along the way it turns into a virtual McDonald's commercial, too. The fact that you can hardly tell the difference is a good clue to the movie's bad-television flavor.",2003-05-20,11433,Houseguest +Kevin Thomas,fresh,0110066,Los Angeles Times,"As good-natured as its big, beefy star, comedian Sinbad.",2001-02-13,11433,Houseguest +Mick LaSalle,fresh,0110066,San Francisco Chronicle,"In its worst moments, Houseguest becomes a struggle in which a very human comedian fights to project his personality over the director's technological muddle. But the good news is that Sinbad wins.",2000-01-01,11433,Houseguest +James Berardinelli,rotten,0110066,ReelViews,"Plot-wise, there's little here beyond a few insubstantial strands.",2000-01-01,11433,Houseguest +Lisa Schwarzbaum,fresh,0110066,Entertainment Weekly,,1995-01-06,11433,Houseguest +Owen Gleiberman,fresh,0110116,Entertainment Weekly,,2011-09-07,12986,Immortal Beloved +Todd McCarthy,none,0110116,Variety,,2008-10-18,12986,Immortal Beloved +Geoff Andrew,none,0110116,Time Out,,2006-02-09,12986,Immortal Beloved +Janet Maslin,none,0110116,New York Times,,2003-05-20,12986,Immortal Beloved +Jonathan Rosenbaum,none,0110116,Chicago Reader,,2002-06-12,12986,Immortal Beloved +,none,0110116,Globe and Mail,,2002-04-12,12986,Immortal Beloved +Mick LaSalle,none,0110116,San Francisco Chronicle,,2000-01-01,12986,Immortal Beloved +Roger Ebert,fresh,0110116,Chicago Sun-Times,,2000-01-01,12986,Immortal Beloved +James Berardinelli,rotten,0110116,ReelViews,,2000-01-01,12986,Immortal Beloved +,fresh,0110116,Entertainment Weekly,,1994-12-16,12986,Immortal Beloved +Leonard Klady,none,0110006,Variety,,2009-03-26,10359,Heavy Weights +Stephen Holden,none,0110006,New York Times,,2003-05-20,10359,Heavy Weights +Peter Rainer,none,0110006,Los Angeles Times,,2001-02-13,10359,Heavy Weights +Hal Hinson,none,0110006,Washington Post,,2000-01-01,10359,Heavy Weights +Derek Adams,none,0269347,Time Out,,2006-06-24,13646,The Hunted +Colin Covert,none,0269347,Minneapolis Star Tribune,,2004-05-19,13646,The Hunted +David Edelstein,none,0269347,Slate,,2003-04-22,13646,The Hunted +Jami Bernard,none,0269347,New York Daily News,,2003-04-22,13646,The Hunted +Rex Reed,rotten,0269347,New York Observer,"Ludicrous, plotless, ho-hum tale of lurid confrontation.",2003-03-20,13646,The Hunted +Richard Roeper,rotten,0269347,Ebert & Roeper,"There's too much talent on-screen and behind the camera for The Hunted to be dull, but it is predictable and disappointing, and we seem to be missing about a half-hour's worth of scenes that would have brought some depths to these characters.",2003-03-18,13646,The Hunted +Michael Atkinson,rotten,0269347,Village Voice,"Essentially a reheating of 1982's First Blood ... but the fallout this time is simultaneously more ruthless, less emotional, and duller.",2003-03-18,13646,The Hunted +Kirk Honeycutt,rotten,0269347,Hollywood Reporter,"By stripping an action thriller this close to the bone, director William Friedkin has removed too much meat.",2003-03-17,13646,The Hunted +James Berardinelli,rotten,0269347,ReelViews,This is schlock -- by-the-numbers action that ignores character development to the point where we find it hard to care whether L.T. catches Hallam or whether they end up running after each other until the world ends.,2003-03-16,13646,The Hunted +Desson Thomson,rotten,0269347,Washington Post,"Has so little going for it, you wonder if you've missed something.",2003-03-14,13646,The Hunted +Rita Kempley,fresh,0269347,Washington Post,"A good ride, briskly paced, well played and vividly photographed.",2003-03-14,13646,The Hunted +Todd McCarthy,rotten,0269347,Variety,An unpleasant action suspenser more dedicated to hurtling relentlessly forward than to vesting audience interest.,2003-03-14,13646,The Hunted +Geoff Pevere,fresh,0269347,Toronto Star,Friedkin is in his element.,2003-03-14,13646,The Hunted +Moira MacDonald,rotten,0269347,Seattle Times,The Hunted serves mostly as a reminder that three Academy Award winners are as capable of making a silly movie as anyone.,2003-03-14,13646,The Hunted +Mick LaSalle,rotten,0269347,San Francisco Chronicle,"Technically, it's well made, but it wasn't worth making.",2003-03-14,13646,The Hunted +Joe Baltake,rotten,0269347,Sacramento Bee,A thoroughly mediocre action movie.,2003-03-14,13646,The Hunted +Steven Rea,fresh,0269347,Philadelphia Inquirer,"The Hunted isn't exactly fraught with psychological depth and nuance, but as a stalker-stalkee suspenser, the pic has some nice things going for it.",2003-03-14,13646,The Hunted +Jay Boyar,rotten,0269347,Orlando Sentinel,The generic title is your first clue that The Hunted is run-of-the-mill.,2003-03-14,13646,The Hunted +John Anderson,fresh,0269347,Newsday,"Things take off immediately and stay in motion for 90 solid, economical minutes.",2003-03-14,13646,The Hunted +Bruce Westbrook,fresh,0269347,Houston Chronicle,"Although it is a rough ride, The Hunted is also an exciting one. But no tracking skills were needed to follow its well-traveled cinematic road.",2003-03-14,13646,The Hunted +Owen Gleiberman,rotten,0110099,Entertainment Weekly,,2011-09-07,10596,I.Q. +Leonard Klady,none,0110099,Variety,,2009-03-26,10596,I.Q. +Geoff Andrew,none,0110099,Time Out,,2006-02-09,10596,I.Q. +Janet Maslin,none,0110099,New York Times,,2003-05-20,10596,I.Q. +,none,0110099,Globe and Mail,,2002-04-12,10596,I.Q. +Hal Hinson,none,0110099,Washington Post,,2000-01-01,10596,I.Q. +James Berardinelli,rotten,0110099,ReelViews,,2000-01-01,10596,I.Q. +Roger Ebert,fresh,0110099,Chicago Sun-Times,,2000-01-01,10596,I.Q. +,rotten,0110099,Entertainment Weekly,,1994-12-25,10596,I.Q. +David Ansen,fresh,0110148,Newsweek,"It's about seduction, and either you succumb to its inky entrapments or you resist. When its mojo was working, I was happy to be had.",2008-10-18,15594,Interview with the Vampire: The Vampire Chronicles +Richard Corliss,rotten,0110148,TIME Magazine,"Why would Tom Cruise be playing Lestat, a gaunt, suave European vampire with a taste for young men? Because a big movie star can do whatever he wants.",2008-08-24,15594,Interview with the Vampire: The Vampire Chronicles +Todd McCarthy,rotten,0110148,Variety,"The leading performances, if acceptable, are not everything they needed to be to fully flesh out these elegant immortals.",2008-08-24,15594,Interview with the Vampire: The Vampire Chronicles +Geoff Andrew,rotten,0110148,Time Out,"The major problem lies with Rice's own script, which is dramatically repetitive and philosophically banal.",2006-02-09,15594,Interview with the Vampire: The Vampire Chronicles +Janet Maslin,fresh,0110148,New York Times,"Interview with the Vampire promises a constantly surprising vampire story, and it keeps that promise.",2003-05-20,15594,Interview with the Vampire: The Vampire Chronicles +Peter Travers,rotten,0110148,Rolling Stone,"For all its visionary brilliance, the movie version of Interview never lets us close enough to see ourselves in Louis. We're dazzled but unmoved.",2001-05-12,15594,Interview with the Vampire: The Vampire Chronicles +James Berardinelli,fresh,0110148,ReelViews,"When Interview with the Vampire works, it's as compelling and engrossing a piece of entertainment as is available on film today. When it falters, the weaknesses seem magnified.",2000-01-01,15594,Interview with the Vampire: The Vampire Chronicles +Roger Ebert,fresh,0110148,Chicago Sun-Times,"My complaint about the film is that not very much happens, in the plot sense.",2000-01-01,15594,Interview with the Vampire: The Vampire Chronicles +Rita Kempley,rotten,0110148,Washington Post,"Passionately anticipated and much ballyhooed, the film, alas, is little more than a foppish, fang de siecle costume drama. Its pulse barely registers.",2000-01-01,15594,Interview with the Vampire: The Vampire Chronicles +Desson Thomson,rotten,0110148,Washington Post,"The movie's energy starts to drain like blood from a vampire's victim. You'll feel that ebb, sooner or later, as you begin to glance regularly at your watch.",2000-01-01,15594,Interview with the Vampire: The Vampire Chronicles +,rotten,0110148,Entertainment Weekly,,1994-11-11,15594,Interview with the Vampire: The Vampire Chronicles +Owen Gleiberman,rotten,0113463,Entertainment Weekly,,2011-09-07,11924,Jefferson in Paris +Todd McCarthy,none,0113463,Variety,,2009-02-04,11924,Jefferson in Paris +Geoff Andrew,none,0113463,Time Out,,2006-06-24,11924,Jefferson in Paris +Janet Maslin,none,0113463,New York Times,,2003-05-20,11924,Jefferson in Paris +,none,0113463,Globe and Mail,,2002-04-12,11924,Jefferson in Paris +Peter Travers,none,0113463,Rolling Stone,,2001-05-12,11924,Jefferson in Paris +Kenneth Turan,none,0113463,Los Angeles Times,,2001-02-13,11924,Jefferson in Paris +Eve Zibart,none,0113463,Washington Post,,2000-01-01,11924,Jefferson in Paris +James Berardinelli,fresh,0113463,ReelViews,,2000-01-01,11924,Jefferson in Paris +Edward Guthmann,none,0113463,San Francisco Chronicle,,2000-01-01,11924,Jefferson in Paris +Roger Ebert,rotten,0113463,Chicago Sun-Times,,2000-01-01,11924,Jefferson in Paris +Stanley Kauffmann,none,0113463,The New Republic,,2000-01-01,11924,Jefferson in Paris +Hal Hinson,none,0113463,Washington Post,,2000-01-01,11924,Jefferson in Paris +,rotten,0113463,Entertainment Weekly,,1995-03-31,11924,Jefferson in Paris +Owen Gleiberman,rotten,0110189,Entertainment Weekly,,2011-09-07,705489774,The Jerky Boys +Joe Leydon,none,0110189,Variety,,2009-03-26,705489774,The Jerky Boys +Patricia S. McCormick,none,0110189,New York Times,,2003-05-21,705489774,The Jerky Boys +Rita Kempley,none,0110189,Washington Post,,2000-01-01,705489774,The Jerky Boys +Peter Stack,none,0110189,San Francisco Chronicle,,2000-01-01,705489774,The Jerky Boys +Owen Gleiberman,rotten,0110216,Entertainment Weekly,,2011-09-07,11377,Junior +Leonard Klady,none,0110216,Variety,,2009-03-26,11377,Junior +David Ansen,none,0110216,Newsweek,,2008-03-31,11377,Junior +Geoff Andrew,none,0110216,Time Out,,2006-02-09,11377,Junior +Janet Maslin,none,0110216,New York Times,,2003-05-20,11377,Junior +Rick Groen,fresh,0110216,Globe and Mail,"A happy, healthy, bouncing baby of a movie.",2002-04-12,11377,Junior +Peter Travers,fresh,0110216,Rolling Stone,The plot is a more fertile ground for comedy than the 'sperm milkshake' that made Schwarzenegger and Danny De Vito brothers in Reitman's Twins.,2001-05-12,11377,Junior +James Berardinelli,rotten,0110216,ReelViews,Junior demands more range from its leading man than he's capable of giving. The predictable result is a big-budget mess more likely to elicit groans than laughter.,2000-01-01,11377,Junior +Rita Kempley,fresh,0110216,Washington Post,"A fleecy romantic caper with a dusting of feminism, the picture is basically a one-joke movie successfully nursed by director Ivan Reitman.",2000-01-01,11377,Junior +Desson Thomson,rotten,0110216,Washington Post,"For the right audience, Junior may deliver. But there's a whole lot of pregnancy to go through first.",2000-01-01,11377,Junior +Roger Ebert,fresh,0110216,Chicago Sun-Times,"It's goofy and ridiculous and preposterous, and yet it makes you feel good, and there is something oddly heartwarming about the sight of this macho guy melting with feelings of protectiveness and maternal concern.",2000-01-01,11377,Junior +Mick LaSalle,fresh,0110216,San Francisco Chronicle,"As a comedy, Junior has its share of laughs -- but no more than its share.",2000-01-01,11377,Junior +,rotten,0110216,Entertainment Weekly,,1994-11-23,11377,Junior +Lisa Schwarzbaum,rotten,0113501,Entertainment Weekly,,2011-09-07,14755,Just Cause +Todd McCarthy,none,0113501,Variety,,2009-03-26,14755,Just Cause +Geoff Andrew,none,0113501,Time Out,,2006-02-09,14755,Just Cause +Janet Maslin,none,0113501,New York Times,,2003-05-20,14755,Just Cause +Mick LaSalle,fresh,0113501,San Francisco Chronicle,In Connery it has a hero who is inescapably appealing.,2002-06-18,14755,Just Cause +Rick Groen,rotten,0113501,Globe and Mail,"Despite its merits, the script fails to escape the silly season that fouls up so many thrillers, that time when the twists merely seem like the narrative equivalents of those violin shrieks on a cheesy score.",2002-04-12,14755,Just Cause +Peter Rainer,rotten,0113501,Los Angeles Times,"It doesn't bog down in the bogs, but it's slow-moving just about everyplace else.",2001-02-13,14755,Just Cause +Roger Ebert,rotten,0113501,Chicago Sun-Times,"There is no psychological depth, no real motivation, no human values to weigh, just characters jerked here and there like puppets in an arbitrary plot.",2000-01-01,14755,Just Cause +Hal Hinson,rotten,0113501,Washington Post,"The longer you stay with it, the more routine and uninspired it seems -- not to mention cowardly.",2000-01-01,14755,Just Cause +Desson Thomson,rotten,0113501,Washington Post,"It's brutal, horribly manipulative, and we've seen this stuff before in better pictures.",2000-01-01,14755,Just Cause +James Berardinelli,fresh,0113501,ReelViews,"Despite its tendency to tread well-traveled roads, Just Cause is filmed with enough energy and craft that, for the majority of its one-hundred minute running time, it's reasonably entertaining.",2000-01-01,14755,Just Cause +,rotten,0113501,Entertainment Weekly,,1994-06-01,14755,Just Cause +John Petrakis,rotten,0113538,Chicago Tribune,"Sitting through it, I found myself shuddering at what Disney may have in store for next summer.",2013-05-22,11940,A Kid in King Arthur's Court +Jeff Shannon,rotten,0113538,Seattle Times,"It is numbingly bland, homogenized and deflated by an utter lack of original wit or charm. Worst of all, it is subtly but conspicuously condescending to its target audience.",2013-05-22,11940,A Kid in King Arthur's Court +Carrie Rickey,rotten,0113538,Philadelphia Inquirer,It's a missed opportunity for introducing the Mortal Kombat generation to medieval combat that was really mortal.,2013-05-22,11940,A Kid in King Arthur's Court +Leonard Klady,rotten,0113538,Variety,The ragtag adaptation by Michael Part and Robert Levy is familiar fodder run through a blender too high and too fast.,2009-03-26,11940,A Kid in King Arthur's Court +Caryn James,rotten,0113538,New York Times,Sluggish and low-energy.,2003-05-20,11940,A Kid in King Arthur's Court +Kevin Thomas,fresh,0113538,Los Angeles Times,"This lively time-travel fantasy is the clear result of imagination and reflection on the part of writers Michael Part and Robert L. Levy and director Michael Gottlieb and their colleagues, who possess a crucial light touch.",2001-02-13,11940,A Kid in King Arthur's Court +Mick LaSalle,rotten,0113538,San Francisco Chronicle,"There's nothing particularly wrong with A Kid in King Arthur's Court and nothing right with it, either.",2000-01-01,11940,A Kid in King Arthur's Court +Hal Hinson,rotten,0113538,Washington Post,"Because of the square, lackluster way that director Michael Gottleib has staged his material, the whole production seems sort of limp and perfunctory.",2000-01-01,11940,A Kid in King Arthur's Court +Owen Gleiberman,fresh,0113552,Entertainment Weekly,,2011-09-07,15057,Kiss of Death +,none,0113552,Time Out,,2011-04-04,15057,Kiss of Death +Richard Schickel,fresh,0113552,TIME Magazine,What's most effective about the new Kiss of Death is Tucci's marvelously slimy prosecutor.,2008-09-19,15057,Kiss of Death +Todd McCarthy,fresh,0113552,Variety,A crackling thriller that feels unusually attuned to its lowlife characters.,2008-09-19,15057,Kiss of Death +Peter Travers,fresh,0113552,Rolling Stone,"Cage and Caruso strike sparks in this riveting piece of pulp fiction, but it's that first Kiss you'll remember.",2005-03-07,15057,Kiss of Death +Janet Maslin,fresh,0113552,New York Times,"It's a sleek, muscular thriller played by a terrific ensemble cast...",2003-05-20,15057,Kiss of Death +Peter Stack,fresh,0113552,San Francisco Chronicle,A riveting crime drama.,2002-06-18,15057,Kiss of Death +Kenneth Turan,fresh,0113552,Los Angeles Times,"Cage, one of the few American actors who gets more interesting from film to film, comes close to kidnaping the picture as Little Junior, a pumped-up but asthmatic thug who, like King Kong, is a gorilla with a wistful air about him.",2001-02-13,15057,Kiss of Death +Roger Ebert,rotten,0113552,Chicago Sun-Times,"It shouldn't be disjointed and uncompelling, but it is.",2000-01-01,15057,Kiss of Death +Joe Brown,fresh,0113552,Washington Post,"Caruso's acting is vivid, but amazingly quiet and internal, and it's fascinating to watch the kaleidoscopically conflicted emotions battle beneath his controlled surface.",2000-01-01,15057,Kiss of Death +Hal Hinson,fresh,0113552,Washington Post,"Cage dominates the camera, stealing scenes by the sheer intensity of his inimitable strangeness.",2000-01-01,15057,Kiss of Death +James Berardinelli,rotten,0113552,ReelViews,"The picture is watchable, but nothing about it will linger, except perhaps the feeling that, with a more polished script, it might have been significantly better.",2000-01-01,15057,Kiss of Death +Mike Clark,rotten,0113552,USA Today,"If you savor movies about sleazy plea bargains and other lawyer hardballing, Death has its moments. Otherwise the latest from director Barbet Schroeder is only a movie of moments.",2000-01-01,15057,Kiss of Death +,fresh,0113552,Entertainment Weekly,,1995-05-19,15057,Kiss of Death +Gene Siskel,fresh,0076759,Chicago Tribune,"What places it a sizable cut about the routine is its spectacular visual effects, the best since Stanley Kubrick's 2001.",2013-01-18,11292,Star Wars +Pauline Kael,rotten,0076759,New Yorker,"There's no breather in the picture, no lyricism; the only attempt at beauty is in the double sunset.",2013-01-18,11292,Star Wars +Penelope Gilliatt,fresh,0076759,New Yorker,"George Lucas, who made American Graffiti, has put together a sci-fi film that draws on any number of associations. Star Wars is both amazing and familiar.",2013-01-14,11292,Star Wars +,fresh,0076759,TIME Magazine,"A grand and glorious film that may well be the smash hit of 1977, and certainly is the best movie of the year so far.",2008-08-13,11292,Star Wars +A.D. Murphy,fresh,0076759,Variety,"A magnificent film. George Lucas set out to make the biggest possible adventure fantasy out of his memories of serials and older action epics, and he succeeded brilliantly.",2008-02-19,11292,Star Wars +Derek Adams,fresh,0076759,Time Out,"Has distinct limitations, but the current return to a cinema of spectacle and wonder is wholly encouraging.",2006-02-09,11292,Star Wars +Charles Champlin,fresh,0076759,Los Angeles Times,"It is, all in all, hard to think of a place or an age group that would not respond to the enthusiastic inventiveness with which Lucas has enshrined his early loves.",2002-07-09,11292,Star Wars +Roger Ebert,fresh,0076759,Chicago Sun-Times,Lucas fills his screen with loving touches.,2000-01-01,11292,Star Wars +Louis B. Parks,fresh,0076759,Houston Chronicle,"Compelling backstory, exciting action and pleasantly archetypal characters.",2000-01-01,11292,Star Wars +Sean Means,fresh,0076759,Film.com,"A dynamic entertainment, efficiently and exuberantly setting up its mythic tale of heroes and villains, rebels and rogues, princesses and monsters, good and evil.",2000-01-01,11292,Star Wars +Mike Clark,fresh,0076759,USA Today,A pop-culture landmark!,2000-01-01,11292,Star Wars +Joe Baltake,fresh,0076759,Sacramento Bee,"A combination of past and future, Western and space odyssey, myth and dream world, Star Wars may be the most enduring piece of escapism ever put on film.",2000-01-01,11292,Star Wars +Michael Wilmington,fresh,0076759,Chicago Tribune,A grandiose and violent epic with a simple and whimsical heart.,2000-01-01,11292,Star Wars +James Berardinelli,fresh,0076759,ReelViews,"Like some indefatigable King of the Hill, it stands alone and triumphant, regardless of the many imitators that assail its position.",2000-01-01,11292,Star Wars +Vincent Canby,fresh,0076759,New York Times,It's fun and funny.,2000-01-01,11292,Star Wars +Susan Stark,fresh,0076759,Detroit News,"Twenty years later, George Lucas' loved saga of the war between good and evil in a distant galaxy returns in digitally enhanced and augmented form.",2000-01-01,11292,Star Wars +Stanley Kauffmann,rotten,0076759,The New Republic,His work here seems less inventive than in THX 1138.,2000-01-01,11292,Star Wars +Peter Stack,fresh,0076759,San Francisco Chronicle,Darth Vader and his James Earl Jones voice is a bad egg no matter how much we know about his screwy upbringing.,2000-01-01,11292,Star Wars +John Hartl,fresh,0076759,Film.com,"Backgrounds in some sequences are now more populated than they were, and it's fun to see all the creatures that make up the ""wretched hive of scum and villainy"" that Alec Guinness' Obi-Wan Kenobi describes.",2000-01-01,11292,Star Wars +Jonathan Rosenbaum,rotten,0076759,Chicago Reader,"None of these characters has any depth, and they're all treated like the fanciful props and settings!",2000-01-01,11292,Star Wars +Joe Morgenstern,none,0113670,Wall Street Journal,,2011-05-28,18116,A Little Princess +Jonathan Rosenbaum,fresh,0113670,Chicago Reader,The film uses studio resources to create an entrancing world both in New York and in the heroine's fantasies about India.,2011-05-27,18116,A Little Princess +Todd McCarthy,fresh,0113670,Variety,"An astonishing work of studio artifice, A Little Princess is that rarest of creations, a children's film that plays equally well to kids and adults.",2008-06-10,18116,A Little Princess +Wally Hammond,fresh,0113670,Time Out,An exemplary version of Frances Hodgson Burnett's novel.,2006-02-09,18116,A Little Princess +Janet Maslin,fresh,0113670,New York Times,"A bright, beautiful and enchantingly childlike vision.",2004-08-30,18116,A Little Princess +Roger Ebert,fresh,0113670,Chicago Sun-Times,Cuaron's version of magic realism consists of seeing incredibly fanciful sets and situations in precise detail.,2000-01-01,18116,A Little Princess +Peter Stack,rotten,0113670,San Francisco Chronicle,The 1939 Shirley Temple version of this book came closer to capturing Sara's vitality.,2000-01-01,18116,A Little Princess +James Berardinelli,fresh,0113670,ReelViews,"It's not only suitable for consumption by those over age 10, it's actually enjoyable.",2000-01-01,18116,A Little Princess +Rita Kempley,fresh,0113670,Washington Post,"A Little Princess exquisitely re-creates the ephemeral world of childhood, an enchanted kingdom where everything, even make-believe, seems possible.",2000-01-01,18116,A Little Princess +Lisa Schwarzbaum,fresh,0113670,Entertainment Weekly,There are moments in A Little Princess when you may just want to clap from pleasure.,1995-08-04,18116,A Little Princess +Derek Elley,none,0110296,Variety,,2008-07-22,623771385,Ladybird Ladybird +Geoff Andrew,none,0110296,Time Out,,2006-06-24,623771385,Ladybird Ladybird +Janet Maslin,none,0110296,New York Times,,2003-05-20,623771385,Ladybird Ladybird +Roger Ebert,fresh,0110296,Chicago Sun-Times,,2000-01-01,623771385,Ladybird Ladybird +James Berardinelli,fresh,0110296,ReelViews,,2000-01-01,623771385,Ladybird Ladybird +Lisa Nesselson,none,0109731,Variety,,2009-03-26,21125,L'enfer +,none,0109731,Time Out,,2006-02-11,21125,L'enfer +Caryn James,none,0109731,New York Times,,2003-05-20,21125,L'enfer +Jonathan Rosenbaum,none,0109731,Chicago Reader,,2002-04-15,21125,L'enfer +Roger Ebert,fresh,0109731,Chicago Sun-Times,,2000-01-01,21125,L'enfer +Hal Hinson,none,0109731,Washington Post,,2000-01-01,21125,L'enfer +Owen Gleiberman,fresh,0103994,Entertainment Weekly,,2011-09-07,12906,Como agua para chocolate +,none,0103994,Variety,,2008-07-25,12906,Como agua para chocolate +Geoff Andrew,none,0103994,Time Out,,2006-02-09,12906,Como agua para chocolate +Janet Maslin,none,0103994,New York Times,,2003-05-20,12906,Como agua para chocolate +Roger Ebert,fresh,0103994,Chicago Sun-Times,,2000-01-01,12906,Como agua para chocolate +Desson Thomson,none,0103994,Washington Post,,2000-01-01,12906,Como agua para chocolate +Rita Kempley,none,0103994,Washington Post,,2000-01-01,12906,Como agua para chocolate +James Berardinelli,fresh,0103994,ReelViews,,2000-01-01,12906,Como agua para chocolate +,fresh,0103994,Entertainment Weekly,,1992-04-16,12906,Como agua para chocolate +Lisa Schwarzbaum,rotten,0110443,Entertainment Weekly,,2011-09-07,10669,Major Payne +Leonard Klady,none,0110443,Variety,,2009-03-26,10669,Major Payne +Caryn James,none,0110443,New York Times,,2003-05-20,10669,Major Payne +Mick LaSalle,rotten,0110443,San Francisco Chronicle,,2002-06-18,10669,Major Payne +,none,0110443,Globe and Mail,,2002-04-12,10669,Major Payne +Kevin Thomas,none,0110443,Los Angeles Times,,2001-02-13,10669,Major Payne +Roger Ebert,fresh,0110443,Chicago Sun-Times,,2000-01-01,10669,Major Payne +Rita Kempley,none,0110443,Washington Post,,2000-01-01,10669,Major Payne +Owen Gleiberman,rotten,0110365,Entertainment Weekly,,2011-09-07,16396,Little Odessa +David Rooney,none,0110365,Variety,,2009-03-27,16396,Little Odessa +Geoff Andrew,none,0110365,Time Out,,2006-06-24,16396,Little Odessa +Caryn James,none,0110365,New York Times,,2003-05-20,16396,Little Odessa +,none,0110365,Globe and Mail,,2002-04-12,16396,Little Odessa +Peter Rainer,none,0110365,Los Angeles Times,,2001-02-13,16396,Little Odessa +James Berardinelli,fresh,0110365,ReelViews,,2000-01-01,16396,Little Odessa +Rita Kempley,none,0110365,Washington Post,,2000-01-01,16396,Little Odessa +Mick LaSalle,none,0110365,San Francisco Chronicle,,2000-01-01,16396,Little Odessa +Desson Thomson,none,0110365,Washington Post,,2000-01-01,16396,Little Odessa +Roger Ebert,rotten,0110365,Chicago Sun-Times,,2000-01-01,16396,Little Odessa +,rotten,0110365,Entertainment Weekly,,1995-05-19,16396,Little Odessa +Todd McCarthy,none,0107566,Variety,,2009-03-26,13276,Mi vida loca +Derek Adams,none,0107566,Time Out,,2006-02-09,13276,Mi vida loca +Caryn James,none,0107566,New York Times,,2004-08-30,13276,Mi vida loca +Peter Travers,none,0107566,Rolling Stone,,2001-05-12,13276,Mi vida loca +Hal Hinson,none,0107566,Washington Post,,2000-01-01,13276,Mi vida loca +Edward Guthmann,none,0107566,San Francisco Chronicle,,2000-01-01,13276,Mi vida loca +James Berardinelli,fresh,0107566,ReelViews,,2000-01-01,13276,Mi vida loca +Roger Ebert,fresh,0107566,Chicago Sun-Times,,2000-01-01,13276,Mi vida loca +,rotten,0107566,Entertainment Weekly,,1993-07-15,13276,Mi vida loca +Owen Gleiberman,rotten,0110391,Entertainment Weekly,,2011-09-07,10795,Love Affair +Todd McCarthy,none,0110391,Variety,,2009-03-26,10795,Love Affair +Geoff Andrew,none,0110391,Time Out,,2006-02-09,10795,Love Affair +Janet Maslin,none,0110391,New York Times,,2003-05-20,10795,Love Affair +,none,0110391,Globe and Mail,,2002-04-12,10795,Love Affair +Edward Guthmann,none,0110391,San Francisco Chronicle,,2000-01-01,10795,Love Affair +James Berardinelli,rotten,0110391,ReelViews,,2000-01-01,10795,Love Affair +Roger Ebert,fresh,0110391,Chicago Sun-Times,,2000-01-01,10795,Love Affair +Hal Hinson,none,0110391,Washington Post,,2000-01-01,10795,Love Affair +Desson Thomson,none,0110391,Washington Post,,2000-01-01,10795,Love Affair +,rotten,0110391,Entertainment Weekly,,1994-10-21,10795,Love Affair +Lisa Schwarzbaum,fresh,0113691,Entertainment Weekly,,2011-09-07,14491,Losing Isaiah +Todd McCarthy,rotten,0113691,Variety,"The material is emotionally wrenching, but the actors play sociopolitical totems more than flesh-and-blood characters.",2008-09-03,14491,Losing Isaiah +Jonathan Rosenbaum,rotten,0113691,Chicago Reader,"This is an absorbing and involving picture, but the terms propounded here limit the story, which depends almost entirely on emotions rather than on thought.",2008-09-03,14491,Losing Isaiah +Janet Maslin,fresh,0113691,New York Times,"This drama about interracial adoption is serious and affecting, thanks in large part to the presence of its two magnetic stars.",2003-05-20,14491,Losing Isaiah +Edward Guthmann,fresh,0113691,San Francisco Chronicle,Losing Isaiah transcends the custody issue and finds drama in the black-white polarities that neither character can escape.,2002-06-18,14491,Losing Isaiah +,none,0113691,Globe and Mail,,2002-04-12,14491,Losing Isaiah +Desson Thomson,rotten,0113691,Washington Post,"Not only does this lowest-common denominator conclusion backfire, it insults anyone who invested their time getting involved in the whole thing.",2000-01-01,14491,Losing Isaiah +Rita Kempley,rotten,0113691,Washington Post,"While the subject may be controversial enough to merit an Oprah free-for-all, this evenhanded melodrama is neutral to a fault.",2000-01-01,14491,Losing Isaiah +Roger Ebert,rotten,0113691,Chicago Sun-Times,"The movie, directed by Stephen Gyllenhaal and written by Naomi Foner, deals with all of those issues, but in a finally unsatisfactory way.",2000-01-01,14491,Losing Isaiah +James Berardinelli,fresh,0113691,ReelViews,Thought-provoking and dramatically-solid.,2000-01-01,14491,Losing Isaiah +,fresh,0113691,Entertainment Weekly,,1995-03-17,14491,Losing Isaiah +Lisa Schwarzbaum,fresh,0110428,Entertainment Weekly,,2011-09-07,11245,The Madness of King George +,none,0110428,Variety,,2009-03-26,11245,The Madness of King George +Emanuel Levy,fresh,0110428,Variety,"Hytner's version of Bennett's comic-tragic drama of the tormented king who almost lost his mind confirms that power games, family scandals, and personal intrigues have always been integral to the British Crown, an institution both revered and reviled.",2006-08-22,11245,The Madness of King George +Derek Adams,none,0110428,Time Out,,2006-06-24,11245,The Madness of King George +Janet Maslin,none,0110428,New York Times,,2003-05-20,11245,The Madness of King George +Mick LaSalle,fresh,0110428,San Francisco Chronicle,"In its own shambling, elliptical way it's an entertaining, memorable movie whose 2 1/2 hours go by without strain.",2002-06-18,11245,The Madness of King George +Rick Groen,fresh,0110428,Globe and Mail,Hawthorne is by turn outrageous and pathetic and imperious and poignant and very funny.,2002-04-12,11245,The Madness of King George +Peter Travers,fresh,0110428,Rolling Stone,The thrill of Hawthorne's astounding performance is not something you want to miss.,2001-05-12,11245,The Madness of King George +Stanley Kauffmann,fresh,0110428,The New Republic,"For those who, like myself, were disappointed in the play, the film contains pleasant surprises, all of them resulting from differences between the two arts.",2000-01-01,11245,The Madness of King George +Hal Hinson,fresh,0110428,Washington Post,"Somehow ... this frail figure [George] is an immensely likable -- and, at times, deeply moving -- character.",2000-01-01,11245,The Madness of King George +Roger Ebert,fresh,0110428,Chicago Sun-Times,"The battle of wills between these two strong men [George and Willis] is the centerpiece of the movie, and hugely entertaining.",2000-01-01,11245,The Madness of King George +James Berardinelli,fresh,0110428,ReelViews,"Without exception, the acting is top-notch.",2000-01-01,11245,The Madness of King George +Desson Thomson,fresh,0110428,Washington Post,[Hawthorne] turns what would surely be an unsympathetic role in lesser hands into something poetic -- and hysterical.,2000-01-01,11245,The Madness of King George +,fresh,0110428,Entertainment Weekly,,1994-12-28,11245,The Madness of King George +,fresh,0021884,TIME Magazine,"[Whale] did it in the Grand Guignol manner, with as many queer sounds, dark corners, false faces and cellar stairs as could possibly be inserted.",2008-10-07,17531,Frankenstein +Alfred Rushford Greason,fresh,0021884,Variety,"Maximum of stimulating shock is there, but the thing is handled with subtle change of pace and shift of tempo that keeps attention absorbed to a high voltage climax.",2007-09-24,17531,Frankenstein +Don Druker,fresh,0021884,Chicago Reader,One of the most deservedly famous and chilling horror films of all time.,2007-06-05,17531,Frankenstein +,fresh,0021884,Time Out,"The film is unique in Whale's work in that the horror is played absolutely straight, and it has a weird fairytale beauty not matched until Cocteau made La Belle et la Bete.",2006-01-26,17531,Frankenstein +Mordaunt Hall,fresh,0021884,New York Times,"A stirring grand-guignol type of picture, one that aroused so much excitement at the Mayfair yesterday that many in the audience laughed to cover their true feelings.",2003-05-20,17531,Frankenstein +James Berardinelli,fresh,0021884,ReelViews,"As much as the later movies diluted the character of the Frankenstein creature, nothing could blunt the impact made by Karloff in the role of the most memorable movie monster of all time.",2000-01-01,17531,Frankenstein +Owen Gleiberman,rotten,0331933,Entertainment Weekly,,2011-09-07,136262883,Man of the House +Andrea Gronvall,rotten,0331933,Chicago Reader,The image that best sums up this dismal comedy is Cedric the Entertainer cringing over a cell phone that's been hidden in a cow's rectum.,2007-03-07,136262883,Man of the House +Anna Smith,rotten,0331933,Time Out,"This makes an even worse job of its premise than you might expect, leaving it to the usual sidekick, Cedric the Entertainer, to provide the occasional laugh as a convict-turned-holy man.",2006-02-09,136262883,Man of the House +Chuck Wilson,rotten,0331933,L.A. Weekly,Dull comedy.,2005-03-03,136262883,Man of the House +Chris Tamarri,rotten,0331933,Village Voice,"None of the girls are demonstrably embarrassed to be in the film, which speaks to either their work ethic or their poor taste.",2005-03-03,136262883,Man of the House +Lisa Schwarzbaum,rotten,0331933,Entertainment Weekly,I venture that this is not what we really want from Tommy Lee Jones.,2005-03-03,136262883,Man of the House +Stephen Hunter,rotten,0331933,Washington Post,"It's got a lot of small movies bouncing around inside it, but there's no big movie on the outside.",2005-02-28,136262883,Man of the House +Mick LaSalle,rotten,0331933,San Francisco Chronicle,"Though there isn't much to recommend Man of the House, there's really no reason to warn people off of it, either.",2005-02-28,136262883,Man of the House +Debra Birnbaum,rotten,0331933,New York Post,"Mindless, vapid fare.",2005-02-28,136262883,Man of the House +Jack Mathews,rotten,0331933,New York Daily News,Straight-to- video-quality mess.,2005-02-28,136262883,Man of the House +Kevin Crust,fresh,0331933,Los Angeles Times,Herek keeps things moving and throws in some lively action sequences but keeps the emphasis on the amusing and affectionate relationships between Jones and the girls.,2005-02-28,136262883,Man of the House +Bruce Westbrook,fresh,0331933,Houston Chronicle,"Though predictability runs all through this House, it works up a modest charm thanks to the emergence of likable, individualized characters.",2005-02-28,136262883,Man of the House +Sheri Linden,rotten,0331933,Hollywood Reporter,A high concept that goes nowhere.,2005-02-28,136262883,Man of the House +James Berardinelli,rotten,0331933,ReelViews,90 minutes with a few routine chase sequences but without a single laugh represents a poor way to spend a looooooong evening.,2005-02-27,136262883,Man of the House +Philip Wuntch,rotten,0331933,Dallas Morning News,The movie is awesome only in its predictability.,2005-02-26,136262883,Man of the House +Dana Stevens,rotten,0331933,New York Times,Sharp instructs the girls on the evils of term-paper plagiarism and the importance of dressing to cover their navels.,2005-02-26,136262883,Man of the House +Robert K. Elder,fresh,0331933,Chicago Tribune,"It's not a perfect film, by far, but Jones' playful banter with his cheerleading charges remains light and just this side of predictable.",2005-02-25,136262883,Man of the House +Joe Leydon,fresh,0331933,Variety,Sitcom-style trifle proves more than passably amusing.,2005-02-25,136262883,Man of the House +Roger Moore,rotten,0331933,Orlando Sentinel,"Despite having a comeptent director, it's a slap-dash thing, with Cedric not really fitting into the main story.",2005-02-25,136262883,Man of the House +Variety Staff,rotten,0110538,Variety,"Director/co-scripter Nora Ephron pitches the humor at a cacophonous level and displays the comedic equivalent of two left feet in evolving an absurdist, slapstick yarn.",2008-06-01,11200,Mixed Nuts +Derek Adams,rotten,0110538,Time Out,"Ephron's timing and sensitivity have deserted her, leaving behind only the sentimentality.",2006-02-09,11200,Mixed Nuts +Janet Maslin,rotten,0110538,New York Times,A title song incorporating the names of nut varieties is only one of the film's desperate ploys.,2003-05-20,11200,Mixed Nuts +,rotten,0110538,Globe and Mail,,2002-04-12,11200,Mixed Nuts +James Berardinelli,rotten,0110538,ReelViews,Gag.,2000-01-01,11200,Mixed Nuts +Hal Hinson,rotten,0110538,Washington Post,Is there anything more excruciating than failed farce?,2000-01-01,11200,Mixed Nuts +Roger Ebert,rotten,0110538,Chicago Sun-Times,"Every character shines with such dazzling intensity and such inexhaustible comic invention that the movie becomes tiresome, like too many clowns.",2000-01-01,11200,Mixed Nuts +Kevin Thomas,rotten,0110516,Los Angeles Times,Only the least demanding audiences can be expected to buy into Milk Money.,2013-05-22,11257,Milk Money +Jeff Shannon,fresh,0110516,Seattle Times,"This pleasant, unassuming little comedy manages to overcome its many potential shortcomings.",2013-05-22,11257,Milk Money +Jay Boyar,rotten,0110516,Orlando Sentinel,"It's pointless to blame the cast members, who at least are in there trying.",2013-05-22,11257,Milk Money +Clifford Terry,rotten,0110516,Chicago Tribune,"An embarrassing, preposterous mess.",2013-05-22,11257,Milk Money +Steven Rea,rotten,0110516,Philadelphia Inquirer,[A] jaded attempt at warmhearted comedy.,2013-05-22,11257,Milk Money +Jonathan Rosenbaum,rotten,0110516,Chicago Reader,"John Mattson's script is every bit as silly as it sounds; it dawdles, stumbles, stalls, embarrasses both itself and the audience, and is routinely formulaic to boot.",2009-08-03,11257,Milk Money +Leonard Klady,rotten,0110516,Variety,"With a tip of the hat to the performers, this is a misguided comedy with Hall of Shame pedigree. Its commercial prospects are quick, down and dirty.",2009-03-26,11257,Milk Money +,rotten,0110516,Time Out,"This feelgood romantic comedy is short on laughs, sexual chemistry, and the thriller subplot won't produce any white knuckles.",2006-06-24,11257,Milk Money +Janet Maslin,rotten,0110516,New York Times,"Richard Benjamin, laboring under the idea that this is an enchanting premise, directs such episodes as if he were Norman Rockwell in a trenchcoat.",2003-05-20,11257,Milk Money +James Berardinelli,rotten,0110516,ReelViews,Some movies just don't know when enough is enough.,2000-01-01,11257,Milk Money +Megan Rosenfeld,rotten,0110516,Washington Post,"A preposterous movie about a boy, a babe and a car, all of them functioning minimally in what is essentially a showcase for Melanie Griffith's body.",2000-01-01,11257,Milk Money +Kevin McManus,rotten,0110516,Washington Post,Question: Will Hollywood ever retire the Hooker With a Heart of Gold?,2000-01-01,11257,Milk Money +Roger Ebert,rotten,0110516,Chicago Sun-Times,"I don't want to spoil it for you, but let's just say the gangster doesn't get what he wants, and true love saves the day.",2000-01-01,11257,Milk Money +Lisa Schwarzbaum,rotten,0110516,Entertainment Weekly,Smuttiness is made coy; innocence is made dirty; boyhood sexuality is made into a cartoon.,1994-08-30,11257,Milk Money +Shirley O'Hara,fresh,0039628,The New Republic,"Miracle on 34th Street isn't great art or high comedy, but it is good entertainment.",2013-01-23,18076,Miracle on 34th Street +Variety Staff,fresh,0039628,Variety,So you don't believe in Santa Claus? If you want to stay a non-believer don't see Miracle.,2009-03-26,18076,Miracle on 34th Street +Dave Kehr,fresh,0039628,Chicago Reader,It's a highly professional piece of Hollywood sentimentalism.,2007-11-27,18076,Miracle on 34th Street +Bosley Crowther,fresh,0039628,New York Times,"[Let us] heartily proclaim that it is the freshest little picture in a long time, and maybe even the best comedy of this year.",2003-05-20,18076,Miracle on 34th Street +Owen Gleiberman,fresh,0113808,Entertainment Weekly,,2011-09-07,12330,Miami Rhapsody +Todd McCarthy,none,0113808,Variety,,2009-03-26,12330,Miami Rhapsody +Derek Adams,none,0113808,Time Out,,2006-02-09,12330,Miami Rhapsody +Stephen Holden,none,0113808,New York Times,,2003-05-20,12330,Miami Rhapsody +Peter Travers,none,0113808,Rolling Stone,,2001-05-12,12330,Miami Rhapsody +Peter Rainer,none,0113808,Los Angeles Times,,2001-02-13,12330,Miami Rhapsody +Stanley Kauffmann,none,0113808,The New Republic,,2000-01-01,12330,Miami Rhapsody +Hal Hinson,none,0113808,Washington Post,,2000-01-01,12330,Miami Rhapsody +Desson Thomson,none,0113808,Washington Post,,2000-01-01,12330,Miami Rhapsody +James Berardinelli,rotten,0113808,ReelViews,,2000-01-01,12330,Miami Rhapsody +Roger Ebert,fresh,0113808,Chicago Sun-Times,,2000-01-01,12330,Miami Rhapsody +Mick LaSalle,none,0113808,San Francisco Chronicle,,2000-01-01,12330,Miami Rhapsody +,fresh,0113808,Entertainment Weekly,,1995-01-27,12330,Miami Rhapsody +Lisa Schwarzbaum,fresh,0113896,Entertainment Weekly,,2011-09-07,13401,My Family +Todd McCarthy,none,0113896,Variety,,2008-10-09,13401,My Family +Derek Adams,none,0113896,Time Out,,2006-01-26,13401,My Family +Caryn James,none,0113896,New York Times,,2003-05-20,13401,My Family +,none,0113896,Globe and Mail,,2002-04-12,13401,My Family +Kenneth Turan,none,0113896,Los Angeles Times,,2001-02-13,13401,My Family +Peter Stack,none,0113896,San Francisco Chronicle,,2000-01-01,13401,My Family +James Berardinelli,fresh,0113896,ReelViews,,2000-01-01,13401,My Family +Roger Ebert,fresh,0113896,Chicago Sun-Times,,2000-01-01,13401,My Family +Rita Kempley,none,0113896,Washington Post,,2000-01-01,13401,My Family +,fresh,0113896,Entertainment Weekly,,1995-05-03,13401,My Family +Owen Gleiberman,rotten,0113870,Entertainment Weekly,,2011-09-07,14578,Murder in the First +Todd McCarthy,none,0113870,Variety,,2009-03-26,14578,Murder in the First +Derek Adams,none,0113870,Time Out,,2006-06-24,14578,Murder in the First +Janet Maslin,none,0113870,New York Times,,2003-05-20,14578,Murder in the First +Rick Groen,rotten,0113870,Globe and Mail,"The figures are right, the investment looks good, but the emotional pay-off is minimal.",2002-04-12,14578,Murder in the First +Peter Travers,fresh,0113870,Rolling Stone,More than likely you will forgive the compromises -- the story of Henri Young needed to be told.,2001-05-12,14578,Murder in the First +Kenneth Turan,rotten,0113870,Los Angeles Times,Woefully over-manipulative and over-the-top.,2001-02-13,14578,Murder in the First +Stanley Kauffmann,fresh,0113870,The New Republic,"It's a struggle for Bacon -- and I'm not doubting the facts of the matter -- because the part is so clearly designed to knock us out; but Bacon is honest, in touch with Young's sources or lack of them.",2000-01-01,14578,Murder in the First +Desson Thomson,fresh,0113870,Washington Post,A reasonably exhilarating hybrid of prison movie and courtroom drama.,2000-01-01,14578,Murder in the First +James Berardinelli,fresh,0113870,ReelViews,"Regardless of how this version raises the hackles of Alcatraz aficionados, Marc Rocco's movie is a solid and affecting example of film making.",2000-01-01,14578,Murder in the First +Rita Kempley,rotten,0113870,Washington Post,"Though based on a true story, this grueling drama is peopled by characters that have been fictionalized into big house cliches.",2000-01-01,14578,Murder in the First +Roger Ebert,rotten,0113870,Chicago Sun-Times,"Slater, who in certain shots looks curiously like Kevin Costner, is an actor with talent, but he is too young for this role, and not confident enough to dial down a little.",2000-01-01,14578,Murder in the First +Mick LaSalle,rotten,0113870,San Francisco Chronicle,An example of what happens when a picture has everything going for it except good writing and good direction.,2000-01-01,14578,Murder in the First +,rotten,0113870,Entertainment Weekly,,1994-06-01,14578,Murder in the First +,none,0091642,Variety,,2008-10-17,12500,Nobody's Fool +,none,0091642,Time Out,,2006-06-24,12500,Nobody's Fool +Vincent Canby,none,0091642,New York Times,,2003-05-20,12500,Nobody's Fool +Paul Attanasio,none,0091642,Washington Post,,2000-01-01,12500,Nobody's Fool +Roger Ebert,rotten,0091642,Chicago Sun-Times,,2000-01-01,12500,Nobody's Fool +Owen Gleiberman,fresh,0110638,Entertainment Weekly,,2011-09-07,10671,Nell +Todd McCarthy,none,0110638,Variety,,2008-11-10,10671,Nell +,none,0110638,Time Out,,2006-01-26,10671,Nell +Janet Maslin,none,0110638,New York Times,,2003-05-20,10671,Nell +,none,0110638,Globe and Mail,,2002-04-12,10671,Nell +James Berardinelli,fresh,0110638,ReelViews,,2000-01-01,10671,Nell +Rita Kempley,none,0110638,Washington Post,,2000-01-01,10671,Nell +Stanley Kauffmann,none,0110638,The New Republic,,2000-01-01,10671,Nell +Edward Guthmann,none,0110638,San Francisco Chronicle,,2000-01-01,10671,Nell +Roger Ebert,fresh,0110638,Chicago Sun-Times,,2000-01-01,10671,Nell +,fresh,0110638,Entertainment Weekly,,1994-12-14,10671,Nell +,none,0113967,Variety,,2012-02-23,16129,New Jersey Drive +Owen Gleiberman,fresh,0113967,Entertainment Weekly,,2011-09-07,16129,New Jersey Drive +Todd McCarthy,none,0113967,Variety,,2009-03-26,16129,New Jersey Drive +,none,0113967,Time Out,,2006-01-26,16129,New Jersey Drive +Caryn James,none,0113967,New York Times,,2003-05-20,16129,New Jersey Drive +Peter Rainer,none,0113967,Los Angeles Times,,2001-02-13,16129,New Jersey Drive +Peter Stack,none,0113967,San Francisco Chronicle,,2000-01-01,16129,New Jersey Drive +Hal Hinson,none,0113967,Washington Post,,2000-01-01,16129,New Jersey Drive +James Berardinelli,rotten,0113967,ReelViews,,2000-01-01,16129,New Jersey Drive +Roger Ebert,fresh,0113967,Chicago Sun-Times,,2000-01-01,16129,New Jersey Drive +,fresh,0113967,Entertainment Weekly,,1995-04-19,16129,New Jersey Drive +,none,0106402,Time Out,,2006-02-09,770681517,Beyond Bedlam +,none,0113948,Chicago Reader,,2004-01-10,770686261,Nemesis 2: Nebula +Todd McCarthy,none,0110671,Variety,,2009-03-26,706686850,Nina Takes a Lover +,none,0110671,Time Out,,2006-01-26,706686850,Nina Takes a Lover +Stephen Holden,none,0110671,New York Times,,2003-05-20,706686850,Nina Takes a Lover +Kevin Thomas,none,0110671,Los Angeles Times,,2001-02-13,706686850,Nina Takes a Lover +Mick LaSalle,none,0110671,San Francisco Chronicle,,2000-01-01,706686850,Nina Takes a Lover +James Berardinelli,rotten,0110671,ReelViews,,2000-01-01,706686850,Nina Takes a Lover +Roger Ebert,rotten,0110671,Chicago Sun-Times,,2000-01-01,706686850,Nina Takes a Lover +Owen Gleiberman,fresh,0110632,Entertainment Weekly,,2011-09-07,17098,Natural Born Killers +Todd McCarthy,none,0110632,Variety,,2009-03-26,17098,Natural Born Killers +,none,0110632,Time Out,,2006-01-26,17098,Natural Born Killers +Janet Maslin,rotten,0110632,New York Times,"As a satirist, [Stone's] an elephant ballerina.",2003-05-20,17098,Natural Born Killers +Peter Travers,fresh,0110632,Rolling Stone,"This is one of my all time favorite movies, and it put Oliver Stone on my list of 'Best Directors Ever,' right along with Stanley [Kubrick].",2001-05-12,17098,Natural Born Killers +James Berardinelli,rotten,0110632,ReelViews,"Stone...doesn't know the meaning of moderation or subtlety, and opts instead for something that is excessive and self-indulgent. It's as if he wants to shout out the statement: 'Look at what I can do! I'm an artist!'",2000-01-01,17098,Natural Born Killers +Roger Ebert,fresh,0110632,Chicago Sun-Times,"Seeing this movie once is not enough. The first time is for the visceral experience, the second time is for the meaning.",2000-01-01,17098,Natural Born Killers +Hal Hinson,rotten,0110632,Washington Post,The main problem with Killers...is that it degenerates into the very thing it criticizes.,2000-01-01,17098,Natural Born Killers +Desson Thomson,rotten,0110632,Washington Post,"Welcome to Natural Born Killers, Stone's empty, manic meditation on society's glorification of violence and the ugly heroes it loves to hate.",2000-01-01,17098,Natural Born Killers +Stanley Kauffmann,none,0110632,The New Republic,,2000-01-01,17098,Natural Born Killers +,fresh,0110632,Entertainment Weekly,,1994-08-26,17098,Natural Born Killers +Owen Gleiberman,rotten,0110737,Entertainment Weekly,,2011-09-07,10313,Only You +Todd McCarthy,none,0110737,Variety,,2008-10-18,10313,Only You +,none,0110737,Time Out,,2006-01-26,10313,Only You +Janet Maslin,none,0110737,New York Times,,2003-05-20,10313,Only You +,none,0110737,Globe and Mail,,2002-04-12,10313,Only You +Peter Travers,none,0110737,Rolling Stone,,2001-05-12,10313,Only You +Desson Thomson,none,0110737,Washington Post,,2000-01-01,10313,Only You +Rita Kempley,none,0110737,Washington Post,,2000-01-01,10313,Only You +Roger Ebert,fresh,0110737,Chicago Sun-Times,,2000-01-01,10313,Only You +James Berardinelli,rotten,0110737,ReelViews,,2000-01-01,10313,Only You +,rotten,0110737,Entertainment Weekly,,1994-10-07,10313,Only You +Owen Gleiberman,fresh,0110729,Entertainment Weekly,,2011-09-07,18028,Once Were Warriors +David Stratton,none,0110729,Variety,,2008-07-22,18028,Once Were Warriors +David Ansen,none,0110729,Newsweek,,2008-03-31,18028,Once Were Warriors +,none,0110729,Time Out,,2006-01-26,18028,Once Were Warriors +Janet Maslin,none,0110729,New York Times,,2003-05-20,18028,Once Were Warriors +Edward Guthmann,fresh,0110729,San Francisco Chronicle,A gut-grabber from New Zealand ... that stays with you for days.,2002-06-18,18028,Once Were Warriors +Kenneth Turan,rotten,0110729,Los Angeles Times,"As often happens when films are intent on getting a message across, Once Were Warriors can't stop itself from overdoing things.",2001-02-13,18028,Once Were Warriors +Stanley Kauffmann,fresh,0110729,The New Republic,Yet familiar as the pattern is ... the film holds because of the acting and because it functions as travelogue.,2000-01-01,18028,Once Were Warriors +Rita Kempley,fresh,0110729,Washington Post,"The actors, many of them of European-Maori descent, are wonderful to look at. They also deliver authoritative yet sympathetic performances that get at the roots, or rootlessness, of their characters.",2000-01-01,18028,Once Were Warriors +Roger Ebert,fresh,0110729,Chicago Sun-Times,"It is powerful and chilling, and directed by Lee Tamahori with such narrative momentum that we are swept along in the enveloping tragedy of the family's life.",2000-01-01,18028,Once Were Warriors +James Berardinelli,fresh,0110729,ReelViews,"Works, to some degree, on three levels: the visceral, the emotional, and the intellectual, and it is the amalgamation of these that makes this a memorable film.",2000-01-01,18028,Once Were Warriors +Desson Thomson,fresh,0110729,Washington Post,"Reserve judgment until this raw, uncompromising working-class saga is over, and you might find yourself unforgettably moved -- and grateful for the experience.",2000-01-01,18028,Once Were Warriors +,fresh,0110729,Entertainment Weekly,,1800-01-01,18028,Once Were Warriors +Deborah Young,none,0114151,Variety,,2010-08-31,13660,Poison Ivy II +,none,0114069,Variety,,2012-02-23,13283,Outbreak +Owen Gleiberman,fresh,0114069,Entertainment Weekly,,2011-09-07,13283,Outbreak +Todd McCarthy,none,0114069,Variety,,2009-03-26,13283,Outbreak +,none,0114069,Time Out,,2006-01-26,13283,Outbreak +Janet Maslin,none,0114069,New York Times,,2003-05-20,13283,Outbreak +,none,0114069,Globe and Mail,,2002-04-12,13283,Outbreak +Peter Rainer,none,0114069,Los Angeles Times,,2001-02-13,13283,Outbreak +Stanley Kauffmann,rotten,0114069,The New Republic,"Hoffman doesn't get the chance, or need, to act: he just does things, like Ford.",2000-01-01,13283,Outbreak +Rita Kempley,fresh,0114069,Washington Post,An absolute hoot.,2000-01-01,13283,Outbreak +Mick LaSalle,fresh,0114069,San Francisco Chronicle,This is a picture good enough to make you want to go to the movies and frightening enough to make you wonder if you should avoid the crowds.,2000-01-01,13283,Outbreak +Desson Thomson,rotten,0114069,Washington Post,"Displays all the initial symptoms of a promising thriller, it soon degenerates into a low-fever whodunit.",2000-01-01,13283,Outbreak +Roger Ebert,fresh,0114069,Chicago Sun-Times,One of the great scare stories of our time.,2000-01-01,13283,Outbreak +John Hartl,rotten,0114069,Film.com,"Comes off as a shrill, self-important bore.",2000-01-01,13283,Outbreak +James Berardinelli,rotten,0114069,ReelViews,"No one likes to be teased, but that's exactly what this movie does to us, with predictably frustrating results.",2000-01-01,13283,Outbreak +Richard Corliss,rotten,0114069,TIME Magazine,"A big, bustling, intermittently dippy melodrama.",2000-01-01,13283,Outbreak +Lucy Mohl,rotten,0114069,Film.com,A clunky thriller.,2000-01-01,13283,Outbreak +,fresh,0114069,Entertainment Weekly,,1994-06-01,13283,Outbreak +Lisa Schwarzbaum,fresh,0110413,Entertainment Weekly,Mathilda is like no New York City girl-child I've ever seen riding the subway. And I couldn't take my eyes off her.,2010-07-06,17094,Léon +Lisa Nesselson,rotten,0110413,Variety,A naive fairy tale splattered with blood.,2007-09-26,17094,Léon +Jonathan Rosenbaum,rotten,0110413,Chicago Reader,Ultimately seems at once too deranged and too mechanical.,2007-09-26,17094,Léon +Geoff Andrew,rotten,0110413,Time Out,"Besson fails to make much of New York's visual potential, and lazily asks that Leon's expertise be taken on trust. The shallowness was to be expected; the slackness is surprising.",2006-02-09,17094,Léon +Janet Maslin,rotten,0110413,New York Times,"The Professional is much too sentimental to sound shockingly amoral in the least. Even in a finale of extravagant violence, it manages to be maudlin.",2004-08-30,17094,Léon +Hal Hinson,fresh,0110413,Washington Post,One pretty awesome action movie.,2000-01-01,17094,Léon +Richard Schickel,fresh,0110413,TIME Magazine,"The bonding of Mathilda and Leon may be among the strangest in the long, tiresome history of odd-couple movies.",2000-01-01,17094,Léon +James Berardinelli,fresh,0110413,ReelViews,"It is stylish, darkly humorous, and almost artsy in its approach to the genre.",2000-01-01,17094,Léon +Roger Ebert,rotten,0110413,Chicago Sun-Times,Always at the back of my mind was the troubled thought that there was something wrong about placing a 12-year-old character in the middle of this action.,2000-01-01,17094,Léon +Lisa Schwarzbaum,rotten,0114113,Entertainment Weekly,,2011-09-07,15207,The Perez Family +,none,0114113,Variety,,2009-03-26,15207,The Perez Family +Emanuel Levy,rotten,0114113,Variety,"Mira Nair's consistent exploration of the search for home is admirable, but her movie is burdened by an unconvincing ensemble that's unable to elevate the serio-comic exploration of Cuban immigrants into a poignant tale.",2006-10-08,15207,The Perez Family +Derek Adams,none,0114113,Time Out,,2006-06-24,15207,The Perez Family +Caryn James,none,0114113,New York Times,,2004-08-30,15207,The Perez Family +,none,0114113,Globe and Mail,,2002-04-12,15207,The Perez Family +Mike Clark,fresh,0114113,USA Today,"Mira Nair's Mississippi Masala found humor in ethnic chaos, and the Indian-born director does so again.",2000-01-01,15207,The Perez Family +Hal Hinson,none,0114113,Washington Post,,2000-01-01,15207,The Perez Family +Mick LaSalle,none,0114113,San Francisco Chronicle,,2000-01-01,15207,The Perez Family +Roger Ebert,fresh,0114113,Chicago Sun-Times,,2000-01-01,15207,The Perez Family +Desson Thomson,none,0114113,Washington Post,,2000-01-01,15207,The Perez Family +James Berardinelli,rotten,0114113,ReelViews,,2000-01-01,15207,The Perez Family +,rotten,0114113,Entertainment Weekly,,1995-05-12,15207,The Perez Family +Owen Gleiberman,rotten,0114210,Entertainment Weekly,,2011-09-07,12475,A Pyromaniac's Love Story +Joe Leydon,none,0114210,Variety,,2009-03-26,12475,A Pyromaniac's Love Story +Derek Adams,none,0114210,Time Out,,2006-02-09,12475,A Pyromaniac's Love Story +Stephen Holden,none,0114210,New York Times,,2003-05-20,12475,A Pyromaniac's Love Story +Peter Rainer,none,0114210,Los Angeles Times,,2001-02-13,12475,A Pyromaniac's Love Story +Roger Ebert,rotten,0114210,Chicago Sun-Times,,2000-01-01,12475,A Pyromaniac's Love Story +James Berardinelli,rotten,0114210,ReelViews,,2000-01-01,12475,A Pyromaniac's Love Story +Mick LaSalle,none,0114210,San Francisco Chronicle,,2000-01-01,12475,A Pyromaniac's Love Story +Michael Wilmington,fresh,0110912,Chicago Tribune,"This movie gets its charge not from action pyrotechnics but from its electric barrage of language, wisecracks and dialogue, from the mordant '70s classicism of its long-take camera style and its smart, offbeat, strangely sexy cast.",2013-05-15,13863,Pulp Fiction +Kenneth Turan,rotten,0110912,Los Angeles Times,"The result, especially in the scenes involving Bruce Willis as a nervy boxer, can be long patches of dialogue that must have tickled Tarantino but will not necessarily resonate for anyone else.",2013-05-15,13863,Pulp Fiction +Anthony Lane,fresh,0110912,New Yorker,"The talk is dirty and funny, the violence always waiting just around the corner.",2013-05-15,13863,Pulp Fiction +Carrie Rickey,fresh,0110912,Philadelphia Inquirer,"Whether you call it razzmatazz, pizazz or sizzle, Pulp Fiction's got it, enough style for a dozen movies and, truth be told, enough story for five.",2013-05-15,13863,Pulp Fiction +John Hartl,fresh,0110912,Seattle Times,"At 153 minutes, the movie does occasionally flirt with tedium, but the risk is worth it: The whole is finally greater than the sum of its pulpy parts. What could have been an anything-goes pastiche has surprising rigor and narrative clarity.",2013-05-15,13863,Pulp Fiction +Jay Boyar,fresh,0110912,Orlando Sentinel,"In terms of mood and style, it could be the most influential film to come along since Blue Velvet.",2013-05-15,13863,Pulp Fiction +Gene Siskel,fresh,0110912,Chicago Tribune,"If you smile at David Mamet's dialogue, you'll laugh out loud at the words of Quentin Tarantino.",2013-01-16,13863,Pulp Fiction +Owen Gleiberman,fresh,0110912,Entertainment Weekly,"Tarantino's dialogue, with its densely propulsive, almost lawyerly fervor, its peppery comic blend of literacy and funk, has more snap and fight than most directors' action scenes.",2011-09-07,13863,Pulp Fiction +Richard Corliss,fresh,0110912,TIME Magazine,"Tarantino's guilty secret, which the international critics should have noticed, is that his films are cultural hybrids.",2011-03-29,13863,Pulp Fiction +David Ansen,fresh,0110912,Newsweek,"Just when you thought the last thing the world needed was another violent, self-conscious, hipster homage to film noir, along comes Tarantino to blow away your deja vu.",2010-07-06,13863,Pulp Fiction +Stanley Kauffmann,rotten,0110912,The New Republic,"The way that this picture has been so widely ravened up and drooled over verges on the disgusting. Pulp Fiction nourishes, abets, cultural slumming.",2009-05-27,13863,Pulp Fiction +Todd McCarthy,fresh,0110912,Variety,A spectacularly entertaining piece of pop culture.,2007-03-13,13863,Pulp Fiction +Jonathan Rosenbaum,fresh,0110912,Chicago Reader,The overall project is evident: to evict real life and real people from the art film and replace them with generic teases and assorted hommages. Don't expect any of the life experiences of the old movie sources to leak through.,2007-03-13,13863,Pulp Fiction +Geoff Andrew,fresh,0110912,Time Out,"It's the way Tarantino embellishes and, finally, interlinks these old chestnuts that makes the film alternately exhilarating and frustrating.",2006-06-24,13863,Pulp Fiction +Janet Maslin,fresh,0110912,New York Times,"A triumphant, cleverly disorienting journey through a demimonde that springs entirely from Mr. Tarantino's ripe imagination, a landscape of danger, shock, hilarity and vibrant local color.",2003-05-20,13863,Pulp Fiction +Rick Groen,fresh,0110912,Globe and Mail,Scintillating.,2002-04-12,13863,Pulp Fiction +Peter Travers,fresh,0110912,Rolling Stone,There's a special kick that comes from watching something this thrillingly alive.,2001-05-12,13863,Pulp Fiction +James Berardinelli,fresh,0110912,ReelViews,All the details are executed to perfection. Ironies abound in the smallest situations.,2000-01-01,13863,Pulp Fiction +Roger Ebert,fresh,0110912,Chicago Sun-Times,The movie resurrects not only an aging genre but also a few careers.,2000-01-01,13863,Pulp Fiction +Lucy Mohl,fresh,0110912,Film.com,"Writer/director Quentin Tarantino demonstrates his encyclopedic grasp of filmmaking by bending, chopping and deconstructing narrative while keeping a groovy beat.",2000-01-01,13863,Pulp Fiction +Ben Kenigsberg,rotten,0838232,Time Out,,2011-11-17,439092186,The Pink Panther 2 +Cole Haddon,none,0838232,Film.com,,2011-05-06,439092186,The Pink Panther 2 +Derek Adams,rotten,0838232,Time Out,"Martin fumbles it from the off. And that, in a nutshell, is reason enough to avoid this as one might any other calamity.",2009-02-12,439092186,The Pink Panther 2 +Peter Rainer,rotten,0838232,Christian Science Monitor,Martin has a few inspired moments but in order to get to them you have to wade through a mosh pit of unfunny gags.,2009-02-09,439092186,The Pink Panther 2 +Claudia Puig,rotten,0838232,USA Today,Remember when Martin was funny?,2009-02-06,439092186,The Pink Panther 2 +Stephanie Zacharek,rotten,0838232,Salon.com,What is our reward for the collective effort of this prestigious assembly? One of the most dreadfully unnecessary movies in recent memory.,2009-02-06,439092186,The Pink Panther 2 +Joe Morgenstern,rotten,0838232,Wall Street Journal,The soundtrack makes generous use of trombones to indicate humor.,2009-02-06,439092186,The Pink Panther 2 +Peter Hartlaub,rotten,0838232,San Francisco Chronicle,One can only hope that something good is coming from all the bad movies that Steve Martin has been appearing in.,2009-02-06,439092186,The Pink Panther 2 +Peter Travers,rotten,0838232,Rolling Stone,Wasn't it bad enough the first time?,2009-02-06,439092186,The Pink Panther 2 +Kyle Smith,rotten,0838232,New York Post,There's a difference between kid-friendly and just regular old dumb.,2009-02-06,439092186,The Pink Panther 2 +Joe Neumaier,fresh,0838232,New York Daily News,"None of it is memorable, though the audience it's aimed at will giggle at the adults gone goofy.",2009-02-06,439092186,The Pink Panther 2 +Colin Covert,rotten,0838232,Minneapolis Star Tribune,Recycling bins have fresher content than this listless exercise in check-the-boxes moviemaking.,2009-02-06,439092186,The Pink Panther 2 +Betsy Sharkey,rotten,0838232,Los Angeles Times,There's a sort of desperation at work here.,2009-02-06,439092186,The Pink Panther 2 +Amy Biancolli,rotten,0838232,Houston Chronicle,"For all the obvious cribbing, the filmmakers still seem ill-at-ease with Clouseau's simplistic world view and frank buffoonery.",2009-02-06,439092186,The Pink Panther 2 +Liam Lacey,rotten,0838232,Globe and Mail,"Another Steve Martin comedy, the same old question -- what happened?",2009-02-06,439092186,The Pink Panther 2 +Todd McCarthy,fresh,0838232,Variety,Serves up enough goofy pranks and fractured wordplay to keep the series purring along.,2009-02-06,439092186,The Pink Panther 2 +Tom Long,fresh,0838232,Detroit News,Bottom line: Any laugh's a good laugh these days.,2009-02-06,439092186,The Pink Panther 2 +Stephen Holden,rotten,0838232,New York Times,"Hoary slapstick routines, invariably rushed, are all there is in The Pink Panther 2.",2009-02-06,439092186,The Pink Panther 2 +Christopher Orr,rotten,0838232,The New Republic,"[I]f half-hearted remakes of fondly remembered films (and their still more lifeless sequels) are one of the most acute ills currently plaguing Hollywood, [Steve] Martin is arguably the primary vector by which the malady is transmitted.",2009-02-06,439092186,The Pink Panther 2 +Steven Rea,rotten,0838232,Philadelphia Inquirer,"Although comic mayhem follows Martin's Clouseau everywhere, none of it is particularly funny.",2009-02-05,439092186,The Pink Panther 2 +Derek Adams,none,0105652,Time Out,,2006-06-24,770685609,Tui shou +Janet Maslin,none,0105652,New York Times,,2004-08-30,770685609,Tui shou +,none,0105652,Chicago Reader,,2001-12-03,770685609,Tui shou +Kevin Thomas,none,0105652,Los Angeles Times,,2001-02-13,770685609,Tui shou +Owen Gleiberman,fresh,0110889,Entertainment Weekly,,2011-09-07,14144,Priest +Ray Bennett,none,0110889,Hollywood Reporter,,2011-05-09,14144,Priest +Brendan Kelly,none,0110889,Variety,,2009-03-26,14144,Priest +Derek Adams,none,0110889,Time Out,,2006-06-24,14144,Priest +Janet Maslin,none,0110889,New York Times,,2003-05-20,14144,Priest +Peter Stack,fresh,0110889,San Francisco Chronicle,,2002-06-18,14144,Priest +,none,0110889,Globe and Mail,,2002-04-12,14144,Priest +Kenneth Turan,none,0110889,Los Angeles Times,,2001-02-21,14144,Priest +James Berardinelli,fresh,0110889,ReelViews,,2000-01-01,14144,Priest +Stanley Kauffmann,none,0110889,The New Republic,,2000-01-01,14144,Priest +Roger Ebert,rotten,0110889,Chicago Sun-Times,,2000-01-01,14144,Priest +Rita Kempley,none,0110889,Washington Post,,2000-01-01,14144,Priest +,fresh,0110889,Entertainment Weekly,,1995-03-24,14144,Priest +Owen Gleiberman,fresh,0110932,Entertainment Weekly,,2011-09-07,11034,Quiz Show +Todd McCarthy,none,0110932,Variety,,2008-10-18,11034,Quiz Show +Jonathan Rosenbaum,fresh,0110932,Chicago Reader,Robert Redford's best and richest directorial effort...,2007-11-08,11034,Quiz Show +Michael Booth,fresh,0110932,Denver Post,"Redford turns a dry subject into high art, matching the achievements of his other directing efforts in Ordinary People and A River Runs Through It.",2007-07-03,11034,Quiz Show +Derek Adams,fresh,0110932,Time Out,"Perfectly pitched, the film brims with insight and wit. Highly recommended.",2006-02-09,11034,Quiz Show +Janet Maslin,fresh,0110932,New York Times,"Mr. Redford has made a rich, handsome, articulate film about a subject truly worth talking about.",2003-05-20,11034,Quiz Show +Peter Travers,fresh,0110932,Rolling Stone,"What Redford is saying isn't new, but it has rarely been said in a mainstream movie with this kind of passion.",2001-05-12,11034,Quiz Show +Lucy Mohl,fresh,0110932,Film.com,"Witty, entertaining, intelligent.",2000-01-01,11034,Quiz Show +Roger Ebert,fresh,0110932,Chicago Sun-Times,"The screenplay, by former Washington Post film critic Paul Attanasio, is smart, subtle and ruthless.",2000-01-01,11034,Quiz Show +James Berardinelli,fresh,0110932,ReelViews,"Crisply directed by Redford from a thought-provoking script by Paul Attanasio, and featuring a slew of strong performances.",2000-01-01,11034,Quiz Show +Peter Stack,fresh,0110932,San Francisco Chronicle,Manages a trick that few films even dare try -- to take a hard look at personal and public moral issues and still provide dazzling entertainment.,2000-01-01,11034,Quiz Show +Hal Hinson,fresh,0110932,Washington Post,"An exciting achievement, not only the most accomplished film of Redford's directorial career, but one of the best to carry his name.",2000-01-01,11034,Quiz Show +Richard Schickel,fresh,0110932,TIME Magazine,Written with clean-cut force by Paul Attanasio and directed with panache by Robert Redford.,2000-01-01,11034,Quiz Show +Desson Thomson,fresh,0110932,Washington Post,Artfully constructed and beautifully shot.,2000-01-01,11034,Quiz Show +,fresh,0110932,Entertainment Weekly,,1994-09-14,11034,Quiz Show +Lisa Schwarzbaum,fresh,0114129,Entertainment Weekly,,2011-09-07,11449,Picture Bride +Todd McCarthy,none,0114129,Variety,,2009-03-26,11449,Picture Bride +Derek Adams,none,0114129,Time Out,,2006-02-09,11449,Picture Bride +Janet Maslin,none,0114129,New York Times,,2003-05-20,11449,Picture Bride +Peter Stack,none,0114129,San Francisco Chronicle,,2002-06-18,11449,Picture Bride +Kevin Thomas,none,0114129,Los Angeles Times,,2001-02-13,11449,Picture Bride +James Berardinelli,fresh,0114129,ReelViews,,2000-01-01,11449,Picture Bride +Rita Kempley,none,0114129,Washington Post,,2000-01-01,11449,Picture Bride +Roger Ebert,fresh,0114129,Chicago Sun-Times,,2000-01-01,11449,Picture Bride +,fresh,0114129,Entertainment Weekly,,1995-04-28,11449,Picture Bride +,none,0110963,Entertainment Weekly,,2009-11-06,13154,La reine Margot +Todd McCarthy,none,0110963,Variety,,2009-03-26,13154,La reine Margot +Geoff Andrew,none,0110963,Time Out,,2006-06-24,13154,La reine Margot +Janet Maslin,none,0110963,New York Times,,2003-05-20,13154,La reine Margot +,none,0110963,Globe and Mail,,2002-04-12,13154,La reine Margot +Roger Ebert,rotten,0110963,Chicago Sun-Times,,2000-01-01,13154,La reine Margot +Edward Guthmann,none,0110963,San Francisco Chronicle,,2000-01-01,13154,La reine Margot +James Berardinelli,fresh,0110963,ReelViews,,2000-01-01,13154,La reine Margot +Owen Gleiberman,rotten,0114214,Entertainment Weekly,,2011-09-07,13934,The Quick and the Dead +Derek Adams,fresh,0114214,Time Out,"A deadpan black comedy, Sam Raimi's fast-paced movie looks and sounds like a Leone oater but more so.",2006-06-24,13934,The Quick and the Dead +Janet Maslin,fresh,0114214,New York Times,"Mr. Raimi is limited by a sketch mentality, which means his jokes tend to be over long before his films end. But his tastes for visual mischief and crazy, ill-advised homage can still make for sly, sporadic fun.",2003-05-20,13934,The Quick and the Dead +Peter Travers,rotten,0114214,Rolling Stone,"What Raimi can't find is a center. He hankers for us to giggle at the brutal archetypes he's parodying and to warm to them, too. It won't wash, pardner.",2001-05-12,13934,The Quick and the Dead +Kenneth Turan,rotten,0114214,Los Angeles Times,"Rarely dull, it is not noticeably compelling either, and as the derivative offshoot of a derivative genre, it inevitably runs out of energy well before any of its hotshots runs out of bullets.",2001-02-13,13934,The Quick and the Dead +Roger Ebert,rotten,0114214,Chicago Sun-Times,"As preposterous as the plot was, there was never a line of Hackman dialogue that didn't sound as if he believed it. The same can't be said, alas, for Sharon Stone...",2000-01-01,13934,The Quick and the Dead +James Berardinelli,rotten,0114214,ReelViews,"Raimi's choice to give the film a comic book-like aura of mingled camp and grit makes for some fitfully energetic and entertaining moments, but it's not enough to overcome The Quick and the Dead's primary fault.",2000-01-01,13934,The Quick and the Dead +Mick LaSalle,rotten,0114214,San Francisco Chronicle,"You get lots of clothes here, but no emperor.",2000-01-01,13934,The Quick and the Dead +Desson Thomson,rotten,0114214,Washington Post,"Although Stone may be pleasing to some eyes, she's pretty small in the saddle here -- just an innocuous gender twist on the reluctant cowboy hero. And her story of hellbent revenge is about as compelling as a 30-second fragrance commercial.",2000-01-01,13934,The Quick and the Dead +,rotten,0114214,Entertainment Weekly,,1995-02-10,13934,The Quick and the Dead +Lisa Schwarzbaum,rotten,0114296,Entertainment Weekly,,2011-09-07,11461,Roommates +Todd McCarthy,none,0114296,Variety,,2009-03-26,11461,Roommates +Janet Maslin,none,0114296,New York Times,,2003-05-20,11461,Roommates +,none,0114296,Globe and Mail,,2002-04-12,11461,Roommates +Peter Rainer,none,0114296,Los Angeles Times,,2001-02-13,11461,Roommates +Rita Kempley,none,0114296,Washington Post,,2000-01-01,11461,Roommates +Desson Thomson,none,0114296,Washington Post,,2000-01-01,11461,Roommates +Roger Ebert,rotten,0114296,Chicago Sun-Times,,2000-01-01,11461,Roommates +James Berardinelli,rotten,0114296,ReelViews,,2000-01-01,11461,Roommates +Edward Guthmann,none,0114296,San Francisco Chronicle,,2000-01-01,11461,Roommates +Owen Gleiberman,rotten,0110907,Entertainment Weekly,,2011-09-07,14514,Prêt-à-Porter +Todd McCarthy,none,0110907,Variety,,2009-03-26,14514,Prêt-à-Porter +David Ansen,none,0110907,Newsweek,,2008-08-18,14514,Prêt-à-Porter +Geoff Andrew,none,0110907,Time Out,,2006-02-09,14514,Prêt-à-Porter +Janet Maslin,rotten,0110907,New York Times,"Though it credits Mr. Altman and Barbara Shulgasser as writers, this film seems practically scriptless, to the point where much of it plays like a first rehearsal.",2004-05-17,14514,Prêt-à-Porter +Stanley Kauffmann,none,0110907,The New Republic,,2000-01-01,14514,Prêt-à-Porter +Rita Kempley,rotten,0110907,Washington Post,The picture is not a social satire. It's a mess.,2000-01-01,14514,Prêt-à-Porter +Roger Ebert,rotten,0110907,Chicago Sun-Times,"Altman and his writer, former Chicago Sun-Times reporter Barbara Shulgasser, should have gone further and been meaner; too many of his jokes are generic slapstick, instead of being aimed squarely at industry's targets.",2000-01-01,14514,Prêt-à-Porter +James Berardinelli,rotten,0110907,ReelViews,"Despite some delicious moments, this sluggish, overlong, halfhearted satire feels like a movie that wanted to go somewhere but never got there.",2000-01-01,14514,Prêt-à-Porter +,rotten,0110907,Entertainment Weekly,,1994-12-23,14514,Prêt-à-Porter +Jonathan Rosenbaum,fresh,0111495,Chicago Reader,The third and best feature of Krzysztof Kieslowski's highly ambitious Three Colors trilogy.,2012-08-08,266746773,Trois couleurs: Rouge +Lisa Nesselson,fresh,0111495,Variety,"Another deft, deeply affecting variation on Krzysztof Kieslowski's recurring theme that people are interconnected in ways they can barely fathom.",2008-01-22,266746773,Trois couleurs: Rouge +Geoff Andrew,fresh,0111495,Time Out,"Stunningly beautiful, powerfully scored and immaculately performed, the film is virtually flawless, and one of the very greatest cinematic achievements of the last few decades. A masterpiece.",2006-02-09,266746773,Trois couleurs: Rouge +Janet Maslin,fresh,0111495,New York Times,Red succeeds so stirringly that it also bestows some much-needed magic upon its predecessors.,2003-05-20,266746773,Trois couleurs: Rouge +Jonathan Kiefer,fresh,0111495,Salon.com,"Undaunted by the tremendous emotional and moral valence he has by now invited us to expect, Kieslowski controls the film magnificently, putting to use the shapely formal precision he took an entire career to work out.",2002-06-12,266746773,Trois couleurs: Rouge +Richard Corliss,fresh,0111495,TIME Magazine,"Visually and emotionally, this is the director's warmest film.",2000-01-01,266746773,Trois couleurs: Rouge +John Hartl,fresh,0111495,Film.com,What makes Red watchable is Kieslowski's arresting visual sense.,2000-01-01,266746773,Trois couleurs: Rouge +Hal Hinson,fresh,0111495,Washington Post,"Red is not a movie by a filmmaker who has run out of ideas, but one by an artist at the height of his powers.",2000-01-01,266746773,Trois couleurs: Rouge +Desson Thomson,fresh,0111495,Washington Post,In this final installment of a glorious trilogy ... [Kieslowski] has saved his greatest for last.,2000-01-01,266746773,Trois couleurs: Rouge +Edward Guthmann,fresh,0111495,San Francisco Chronicle,"Jacob is so good in the role, so effective at suggesting a mingling of innocence and intuition, that it's easy to imagine why Red was written with her in mind.",2000-01-01,266746773,Trois couleurs: Rouge +Roger Ebert,fresh,0111495,Chicago Sun-Times,This is the kind of film that makes you feel intensely alive while you're watching it.,2000-01-01,266746773,Trois couleurs: Rouge +James Berardinelli,fresh,0111495,ReelViews,A subtle masterpiece.,2000-01-01,266746773,Trois couleurs: Rouge +Lisa Nesselson,none,0108394,Variety,,2008-12-17,381422018,Trois couleurs: Bleu +Geoff Andrew,none,0108394,Time Out,,2006-02-09,381422018,Trois couleurs: Bleu +Jonathan Kiefer,fresh,0108394,Salon.com,"Even in such a visually sumptuous work, Kieslowski is brave enough to tell us -- through blackouts, blurred focus and commanding stillness -- not to look, but simply to listen.",2002-06-12,381422018,Trois couleurs: Bleu +Roger Ebert,fresh,0108394,Chicago Sun-Times,A challenge to the imagination.,2000-01-01,381422018,Trois couleurs: Bleu +Desson Thomson,fresh,0108394,Washington Post,"The rehabilitation of a human spirit after painful tragedy is given stunning, aesthetic dimension.",2000-01-01,381422018,Trois couleurs: Bleu +James Berardinelli,fresh,0108394,ReelViews,A powerful motion picture.,2000-01-01,381422018,Trois couleurs: Bleu +Hal Hinson,fresh,0108394,Washington Post,"Krzysztof Kieslowski's penetrating, hypnotic meditation on liberty and loss.",2000-01-01,381422018,Trois couleurs: Bleu +Jonathan Rosenbaum,rotten,0111507,Chicago Reader,"he love that figures centrally in White appears more as a postulate than as a realized fact. To achieve something more durable and persuasive, real characters are required, not allegorical stick figures.",2012-08-09,770804687,Trzy kolory: Bialy +Lisa Nesselson,fresh,0111507,Variety,"The entertaining second seg of Krzysztof Kieslowski's Three Colors trilogy is involving, bittersweet and droll.",2009-03-26,770804687,Trzy kolory: Bialy +Geoff Andrew,fresh,0111507,Time Out,"It's often cruel, of course, and cool as an ice-pick, but it's still endowed with enough unsentimental humanity to end with a touching, lyrical admission of the power of love. Essential viewing.",2006-02-09,770804687,Trzy kolory: Bialy +Caryn James,fresh,0111507,New York Times,"How could the creator of Blue, the story of a woman who grieves by moping around Paris in a chichi haircut, possibly have followed it with such a rich, light-handed marvel?",2004-08-30,770804687,Trzy kolory: Bialy +Jonathan Kiefer,fresh,0111507,Salon.com,"Kieslowski, who so keenly satirized the crippling excesses of communism in his earlier work, unflinchingly has a go at training-wheels capitalism, but not without affection for the thawing tundra of his beleaguered mother country.",2002-06-12,770804687,Trzy kolory: Bialy +Desson Thomson,fresh,0111507,Washington Post,A continuing testament to the Polish director's poetic mastery.,2000-01-01,770804687,Trzy kolory: Bialy +Hal Hinson,fresh,0111507,Washington Post,"In White, which details the agonies of obsessive love, [Kieslowski's] story is more realistic, and his style more prosaic, but the results are no less inscrutable -- and no less engaging.",2000-01-01,770804687,Trzy kolory: Bialy +Richard Corliss,fresh,0111507,TIME Magazine,The film works fine on its own.,2000-01-01,770804687,Trzy kolory: Bialy +John Hartl,fresh,0111507,Film.com,"It's probably the friendliest, most enjoyable movie the Polish filmmaker has made.",2000-01-01,770804687,Trzy kolory: Bialy +Roger Ebert,fresh,0111507,Chicago Sun-Times,"White is the anti- comedy, in between the anti- tragedy and the anti- romance.",2000-01-01,770804687,Trzy kolory: Bialy +James Berardinelli,fresh,0111507,ReelViews,"White is an excellent character study, and the presentation of a twisted love story is compelling.",2000-01-01,770804687,Trzy kolory: Bialy +Lisa Schwarzbaum,fresh,0111507,Entertainment Weekly,"There's something earthy and elemental in this tale that was missing in Blue, something quirky and (measured by Kieslowskian standards) energetic. But there's also something damp and brown, like the sodden Polish countryside he pictures.",1994-02-18,770804687,Trzy kolory: Bialy +Derek Elley,none,0110769,Variety,,2008-08-06,770687009,Pao Da Shuang Deng +Geoff Andrew,none,0110769,Time Out,,2006-02-09,770687009,Pao Da Shuang Deng +Stephen Holden,none,0110769,New York Times,,2003-05-20,770687009,Pao Da Shuang Deng +,none,0110769,Globe and Mail,,2002-04-12,770687009,Pao Da Shuang Deng +,none,0110769,Los Angeles Times,,2001-02-13,770687009,Pao Da Shuang Deng +Joe Baltake,none,0110769,Sacramento Bee,,2000-01-01,770687009,Pao Da Shuang Deng +Peter Stack,none,0110769,San Francisco Chronicle,,2000-01-01,770687009,Pao Da Shuang Deng +Roger Ebert,rotten,0110769,Chicago Sun-Times,,2000-01-01,770687009,Pao Da Shuang Deng +Owen Gleiberman,rotten,0114571,Entertainment Weekly,,2011-09-07,11396,Stuart Saves His Family +Joe Leydon,rotten,0114571,Variety,"It isn't good enough, it isn't smart enough, and, doggone it, most people won't like Stuart Saves His Family.",2008-05-14,11396,Stuart Saves His Family +Jonathan Rosenbaum,fresh,0114571,Chicago Reader,"Even if you find Franken hard to bear, as I do, the movie's take on how he functions in the world is both authoritative and compelling, and the movie steadily grows in stature.",2008-05-14,11396,Stuart Saves His Family +,rotten,0114571,Time Out,"Those familiar with Alcoholics Anonymous' 12-step recovery programme may bond in sympathy. The sentimentality, however, doesn't play.",2006-06-24,11396,Stuart Saves His Family +Janet Maslin,rotten,0114571,New York Times,"The plotting is surprisingly banal, involving even talk of a property easement and turning Stuart into the executor of a relative's estate. And the relatives' problems are taken semi-seriously, which is more than this lightweight film can handle.",2003-05-20,11396,Stuart Saves His Family +Peter Rainer,rotten,0114571,Los Angeles Times,"It was much funnier when we didn't see Stuart's family. And, if we have to see them, it would have been much funnier if they were strait-laced '50s sitcom types.",2001-02-13,11396,Stuart Saves His Family +Mick LaSalle,rotten,0114571,San Francisco Chronicle,"All in all, it's a misfire -- but a misfire that's more interesting than a lot of successes.",2000-01-01,11396,Stuart Saves His Family +Roger Ebert,fresh,0114571,Chicago Sun-Times,"I not only enjoyed Stuart Smalley, doggone it, I liked him, and that attitude of gratitude ain't just a platitude.",2000-01-01,11396,Stuart Saves His Family +Desson Thomson,fresh,0114571,Washington Post,Subtly riotous.,2000-01-01,11396,Stuart Saves His Family +,rotten,0114571,USA Today,,2000-01-01,11396,Stuart Saves His Family +Hal Hinson,rotten,0114571,Washington Post,"Stuart is a disarming figure -- likable in small doses, but fragile and not particularly adaptable.",2000-01-01,11396,Stuart Saves His Family +James Berardinelli,rotten,0114571,ReelViews,"Stretched out to an agonizing ninety-seven minutes, Stuart goes from being passably amusing to tedious to virtually unwatchable.",2000-01-01,11396,Stuart Saves His Family +Brian Lowry,none,0111333,Variety,,2009-03-26,9615,The Swan Princess +Geoff Andrew,none,0111333,Time Out,,2006-06-24,9615,The Swan Princess +Caryn James,none,0111333,New York Times,,2004-08-30,9615,The Swan Princess +James Berardinelli,rotten,0111333,ReelViews,,2000-01-01,9615,The Swan Princess +Peter Stack,none,0111333,San Francisco Chronicle,,2000-01-01,9615,The Swan Princess +Roger Ebert,fresh,0111333,Chicago Sun-Times,,2000-01-01,9615,The Swan Princess +Hal Hinson,none,0111333,Washington Post,,2000-01-01,9615,The Swan Princess +,fresh,0111333,Entertainment Weekly,,1994-06-01,9615,The Swan Princess +Bruce Diones,fresh,0111112,New Yorker,The rhythms are placid and the camerawork (by Haskell Wexler) is simple and unfussy. The film's a charm.,2013-05-03,10384,The Secret of Roan Inish +Lisa Schwarzbaum,fresh,0111112,Entertainment Weekly,,2011-09-07,10384,The Secret of Roan Inish +Dennis Harvey,rotten,0111112,Variety,"John Sayles' latest marks his entry into family-pic terrain, a crossing that draws pleasant but unexciting results.",2008-03-11,10384,The Secret of Roan Inish +Michael Rechtshaffen,fresh,0111112,Hollywood Reporter,"Moving from passion fish to mystical seals, versatile filmmaker John Sayles' latest is a first-rate, all-ages fairy tale steeped in Irish folklore.",2008-03-11,10384,The Secret of Roan Inish +Jonathan Rosenbaum,fresh,0111112,Chicago Reader,"This is all rather low-key and uninsistent, but the settings are gorgeous, and Haskell Wexler's cinematography makes the most of them.",2008-03-11,10384,The Secret of Roan Inish +Geoff Andrew,fresh,0111112,Time Out,"Tales within tales, a subtle sense of economic and social realities, fine landscape photography and strong performances make for an engrossing, unusual fantasy.",2006-02-09,10384,The Secret of Roan Inish +Stephen Holden,fresh,0111112,New York Times,One of Mr. Sayles's artistic strengths (and commercial liabilities) is his refusal to make movies that knock you over the head with larger-than-life characters and emotions.,2005-03-19,10384,The Secret of Roan Inish +Edward Guthmann,fresh,0111112,San Francisco Chronicle,Sayles demonstrates again his amazing breadth of interest and the extent to which he can't be pigeonholed.,2002-06-18,10384,The Secret of Roan Inish +Rick Groen,fresh,0111112,Globe and Mail,"A bauble, perhaps, but smartly mounted and sweetly offered -- a Disney flick with brains.",2002-04-12,10384,The Secret of Roan Inish +Kenneth Turan,fresh,0111112,Los Angeles Times,"Though its protagonist is a 10-year-old girl, it is a crackling good tale with a sense of wonder and mystery strong enough to captivate any age group.",2001-02-13,10384,The Secret of Roan Inish +Desson Thomson,fresh,0111112,Washington Post,[Sayles's] plodding manner works somewhat to advantage in The Secret of Roan Inish.,2000-01-01,10384,The Secret of Roan Inish +Rita Kempley,fresh,0111112,Washington Post,"Only the seals and the sea gulls know The Secret of Roan Inish, a beguiling mystery shrouded in stubborn sea mist.",2000-01-01,10384,The Secret of Roan Inish +James Berardinelli,fresh,0111112,ReelViews,An enchanting story about magic and tradition that is suitable for family viewing.,2000-01-01,10384,The Secret of Roan Inish +Roger Ebert,fresh,0111112,Chicago Sun-Times,It is the exhilarating account of the way Fiona rediscovers her family's history and reclaims their island.,2000-01-01,10384,The Secret of Roan Inish +,fresh,0111112,Entertainment Weekly,,1995-02-03,10384,The Secret of Roan Inish +Owen Gleiberman,rotten,0111255,Entertainment Weekly,,2011-09-07,14986,The Specialist +Lisa Schwarzbaum,rotten,0111255,Entertainment Weekly,,2011-09-07,14986,The Specialist +,none,0111255,Variety,,2009-03-26,14986,The Specialist +Derek Adams,none,0111255,Time Out,,2006-02-09,14986,The Specialist +Caryn James,none,0111255,New York Times,,2003-05-20,14986,The Specialist +Christopher Harris,rotten,0111255,Globe and Mail,"This movie is a stinker in every way, from the one-dimensional acting to the idiot dialogue to the surprisingly monotonous storyline.",2002-04-12,14986,The Specialist +Roger Ebert,rotten,0111255,Chicago Sun-Times,"The Specialist is one of those films that forces the characters through torturous mazes of dialogue and action, to explain a plot that is so unlikely it's not worth the effort.",2000-01-01,14986,The Specialist +Hal Hinson,rotten,0111255,Washington Post,"With all the preening, posing and stretching, it's hard to know if The Specialist is an action movie or an exercise video.",2000-01-01,14986,The Specialist +James Berardinelli,rotten,0111255,ReelViews,This movie is excruciatingly dumb.,2000-01-01,14986,The Specialist +,rotten,0111255,Entertainment Weekly,,1994-10-07,14986,The Specialist +Owen Gleiberman,rotten,0111282,Entertainment Weekly,,2011-09-07,12303,Stargate +Leonard Klady,none,0111282,Variety,,2008-07-22,12303,Stargate +Derek Adams,none,0111282,Time Out,,2006-06-24,12303,Stargate +Stephanie Dolgoff,none,0111282,New York Times,,2003-05-28,12303,Stargate +Roger Ebert,rotten,0111282,Chicago Sun-Times,"The movie Ed Wood, about the worst director of all time, was made to prepare us for Stargate.",2000-01-01,12303,Stargate +Hal Hinson,fresh,0111282,Washington Post,"[A] loopy, mostly entertaining sci-fi adventure.",2000-01-01,12303,Stargate +James Berardinelli,rotten,0111282,ReelViews,A cinematic fireworks show without the grand finale.,2000-01-01,12303,Stargate +Mick LaSalle,none,0111282,San Francisco Chronicle,,2000-01-01,12303,Stargate +,rotten,0111282,Entertainment Weekly,,1994-10-28,12303,Stargate +,none,0089961,Variety,,2009-03-26,10270,Santa Claus +Derek Adams,none,0089961,Time Out,,2006-06-24,10270,Santa Claus +Vincent Canby,none,0089961,New York Times,,2003-05-20,10270,Santa Claus +Roger Ebert,rotten,0089961,Chicago Sun-Times,,2001-10-30,10270,Santa Claus +Gene Siskel,fresh,0111161,Chicago Tribune,Simply marvelous entertainment.,2013-01-16,12989,The Shawshank Redemption +Richard Schickel,fresh,0111161,TIME Magazine,"Freeman, who is simply a great actor, a man who has never struck a false note in his career, both narrates this tale and anchors it with his authoritative playing.",2011-06-15,12989,The Shawshank Redemption +Leonard Klady,fresh,0111161,Variety,A testament to the human spirit...,2007-06-28,12989,The Shawshank Redemption +Jonathan Rosenbaum,fresh,0111161,Chicago Reader,A passing reference to 'The Count of Monte Cristo' offers a partial clue to what makes this movie compelling.,2007-06-28,12989,The Shawshank Redemption +Derek Adams,fresh,0111161,Time Out,"...a throwback to the kind of serious, literate drama Hollywood used to make.",2006-06-24,12989,The Shawshank Redemption +,fresh,0111161,Boston Globe,"It's a simple story elegantly, cleverly told, not to mention expertly acted.",2004-09-24,12989,The Shawshank Redemption +Janet Maslin,fresh,0111161,New York Times,"Without a single riot scene or horrific effect, it tells a slow, gentle story of camaraderie and growth, with an ending that abruptly finds poetic justice in what has come before.",2003-05-20,12989,The Shawshank Redemption +Peter Travers,fresh,0111161,Rolling Stone,It's the no-bull performances that hold back the flood of banalities.,2001-05-12,12989,The Shawshank Redemption +Desson Thomson,rotten,0111161,Washington Post,It wanders down subplots at every opportunity and ignores an abundance of narrative exit points before settling on the aforementioned finale.,2000-01-01,12989,The Shawshank Redemption +Roger Ebert,fresh,0111161,Chicago Sun-Times,"If the film is perhaps a little slow in its middle passages, maybe that is part of the idea, too, to give us a sense of the leaden passage of time, before the glory of the final redemption.",2000-01-01,12989,The Shawshank Redemption +James Berardinelli,fresh,0111161,ReelViews,"The Shawshank Redemption is all about hope and, because of that, watching it is both uplifting and cathartic.",2000-01-01,12989,The Shawshank Redemption +Rita Kempley,fresh,0111161,Washington Post,"It's a devoutly old-fashioned, spiritually uplifting prison drama about two lifers who must break their emotional shackles before they can finally become free men.",2000-01-01,12989,The Shawshank Redemption +Peter Stack,fresh,0111161,San Francisco Chronicle,"Thanks to fine performances and beautiful photography, you get that inspirational jump-start frame after frame.",2000-01-01,12989,The Shawshank Redemption +Owen Gleiberman,fresh,0111161,Entertainment Weekly,"With his gift for rapt pauses, for caressing just the right syllable, Freeman can make a speech like that sound like one of the philosophical nuggets of the ages.",1994-09-10,12989,The Shawshank Redemption +Lisa Schwarzbaum,fresh,0111149,Entertainment Weekly,,2011-09-07,16178,Shallow Grave +Derek Adams,none,0111149,Time Out,,2006-06-24,16178,Shallow Grave +Janet Maslin,none,0111149,New York Times,,2003-05-20,16178,Shallow Grave +,none,0111149,Globe and Mail,,2002-04-12,16178,Shallow Grave +Peter Rainer,rotten,0111149,Los Angeles Times,"Class has its place, but some of us prefer our cut-'em-ups a little more lowdown.",2001-02-13,16178,Shallow Grave +Stanley Kauffmann,fresh,0111149,The New Republic,The three ... especially Fox--do well.,2000-01-01,16178,Shallow Grave +Roger Ebert,rotten,0111149,Chicago Sun-Times,"Since no reasonable person can remotely hope to identity with Juliet, David or Alex, the whole case drops through.",2000-01-01,16178,Shallow Grave +John Hartl,rotten,0111149,Film.com,"The situation is contrived, the relationships unlikely, the characters one-dimensional.",2000-01-01,16178,Shallow Grave +Desson Thomson,rotten,0111149,Washington Post,"Fox, McGregor and Eccleston merely mill around the screen like the kind of living-dead folks we usually see rising from the grave.",2000-01-01,16178,Shallow Grave +James Berardinelli,fresh,0111149,ReelViews,A reasonably enjoyable (for those captivated by this sort of thing) black comedy/noir thriller.,2000-01-01,16178,Shallow Grave +Lucy Mohl,fresh,0111149,Film.com,Boyle's cool manner and the performances ultimately ratchet Shallow Grave past the ranks of standard thriller fare.,2000-01-01,16178,Shallow Grave +Edward Guthmann,fresh,0111149,San Francisco Chronicle,"A tight little thriller, filled with exhilarating twists, that quickly establishes its artistic contract with the audience.",2000-01-01,16178,Shallow Grave +Hal Hinson,rotten,0111149,Washington Post,[The characters] become less and less interesting as the movie progresses.,2000-01-01,16178,Shallow Grave +,fresh,0111149,Entertainment Weekly,,1995-06-01,16178,Shallow Grave +Todd McCarthy,none,0108260,Variety,,2009-03-26,17868,Suture +Geoff Andrew,none,0108260,Time Out,,2006-02-09,17868,Suture +Caryn James,none,0108260,New York Times,,2003-05-20,17868,Suture +Roger Ebert,rotten,0108260,Chicago Sun-Times,,2000-01-01,17868,Suture +James Berardinelli,rotten,0108260,ReelViews,,2000-01-01,17868,Suture +Desson Thomson,none,0108260,Washington Post,,2000-01-01,17868,Suture +,rotten,0108260,Entertainment Weekly,,1993-09-14,17868,Suture +,none,0106966,Variety,,2012-02-23,410146943,Fresa y chocolate +Owen Gleiberman,fresh,0106966,Entertainment Weekly,,2011-09-07,410146943,Fresa y chocolate +Tom Huddlestone,fresh,0106966,Time Out,"While the central story may lack edge, 'Strawberry and Chocolate' remains an entertaining, thoughtful take on the absurdity of confusing sexuality and politics.",2009-07-03,410146943,Fresa y chocolate +David Stratton,none,0106966,Variety,,2008-07-22,410146943,Fresa y chocolate +Caryn James,none,0106966,New York Times,,2003-05-20,410146943,Fresa y chocolate +,none,0106966,Los Angeles Times,,2001-02-13,410146943,Fresa y chocolate +Roger Ebert,fresh,0106966,Chicago Sun-Times,,2000-01-01,410146943,Fresa y chocolate +Edward Guthmann,none,0106966,San Francisco Chronicle,,2000-01-01,410146943,Fresa y chocolate +James Berardinelli,fresh,0106966,ReelViews,,2000-01-01,410146943,Fresa y chocolate +Stanley Kauffmann,none,0106966,The New Republic,,2000-01-01,410146943,Fresa y chocolate +Desson Thomson,none,0106966,Washington Post,,2000-01-01,410146943,Fresa y chocolate +Geoff Andrew,fresh,0114594,Time Out,The picture's raison d'etre has to be Spacey's 'loud and nasty' performance: he's the sort of actor who grabs you by the throat and beats you about the head without ever lifting his feet from the desk.,2006-06-24,15161,Swimming with Sharks +Janet Maslin,fresh,0114594,New York Times,"Mr. Spacey's Buddy is a caricature so dazzling that even Buddy might have to say something nice about it: cool, withering, studiously suave, and spurred by impulses that might seem peevish even in a 2-year-old child.",2003-05-20,15161,Swimming with Sharks +Liam Lacey,rotten,0114594,Globe and Mail,"This excessively talky, incoherently plotted, would-be film noir is not very good.",2002-04-12,15161,Swimming with Sharks +Peter Rainer,rotten,0114594,Los Angeles Times,"To outsiders, all this rage and gnashing of teeth may seem silly and self-absorbed.",2001-02-13,15161,Swimming with Sharks +Mary Brennan,rotten,0114594,Film.com,"Sharks is a one-joke movie, and the joke wears thin less than halfway through.",2000-01-01,15161,Swimming with Sharks +Roger Ebert,fresh,0114594,Chicago Sun-Times,"[Huang's] plot may be overwritten and the ending may be less than satisfying, but his eye and ear are right.",2000-01-01,15161,Swimming with Sharks +Peter Stack,rotten,0114594,San Francisco Chronicle,"The film has no subtlety, so the one-dimensional story comes across as a sophomoric, pointless tirade.",2000-01-01,15161,Swimming with Sharks +Tom Keogh,fresh,0114594,Film.com,"When it comes time to take this drama to another level, addressing the darker and more pertinent issue of why Guy puts up with it and what he wants out of life, Huang is right there.",2000-01-01,15161,Swimming with Sharks +John Hartl,fresh,0114594,Film.com,"Kevin Spacey, who is the reason to see the picture, is hilariously ruthless as Buddy Ackerman.",2000-01-01,15161,Swimming with Sharks +James Berardinelli,rotten,0114594,ReelViews,"There doesn't seem to be enough material here to satisfy a full length feature, and the movie, which starts with such promise, begins to drag around its midpoint.",2000-01-01,15161,Swimming with Sharks +Lucy Mohl,fresh,0114594,Film.com,"A dazzling, frightening tour de force by Kevin Spacey.",2000-01-01,15161,Swimming with Sharks +,fresh,0114594,Entertainment Weekly,"When Spacey goes ballistic, only to freeze the nitroglycerine in his veins a moment later, you don't want to look anywhere else.",1995-03-21,15161,Swimming with Sharks +Owen Gleiberman,rotten,0111309,Entertainment Weekly,,2011-09-07,14334,The Sum of Us +David Stratton,none,0111309,Variety,,2011-06-23,14334,The Sum of Us +Janet Maslin,none,0111309,New York Times,,2003-05-20,14334,The Sum of Us +Kevin Thomas,none,0111309,Los Angeles Times,,2001-02-13,14334,The Sum of Us +Edward Guthmann,none,0111309,San Francisco Chronicle,,2000-01-01,14334,The Sum of Us +Roger Ebert,rotten,0111309,Chicago Sun-Times,,2000-01-01,14334,The Sum of Us +Rita Kempley,none,0111309,Washington Post,,2000-01-01,14334,The Sum of Us +James Berardinelli,fresh,0111309,ReelViews,,2000-01-01,14334,The Sum of Us +Daniel M. Kimmel,rotten,0113936,Variety,"There was a time when the National Lampoon name on a movie meant something, back in the days of Animal House and Vacation. Now it means something else.",2005-05-08,14646,Senior Trip +Janet Maslin,none,0113936,New York Times,,2003-05-20,14646,Senior Trip +David Kronke,none,0113936,Los Angeles Times,,2002-08-15,14646,Senior Trip +Peter Stack,none,0113936,San Francisco Chronicle,,2000-01-01,14646,Senior Trip +Lisa Schwarzbaum,fresh,0110081,Entertainment Weekly,,2011-09-07,19013,Huozhe +Derek Elley,none,0110081,Variety,,2009-03-26,19013,Huozhe +Geoff Andrew,none,0110081,Time Out,,2006-06-24,19013,Huozhe +Caryn James,none,0110081,New York Times,,2003-05-20,19013,Huozhe +James Berardinelli,fresh,0110081,ReelViews,,2000-01-01,19013,Huozhe +Roger Ebert,fresh,0110081,Chicago Sun-Times,,2000-01-01,19013,Huozhe +Hal Hinson,none,0110081,Washington Post,,2000-01-01,19013,Huozhe +,fresh,0110081,Entertainment Weekly,,1994-05-18,19013,Huozhe +Bruce Diones,rotten,0114614,New Yorker,"Lori Petty does her tough-talking best to breathe some life into the comic-book action, but it's not enough.",2013-05-03,13494,Tank Girl +Owen Gleiberman,rotten,0114614,Entertainment Weekly,An aspiring cult film that would rather be cute than dangerous.,2010-07-06,13494,Tank Girl +Leonard Klady,fresh,0114614,Variety,"The movie version of the graphic comic book is a classic case of kitchen-sink filmmaking, in which the principals have thrown everything into the stew, hoping enough will stick to the audience.",2009-03-26,13494,Tank Girl +Jonathan Rosenbaum,fresh,0114614,Chicago Reader,Lori Petty does a nice job in the title role of this enjoyable 1995 feature based on the postapocalyptic SF comic book and set in the year 2033.,2007-04-18,13494,Tank Girl +Geoff Andrew,rotten,0114614,Time Out,Generous souls may try to blame this travesty of the Deadline comic-strip on the studio execs who forced director Talalay to tone down and re-edit her cut.,2006-02-09,13494,Tank Girl +Janet Maslin,fresh,0114614,New York Times,"Chief among its strong points is Lori Petty, a buzz-cut fashion plate in a Prozac necklace, who brings the necessary gusto to Tank Girl's flippancy.",2003-05-20,13494,Tank Girl +Kenneth Turan,rotten,0114614,Los Angeles Times,"Watching Tank Girl is as disorienting as waking up in someone else's bad dream. You want to get out as fast as possible, but all the exits seem to be blocked.",2001-02-13,13494,Tank Girl +Desson Thomson,rotten,0114614,Washington Post,"The story, which feels like a disjointed collection of low-budget rock videos more than a coherent plot, just rocks idly on its pseudo-fashionable backside.",2000-01-01,13494,Tank Girl +Richard Harrington,fresh,0114614,Washington Post,The result is a bracing film that's halfway between a string of MTV videos (Courtney Love put together the edgy soundtrack) and some of that network's over-the-top cartoons.,2000-01-01,13494,Tank Girl +James Berardinelli,rotten,0114614,ReelViews,"One of those chew-the-popcorn, munch-the-candy flicks - - the kind you go into expecting to have a good time, but nothing more. Given those expectations, disappointment is as unlikely as boredom.",2000-01-01,13494,Tank Girl +Roger Ebert,rotten,0114614,Chicago Sun-Times,"Enormous energy went into this movie. I could not, however, care about it for much more than a moment at a time, and after awhile its manic energy wore me down.",2000-01-01,13494,Tank Girl +Joe Leydon,none,0114608,Variety,,2012-02-23,15950,Tales from the Crypt: Demon Knight +Owen Gleiberman,rotten,0114608,Entertainment Weekly,,2011-09-07,15950,Tales from the Crypt: Demon Knight +Variety Staff,rotten,0114608,Variety,Pic is neither funny enough nor scary enough to be fully satisfying as either a shocker or a spoof.,2008-05-19,15950,Tales from the Crypt: Demon Knight +,rotten,0114608,Time Out,"The first in a series, but standards will need to impove if it's to survive.",2006-06-24,15950,Tales from the Crypt: Demon Knight +Stephen Holden,fresh,0114608,New York Times,"Between scenes of splattering gore in which severed heads literally roll across the floor, the movie has a good time spoofing itself and a gallery of mostly sleazy characters who confront a crew of blood-thirsty demons.",2003-05-20,15950,Tales from the Crypt: Demon Knight +David Kronke,rotten,0114608,Los Angeles Times,"Next time out, let's hope it involves a story that can stand on its own, without having to be propped up by the Crypt Keeper's silly patter.",2001-02-21,15950,Tales from the Crypt: Demon Knight +Edward Guthmann,rotten,0114608,San Francisco Chronicle,"The movie isn't particularly well-paced, and I found it dull.",2000-01-01,15950,Tales from the Crypt: Demon Knight +James Berardinelli,rotten,0114608,ReelViews,"Good entertainment stretched to three times its natural length is rarely three times better, but bad entertainment dragged out that long will typically be three times worse.",2000-01-01,15950,Tales from the Crypt: Demon Knight +Richard Harrington,rotten,0114608,Washington Post,There's still a lot of filler in this chiller.,2000-01-01,15950,Tales from the Crypt: Demon Knight +,rotten,0114608,Entertainment Weekly,,1995-01-13,15950,Tales from the Crypt: Demon Knight +Lisa Schwarzbaum,fresh,0111280,Entertainment Weekly,,2011-09-07,11936,Star Trek: Generations +Leonard Klady,fresh,0111280,Variety,"Star Trek Generations has enough verve, imagination and familiarity to satisfy three decades' worth of Trekkers raised on several incarnations of the television skein.",2008-05-19,11936,Star Trek: Generations +Jonathan Rosenbaum,rotten,0111280,Chicago Reader,At least the special effects and outer space vistas are more handsome than usual.,2008-05-19,11936,Star Trek: Generations +,rotten,0111280,Time Out,The series' dullest instalment.,2006-02-09,11936,Star Trek: Generations +Peter M. Nichols,fresh,0111280,New York Times,"Generations is predictably flabby and impenetrable in places, but it has enough pomp, spectacle and high-tech small talk to keep the franchise afloat.",2003-05-20,11936,Star Trek: Generations +Desson Thomson,fresh,0111280,Washington Post,A rich and absorbing saga.,2000-01-01,11936,Star Trek: Generations +James Berardinelli,rotten,0111280,ReelViews,"Mostly, Generations spends its running length searching for, and never completely finding, its niche.",2000-01-01,11936,Star Trek: Generations +Rita Kempley,fresh,0111280,Washington Post,A flawed but funky adventure involving a time warp known as the Nexus.,2000-01-01,11936,Star Trek: Generations +Roger Ebert,rotten,0111280,Chicago Sun-Times,Here is a movie so concerned with in-jokes and updates for Trekkers that it can barely tear itself away long enough to tell a story.,2000-01-01,11936,Star Trek: Generations +Lucy Mohl,fresh,0111280,Film.com,"The meeting of Patrick Stewart's Jean Luc Picard and William Shatner's James T. Kirk is worth the price of admission or video rental: it's the clash of the titans, Shakespeare meets the Sixties.",2000-01-01,11936,Star Trek: Generations +,fresh,0111280,Entertainment Weekly,,1994-11-18,11936,Star Trek: Generations +Owen Gleiberman,fresh,0114609,Entertainment Weekly,,2011-09-07,14111,Tales from the Hood +Joe Leydon,none,0114609,Variety,,2009-03-26,14111,Tales from the Hood +,none,0114609,Time Out,,2006-06-24,14111,Tales from the Hood +Stephen Holden,none,0114609,New York Times,,2003-05-20,14111,Tales from the Hood +Mick LaSalle,none,0114609,San Francisco Chronicle,,2000-01-01,14111,Tales from the Hood +,rotten,0114609,USA Today,[This] predictably trite Tales isn't very scary.,2000-01-01,14111,Tales from the Hood +Richard Harrington,none,0114609,Washington Post,,2000-01-01,14111,Tales from the Hood +,fresh,0114609,Entertainment Weekly,,1995-05-24,14111,Tales from the Hood +Owen Gleiberman,fresh,0111454,Entertainment Weekly,,2011-09-07,12190,Tom & Viv +Derek Elley,none,0111454,Variety,,2008-07-07,12190,Tom & Viv +Geoff Andrew,none,0111454,Time Out,,2006-06-24,12190,Tom & Viv +Caryn James,none,0111454,New York Times,,2003-05-20,12190,Tom & Viv +Edward Guthmann,none,0111454,San Francisco Chronicle,,2002-06-18,12190,Tom & Viv +Hal Hinson,none,0111454,Washington Post,,2000-01-01,12190,Tom & Viv +James Berardinelli,rotten,0111454,ReelViews,,2000-01-01,12190,Tom & Viv +Stanley Kauffmann,none,0111454,The New Republic,,2000-01-01,12190,Tom & Viv +,fresh,0111454,Entertainment Weekly,,1994-12-02,12190,Tom & Viv +Janet Maslin,none,0114852,New York Times,,2003-05-20,15105,Village of the Damned +Rick Groen,rotten,0114852,Globe and Mail,There's nothing more static than a stalled fright vehicle.,2002-04-12,15105,Village of the Damned +Kevin Thomas,fresh,0114852,Los Angeles Times,"A good-looking, well-wrought film with some knockout special effects, some dark humor and crisp portrayals.",2001-02-13,15105,Village of the Damned +Richard Harrington,rotten,0114852,Washington Post,"Carpenter, whose batting average is dipping dangerously low, shows no grasp of character development, plot line or time passage.",2000-01-01,15105,Village of the Damned +Peter Stack,rotten,0114852,San Francisco Chronicle,A trip to a village of the darned tedious.,2000-01-01,15105,Village of the Damned +James Berardinelli,fresh,0114852,ReelViews,"An enjoyable, if obviously-flawed, amalgamation of horror and science fiction.",2000-01-01,15105,Village of the Damned +Owen Gleiberman,rotten,0114694,Entertainment Weekly,,2011-09-07,12535,Tommy Boy +Brian Lowry,rotten,0114694,Variety,Stupid is apparently in.,2008-05-06,12535,Tommy Boy +,rotten,0114694,Time Out,It's some indication of the wit involved that Farley is reduced to cracking fat jokes at his own expense.,2006-02-09,12535,Tommy Boy +Caryn James,rotten,0114694,New York Times,The most peculiar aspect of the movie is that some of it is played straight.,2003-05-20,12535,Tommy Boy +Kevin Thomas,fresh,0114694,Los Angeles Times,Tommy Boy is a good belly laugh of a movie.,2001-02-13,12535,Tommy Boy +Desson Thomson,rotten,0114694,Washington Post,"As a sketch for a Saturday Night Live show, it would have been a tour de force. But as part of this rather unimaginative movie, it's just a bit with a burning desk.",2000-01-01,12535,Tommy Boy +Roger Ebert,rotten,0114694,Chicago Sun-Times,"The movie is an assembly of cliches and obligatory scenes from dozens of other movies, all its better.",2000-01-01,12535,Tommy Boy +,rotten,0114694,Entertainment Weekly,,1995-03-31,12535,Tommy Boy +Owen Gleiberman,fresh,0111590,Entertainment Weekly,"It's amazing it has taken Wallace Shawn, Andre Gregory, and director Louis Malle more than 10 years to collaborate again. It was worth the wait, though.",2010-07-06,11429,Vanya on 42nd Street +Todd McCarthy,rotten,0111590,Variety,"The performances are precise, the language is alive and well spoken and the setting is striking, but Vanya on 42nd Street still suffers rather heavily from the limitations of filmed theater.",2008-08-12,11429,Vanya on 42nd Street +Jonathan Rosenbaum,fresh,0111590,Chicago Reader,"Malle adeptly eases us into the play so we can't tell at what precise moment Chekhov takes over, an ambiguity that becomes the film's triumph as well as its key limitation.",2008-08-12,11429,Vanya on 42nd Street +,fresh,0111590,Time Out,There's more power here than in all the multi-million dollar fireworks of Hollywood.,2006-01-26,11429,Vanya on 42nd Street +Janet Maslin,fresh,0111590,New York Times,"The elegant understatement of this production turns it into a livelier experiment, a fluent, gripping version of one of Chekhov's more elusive plays.",2003-05-20,11429,Vanya on 42nd Street +Peter Travers,fresh,0111590,Rolling Stone,"This live-wire Vanya, freshly observed for the '90s, is fiercely funny, touching and vital.",2001-05-12,11429,Vanya on 42nd Street +Hal Hinson,fresh,0111590,Washington Post,"In terms of dramatic action, almost nothing happens, and yet Malle's fluid, invisible style carries us deep into the hearts and minds of these characters.",2000-01-01,11429,Vanya on 42nd Street +Edward Guthmann,fresh,0111590,San Francisco Chronicle,"A lovely, intimate rethinking of Anton Chekhov's Russian classic Uncle Vanya.",2000-01-01,11429,Vanya on 42nd Street +James Berardinelli,fresh,0111590,ReelViews,Vanya on 42nd Street may be the most innovative and successful straight film adaptation of any play.,2000-01-01,11429,Vanya on 42nd Street +Roger Ebert,fresh,0111590,Chicago Sun-Times,"A film which reduces Chekhov's ""Uncle Vanya"" to its bare elements: loneliness, wasted lives, romantic hope and despair. To add elaborate sets, costumes and locations to this material would only dilute it.",2000-01-01,11429,Vanya on 42nd Street +Owen Gleiberman,fresh,0114788,Entertainment Weekly,,2011-09-07,15641,Underneath +Todd McCarthy,none,0114788,Variety,,2009-03-26,15641,Underneath +Geoff Andrew,none,0114788,Time Out,,2006-06-24,15641,Underneath +Caryn James,rotten,0114788,New York Times,Too chaotic to work as a thriller.,2004-08-30,15641,Underneath +,none,0114788,Globe and Mail,,2002-04-12,15641,Underneath +Kenneth Turan,rotten,0114788,Los Angeles Times,"What The Underneath lacks is the kind of emotional connection that the best film noirs have. Instead of involving, this film is distancing, too given to admiring its own shiny surface.",2001-02-13,15641,Underneath +James Berardinelli,fresh,0114788,ReelViews,A departure from the run-of- the-mill thriller.,2000-01-01,15641,Underneath +Joe Brown,fresh,0114788,Washington Post,"Downbeat, laconically funny, arty (maybe a touch too arty), it's simmering, smoldering lowlife fun, like a good episode of Twin Peaks without the self-conscious weirdness.",2000-01-01,15641,Underneath +Rita Kempley,rotten,0114788,Washington Post,"As tales of sex and sinfulness go, Soderbergh's fourth film doesn't deliver.",2000-01-01,15641,Underneath +Stanley Kauffmann,none,0114788,The New Republic,,2000-01-01,15641,Underneath +Roger Ebert,rotten,0114788,Chicago Sun-Times,"Why did Soderbergh want to remake an old film noir, anyway? Take out the crime elements and flesh out the human elements here, and you have a more interesting movie, I think.",2000-01-01,15641,Underneath +Steven Winn,rotten,0114788,San Francisco Chronicle,The film may turn out to have been more of a stylistic adventure for the director than for an audience.,2000-01-01,15641,Underneath +,fresh,0114788,Entertainment Weekly,,1995-04-28,15641,Underneath +,none,0080931,Chicago Reader,,2002-04-07,15206,Incubo sulla città contaminata +Owen Gleiberman,fresh,0108550,Entertainment Weekly,,2011-09-07,10139,What's Eating Gilbert Grape +Jonathan Rosenbaum,rotten,0108550,Chicago Reader,"Even if you have a taste as I do for movies about dysfunctional families, you may be a little put off by the Grapes.",2010-02-08,10139,What's Eating Gilbert Grape +Richard Corliss,fresh,0108550,TIME Magazine,"Suggests that the true heroes are those people who day by day must tend to misfits, and do so with love, tenacity and a determination not to go terminally sour in the process.",2009-06-19,10139,What's Eating Gilbert Grape +,fresh,0108550,Time Out,"Hallstrom's finally struck a chord with the Americans, though it's much the same cocktail of whimsy and worry, the eccentric and the banal, that he's been mixing all along.",2006-02-11,10139,What's Eating Gilbert Grape +Janet Maslin,fresh,0108550,New York Times,"Particularly impressive are the sweet, weirdly idyllic tone of Mr. Hallstrom's direction and Johnny Depp's tender, disarming performance as the long-suffering Gilbert Grape.",2003-05-20,10139,What's Eating Gilbert Grape +Todd McCarthy,fresh,0108550,Variety,Swedish director Lasse Hallstrom and his fine cast have endowed the story with a good deal of behavioral truth and unstressed comedy.,2001-02-13,10139,What's Eating Gilbert Grape +Desson Thomson,rotten,0108550,Washington Post,Director Lasse Halstrom and cinematographer Sven Nykvist do their best to disguise the predictability with their own grace notes. But all the music in the world can't hide a tone this false.,2000-01-01,10139,What's Eating Gilbert Grape +Hal Hinson,rotten,0108550,Washington Post,"There is a good idea for a movie hiding here, but Halstrom has buried it beneath a load of charmless shtick.",2000-01-01,10139,What's Eating Gilbert Grape +Roger Ebert,fresh,0108550,Chicago Sun-Times,One of the most enchanting movies of the year.,2000-01-01,10139,What's Eating Gilbert Grape +James Berardinelli,fresh,0108550,ReelViews,Well-written (albeit a little too long) and competently acted.,2000-01-01,10139,What's Eating Gilbert Grape +,fresh,0108550,Entertainment Weekly,,1993-12-25,10139,What's Eating Gilbert Grape +Lisa Schwarzbaum,rotten,0114857,Entertainment Weekly,,2011-09-07,14689,Virtuosity +Godfrey Cheshire,none,0114857,Variety,,2009-03-26,14689,Virtuosity +Janet Maslin,none,0114857,New York Times,,2003-05-20,14689,Virtuosity +Mick LaSalle,rotten,0114857,San Francisco Chronicle,The presence of Washington lends the picture a much-needed dose of authenticity. But in the end Virtuosity is disconnected and uninvolving.,2002-06-18,14689,Virtuosity +Peter Travers,rotten,0114857,Rolling Stone,"Though Virtuosity connects all the dots to give audiences a roller-coaster ride, the movie begets nothing new: It's stillborn.",2001-05-12,14689,Virtuosity +Kevin Thomas,fresh,0114857,Los Angeles Times,"Virtuosity doesn't always compute, but like last summer's Speed, it is far more fully realized cinematically than many less commercial, more serious pictures.",2001-02-13,14689,Virtuosity +James Berardinelli,rotten,0114857,ReelViews,"Given Washington's presence and the promise of a virtual reality action story, Virtuosity has some appeal -- provided, of course, the viewers aren't selective.",2000-01-01,14689,Virtuosity +Hal Hinson,rotten,0114857,Washington Post,"The world of Virtuosity may be spanking new, but the ideas are yesterday's news.",2000-01-01,14689,Virtuosity +Mike Clark,rotten,0114857,USA Today,Someone should tell Hollywood that the mass-killer genre is dead and that its virtual reality counterpart is already wheezing.,2000-01-01,14689,Virtuosity +Roger Ebert,fresh,0114857,Chicago Sun-Times,Virtuosity is an example of a struggle that goes on in Hollywood between formula and invention.,2000-01-01,14689,Virtuosity +,rotten,0114857,Entertainment Weekly,,1995-08-04,14689,Virtuosity +Lisa Schwarzbaum,fresh,0114924,Entertainment Weekly,Bullock just about knocks herself exhausted being winsome and lovable.,2011-09-07,10076,While You Were Sleeping +Jonathan Rosenbaum,fresh,0114924,Chicago Reader,The film's casual warmth may make you tolerate some of the shortcomings -- especially since Bullock seems to be having such a fine time with her first starring role.,2009-02-09,10076,While You Were Sleeping +Leonard Klady,fresh,0114924,Variety,Director Jon Turteltaub has a smooth style suited to classic farce and knows just how to pace the material to accentuate the positive.,2008-12-10,10076,While You Were Sleeping +,fresh,0114924,Time Out,As cute and cuddly a bedtime story as anyone could wish for.,2006-01-26,10076,While You Were Sleeping +Janet Maslin,fresh,0114924,New York Times,"This is a formula film, but it has the kind of good cheer and fine tuning that occasionally give slickness a good name.",2003-05-20,10076,While You Were Sleeping +,fresh,0114924,USA Today,,2001-02-13,10076,While You Were Sleeping +Peter Rainer,fresh,0114924,Los Angeles Times,"Bullock is a genuinely engaging performer, which at least gives the treacle some minty freshness.",2001-02-13,10076,While You Were Sleeping +Kevin McManus,rotten,0114924,Washington Post,Cringe-inducing moments abound.,2000-01-01,10076,While You Were Sleeping +Peter Stack,fresh,0114924,San Francisco Chronicle,"A lighthearted, charming nougat for romantics.",2000-01-01,10076,While You Were Sleeping +Roger Ebert,fresh,0114924,Chicago Sun-Times,"A feel-good film, warm and good-hearted.",2000-01-01,10076,While You Were Sleeping +Lucy Mohl,fresh,0114924,Film.com,"A consistently adorable, if utterly predictable, piece of fluff.",2000-01-01,10076,While You Were Sleeping +Richard Schickel,fresh,0114924,TIME Magazine,Recaptures the true spirit of the best kind of modern fairy tale.,2000-01-01,10076,While You Were Sleeping +James Berardinelli,fresh,0114924,ReelViews,A perfect example of this unoriginal-but-enjoyable type of film making.,2000-01-01,10076,While You Were Sleeping +Hal Hinson,rotten,0114924,Washington Post,"A sappy, negligible, thoroughly innocuous romantic comedy vehicle for Sandra Bullock.",2000-01-01,10076,While You Were Sleeping +Leonard Klady,none,0109655,Variety,,2009-03-26,104749071,Double Happiness +Janet Maslin,none,0109655,New York Times,,2003-05-20,104749071,Double Happiness +Peter Stack,none,0109655,San Francisco Chronicle,,2002-06-18,104749071,Double Happiness +Kevin Thomas,none,0109655,Los Angeles Times,,2001-02-13,104749071,Double Happiness +James Berardinelli,fresh,0109655,ReelViews,,2000-01-01,104749071,Double Happiness +Rita Kempley,none,0109655,Washington Post,,2000-01-01,104749071,Double Happiness +Roger Ebert,fresh,0109655,Chicago Sun-Times,,2000-01-01,104749071,Double Happiness +Joe Baltake,none,0109655,Sacramento Bee,,2000-01-01,104749071,Double Happiness +Jonathan Rosenbaum,rotten,0110598,Chicago Reader,This movie only shows true tact and understanding when it comes to flattering the audience; everyone on-screen is strictly up for grabs.,2012-04-09,13012,Muriel's Wedding +Owen Gleiberman,rotten,0110598,Entertainment Weekly,The trouble with the movie is that there's nothing to Muriel but her false dreams: We never quite glimpse the woman they're hiding.,2011-09-07,13012,Muriel's Wedding +Todd McCarthy,rotten,0110598,Variety,"Most of the action is played for broad laughs, and Hogan demonstrates the ability to generate them, even if the humor is base and often cruel, making fun of people's looks and ineptitude.",2009-03-26,13012,Muriel's Wedding +Geoff Andrew,fresh,0110598,Time Out,"An engaging, funny and sometimes surprisingly tough romantic comedy.",2006-02-09,13012,Muriel's Wedding +Janet Maslin,fresh,0110598,New York Times,"[A] gleeful, gaudy tribute to one ungainly misfit and her determination.",2003-05-20,13012,Muriel's Wedding +Peter Stack,fresh,0110598,San Francisco Chronicle,"There's poignant drama in this brash, sometimes overstated film, and Muriel's transformation is truly touching.",2002-06-18,13012,Muriel's Wedding +Hal Hinson,rotten,0110598,Washington Post,"It's a bright, buoyant comedy about a very sad young woman -- and, regrettably, the mix just doesn't work.",2000-01-01,13012,Muriel's Wedding +James Berardinelli,fresh,0110598,ReelViews,"Muriel's Wedding isn't a perfect comedy, tragedy, or drama, but it contains enough original elements of each to make it worth a look.",2000-01-01,13012,Muriel's Wedding +Roger Ebert,fresh,0110598,Chicago Sun-Times,"The film's good heart keeps it from ever making fun of Muriel, although there are moments that must have been tempting.",2000-01-01,13012,Muriel's Wedding +Leonard Klady,none,0112435,Variety,,2009-03-26,11628,The Baby-Sitters Club +Caryn James,rotten,0112435,New York Times,"The Baby-Sitters Club is like an average installment of the series, aimed at girls who can't get enough of their fictional friends in any form.",2003-05-20,11628,The Baby-Sitters Club +Kevin Thomas,fresh,0112435,Los Angeles Times,A beautiful film that possesses the power to enchant all ages.,2001-02-13,11628,The Baby-Sitters Club +Edward Guthmann,rotten,0112435,San Francisco Chronicle,85 minutes doesn't provide an adequate format for developing seven distinct characters.,2000-01-01,11628,The Baby-Sitters Club +Mike Clark,rotten,0112435,USA Today,"Were there not 125 million of Ann M. Martin's Club books currently in print, this cinematically destitute movie might have gone directly to video.",2000-01-01,11628,The Baby-Sitters Club +Hal Hinson,fresh,0112435,Washington Post,"A colorful, buoyant, loving tribute to the notion of girlfriends forever.",2000-01-01,11628,The Baby-Sitters Club +James Berardinelli,rotten,0112435,ReelViews,"Fans and would-be fans of Ann M. Martin's books may be enthralled, but, for the rest of us, The Baby-Sitters Club is something of an endurance contest.",2000-01-01,11628,The Baby-Sitters Club +Eve Zibart,fresh,0112435,Washington Post,"Though the script is predictable, it's not too clumsy.",2000-01-01,11628,The Baby-Sitters Club +Owen Gleiberman,rotten,0109040,Entertainment Weekly,Carrey suggests an escaped mental patient impersonating a game-show host.,2010-11-08,10425,Ace Ventura: Pet Detective +Michael Sragow,rotten,0109040,New Yorker,"[Carrey's] comic language is made up of accent marks, not characters; instead of inhabiting a scene, he swallows it up and spits it out in manic doodles.",2010-11-08,10425,Ace Ventura: Pet Detective +Variety Staff,rotten,0109040,Variety,"Unlike famous bumbling sleuths such as Inspector Clouseau and Lt. Frank Drebin, there's no consistency to the ""Ace"" character, and the whole movie shifts in tone from social satire to sophomoric pranks and traditional copshow plotting.",2010-11-08,10425,Ace Ventura: Pet Detective +Jonathan Rosenbaum,rotten,0109040,Chicago Reader,"The most obnoxious case of masculine swagger since Andrew Dice Clay, with just a tad of Paul Lynde thrown in for spice, Jim Carrey defies you not to bolt for the exit.",2010-11-08,10425,Ace Ventura: Pet Detective +,rotten,0109040,Time Out,Desperate stuff.,2006-02-09,10425,Ace Ventura: Pet Detective +Stephen Holden,rotten,0109040,New York Times,"Only a child could love Mr. Carrey's character, but that may be the point. The movie has the metabolism, logic and attention span of a peevish 6-year-old.",2003-05-20,10425,Ace Ventura: Pet Detective +James Berardinelli,rotten,0109040,ReelViews,The comic momentum sputters long before the running time has elapsed.,2000-01-01,10425,Ace Ventura: Pet Detective +Roger Ebert,rotten,0109040,Chicago Sun-Times,"I found the movie a long, unfunny slog through an impenetrable plot.",2000-01-01,10425,Ace Ventura: Pet Detective +Desson Thomson,fresh,0109040,Washington Post,Treat this project as you would a safari: It has its slow parts but the wildlife makes it worthwhile.,2000-01-01,10425,Ace Ventura: Pet Detective +Rita Kempley,fresh,0109040,Washington Post,"A riot from start to finish, Carrey's first feature comedy is as cheerfully bawdy as it is idiotically inventive.",2000-01-01,10425,Ace Ventura: Pet Detective +Lisa Schwarzbaum,fresh,0109045,Entertainment Weekly,,2011-09-07,16195,"The Adventures of Priscilla, Queen of the Desert" +James Berardinelli,fresh,0109045,ReelViews,,2008-06-10,16195,"The Adventures of Priscilla, Queen of the Desert" +Geoff Andrew,none,0109045,Time Out,,2006-06-24,16195,"The Adventures of Priscilla, Queen of the Desert" +Janet Maslin,none,0109045,New York Times,,2004-08-30,16195,"The Adventures of Priscilla, Queen of the Desert" +,none,0109045,Globe and Mail,,2002-04-12,16195,"The Adventures of Priscilla, Queen of the Desert" +Peter Travers,fresh,0109045,Rolling Stone,"In this roaringly comic and powerfully affecting road movie, Terence Stamp gives one of the year's best performances.",2001-05-12,16195,"The Adventures of Priscilla, Queen of the Desert" +Desson Thomson,none,0109045,Washington Post,,2000-01-01,16195,"The Adventures of Priscilla, Queen of the Desert" +Roger Ebert,rotten,0109045,Chicago Sun-Times,"It's too bad that the requirements of plotting require movies like this to crank up the event count, when actually what works is just the daily minutiae of Bernadette's life.",2000-01-01,16195,"The Adventures of Priscilla, Queen of the Desert" +Rita Kempley,none,0109045,Washington Post,,2000-01-01,16195,"The Adventures of Priscilla, Queen of the Desert" +Mick LaSalle,fresh,0109045,San Francisco Chronicle,Bernadette -- formerly Ralph -- turns out to be an excellent role for Stamp.,2000-01-01,16195,"The Adventures of Priscilla, Queen of the Desert" +Lucy Mohl,fresh,0109045,Film.com,The year's one clear candidate for future cult status.,2000-01-01,16195,"The Adventures of Priscilla, Queen of the Desert" +,fresh,0109045,Entertainment Weekly,,1994-08-10,16195,"The Adventures of Priscilla, Queen of the Desert" +Jonathan Rosenbaum,fresh,0106339,Chicago Reader,"There's nothing very profound here, but we do at least get a nice handling of period and milieu, and pretty good performances of the songs.",2007-09-10,15730,Backbeat +Peter Travers,fresh,0106339,Rolling Stone,What pulls you over the bum spots is the electrifying immediacy.,2007-09-10,15730,Backbeat +Todd McCarthy,rotten,0106339,Variety,"The early, pre-fame days of the Beatles are a great subject for a film, but the potential has been only partly realized in Backbeat.",2007-09-10,15730,Backbeat +Geoff Andrew,fresh,0106339,Time Out,"The music is loud and raw, but nevertheless evokes the excitement it generated.",2006-01-26,15730,Backbeat +Janet Maslin,fresh,0106339,New York Times,"Backbeat, which for all its pretensions can often be impressively canny and affectionate about its subject, is helped enormously by newly recorded versions of Beatle records.",2003-05-20,15730,Backbeat +Richard Harrington,fresh,0106339,Washington Post,"Working with a time period and two crucial characters probably not too familiar to less-than-avid Beatles or rock fans, Softley needs a great performance, and he gets it from Hart.",2000-01-01,15730,Backbeat +James Berardinelli,rotten,0106339,ReelViews,"Since director Iain Softley seems more interested in establishing tone and atmosphere than in creating vital personalities, he is unable to harness the full power of his story.",2000-01-01,15730,Backbeat +John F. Kelly,fresh,0106339,Washington Post,Softley is able to enliven a familiar story and famous characters. His cast helps him.,2000-01-01,15730,Backbeat +Roger Ebert,rotten,0106339,Chicago Sun-Times,"At the end, I felt cheated.",2000-01-01,15730,Backbeat +,fresh,0106339,Entertainment Weekly,,1994-04-15,15730,Backbeat +Owen Gleiberman,rotten,0104779,Entertainment Weekly,,2011-09-07,14209,Bitter Moon +Jonathan Rosenbaum,fresh,0104779,Chicago Reader,"It's a matter of some dispute whether Roman Polanski's letter to the darker side of the romantic impulse, but there's little question that this is his most emotionally complex movie.",2010-02-19,14209,Bitter Moon +Derek Elley,rotten,0104779,Variety,Strong playing by topliner Peter Coyote can't compensate for a script that's all over the map and a tone that veers from outre comedy to erotic game-playing.,2009-03-26,14209,Bitter Moon +Geoff Andrew,fresh,0104779,Time Out,"Rich and darkly disturbing, it's also wickedly entertaining.",2006-02-09,14209,Bitter Moon +Janet Maslin,fresh,0104779,New York Times,"This material obviously appeals to his sense of mischief, which remains alive and well.",2004-08-30,14209,Bitter Moon +Desson Thomson,rotten,0104779,Washington Post,"By turns funny, brilliant, shocking and downright terrible, this choppy, two-hour-plus voyage is for Polanski aficionados who don't mind watching their favorite, aging enfant terrible going gleefully under.",2000-01-01,14209,Bitter Moon +Roger Ebert,fresh,0104779,Chicago Sun-Times,"Well, of course Bitter Moon is wretched excess. But Polanski directs it without compromise or apology.",2000-01-01,14209,Bitter Moon +James Berardinelli,rotten,0104779,ReelViews,"I'm not sure what audience Polanski intended this movie for, but I'm obviously not in the target group.",2000-01-01,14209,Bitter Moon +Joe Brown,rotten,0104779,Washington Post,"During 2 1/2 hours of choppy waters, soured love affairs and seasickly moods, the controversial director's Lust Boat becomes the Loathe Boat. By then, it's way too late for Dramamine.",2000-01-01,14209,Bitter Moon +,rotten,0104779,Entertainment Weekly,,1992-01-01,14209,Bitter Moon +Owen Gleiberman,fresh,0109348,Entertainment Weekly,,2011-09-07,13381,Bullets Over Broadway +Jonathan Rosenbaum,fresh,0109348,Chicago Reader,"The performances, however, are very enjoyable, with first honors going to Chazz Palminteri and Dianne Wiest.",2008-08-12,13381,Bullets Over Broadway +Todd McCarthy,fresh,0109348,Variety,A backstage comedy bolstered by healthy shots of prohibition gangster melodrama and romantic entanglements.,2008-07-31,13381,Bullets Over Broadway +,fresh,0109348,Time Out,No! Don't speak! See it!,2006-06-24,13381,Bullets Over Broadway +Janet Maslin,fresh,0109348,New York Times,"Mr. Allen has drawn on autobiographical specifics in other films, but this may be the one in which he speaks most seriously from the heart.",2003-05-20,13381,Bullets Over Broadway +Rick Groen,fresh,0109348,Globe and Mail,"If not bowled over, we're at least won over.",2002-04-12,13381,Bullets Over Broadway +Peter Travers,fresh,0109348,Rolling Stone,"One of Allen's best and most revealing comedies, as much a moral meditation as it is dazzling fun.",2001-05-12,13381,Bullets Over Broadway +John Hartl,fresh,0109348,Film.com,Has more laughs packed into its exquisitely orchestrated 99 minutes than anything [Allen's] done in nearly 20 years.,2000-01-01,13381,Bullets Over Broadway +Edward Guthmann,fresh,0109348,San Francisco Chronicle,"Woody Allen at his best -- a gem of a Broadway fable with a crafty premise, a raft of brilliant actors at the top of their form and a bouncy, just-for-pleasure attitude.",2000-01-01,13381,Bullets Over Broadway +James Berardinelli,fresh,0109348,ReelViews,The most insightful and deliciously droll look at show business since Robert Altman skewered Hollywood in 1992's The Player.,2000-01-01,13381,Bullets Over Broadway +Desson Thomson,fresh,0109348,Washington Post,"Buzzes with classic one-liners, bright performances and off-the-cuff contemplations about love, art and death.",2000-01-01,13381,Bullets Over Broadway +Hal Hinson,fresh,0109348,Washington Post,"The most substantive, accessible -- not to mention the funniest -- film that the prolific writer-director has made in years.",2000-01-01,13381,Bullets Over Broadway +Roger Ebert,fresh,0109348,Chicago Sun-Times,"The movie is very funny and, in the way it follows its logic wherever it leads, surprisingly tough.",2000-01-01,13381,Bullets Over Broadway +,fresh,0109348,Entertainment Weekly,,1994-10-21,13381,Bullets Over Broadway +Richard Schickel,fresh,0109444,TIME Magazine,"This is the third movie with Jack as its hero, so he is a known quantity -- a humanist spook with an overdeveloped moral sense -- but Ford, playing the part for the second time, knows how to keep his earnestness fresh.",2010-01-13,12401,Clear and Present Danger +Todd McCarthy,fresh,0109444,Variety,Narrative complexity and momentum make this a true cinematic equivalent of an absorbing page-turner.,2008-08-08,12401,Clear and Present Danger +Trevor Johnston,rotten,0109444,Time Out,"There's a glimmer of interest in the film's ideological contortions, but as a commercial action thriller this is inflated and sluggish.",2006-02-09,12401,Clear and Present Danger +Janet Maslin,fresh,0109444,New York Times,"In a film that opens with the sight of a waving American flag, subtlety may not be foremost on anyone's mind. But Mr. Ford's wary intelligence does wonders for a potentially one-dimensional character.",2003-05-20,12401,Clear and Present Danger +Desson Thomson,fresh,0109444,Washington Post,"For what it is, Clear and Present Danger is fun to sit through.",2000-01-01,12401,Clear and Present Danger +Mick LaSalle,fresh,0109444,San Francisco Chronicle,The film seems to have its pulse on some peculiarly modern varieties of madness.,2000-01-01,12401,Clear and Present Danger +Lucy Mohl,fresh,0109444,Film.com,[Noyce] dramatizes Tom Clancy's obsessively detailed plot in a straightforward fashion while staging spectacular showpieces of action.,2000-01-01,12401,Clear and Present Danger +Rita Kempley,fresh,0109444,Washington Post,"An absorbing, if overlong adaptation of Tom Clancy's bestseller.",2000-01-01,12401,Clear and Present Danger +James Berardinelli,rotten,0109444,ReelViews,The uneven flow is as likely to lead to a snoozing viewer as to one on the edge of their seat.,2000-01-01,12401,Clear and Present Danger +,rotten,0109444,Entertainment Weekly,,1994-08-03,12401,Clear and Present Danger +Todd McCarthy,none,0109446,Variety,,2009-03-27,11315,The Client +,none,0109446,Time Out,,2006-02-09,11315,The Client +Janet Maslin,none,0109446,New York Times,,2003-05-20,11315,The Client +Rick Groen,fresh,0109446,Globe and Mail,"It's a successful frame-turner, no more, no less, and the pleasure we feel is every bit as mild and just as fleeting.",2002-04-12,11315,The Client +Peter Travers,fresh,0109446,Rolling Stone,"A high-voltage charge of suspense, action and humor.",2001-05-12,11315,The Client +Hal Hinson,rotten,0109446,Washington Post,"It twists and turns in all the expected places, and almost never rises above the ordinary.",2000-01-01,11315,The Client +Desson Thomson,fresh,0109446,Washington Post,"Mindless, non-taxing fun, especially if you haven't read the book.",2000-01-01,11315,The Client +Roger Ebert,rotten,0109446,Chicago Sun-Times,Not as satisfying as it should be.,2000-01-01,11315,The Client +James Berardinelli,fresh,0109446,ReelViews,"This isn't a masterpiece of suspense, but it has its moments and is capable of providing some light summer entertainment.",2000-01-01,11315,The Client +,fresh,0109446,Entertainment Weekly,,1994-07-20,11315,The Client +Owen Gleiberman,rotten,0109484,Entertainment Weekly,,2011-09-07,11071,"Corrina, Corrina" +Emanuel Levy,none,0109484,Variety,,2009-03-26,11071,"Corrina, Corrina" +,none,0109484,Time Out,,2006-06-24,11071,"Corrina, Corrina" +Janet Maslin,none,0109484,New York Times,,2003-05-20,11071,"Corrina, Corrina" +Peter Travers,none,0109484,Rolling Stone,,2001-05-12,11071,"Corrina, Corrina" +Rita Kempley,none,0109484,Washington Post,,2000-01-01,11071,"Corrina, Corrina" +Edward Guthmann,none,0109484,San Francisco Chronicle,,2000-01-01,11071,"Corrina, Corrina" +Desson Thomson,none,0109484,Washington Post,,2000-01-01,11071,"Corrina, Corrina" +James Berardinelli,rotten,0109484,ReelViews,,2000-01-01,11071,"Corrina, Corrina" +Roger Ebert,rotten,0109484,Chicago Sun-Times,,2000-01-01,11071,"Corrina, Corrina" +,rotten,0109484,Entertainment Weekly,,1994-08-12,11071,"Corrina, Corrina" +Owen Gleiberman,fresh,0109504,Entertainment Weekly,,2011-09-07,10709,Crooklyn +Richard Schickel,rotten,0109504,TIME Magazine,"Lee is a great self-promoter. After all his press releases and all his interviews, we are given films that are sketchy, unfelt and distancing -- incidents in Lee's career, the only drama that really interests him.",2008-09-23,10709,Crooklyn +Todd McCarthy,none,0109504,Variety,,2008-09-23,10709,Crooklyn +Geoff Andrew,rotten,0109504,Time Out,The key problem is that the film is simply a ragged series of anecdotal sketches.,2006-06-24,10709,Crooklyn +Janet Maslin,fresh,0109504,New York Times,"It's the first Spike Lee film with the potential to be turned into a television show. More important, it's the first one to display real warmth of heart.",2003-05-20,10709,Crooklyn +Peter Travers,fresh,0109504,Rolling Stone,This remarkable movie will haunt you for a good long time.,2001-05-12,10709,Crooklyn +Desson Thomson,fresh,0109504,Washington Post,"Modulating from heavy to light, from angry to lyrical, and so on, the movie's an enjoyable, emotional symphony.",2000-01-01,10709,Crooklyn +James Berardinelli,fresh,0109504,ReelViews,"Lee is as talented as any director is capturing an era, and some of the early scenes perfectly recall the mood of the time. The pop soundtrack may be a little too obvious, but it gets the job done.",2000-01-01,10709,Crooklyn +Roger Ebert,fresh,0109504,Chicago Sun-Times,"Crooklyn is not in any way an angry film. But thinking about the difference between its world and ours can make you angry, and I think that was one of Lee's purposes here.",2000-01-01,10709,Crooklyn +,fresh,0109504,Entertainment Weekly,,1994-05-13,10709,Crooklyn +Terrence Rafferty,fresh,0109506,New Yorker,"Alex Proyas's pulp revenge fantasy, based on a comic-book saga by James O'Barr, is dark, moody, and seductively overwrought; it's an amazingly pure expression of morbid adolescent romanticism.",2013-04-10,15519,The Crow +Desmond Ryan,fresh,0109506,Philadelphia Inquirer,It's a pleasure to welcome The Crow -- a bird of a very different feather.,2013-04-10,15519,The Crow +Jay Boyar,fresh,0109506,Orlando Sentinel,"As exploitation pictures go, I've seen a whole lot worse.",2013-04-10,15519,The Crow +Peter Rainer,fresh,0109506,Los Angeles Times,"The Crow, starring the late Brandon Lee, is like one long fright night. Even though it was photographed in color, the edge-of-darkness atmosphere descends on the audience like a shroud.",2013-04-10,15519,The Crow +Michael Wilmington,fresh,0109506,Chicago Tribune,"What's scary about The Crow is the story and the style itself: American Gothic, Poe-haunted nightmare, translated to the age of cyberpunk science fiction, revenge movies and outlaw rock 'n' roll, all set in a hideously decaying, crime-ridden urban hell.",2013-04-10,15519,The Crow +Owen Gleiberman,rotten,0109506,Entertainment Weekly,"If The Crow is forgettable entertainment, it can stand as an eerie epitaph for an actor who looked like he was on the way to better things.",2010-07-07,15519,The Crow +David Ansen,rotten,0109506,Newsweek,"It succeeds in bringing O'Barr's comic-book vision to life, but there's little else going on behind the graphic razzle-dazzle and the moody, ominous soundtrack.",2008-05-12,15519,The Crow +Todd McCarthy,fresh,0109506,Variety,"A seamless, pulsating, dazzlingly visual revenge fantasy that stands as one of the most effective live-actioners ever derived from a comic strip.",2007-04-16,15519,The Crow +,fresh,0109506,Time Out,"Visually, it's a treat; characterisation is sharp, particularly the nicely defined villains; and the action scenes, though soft-pedalled, still pack a satisfying crunch.",2006-06-24,15519,The Crow +Caryn James,fresh,0109506,New York Times,"It is a dark, lurid revenge fantasy and not the breakthrough, star-making movie some people have claimed. But it is a genre film of a high order, stylish and smooth.",2003-05-20,15519,The Crow +Peter Travers,fresh,0109506,Rolling Stone,Lee is sensational on all counts in a final performance that brims over with athleticism and ardor.,2001-05-12,15519,The Crow +Desson Thomson,fresh,0109506,Washington Post,"If he had to die so soon, this movie is the best and most appropriate sendoff Lee could have hoped for.",2000-01-01,15519,The Crow +James Berardinelli,fresh,0109506,ReelViews,"The Crow allows no room for the viewer to take a breath, as it blazes with breakneck speed from scene to scene.",2000-01-01,15519,The Crow +Roger Ebert,fresh,0109506,Chicago Sun-Times,"It is a stunning work of visual style - the best version of a comic book universe I've seen - and Brandon Lee clearly demonstrates in it that he might have become an action star, had he lived.",2000-01-01,15519,The Crow +Michael Sragow,fresh,0109450,New Yorker,"Cobb cuts right through the winner-take-all ethos of American athletics. It's a raw, inspired, audaciously funny, and unexpectedly moving collaboration between the writer-director Ron Shelton and Tommy Lee Jones.",2013-03-19,13673,Cobb +Jay Boyar,fresh,0109450,Orlando Sentinel,"Ty Cobb is such a towering figure in this motion picture that it's easy to overlook Al Stump -- and Robert Wuhl's feisty, witty performance in the thankless role.",2013-03-19,13673,Cobb +Michael Wilmington,fresh,0109450,Chicago Tribune,"[Jones] lets it all loose here. It's the performance of a lifetime: full of menace and venom, eloquence and fire, rot and pathos, crackling rawness and realism.",2013-03-19,13673,Cobb +Kenneth Turan,rotten,0109450,Los Angeles Times,"The result, whether Cobb is wailing about greatness or ruminating about the dark circumstances around his father's death, is a performance too operatic and out of control.",2013-03-19,13673,Cobb +Richard Schickel,fresh,0109450,TIME Magazine,"This is a messy movie, sometimes repetitive, sometimes too compressed and allusive. But that's like saying Ty Cobb was not a very good sport -- irrelevant in comparison to the horrific fascination of his story.",2011-03-21,13673,Cobb +Jonathan Rosenbaum,fresh,0109450,Chicago Reader,It's such a potent and courageous wreck of a movie that it's worth more than most 'successes.',2008-08-05,13673,Cobb +Leonard Klady,rotten,0109450,Variety,It's unclear just how much sympathy we are to extend the unrepentant and bullying title character.,2008-08-05,13673,Cobb +,fresh,0109450,Time Out,"Shelton's film is about the nature of truth and popular myth, about the single-minded pursuit of glory, and the horrors within. It's also very funny.",2006-06-24,13673,Cobb +Janet Maslin,rotten,0109450,New York Times,"Even allowing for the intentional excesses of such an episode, delicacy is a casualty here.",2003-05-20,13673,Cobb +Peter Stack,rotten,0109450,San Francisco Chronicle,This histrionic portrait of the most celebrated cur in sports history comes across like a fly ball that thuds on the ground.,2002-06-18,13673,Cobb +Peter Travers,fresh,0109450,Rolling Stone,"Shelton's strong, stinging film -- one of the year's best -- wants to get at something ingrained in the American character: the irrational desire to make saints of sports heroes.",2001-05-12,13673,Cobb +Roger Ebert,rotten,0109450,Chicago Sun-Times,It's the kind of film where you admire the craftsmanship and artistry while questioning the wisdom of the project itself.,2000-01-01,13673,Cobb +James Berardinelli,fresh,0109450,ReelViews,Jones' on-target portrayal of the dying athlete is mesmerizing.,2000-01-01,13673,Cobb +Charles Taylor,fresh,0109450,Salon.com,"Of all the good and great movies that have slipped through the cracks in recent years, none has been treated as appallingly as Cobb.",2000-01-01,13673,Cobb +Owen Gleiberman,rotten,0109450,Entertainment Weekly,"Cobb turns into a noisy, cantankerous buddy picture.",1994-12-02,13673,Cobb +Todd McCarthy,none,0109813,Variety,,2008-10-18,12326,The Flintstones +,none,0109813,Time Out,,2006-01-26,12326,The Flintstones +Caryn James,fresh,0109813,New York Times,"While the movie may act like a madeleine for television-obsessed baby-boomers, it works even better as a colorful playland that will appeal to small children.",2004-08-30,12326,The Flintstones +,none,0109813,Globe and Mail,,2002-04-12,12326,The Flintstones +,rotten,0109813,Washington Post,A $45 million design problem with 98 minutes of weak prehistoric jokes.,2000-01-01,12326,The Flintstones +Roger Ebert,rotten,0109813,Chicago Sun-Times,Just watching it is fun. Following the plot is not so much fun.,2000-01-01,12326,The Flintstones +Lucy Mohl,rotten,0109813,Film.com,It's a dull day in Bedrock.,2000-01-01,12326,The Flintstones +James Berardinelli,rotten,0109813,ReelViews,"Maybe it's because so many of the things they do in the movie are lifted directly from the show, but a lot of stuff seems stale.",2000-01-01,12326,The Flintstones +Desson Thomson,rotten,0109813,Washington Post,As Fred Flintstone might have put it: yabba-dabba-boo.,2000-01-01,12326,The Flintstones +,fresh,0109813,Entertainment Weekly,,1994-05-25,12326,The Flintstones +Michael Wilmington,fresh,0109830,Chicago Tribune,"This tall tale may reach monumental proportions, but Forrest Gump always keeps its magical airiness and grace.",2013-02-20,10036,Forrest Gump +Gene Siskel,fresh,0109830,Chicago Tribune,"Credit for the success of the film has to start with director Robert Zemeckis, who has taken his Back to the Future and Who Framed Roger Rabbit success and parlayed it into a more mature, yet equally entertaining, film.",2013-02-20,10036,Forrest Gump +Anthony Lane,rotten,0109830,New Yorker,"Warm, wise, and wearisome as hell.",2013-02-20,10036,Forrest Gump +David Ansen,rotten,0109830,Newsweek,"For all its ambition, the movie ends up using great historical events in the service of a dubious sentimentality.",2008-05-12,10036,Forrest Gump +Todd McCarthy,fresh,0109830,Variety,"A picaresque story of a simpleton's charmed odyssey through 30 years of tumultuous American history, Forrest Gump is whimsy with a strong cultural spine.",2008-01-28,10036,Forrest Gump +Jonathan Rosenbaum,rotten,0109830,Chicago Reader,"Judging by the the movie's enduring popularity, the message that stupidity is redemption is clearly what a lot of Americans want to hear.",2007-02-05,10036,Forrest Gump +,rotten,0109830,Time Out,As this mawkish conservative movie ultimately goes to prove: ignorance is bliss.,2006-01-26,10036,Forrest Gump +Stephen Holden,rotten,0109830,New York Times,Forrest Gump has the elements of an emotionally gripping story. Yet it feels less like a romance than like a coffee-table book celebrating the magic of special effects.,2003-05-28,10036,Forrest Gump +Rita Kempley,fresh,0109830,Washington Post,"Skillfully adapted by screenwriter Eric Roth, the story belongs in the company of such sweet classics as Rain Man and Harvey.",2002-01-16,10036,Forrest Gump +Peter Travers,fresh,0109830,Rolling Stone,A movie heart-breaker of oddball wit and startling grace.,2001-05-12,10036,Forrest Gump +Richard Corliss,fresh,0109830,TIME Magazine,"Like the best movie actors, Hanks is a superb reactor.",2000-01-01,10036,Forrest Gump +John Hartl,fresh,0109830,Film.com,This is one summer movie that doesn't evaporate the minute you leave the theater.,2000-01-01,10036,Forrest Gump +Edward Guthmann,fresh,0109830,San Francisco Chronicle,"Hanks is so charming as Gump, so heroic in his guilelessness and belief in simple virtues, that you want to excuse the film's excesses and overlook Zemeckis' weakness for easy, maudlin sentiment.",2000-01-01,10036,Forrest Gump +James Berardinelli,fresh,0109830,ReelViews,"Passionate and magical, Forrest Gump is a tonic for the weary of spirit.",2000-01-01,10036,Forrest Gump +Desson Thomson,fresh,0109830,Washington Post,"Hanks is superb, reemploying the childlike presence he brought to Big.",2000-01-01,10036,Forrest Gump +Roger Ebert,fresh,0109830,Chicago Sun-Times,What a magical movie.,2000-01-01,10036,Forrest Gump +Owen Gleiberman,rotten,0109830,Entertainment Weekly,Reduces the tumult of the last few decades to a virtual-reality theme park: a baby-boomer version of Disney's America.,1994-07-06,10036,Forrest Gump +Lisa Schwarzbaum,fresh,0109831,Entertainment Weekly,The infectious charm and sunny goodwill of Four Weddings and a Funeral can so immediately buoy a soul ravaged by winter weather and winter movies.,2009-02-03,15959,Four Weddings and a Funeral +Richard Corliss,fresh,0109831,TIME Magazine,"There are movies so breezy, even flimsy, that you can enjoy them as genial providers of an evening's entertainment yet forget all about them by the time you leave the multiplex.",2009-02-03,15959,Four Weddings and a Funeral +Jonathan Rosenbaum,rotten,0109831,Chicago Reader,A grocery store would sell this on its generic shelf: the brittle upper-class British cleverness is strictly standard issue.,2009-02-03,15959,Four Weddings and a Funeral +Todd McCarthy,fresh,0109831,Variety,"Truly beguiling romantic comedy is one of the hardest things for a modern film to pull off, but a winning British team has done it in Four Weddings and a Funeral.",2008-12-04,15959,Four Weddings and a Funeral +Geoff Andrew,fresh,0109831,Time Out,"A British comedy that's classy and commercial -- and, most important, very, very funny.",2006-01-26,15959,Four Weddings and a Funeral +Janet Maslin,fresh,0109831,New York Times,"If ever a film resembled a wedding cake it is Four Weddings and a Funeral, a multi-tiered confection with a romantic spirit and an enchantingly pretty veneer.",2003-05-20,15959,Four Weddings and a Funeral +Desson Thomson,fresh,0109831,Washington Post,"The players, who include Simon Callow, Kristin Scott Thomas, Rowan Atkinson and Sophie Thompson, exude comedic brightness as they go about their gossipy, farcical, self-deprecating, sorry-about-that-old-chap, just-being-English business.",2000-01-01,15959,Four Weddings and a Funeral +Roger Ebert,fresh,0109831,Chicago Sun-Times,Delightful and sly.,2000-01-01,15959,Four Weddings and a Funeral +Megan Rosenfeld,fresh,0109831,Washington Post,Some of the funniest scenes bounce off the nightmares of every bride and groom before the wedding.,2000-01-01,15959,Four Weddings and a Funeral +James Berardinelli,fresh,0109831,ReelViews,The simplest and most honest expression of praise that I can offer Mike Newell's latest movie is that it represents two hours of solid movie magic.,2000-01-01,15959,Four Weddings and a Funeral +Owen Gleiberman,rotten,0113305,Entertainment Weekly,"Despite some likable performances (Epps is especially winning), the drama in Higher Learning is constricted, hemmed in by Singleton's compulsion to view his characters as walking paradigms of racial and sexual politics.",2010-07-06,13586,Higher Learning +Todd McCarthy,fresh,0113305,Variety,"Higher Learning has a great many things on its mind, which immediately places it in a rather exclusive category of American films these days.",2008-10-18,13586,Higher Learning +Geoff Andrew,fresh,0113305,Time Out,"A stylish, intelligent film-maker, Singleton interweaves the threads of his demographic tapestry with assurance, passion and a welcome awareness of the complexities of the college community's contradictory impulses towards integration and separatism.",2006-02-09,13586,Higher Learning +Janet Maslin,rotten,0113305,New York Times,"Everyone here, from beer-swilling white fraternity boys to rap-loving black students harassed by the campus police, can be judged at face value. Everyone is exactly what he or she seems.",2003-05-20,13586,Higher Learning +Peter Travers,fresh,0113305,Rolling Stone,"Higher Learning is often cliched, unfocused and didactic. But Singleton has a goal most of his contemporaries have given up on: He wants to make a movie that makes a difference.",2001-05-12,13586,Higher Learning +Kenneth Turan,rotten,0113305,Los Angeles Times,"Presenting problems is not the same as dramatizing them successfully, and as strong as his message is, Singleton has not found the best way to deliver it.",2001-02-13,13586,Higher Learning +John Hartl,rotten,0113305,Film.com,"It's not as dispensable as Singleton's sophomore effort, Poetic Justice, but it's a long way from the assured freshman storytelling of Boyz N the Hood.",2000-01-01,13586,Higher Learning +James Berardinelli,fresh,0113305,ReelViews,"Despite excesses and missteps, there is still a wealth of digestible, thought-provoking material in Higher Learning.",2000-01-01,13586,Higher Learning +Richard Schickel,rotten,0113305,TIME Magazine,"Singleton has made all the right political moves given his complicated circumstances, but he hasn't really made a movie of them.",2000-01-01,13586,Higher Learning +Desson Thomson,rotten,0113305,Washington Post,"For every persuasive insight John Singleton brings to Higher Learning, his thoughtful but flawed movie about multiculturalism and racism, he throws in something equally disappointing.",2000-01-01,13586,Higher Learning +Roger Ebert,fresh,0113305,Chicago Sun-Times,Thought-provoking.,2000-01-01,13586,Higher Learning +Mick LaSalle,rotten,0113305,San Francisco Chronicle,Higher Learning presents a profoundly uninspired and misguided piece that seems prompted by little more than a desire to make a Big Statement.,2000-01-01,13586,Higher Learning +Lisa Schwarzbaum,fresh,0110091,Entertainment Weekly,,2011-09-07,14517,I Like It Like That +Todd McCarthy,none,0110091,Variety,,2008-10-18,14517,I Like It Like That +Geoff Andrew,none,0110091,Time Out,,2006-02-09,14517,I Like It Like That +Janet Maslin,none,0110091,New York Times,,2003-05-20,14517,I Like It Like That +,none,0110091,Globe and Mail,,2002-04-12,14517,I Like It Like That +James Berardinelli,fresh,0110091,ReelViews,,2000-01-01,14517,I Like It Like That +Roger Ebert,fresh,0110091,Chicago Sun-Times,,2000-01-01,14517,I Like It Like That +Rita Kempley,none,0110091,Washington Post,,2000-01-01,14517,I Like It Like That +,fresh,0110091,Entertainment Weekly,,1994-10-14,14517,I Like It Like That +Brian Lowry,fresh,0110167,Variety,"Bergman...really brings home the homage to Capra with the pic's warm, bordering-on-irresistible finale.",2008-09-18,11028,It Could Happen to You +Geoff Andrew,rotten,0110167,Time Out,"Perez has a field day as Muriel, injecting a welcome note of good old-fashioned greed into what is otherwise a relentlessly edifying story.",2006-06-24,11028,It Could Happen to You +Peter Travers,rotten,0110167,Rolling Stone,"Sweetness is fine as far as it goes, but this oddball romance could have used a twist of lemon.",2001-05-12,11028,It Could Happen to You +Hal Hinson,fresh,0110167,Washington Post,"Simply and without pandering or insults to your intelligence, the movie delivers more of the old-style pleasures of moviegoing than any other picture in a long while.",2000-01-01,11028,It Could Happen to You +Roger Ebert,fresh,0110167,Chicago Sun-Times,"Bergman never goes for heavy-handed schmaltz, and the whole movie has the same lighthearted big city spirit as the New York Post headlines that follow the story.",2000-01-01,11028,It Could Happen to You +James Berardinelli,fresh,0110167,ReelViews,"If you're looking for a late summer, ""feel good"" romantic comedy, there aren't too many around more affable than this one.",2000-01-01,11028,It Could Happen to You +Mick LaSalle,rotten,0110167,San Francisco Chronicle,"The nastiness in the movie feels derived from life, while all the niceness feels canned -- imported from old Jimmy Stewart pictures.",2000-01-01,11028,It Could Happen to You +John F. Kelly,fresh,0110167,Washington Post,"In the end, It Could Happen to You is a lot like the cop and the waitress: sweet, naive, not too smart, but likable.",2000-01-01,11028,It Could Happen to You +,fresh,0110167,Entertainment Weekly,,1994-07-29,11028,It Could Happen to You +Variety Staff,fresh,0061852,Variety,"The standout song goes to Harris, a rhythmic 'Bare Necessities' extolling the value of a simple life and credited to Terry Gilkyson.",2009-11-03,9381,The Jungle Book +Dave Kehr,rotten,0061852,Chicago Reader,"A serious disappointment, recommended only for inveterate Disney fans and very young people.",2008-03-10,9381,The Jungle Book +,fresh,0061852,Time Out,"It's also got great knockabout visual gags, mercifully little cutey-poo sentiment, and reasonable songs.",2006-09-30,9381,The Jungle Book +Emanuel Levy,none,0107472,Variety,,2012-02-23,18869,Die Macht der Bilder: Leni Riefenstahl +Deborah Young,none,0107472,Variety,,2009-03-26,18869,Die Macht der Bilder: Leni Riefenstahl +Jonathan Rosenbaum,rotten,0107472,Chicago Reader,"This is more often self-portrait than portrait; like Hitler in Riefenstahl's Triumph of the Will, she's presented as a fully formed deity without family background or ideology save a reverence for beauty and strength.",2007-03-14,18869,Die Macht der Bilder: Leni Riefenstahl +Vincent Canby,fresh,0107472,New York Times,Sometimes clunky but consistently fascinating.,2004-08-30,18869,Die Macht der Bilder: Leni Riefenstahl +Roger Ebert,fresh,0107472,Chicago Sun-Times,"This movie is fascinating in so many different ways: As the story of an extraordinary life, as the reconstruction of the career of one of the greatest of film artists, as the record of an ideological debate, as a portrait of an amazing old woman.",2000-01-01,18869,Die Macht der Bilder: Leni Riefenstahl +Desson Thomson,fresh,0107472,Washington Post,"Overly long, but fascinating.",2000-01-01,18869,Die Macht der Bilder: Leni Riefenstahl +Desmond Ryan,fresh,0110357,Philadelphia Inquirer,"The Lion King, complete with jaunty songs by Elton John and Tim Rice, is undeniably and fully worthy of its glorious Disney heritage. It is a gorgeous triumph -- one lion in which the studio can take justified pride.",2013-07-31,9385,The Lion King +Terrence Rafferty,rotten,0110357,New Yorker,"Between traumas, the movie serves up soothingly banal musical numbers (composed by Elton John and Tim Rice) and silly, rambunctious comedy.",2013-07-31,9385,The Lion King +John Hartl,fresh,0110357,Seattle Times,It's perhaps the closest Disney has come to creating a consciously mythical entertainment in the style of Star Wars. Yet like that film it keeps its sense of humor and fun.,2013-07-31,9385,The Lion King +Kenneth Turan,fresh,0110357,Los Angeles Times,"Even with its flaws, this latest Disney animated feature once again delivers what its audience wants. Too bad flesh and blood films can't be this consistent.",2013-07-31,9385,The Lion King +Gene Siskel,fresh,0110357,Chicago Tribune,It bears repeating that The Lion King is quite entertaining as children's fare goes these days. But Disney has established a standard so high on animated features that anything less than a classic leaves you feeling that something's missing.,2013-07-31,9385,The Lion King +Jay Boyar,fresh,0110357,Orlando Sentinel,"The rest of The Lion King alternates between grand-opera melodrama and low-comedy hi-jinks, superbly blending the two approaches.",2013-07-31,9385,The Lion King +Elizabeth Weitzman,fresh,0110357,New York Daily News,"Everyone, young and old, will find something to appreciate in this Shakespearean tale of a young lion discovering his rightful place in the world.",2011-09-17,9385,The Lion King +Ty Burr,rotten,0110357,Boston Globe,The story line is a Joseph Campbell hero-quest so stripped down to its basics as to become dull.,2011-09-15,9385,The Lion King +Desson Thomson,fresh,0110357,Washington Post,A computer-animated scene featuring a stampede of wildebeest is positively breathtaking.,2008-03-04,9385,The Lion King +Owen Gleiberman,fresh,0110357,Entertainment Weekly,"The Lion King, more than any of the recent wave of Disney animated features, has the resonance to stand not just as a terrific cartoon but as an emotionally pungent movie.",2008-03-04,9385,The Lion King +Jonathan Rosenbaum,fresh,0110357,Chicago Reader,"The result is a step toward multiculturalism and ecological correctness, though not without a certain amount of confusion.",2008-03-04,9385,The Lion King +,fresh,0110357,Time Out,A winner.,2006-02-09,9385,The Lion King +Glenn Abel,fresh,0110357,Hollywood Reporter,A crown jewel of modern Disney animation.,2003-10-14,9385,The Lion King +Stephen Holden,fresh,0110357,New York Times,"More so than the exuberant movie miracles that came before it, this latest animated juggernaut has the feeling of a clever, predictable product.",2003-05-20,9385,The Lion King +Peter Travers,fresh,0110357,Rolling Stone,A royal treat.,2001-05-12,9385,The Lion King +Jeremy Gerard,fresh,0110357,Variety,Some of the richest imagery the studio's animators have produced and held together.,2001-02-13,9385,The Lion King +James Berardinelli,fresh,0110357,ReelViews,"There clearly has been a conscious effort to please adults as much as children. Happily, for those of us who generally stay far away from 'cartoons,' they have succeeded.",2000-01-01,9385,The Lion King +Peter Stack,fresh,0110357,San Francisco Chronicle,It's all calculated to be wonderfully entertaining and almost every frame hits the mark.,2000-01-01,9385,The Lion King +John Hartl,fresh,0110357,Film.com,"An ingenious mixture of themes from narrative sources as ancient and varied as Hamlet, the Old Testament and The Odyssey.",2000-01-01,9385,The Lion King +Roger Ebert,fresh,0110357,Chicago Sun-Times,A superbly drawn animated feature.,2000-01-01,9385,The Lion King +Todd McCarthy,none,0107426,Variety,,2009-03-26,10580,Little Buddha +Jonathan Rosenbaum,fresh,0107426,Chicago Reader,"Bertolucci's celebrated burnt-orange-and-burnished-lemon look remains handsome, and the story itself still commands some interest as a pivot into daunting material.",2007-12-07,10580,Little Buddha +Wally Hammond,rotten,0107426,Time Out,Bertolucci's epic is a disappointment.,2006-06-24,10580,Little Buddha +Janet Maslin,fresh,0107426,New York Times,A crazily mesmerizing pop artifact that ranks alongside Herman Hesse's novel Siddhartha in terms of extreme earnestness and quasi-religious entertainment value.,2004-08-30,10580,Little Buddha +Joe Brown,fresh,0107426,Washington Post,"Though uneven, the film is engagingly moving and often humorous.",2000-01-01,10580,Little Buddha +Desson Thomson,fresh,0107426,Washington Post,Little Buddha succeeds precisely because of its guileless innocence.,2000-01-01,10580,Little Buddha +Roger Ebert,rotten,0107426,Chicago Sun-Times,The modern sequences lack realism or credibility. The ancient sequences play like the equivalent of a devout Bible story.,2000-01-01,10580,Little Buddha +James Berardinelli,rotten,0107426,ReelViews,"As beautifully photographed and intelligently-written as the movie is, it has no emotional depth or appeal, and is often as cold and clinical as its gray depiction of Seattle.",2000-01-01,10580,Little Buddha +,rotten,0107426,Entertainment Weekly,,1994-05-25,10580,Little Buddha +,none,0111686,Variety,,2012-02-23,14325,New Nightmare +Owen Gleiberman,rotten,0111686,Entertainment Weekly,,2011-09-07,14325,New Nightmare +Jonathan Rosenbaum,rotten,0111686,Chicago Reader,This one's defeated by the rigid formula.,2010-04-05,14325,New Nightmare +Joe Leydon,fresh,0111686,Variety,"Englund once again is in bravura form as Freddy, playing as much for nasty laughs as unnerving shocks.",2009-03-26,14325,New Nightmare +,fresh,0111686,Time Out,"The climactic punch-up fails to match the power of the first film's true ending, but in deconstructing his own bastardised creation, Craven redeems both the series and his own tarnished reputation.",2006-06-24,14325,New Nightmare +Janet Maslin,fresh,0111686,New York Times,"An ingenious, cathartic exercise in illusion and fear.",2003-05-20,14325,New Nightmare +,fresh,0111686,Globe and Mail,"An intricately constructed horror film, it not only takes you to hell and back, but thoroughly engages the mind as well as the emotions.",2002-04-12,14325,New Nightmare +Desson Thomson,fresh,0111686,Washington Post,"It's witty, smart, funny, entertaining, and you'll still like yourself in the morning for watching it.",2000-01-01,14325,New Nightmare +James Berardinelli,fresh,0111686,ReelViews,"[Craven] has brought back a sense of genuine horror to the series, in part by taking it to completely new ground, and in part by giving his actors a legitimate script to work with.",2000-01-01,14325,New Nightmare +Roger Ebert,fresh,0111686,Chicago Sun-Times,"I haven't been exactly a fan of the Nightmare series, but I found this movie, with its unsettling questions about the effect of horror on those who create it, strangely intriguing.",2000-01-01,14325,New Nightmare +Richard Harrington,fresh,0111686,Washington Post,The new film recaptures the dark soul of the original through a clever conceit.,2000-01-01,14325,New Nightmare +,rotten,0111686,Entertainment Weekly,,1994-10-14,14325,New Nightmare +Steven Rea,fresh,0110475,Philadelphia Inquirer,"When his face turns green and his limbs get limber, Carrey's pretty much unstoppable. This cartoon-y creation is an amazing fusion of physical comedy and state-of-the- art cinema illusion.",2013-04-12,11568,The Mask +Michael Sragow,fresh,0110475,New Yorker,"The gangland plot is flimsy (bad guy Peter Greene wears too much eyeliner), and the jokes are erratic, but it's a far better showcase for Carrey's comic-from-Uranus talent than Ace Ventura.",2013-04-12,11568,The Mask +Gene Siskel,fresh,0110475,Chicago Tribune,"Carrey and his aggressive overbite are back, but this time he's better used as an ingredient instead of as the plot.",2013-04-12,11568,The Mask +Jay Boyar,fresh,0110475,Orlando Sentinel,"If a movie star was born in Ace Ventura, he is christened in The Mask. Quite simply, this is the best and freest crazy comedy to come along since Beetlejuice.",2013-04-12,11568,The Mask +Kenneth Turan,fresh,0110475,Los Angeles Times,"Not only is he adept at physical humor, the kind of knockabout stuff that recalls the classic silent clowns, but Carrey also has a bright and likable screen presence, a lost puppy quality that is surprisingly endearing.",2013-04-12,11568,The Mask +Owen Gleiberman,rotten,0110475,Entertainment Weekly,"Carrey now has the clout to find a vehicle worthy of his hyperactive gooniness. When he does, we'll see if he's truly a jester for our time or simply the moron of the moment.",2010-07-06,11568,The Mask +Leonard Klady,fresh,0110475,Variety,"Adroitly directed, viscerally and visually dynamic and just plain fun.",2008-11-24,11568,The Mask +Jonathan Rosenbaum,fresh,0110475,Chicago Reader,"The results are easy to watch, though awfully familiar and simpleminded.",2007-04-18,11568,The Mask +Derek Adams,fresh,0110475,Time Out,"The design is bright as a button and the transformation scenes real eye-poppers, but the film's best special effect is putty-faced Carrey with his razzle-dazzle star turn as the affable Stanley and his manic alter ego.",2006-02-09,11568,The Mask +Janet Maslin,rotten,0110475,New York Times,"Bright-eyed, crazily intense, irrepressibly silly, Mr. Carrey can be funny without fireworks. He deserves material clever enough to let him do just that.",2003-06-08,11568,The Mask +Peter Travers,fresh,0110475,Rolling Stone,"Carrey is the ultimate party dude, and like the masked man says, this party is smokin'.",2001-06-06,11568,The Mask +Joe Brown,fresh,0110475,Washington Post,"Even without the state-of-the-art, boundary-busting computerized effects from Industrial Light & Magic, Carrey's a human cartoon, and his spontaneous, Avery-esque, anything-for-a-laugh outrageousness makes this otherwise blank Mask a must-see.",2000-01-01,11568,The Mask +James Berardinelli,rotten,0110475,ReelViews,"As a comedy, The Mask is genial, but its recycled plot is far too thin for the film to succeed as either an adventure or a spoof.",2000-01-01,11568,The Mask +Roger Ebert,fresh,0110475,Chicago Sun-Times,"The Mask is a perfect vehicle for the talents of Jim Carrey, who underwhelmed me with Ace Ventura, Pet Detective but here seems to have found a story and character that work together with manic energy.",2000-01-01,11568,The Mask +Rita Kempley,rotten,0110475,Washington Post,Doesn't have any more material than a Tex Avery cartoon.,2000-01-01,11568,The Mask +Lisa Schwarzbaum,fresh,0110478,Entertainment Weekly,,2011-09-07,10520,Maverick +Leonard Klady,fresh,0110478,Variety,"There can be little doubt that a whole new generation is about to discover the charm, wit and fun of Maverick.",2008-03-25,10520,Maverick +Geoff Andrew,fresh,0110478,Time Out,"A financially successful exercise in target-marketing, but not much of a movie.",2006-02-09,10520,Maverick +Caryn James,fresh,0110478,New York Times,"At almost every turn, Maverick adds sly comic episodes.",2003-05-20,10520,Maverick +Roger Ebert,fresh,0110478,Chicago Sun-Times,"The first lighthearted, laugh-oriented family Western in a long time, and one of the nice things about it is, it doesn't feel the need to justify its existence. It acts like it's the most natural thing in the world to be a Western.",2000-01-01,10520,Maverick +Joe Brown,fresh,0110478,Washington Post,"Affectionate, amiable, eager-to-please, in a TV-movieish sort of way.",2000-01-01,10520,Maverick +James Berardinelli,fresh,0110478,ReelViews,Maverick may be as close as anything comes to a perfect summer movie (as opposed to a perfect movie).,2000-01-01,10520,Maverick +Rita Kempley,none,0110478,Washington Post,"A gaudy reincarnation of the TV series with Mel Gibson, Jodie Foster and James Garner flashing diamonds, breaking hearts and clubbing cliches damn near to death.",2000-01-01,10520,Maverick +,fresh,0110478,Entertainment Weekly,,1994-05-20,10520,Maverick +Owen Gleiberman,rotten,0110588,Entertainment Weekly,,2011-09-07,533371313,Mrs. Parker and the Vicious Circle +Todd McCarthy,fresh,0110588,Variety,A highly absorbing but naggingly patchy look at the acerbic writer Dorothy Parker and her cohorts at the legendary Algonquin Round Table.,2009-03-26,533371313,Mrs. Parker and the Vicious Circle +Derek Adams,fresh,0110588,Time Out,Absolutely superb.,2006-06-24,533371313,Mrs. Parker and the Vicious Circle +Janet Maslin,fresh,0110588,New York Times,"""Mrs. Parker and the Vicious Circle"" has its flaws, but it also has a heartfelt grasp of what set Dorothy Parker apart from her fellow revelers and makes her so emblematic a figure even today.",2003-05-20,533371313,Mrs. Parker and the Vicious Circle +Hal Hinson,fresh,0110588,Washington Post,"The Dorothy Parker that Leigh and Rudolph present isn't one-dimensional. In addition to being savagely funny, she is also capable of great elegance and genuine insight.",2000-01-01,533371313,Mrs. Parker and the Vicious Circle +James Berardinelli,fresh,0110588,ReelViews,,2000-01-01,533371313,Mrs. Parker and the Vicious Circle +Roger Ebert,fresh,0110588,Chicago Sun-Times,,2000-01-01,533371313,Mrs. Parker and the Vicious Circle +Mick LaSalle,fresh,0110588,San Francisco Chronicle,"What a wonderful, detailed portrait. And what an evocation of a time and a mood. ""Mrs. Parker and the Vicious Circle'' is truly one of those films that inhabits its own world.",2000-01-01,533371313,Mrs. Parker and the Vicious Circle +,rotten,0110588,Entertainment Weekly,,1994-11-23,533371313,Mrs. Parker and the Vicious Circle +Brian Lowry,none,0110622,Variety,,2009-03-26,12667,Naked Gun 33 1/3: The Final Insult +Jonathan Rosenbaum,fresh,0110622,Chicago Reader,Silly enough to make you laugh sometimes in spite of yourself -- at least if you're feeling like a little boy.,2008-01-11,12667,Naked Gun 33 1/3: The Final Insult +Caryn James,fresh,0110622,New York Times,"The film's first-time director, Peter Segal, has adopted the series' style seamlessly.",2003-05-20,12667,Naked Gun 33 1/3: The Final Insult +James Berardinelli,rotten,0110622,ReelViews,It's sad to see what started out as such a lively and creative series descend to this -- a feeble attempt to stretch a few pedestrian jokes into a feature-length film.,2000-01-01,12667,Naked Gun 33 1/3: The Final Insult +Rita Kempley,fresh,0110622,Washington Post,Manages to be not only still funny but energetically slapped together and occasionally inventive.,2000-01-01,12667,Naked Gun 33 1/3: The Final Insult +Desson Thomson,fresh,0110622,Washington Post,"Wherever you are in the story, there's always something funny coming at you.",2000-01-01,12667,Naked Gun 33 1/3: The Final Insult +Roger Ebert,fresh,0110622,Chicago Sun-Times,"It occurred to me, watching the film, that what Leslie Nielsen and Priscilla Presley do here is not easy, and is done well.",2000-01-01,12667,Naked Gun 33 1/3: The Final Insult +,fresh,0110622,Entertainment Weekly,,1994-03-18,12667,Naked Gun 33 1/3: The Final Insult +Owen Gleiberman,fresh,0110771,Entertainment Weekly,,2011-09-07,14243,The Paper +Todd McCarthy,none,0110771,Variety,,2009-03-26,14243,The Paper +Derek Adams,none,0110771,Time Out,,2006-02-09,14243,The Paper +Janet Maslin,none,0110771,New York Times,,2003-05-20,14243,The Paper +Rick Groen,rotten,0110771,Globe and Mail,"The picture starts to fall in love with its subject -- head- over-heels in love, until the acid drains from the wit and there's nothing left but sentimental ooze.",2002-04-12,14243,The Paper +Peter Travers,fresh,0110771,Rolling Stone,"It's all slick, fizzy fun. But the film's fighting spirit gets snatched.",2001-06-06,14243,The Paper +Roger Ebert,fresh,0110771,Chicago Sun-Times,"Watching The Paper got me in touch all over again with how good it feels to work at the top of your form, on a story you believe in, on deadline.",2000-01-01,14243,The Paper +Rita Kempley,fresh,0110771,Washington Post,Perfectly captures the hubbub of the nation's newsrooms.,2000-01-01,14243,The Paper +Joe Brown,fresh,0110771,Washington Post,"Thanks to a caffeinated cast and hyperactive script, director Ron Howard delivers The Paper with a bang.",2000-01-01,14243,The Paper +James Berardinelli,fresh,0110771,ReelViews,"A crowd pleaser, and, regardless of any viewer's experience (or lack thereof) with the behind-the-scenes wrangling that goes on in newspaper offices, the story is affable and entertaining.",2000-01-01,14243,The Paper +,fresh,0110771,Entertainment Weekly,,1994-03-18,14243,The Paper +Jeff Shannon,fresh,0110950,Seattle Times,Ryder and Hawke bring crucial authenticity to their roles with effortless appeal. You'll find yourself wanting more of these characters than the movie gives you.,2013-08-28,12572,Reality Bites +Carrie Rickey,fresh,0110950,Philadelphia Inquirer,"However conventional Reality Bites resolves to be, it is always engaging. Best of all, Ryder has her greatest role since Heathers, once again proving herself a seriously funny young actress.",2013-03-27,12572,Reality Bites +Michael Wilmington,rotten,0110950,Chicago Tribune,It's a good example of an anti-establishment comedy crippled by a seeming desire to infatuate the establishment itself. What Reality Bites needs most is a good bite. From reality.,2013-03-27,12572,Reality Bites +Jay Boyar,fresh,0110950,Orlando Sentinel,"Among the movie's strengths are the performances, especially that of Ryder, who comes across as bright, beautiful and more delicate than ever before.",2013-03-27,12572,Reality Bites +Terrence Rafferty,rotten,0110950,New Yorker,"When the movie is over, you don't feel as if you had shared the experience of a new generation; you feel puzzled and vaguely crummy, as if you had just read a solemn news-magazine cover story about it.",2013-03-27,12572,Reality Bites +Owen Gleiberman,fresh,0110950,Entertainment Weekly,"Yearning, hilarious, lost within their precocious self-awareness, these slackers have soul.",2011-09-07,12572,Reality Bites +Peter Travers,fresh,0110950,Rolling Stone,"Although it never became the definitive document of Generation X, Reality Bites is a touchstone for anyone just out of college and stuck with more ideals than job prospects, not to mention a head full of bad-TV trivia.",2007-08-14,12572,Reality Bites +Jonathan Rosenbaum,rotten,0110950,Chicago Reader,"In 1994, the novelty of seeing a romantic comedy written and directed by, as well as starring, people in their early 20s made for a certain freshness, but after a point this 'youthfulness' consists of little more than TV references.",2007-08-07,12572,Reality Bites +Leonard Klady,rotten,0110950,Variety,Reality Bites begins as a promising and eccentric tale of contemporary youth but evolves into a banal love story as predictable as any lush Hollywood affair.,2007-08-07,12572,Reality Bites +Trevor Johnston,rotten,0110950,Time Out,"There's probably a moderate little romantic comedy crying to get out here, but the film's vain striving for casual hip proves suffocatingly obtrusive.",2006-02-09,12572,Reality Bites +Caryn James,fresh,0110950,New York Times,"Like the generation it presents so appealingly, it doesn't see any point in getting all bent out of shape and overambitious. But it knows how to hang out and have a great time.",2003-05-20,12572,Reality Bites +Roger Ebert,rotten,0110950,Chicago Sun-Times,"What unwritten law prevented the makers of Reality Bites from observing that their heroine can't shoot video worth a damn, that their hero is a jerk, and that their villain is the most interesting person in the movie?",2000-01-01,12572,Reality Bites +Rita Kempley,fresh,0110950,Washington Post,"The story may not be new, but it is as fresh as the film's new faces.",2000-01-01,12572,Reality Bites +James Berardinelli,rotten,0110950,ReelViews,Beneath a thin veneer of style lie buried all the old cliches and formulas of typical romantic comedies.,2000-01-01,12572,Reality Bites +Desson Thomson,fresh,0110950,Washington Post,[Childress and Stiller] encapsulate an era.,2000-01-01,12572,Reality Bites +Richard Schickel,fresh,0105226,TIME Magazine,"It's well worth tracking down, wherever you can find it. For it has the kind of tension and energy -- maybe even a touch of delirium -- that is only a memory in most of today's big studio movies.",2009-03-13,14708,Red Rock West +Leonard Klady,fresh,0105226,Variety,A wry thriller with a keen edge.,2008-09-16,14708,Red Rock West +Jonathan Rosenbaum,rotten,0105226,Chicago Reader,"A rather ho-hum if watchable neo-noir, though it's been treated in some quarters as something special.",2008-09-16,14708,Red Rock West +Geoff Andrew,fresh,0105226,Time Out,"[A] well-played, highly entertaining and playfully ingenious thriller.",2006-06-24,14708,Red Rock West +Caryn James,fresh,0105226,New York Times,It should never have fallen through the cracks. This clever little film is a real find.,2003-05-20,14708,Red Rock West +Richard Harrington,fresh,0105226,Washington Post,It is a treasure waiting to be discovered.,2000-01-01,14708,Red Rock West +Roger Ebert,fresh,0105226,Chicago Sun-Times,"It's the kind of movie made by people who love movies, have had some good times at them, and want to celebrate the very texture of old genres like the western and the film noir.",2000-01-01,14708,Red Rock West +James Berardinelli,fresh,0105226,ReelViews,"Red Rock West is a roller-coaster ride of a film, designed for those who like their thrillers spiced with the unexpected.",2000-01-01,14708,Red Rock West +Joe Brown,fresh,0105226,Washington Post,"Director John Dahl and his brother Rick Dahl co-wrote the intelligent and off-handedly witty script; they're like the Coen brothers, but with a sense of fun and a coherent, entertaining story to tell.",2000-01-01,14708,Red Rock West +Joe Leydon,rotten,0110989,Variety,Decently crafted but oddly charmless.,2007-04-26,10932,Ri¢hie Ri¢h +Geoff Andrew,rotten,0110989,Time Out,Unendurable.,2006-06-24,10932,Ri¢hie Ri¢h +Stephen Holden,rotten,0110989,New York Times,"Most of the time, Richie Rich is too busy oohing and ahhing over the junk that money can buy to relax and have a good time.",2003-05-20,10932,Ri¢hie Ri¢h +Peter Stack,fresh,0110989,San Francisco Chronicle,A spirited and fluffy kids' comedy.,2000-01-01,10932,Ri¢hie Ri¢h +Roger Ebert,fresh,0110989,Chicago Sun-Times,"What's sort of wonderful is the way this movie takes that old formula and makes it fresh and new, with actors who give it wit and charm.",2000-01-01,10932,Ri¢hie Ri¢h +Rita Kempley,rotten,0110989,Washington Post,"The filmmakers seem to think of their movie as a fiduciary fable, but they're not quite sure about its moral.",2000-01-01,10932,Ri¢hie Ri¢h +Lisa Schwarzbaum,fresh,0111054,Entertainment Weekly,,2011-09-07,12470,Safe Passage +Leonard Klady,none,0111054,Variety,,2009-03-26,12470,Safe Passage +Derek Adams,none,0111054,Time Out,,2006-02-09,12470,Safe Passage +Caryn James,none,0111054,New York Times,,2003-05-20,12470,Safe Passage +,none,0111054,Globe and Mail,,2002-04-12,12470,Safe Passage +Roger Ebert,rotten,0111054,Chicago Sun-Times,,2000-01-01,12470,Safe Passage +Edward Guthmann,none,0111054,San Francisco Chronicle,,2000-01-01,12470,Safe Passage +James Berardinelli,rotten,0111054,ReelViews,,2000-01-01,12470,Safe Passage +,fresh,0111054,Entertainment Weekly,,1995-05-04,12470,Safe Passage +Owen Gleiberman,rotten,0110997,Entertainment Weekly,,2011-09-07,11519,The River Wild +Todd McCarthy,none,0110997,Variety,,2009-03-26,11519,The River Wild +David Ansen,none,0110997,Newsweek,,2008-03-31,11519,The River Wild +Geoff Andrew,none,0110997,Time Out,,2006-06-24,11519,The River Wild +Janet Maslin,none,0110997,New York Times,,2003-05-20,11519,The River Wild +,none,0110997,Globe and Mail,,2002-04-12,11519,The River Wild +Peter Travers,fresh,0110997,Rolling Stone,The perfect high old time for audiences in the mood to be tossed into the spin cycle for a pulse-pounding thrill ride.,2001-05-12,11519,The River Wild +Rita Kempley,rotten,0110997,Washington Post,O'Neill proves to be a squeamish screenwriter. He doesn't allow his villain to do anything truly unnerving until the story's nearly done.,2000-01-01,11519,The River Wild +Roger Ebert,rotten,0110997,Chicago Sun-Times,"Constructed from so many ideas, characters and situations recycled from other movies that all the way down the river I kept thinking: Been there. Done that.",2000-01-01,11519,The River Wild +Desson Thomson,fresh,0110997,Washington Post,"If watched from a mildly amused, forgiving distance, the movie has its enjoyable moments -- good and campy.",2000-01-01,11519,The River Wild +James Berardinelli,fresh,0110997,ReelViews,"The thriller framework is still familiar, but the results exhibit a welcome freshness.",2000-01-01,11519,The River Wild +,rotten,0110997,Entertainment Weekly,,1994-09-30,11519,The River Wild +Jeff Shannon,fresh,0111257,Seattle Times,"A riotously enjoyable locomotive of action, Speed is driven by a premise of such crystalline purity that its ridiculousness becomes part of the fun.",2013-07-30,14748,Speed +Jay Boyar,fresh,0111257,Orlando Sentinel,"Believe it or not, the most exciting movie of the year takes place mainly in an elevator, on a city bus and on a train car.",2013-07-30,14748,Speed +Kenneth Turan,fresh,0111257,Los Angeles Times,"Action directing is a put-up-or-shut-up game, a skill that can't be faked or finessed; even a 10-year-old can tell if you've got it or not. And on the evidence of the invigorating Speed, Jan De Bont has definitely got it.",2013-07-30,14748,Speed +Jonathan Rosenbaum,fresh,0111257,Chicago Reader,"The deft arabesques of cinematographer Andrzej Bartkowiak juice up the suspense, and if you're not too put off by the sheer ridiculousness of the story you won't be bored.",2013-07-30,14748,Speed +Anthony Lane,fresh,0111257,New Yorker,"The result is clean, delirious, and, yes, speedy -- the best big-vehicle-in-peril movie since Clouzot's The Wages of Fear.",2013-07-30,14748,Speed +Gene Siskel,fresh,0111257,Chicago Tribune,"Just when you think Speed is over, it takes you on a new high.",2013-07-30,14748,Speed +Michael Wilmington,fresh,0111257,Chicago Tribune,"The story is a starting gun, a reason to roll out the high-tech action movie chase and demolition experts. It's gaudy action shtick, and it's fitting that the last stop is at Hollywood Boulevard.",2012-02-23,14748,Speed +Richard Schickel,fresh,0111257,TIME Magazine,Talk about simple. But the film's sheer cut-to-the-chase straightfowardness is part of its appeal.,2009-06-14,14748,Speed +Todd McCarthy,fresh,0111257,Variety,"Athough it hits any number of gaping credibility potholes on its careening journey around Los Angeles, Speed delivers the goods as a non-stop actioner that scarcely pauses to take a breath.",2009-06-14,14748,Speed +Derek Adams,rotten,0111257,Time Out,"Eventually, inevitably, [it] goes too far, too fast, and ends up off the rails.",2006-06-24,14748,Speed +Janet Maslin,fresh,0111257,New York Times,"Cleverer action films (Die Hard II and The Fugitive, for instance) deliver more sardonic intelligence, but this one still gets the job done.",2003-05-20,14748,Speed +Peter Travers,fresh,0111257,Rolling Stone,"The smart and sassy Bullock is a knockout. She makes us believe the impossible things Annie is doing and, better, makes us care.",2001-05-12,14748,Speed +Roger Ebert,fresh,0111257,Chicago Sun-Times,"We've seen this done before, but seldom so well, or at such a high pitch of energy.",2000-01-01,14748,Speed +Hal Hinson,rotten,0111257,Washington Post,"Undeniably, the picture now and again supplies that edge-of-the-seat sensation; yet, by action-adventure standards, Speed is leaden and strangely poky. It never seems to shift into overdrive and let fly.",2000-01-01,14748,Speed +James Berardinelli,fresh,0111257,ReelViews,The most breath-stoppingly thrilling motion picture to open since the original Die Hard.,2000-01-01,14748,Speed +Desson Thomson,rotten,0111257,Washington Post,"The plot becomes so overextended, as Reeves and Hopper wage their endless public transportation battle, even the hardest Die-Harders will consider leaping off way before the final stop.",2000-01-01,14748,Speed +Owen Gleiberman,fresh,0111257,Entertainment Weekly,"The film takes off from formula elements, but it manipulates those elements so skillfully, with such a canny mixture of delirium and restraint, that I walked out of the picture with the rare sensation that every gaudy thrill had been earned.",1994-06-10,14748,Speed +Lisa Schwarzbaum,rotten,0111256,Entertainment Weekly,,2011-09-07,12031,Speechless +Brian Lowry,rotten,0111256,Variety,"Never achieves the madcap hilarity of the '40s romantic comedies it seeks to emulate, and some of the dramatic moments feel a bit forced.",2009-03-26,12031,Speechless +Derek Adams,rotten,0111256,Time Out,"Mugging to an unfunny script, Keaton and Davis are no Tracy and Hepburn, and the funereal pace doesn't help.",2006-06-24,12031,Speechless +Janet Maslin,rotten,0111256,New York Times,"Ron Underwood, the director of City Slickers, once again compromises appealing actors and an entertaining premise with a needless overlay of mush.",2003-05-20,12031,Speechless +James Berardinelli,rotten,0111256,ReelViews,"Speechless is overplotted and underwritten. Every situation is straight out of stock, with no room for variation or originality.",2000-01-01,12031,Speechless +Desson Thomson,rotten,0111256,Washington Post,"The movie's a campaign disaster from the get-go, and no amount of damage control (including MGM's extensive publicity) can hide it.",2000-01-01,12031,Speechless +Rita Kempley,none,0111256,Washington Post,"Director Ron Underwood demonstrated a knack for comedy in City Slickers, but when it comes to love scenes ... Keaton and Davis might as well be stampeding cows.",2000-01-01,12031,Speechless +Roger Ebert,rotten,0111256,Chicago Sun-Times,"The level of humor is dialed safely down to the Sitcom setting, which limits what can happen, and how much we can care about it.",2000-01-01,12031,Speechless +,rotten,0111256,Entertainment Weekly,,1994-12-16,12031,Speechless +Gene Siskel,rotten,0111438,Chicago Tribune,Van Damme is compelling only when he takes his clothes off.,2013-01-16,16855,Timecop +Owen Gleiberman,rotten,0111438,Entertainment Weekly,,2011-09-07,16855,Timecop +,rotten,0111438,Entertainment Weekly,,2011-01-01,16855,Timecop +Brian Lowry,rotten,0111438,Variety,"For the most part, Hyams' lackluster direction and the repetitive quality of the action sequences squander an intriguing premise and impressive production design, leaving few moments that elicit the sort of 'Wow!' response such fare needs in order to pros",2008-11-02,16855,Timecop +Jonathan Rosenbaum,rotten,0111438,Chicago Reader,"SF specialist Peter Hyams, doubling as usual as director and cinematographer, leaves his record for mediocrity unblemished in this silly time-travel tale.",2007-04-18,16855,Timecop +Geoff Andrew,fresh,0111438,Time Out,"Hyams is no stranger to large-scale sci-fi, so his management of the massive sets and slightly mechanical fx is more than adequate.",2006-06-24,16855,Timecop +Janet Maslin,fresh,0111438,New York Times,"Years of tireless persistence have begun to work in Mr. Van Damme's favor. It's hard not to enjoy his energy, even if his acting gifts still leave a lot to be desired.",2003-05-20,16855,Timecop +Christopher Harris,rotten,0111438,Globe and Mail,"Maybe it's the formula, maybe it's all that time travel, but you just can't help thinking you've seen it all before.",2002-04-12,16855,Timecop +Mick LaSalle,fresh,0111438,San Francisco Chronicle,A satisfying science-fiction thriller.,2000-01-01,16855,Timecop +Joe Brown,fresh,0111438,Washington Post,"In spite of its glitches, Timecop is lots of fun, a blast from the past.",2000-01-01,16855,Timecop +Roger Ebert,rotten,0111438,Chicago Sun-Times,"Timecop, a low-rent Terminator, is the kind of movie that is best not thought about at all, for that way madness lies.",2000-01-01,16855,Timecop +James Berardinelli,rotten,0111438,ReelViews,Time paradoxes are supposed to be mind-boggling; Timecop has reduced them to a level somewhere between confusing and dumb.,2000-01-01,16855,Timecop +Richard Harrington,fresh,0111438,Washington Post,Good dumb fun.,2000-01-01,16855,Timecop +Jonathan Rosenbaum,rotten,0111503,Chicago Reader,"If the Gulf War gave you an insatiable taste for burning oil and burning Arabs, this extravaganza will tide you over for at least a couple of days.",2009-12-11,16394,True Lies +Brian Lowry,rotten,0111503,Variety,"Providing its share of fun in stretches, pic ultimately overstays its welcome with a level of mayhem that will simply feel like too much for any marginal fan of the genre.",2009-01-23,16394,True Lies +Geoff Andrew,fresh,0111503,Time Out,"Half the time, this hi-tech action movie delivers, in a mindless kind of way: it's fast, crude and has enough explosions and cartoon-style violence to satisfy our baser instincts.",2006-06-24,16394,True Lies +Caryn James,fresh,0111503,New York Times,"As this comedy of manners unfolds, it is played for all-out action as well as satiric humor.",2003-05-20,16394,True Lies +Rick Groen,fresh,0111503,Globe and Mail,"However high your ranking on the culture scale, I defy you to watch this and leave the theatre without a whistled 'Wow' followed by a grudging 'That's entertainment.'",2002-04-12,16394,True Lies +James Berardinelli,fresh,0111503,ReelViews,"An old-fashioned, high-tech, fun time at the movies.",2000-01-01,16394,True Lies +Desson Thomson,rotten,0111503,Washington Post,This mixture of comedy and super-agent spectacle works well at first. But when Schwarzenegger's family and working worlds link up -- an inevitable development -- the plot becomes increasingly ridiculous and overwrought.,2000-01-01,16394,True Lies +Roger Ebert,fresh,0111503,Chicago Sun-Times,"On the basis of stunts, special effects and pure action, it delivers sensationally.",2000-01-01,16394,True Lies +Rita Kempley,rotten,0111503,Washington Post,"True Lies, far too technologically bloated for its cartoony plot, overestimates the human tolerance for high-tech mayhem.",2000-01-01,16394,True Lies +Owen Gleiberman,fresh,0111503,Entertainment Weekly,"The fun of an elaborately scaled comic suspense thriller is that, no matter how spectacular the stunts are, the hero always seems to be operating out of the purest pragmatism.",1994-07-15,16394,True Lies +Owen Gleiberman,rotten,0111693,Entertainment Weekly,,2011-09-07,13256,When a Man Loves a Woman +Leonard Klady,none,0111693,Variety,,2009-03-26,13256,When a Man Loves a Woman +,none,0111693,Time Out,,2006-01-26,13256,When a Man Loves a Woman +Janet Maslin,none,0111693,New York Times,,2003-05-20,13256,When a Man Loves a Woman +,none,0111693,Globe and Mail,,2002-04-12,13256,When a Man Loves a Woman +Peter Travers,none,0111693,Rolling Stone,,2001-05-12,13256,When a Man Loves a Woman +Joe Brown,none,0111693,Washington Post,,2000-01-01,13256,When a Man Loves a Woman +Rita Kempley,none,0111693,Washington Post,,2000-01-01,13256,When a Man Loves a Woman +James Berardinelli,fresh,0111693,ReelViews,,2000-01-01,13256,When a Man Loves a Woman +Roger Ebert,fresh,0111693,Chicago Sun-Times,,2000-01-01,13256,When a Man Loves a Woman +,rotten,0111693,Entertainment Weekly,,1994-04-29,13256,When a Man Loves a Woman +Todd McCarthy,none,0111742,Variety,,2009-03-26,16830,Wolf +David Ansen,none,0111742,Newsweek,,2008-10-18,16830,Wolf +,none,0111742,Time Out,,2006-01-26,16830,Wolf +Janet Maslin,none,0111742,New York Times,,2003-05-20,16830,Wolf +Rick Groen,rotten,0111742,Globe and Mail,"If he'd followed through, Mike Nichols might have made a brilliant picture -- seems he just couldn't bear to look a gift wolf in the mouth.",2002-04-12,16830,Wolf +Peter Travers,fresh,0111742,Rolling Stone,Nichols has crafted a rapturous romantic thriller with a darkly comic subtext about what kills human values.,2001-05-12,16830,Wolf +Desson Thomson,rotten,0111742,Washington Post,"Nichols has allowed Wolf to evolve from a well-mounted, supernatural drama to goofy camp.",2000-01-01,16830,Wolf +Hal Hinson,fresh,0111742,Washington Post,"A sometimes shaky, always enchanting Beauty and the Beast story for grown-ups that is the very essence of smart fun -- droll, sophisticated and surprisingly, pleasingly light.",2000-01-01,16830,Wolf +Roger Ebert,fresh,0111742,Chicago Sun-Times,"An effective attempt to place a werewolf story in an incongruous setting, with the closely observed details of that setting used to make the story seem more believable.",2000-01-01,16830,Wolf +Edward Guthmann,fresh,0111742,San Francisco Chronicle,It's a wonderfully entertaining and beautifully performed film.,2000-01-01,16830,Wolf +James Berardinelli,rotten,0111742,ReelViews,Monster movies are supposed to frighten the audience; this one fails utterly in that arena.,2000-01-01,16830,Wolf +,fresh,0111742,Entertainment Weekly,,1994-06-17,16830,Wolf +Todd McCarthy,none,0111756,Variety,,2009-03-26,10707,Wyatt Earp +,none,0111756,Time Out,,2006-01-26,10707,Wyatt Earp +Caryn James,none,0111756,New York Times,,2003-05-20,10707,Wyatt Earp +,none,0111756,Globe and Mail,,2002-04-12,10707,Wyatt Earp +Desson Thomson,none,0111756,Washington Post,,2000-01-01,10707,Wyatt Earp +James Berardinelli,rotten,0111756,ReelViews,,2000-01-01,10707,Wyatt Earp +Rita Kempley,none,0111756,Washington Post,,2000-01-01,10707,Wyatt Earp +Roger Ebert,rotten,0111756,Chicago Sun-Times,,2000-01-01,10707,Wyatt Earp +,rotten,0111756,Entertainment Weekly,,1994-06-24,10707,Wyatt Earp +Hank Sartin,rotten,0280486,Chicago Reader,"Director Joel Schumacher does a fair job of managing the chaos, but after a while you get tired of being dragged from setup to setup.",2010-02-05,12795,Bad Company +Kenneth Turan,none,0280486,Los Angeles Times,,2006-02-04,12795,Bad Company +,none,0280486,Time Out,,2006-01-26,12795,Bad Company +Robert Denerstein,none,0280486,Denver Rocky Mountain News,,2002-08-09,12795,Bad Company +Michael Wilmington,rotten,0280486,Chicago Tribune,"If you've seen the trailer, you've seen almost everything good in Bad Company.",2002-07-20,12795,Bad Company +,none,0280486,Atlanta Journal-Constitution,,2002-06-25,12795,Bad Company +Peter Rainer,rotten,0280486,New York Magazine,Rock doesn't really act with the other performers; he stands next to them and buzzes in his own orbit.,2002-06-16,12795,Bad Company +Bill Muller,fresh,0280486,Arizona Republic,"Despite its cliche-ridden premise, Bad Company often works simply because there's so much talent on the screen.",2002-06-13,12795,Bad Company +Michael Atkinson,rotten,0280486,Village Voice,Predictably soulless techno-tripe.,2002-06-11,12795,Bad Company +,none,0280486,St. Louis Post-Dispatch,,2002-06-10,12795,Bad Company +Peter Travers,rotten,0280486,Rolling Stone,Producer Jerry Bruckheimer demands the kind of formula action that leaves director Joel Schumacher no space to let characters breathe.,2002-06-10,12795,Bad Company +Ella Taylor,fresh,0280486,L.A. Weekly,"Deft, funny and intelligently scary.",2002-06-10,12795,Bad Company +Joe Leydon,fresh,0280486,Variety,Hopkins breezes through the proceedings with an appealingly jaded nonchalance ... that easily morphs into steely authority whenever such stern stuff is required.,2002-06-10,12795,Bad Company +Richard Roeper,rotten,0280486,Ebert & Roeper,Bad Company is a bad movie with really bad timing.,2002-06-10,12795,Bad Company +Desson Thomson,rotten,0280486,Washington Post,"A long-winded, predictable scenario.",2002-06-07,12795,Bad Company +Stephen Hunter,rotten,0280486,Washington Post,More a gunfest than a Rock concert.,2002-06-07,12795,Bad Company +Mike Clark,rotten,0280486,USA Today,"Bad Company leaves a bad taste, not only because of its bad-luck timing, but also the staleness of its script.",2002-06-07,12795,Bad Company +Geoff Pevere,rotten,0280486,Toronto Star,Feels like the kind of movie that might have been designed by a marketing software program for MBA studio executives.,2002-06-07,12795,Bad Company +Mark Rahner,rotten,0280486,Seattle Times,"If you can cut the right wires and deactivate key portions of your brain, Bad Company is sort of fun and sort of funny -- although it doesn't take a CIA agent like Jack Ryan to note that that phrase always means a movie ain't much good.",2002-06-07,12795,Bad Company +Mick LaSalle,rotten,0280486,San Francisco Chronicle,Seems more like a product than an attempt to tell a story.,2002-06-07,12795,Bad Company +Lisa Schwarzbaum,fresh,0110455,Entertainment Weekly,,2011-09-07,770676495,A Man of No Importance +Leonard Klady,none,0110455,Variety,,2008-11-21,770676495,A Man of No Importance +Derek Adams,none,0110455,Time Out,,2006-06-24,770676495,A Man of No Importance +Caryn James,none,0110455,New York Times,,2003-05-20,770676495,A Man of No Importance +Peter Stack,none,0110455,San Francisco Chronicle,,2000-01-01,770676495,A Man of No Importance +Roger Ebert,rotten,0110455,Chicago Sun-Times,,2000-01-01,770676495,A Man of No Importance +Stanley Kauffmann,none,0110455,The New Republic,,2000-01-01,770676495,A Man of No Importance +James Berardinelli,fresh,0110455,ReelViews,,2000-01-01,770676495,A Man of No Importance +,fresh,0110455,Entertainment Weekly,,1994-09-10,770676495,A Man of No Importance +Owen Gleiberman,rotten,0111048,Entertainment Weekly,,2011-09-07,15308,S.F.W. +,none,0111048,Variety,,2009-03-26,15308,S.F.W. +Derek Adams,none,0111048,Time Out,,2006-02-09,15308,S.F.W. +Janet Maslin,none,0111048,New York Times,,2003-05-20,15308,S.F.W. +Peter Rainer,none,0111048,Los Angeles Times,,2001-02-13,15308,S.F.W. +Roger Ebert,rotten,0111048,Chicago Sun-Times,,2000-01-01,15308,S.F.W. +,rotten,0111048,Entertainment Weekly,,1994-01-20,15308,S.F.W. +Owen Gleiberman,rotten,0110399,Entertainment Weekly,,2011-09-07,14349,A Low Down Dirty Shame +Todd McCarthy,none,0110399,Variety,,2010-10-28,14349,A Low Down Dirty Shame +Brian Lowry,rotten,0110399,Variety,"In terms of action, Wayans the director relies too much on slow-motion in shooting action scenes -- a tiresome habit that undercuts the potential excitement of some sequences.",2008-07-25,14349,A Low Down Dirty Shame +Trevor Johnston,rotten,0110399,Time Out,"So far, so hackneyed.",2006-02-09,14349,A Low Down Dirty Shame +Stephen Holden,rotten,0110399,New York Times,"Mr. Wayans is an agreeable screen presence, but he makes a surprisingly bland action hero.",2003-05-20,14349,A Low Down Dirty Shame +Rita Kempley,rotten,0110399,Washington Post,Wayans isn't sure whether to send up Shaft and company or simply to remake the action thriller. The result is an embarrassing compromise.,2000-01-01,14349,A Low Down Dirty Shame +Roger Ebert,rotten,0110399,Chicago Sun-Times,"Here is a movie about guns. Take away the guns, and the movie would be about nothing much.",2000-01-01,14349,A Low Down Dirty Shame +James Berardinelli,rotten,0110399,ReelViews,"It's easy -- far too easy -- to use the title of Keenen Ivory Wayans' latest movie as a description. Unfortunately, it's also accurate.",2000-01-01,14349,A Low Down Dirty Shame +,rotten,0110399,Entertainment Weekly,,1994-11-23,14349,A Low Down Dirty Shame +Owen Gleiberman,rotten,0108330,Entertainment Weekly,,2011-09-07,13933,This Boy's Life +Richard Corliss,rotten,0108330,TIME Magazine,"Something more subtle is going on in Wolff's book, a confrontation with a richer, quirkier past and his emerging self that the movie too often brushes aside.",2010-02-08,13933,This Boy's Life +Jonathan Rosenbaum,fresh,0108330,Chicago Reader,"The leads work overtime to make their characters and their relationships pungent, believable, and moving.",2010-02-08,13933,This Boy's Life +Todd McCarthy,rotten,0108330,Variety,Nicely acted but excessively bland.,2008-06-03,13933,This Boy's Life +Wally Hammond,fresh,0108330,Time Out,It's a rites-of-passage drama with the kind of period small-town setting that the director is making his own.,2006-06-24,13933,This Boy's Life +Vincent Canby,rotten,0108330,New York Times,"This Boy's Life is so steeped in period detail (music, cars, television shows, hair styles) that Toby and Caroline's sad, bumbling search for freedom seems secondary, almost impolite to the decor.",2003-05-20,13933,This Boy's Life +Peter Travers,rotten,0108330,Rolling Stone,An indisputably great actor is inching toward the black hole of self-parody.,2001-05-12,13933,This Boy's Life +Rita Kempley,fresh,0108330,Washington Post,It is an affecting teen melodrama haunted by twisted treehouse memories.,2000-01-01,13933,This Boy's Life +James Berardinelli,fresh,0108330,ReelViews,"Ultimately, This Boy's Life is effective because we get to know the characters, understand their circumstances, and empathize with their dreams.",2000-01-01,13933,This Boy's Life +Desson Thomson,rotten,0108330,Washington Post,"Apparently left by director Michael Caton-Jones to his own devices, De Niro's familiar, tight-lipped intensity is entertaining and watchable. But in this Boy's Life Magazine context, it hovers close to cartoonlike.",2000-01-01,13933,This Boy's Life +Roger Ebert,fresh,0108330,Chicago Sun-Times,The movie is very involving.,2000-01-01,13933,This Boy's Life +,rotten,0108330,Entertainment Weekly,,1993-01-01,13933,This Boy's Life +,none,0109454,Time Out,,2006-06-24,770674597,Le colonel Chabert +Janet Maslin,none,0109454,New York Times,,2003-05-20,770674597,Le colonel Chabert +Mick LaSalle,none,0109454,San Francisco Chronicle,,2000-01-01,770674597,Le colonel Chabert +James Berardinelli,fresh,0109454,ReelViews,,2000-01-01,770674597,Le colonel Chabert +Desson Thomson,none,0109454,Washington Post,,2000-01-01,770674597,Le colonel Chabert +Rita Kempley,none,0109454,Washington Post,,2000-01-01,770674597,Le colonel Chabert +,fresh,0059170,Variety,Some good performances emerge from a one-note script via very good Russ Meyer direction and his outstanding editing.,2007-03-28,147491163,"Faster, Pussycat! Kill! Kill!" +,fresh,0059170,Time Out,"A cheap and efficient comic horror movie, it's funniest when its dialogue and characters' behaviour are at their most non sequitur.",2006-01-26,147491163,"Faster, Pussycat! Kill! Kill!" +James Berardinelli,rotten,0059170,ReelViews,"I guess plunging necklines and tight shorts aren't what they used to be... Not that such a realization will hamper anyone's enjoyment of this, or any other, Meyer endeavor.",2000-01-01,147491163,"Faster, Pussycat! Kill! Kill!" +Roger Ebert,fresh,0059170,Chicago Sun-Times,What is it about Meyer that spurs critics to this hyperbole? I think it is an intensely personal reaction to the visceral power of Meyer's unusual images.,2000-01-01,147491163,"Faster, Pussycat! Kill! Kill!" +Lisa Schwarzbaum,rotten,0110186,Entertainment Weekly,,2011-09-07,16828,Jason's Lyric +Deborah Young,none,0110186,Variety,,2008-06-23,16828,Jason's Lyric +Geoff Andrew,none,0110186,Time Out,,2006-06-24,16828,Jason's Lyric +Caryn James,none,0110186,New York Times,,2003-05-20,16828,Jason's Lyric +,none,0110186,Globe and Mail,,2002-04-12,16828,Jason's Lyric +James Berardinelli,fresh,0110186,ReelViews,,2000-01-01,16828,Jason's Lyric +Peter Stack,none,0110186,San Francisco Chronicle,,2000-01-01,16828,Jason's Lyric +Hal Hinson,none,0110186,Washington Post,,2000-01-01,16828,Jason's Lyric +Roger Ebert,fresh,0110186,Chicago Sun-Times,,2000-01-01,16828,Jason's Lyric +,rotten,0110186,Entertainment Weekly,,1994-09-28,16828,Jason's Lyric +Derek Elley,none,0108069,Variety,,2009-04-07,17626,The Secret Adventures of Tom Thumb +Derek Adams,none,0108069,Time Out,,2006-02-09,17626,The Secret Adventures of Tom Thumb +Caryn James,none,0108069,New York Times,,2004-08-30,17626,The Secret Adventures of Tom Thumb +Kevin Thomas,none,0108069,Los Angeles Times,,2001-02-13,17626,The Secret Adventures of Tom Thumb +Rita Kempley,none,0108069,Washington Post,,2000-01-01,17626,The Secret Adventures of Tom Thumb +Emanuel Levy,rotten,0111301,Variety,Far less captivating than the videogame that inspired it.,2008-07-03,11290,Street Fighter +Geoff Andrew,rotten,0111301,Time Out,"Julia (in his final role) hams it up shamelessly as the camp commandant, but not even his suave presence and throwaway quips can save this noisy, brainless mess.",2006-06-24,11290,Street Fighter +Stephen Holden,rotten,0111301,New York Times,"A dreary, overstuffed hodgepodge of poorly edited martial arts sequences and often unintelligible dialogue.",2004-08-30,11290,Street Fighter +Richard Harrington,rotten,0111301,Washington Post,Game Over.,2000-01-01,11290,Street Fighter +,rotten,0111301,Boston Globe,,1994-12-22,11290,Street Fighter +Variety Staff,fresh,0061809,Variety,"A probing, sensitive, tasteful, balanced and suspenseful documentary-drama.",2008-04-08,12934,In Cold Blood +,none,0061809,St. Louis Post-Dispatch,,2006-03-04,12934,In Cold Blood +Kenneth Turan,fresh,0061809,Los Angeles Times,"Hall's bleak vision, his gift for working with darkness and rain, rivals classic film noir of the 1940s and '50s in its visual mastery.",2006-03-02,12934,In Cold Blood +,rotten,0061809,Time Out,"In contrast to Capote, whose obsessive documentation of the pair's every act betrays his fear than he (and his readers) could well do something similar, Brooks explains and sympathises away their act as being unique to them.",2006-02-09,12934,In Cold Blood +Bosley Crowther,fresh,0061809,New York Times,"Excellent quasidocumentary, which sends shivers down the spine while moving the viewer to ponder.",2003-05-20,12934,In Cold Blood +Roger Ebert,fresh,0061809,Chicago Sun-Times,"Brooks' great achievement in the film is to portray Smith and Hickock as the unexceptional, dim-witted, morally adrift losers they were.",2002-06-18,12934,In Cold Blood +Don Druker,rotten,0061809,Chicago Reader,An uneasy mixture of facile Freudianism and 40s expressionism.,2000-01-01,12934,In Cold Blood +Emanuel Levy,none,0112849,Variety,,2009-03-26,770689263,Desert Winds +Frank Scheck,rotten,0112849,Hollywood Reporter,"Arriving more than a few years after author Robert Bly popularized the concept of male self-exploration, this Canadian documentary seems a bit too touchy-feely even for the age of Oprah.",2006-03-02,770689263,Desert Winds +Ronnie Scheib,rotten,0112849,Variety,The tribe's unfailing politeness outside of activities specifically designed to arouse testosterone underlines the suspiciously benign nature of the entire endeavor.,2006-02-27,770689263,Desert Winds +Dana Stevens,fresh,0112849,New York Times,"Though it generates its share of unintentional giggles, François Kohler's documentary manages to take us to a seldom-visited place: the hidden corners of the straight male mind.",2006-02-15,770689263,Desert Winds +V.A. Musetto,fresh,0112849,New York Post,"Desert Wind will be of interest to men -- and especially to women, who might learn much they didn't know about the opposite sex.",2006-02-15,770689263,Desert Winds +Jan Stuart,rotten,0112849,Newsday,We sense that the balance of the film's observations is being skewed by the camera's preference for the emotional exhibitionists in the bunch.,2006-02-15,770689263,Desert Winds +Joshua Land,rotten,0112849,Village Voice,"It's tough to connect with the almost context-free displays of emotion, and a century into the era of psychoanalysis, there's little about the men's assorted troubles with mothers and fathers, wives and girlfriends, that comes as a revelation.",2006-02-14,770689263,Desert Winds +Todd McCarthy,none,0113014,Variety,,2009-03-26,721642093,Fall Time +,none,0113014,Time Out,,2006-01-26,721642093,Fall Time +Owen Gleiberman,fresh,0101540,Entertainment Weekly,,2011-09-07,13137,Cape Fear +Jonathan Rosenbaum,rotten,0101540,Chicago Reader,"It's hard to understand why Martin Scorsese wanted to remake a nasty, formulaic 1962 thriller whose only ""classic"" credentials are a terrifying performance by Robert Mitchum and a Bernard Herrmann score.",2011-05-24,13137,Cape Fear +,fresh,0101540,Variety,Smart and stylish.,2008-08-07,13137,Cape Fear +,rotten,0101540,Time Out,Overblown horror-schlocker.,2006-06-24,13137,Cape Fear +Vincent Canby,fresh,0101540,New York Times,"Stay away if you're squeamish but, if you do, you'll miss an essential work by one of our masters, as well as two of the year's most accomplished performances, those of Mr. De Niro and Ms. Lewis.",2003-05-20,13137,Cape Fear +Peter Travers,fresh,0101540,Rolling Stone,"Though Scorsese doesn't always transcend the pulp in Cape Fear, watching him try allows us to share the exhilaration he experiences behind the camera.",2001-05-12,13137,Cape Fear +Desson Thomson,fresh,0101540,Washington Post,It's a helluva movie.,2000-01-01,13137,Cape Fear +Hal Hinson,fresh,0101540,Washington Post,"It's a brutal, demonic film with a grip like a vise; it grabs you early, its fingers around your throat, and never lets go.",2000-01-01,13137,Cape Fear +Roger Ebert,fresh,0101540,Chicago Sun-Times,"Impressive moviemaking, showing Scorsese as a master of a traditional Hollywood genre who is able to mold it to his own themes and obsessions.",2000-01-01,13137,Cape Fear +,fresh,0101540,Entertainment Weekly,"Proves that when a maverick virtuoso like Scorsese sets his mind to it, making ''mainstream'' movies is one more thing he can do better than just about anyone else.",1991-11-13,13137,Cape Fear +,none,0113104,Los Angeles Times,,2001-02-14,11595,Frank and Ollie +Joe Baltake,none,0113104,Sacramento Bee,,2000-01-01,11595,Frank and Ollie +Stephen Holden,none,0113104,New York Times,,2000-01-01,11595,Frank and Ollie +Edward Guthmann,none,0113104,San Francisco Chronicle,,2000-01-01,11595,Frank and Ollie +Susan Stark,fresh,0113104,Detroit News,,2000-01-01,11595,Frank and Ollie +,none,0059448,Variety,,2009-03-26,770683764,Mirage +Derek Adams,none,0059448,Time Out,,2006-06-24,770683764,Mirage +A.H. Weiler,none,0059448,New York Times,,2005-05-09,770683764,Mirage +Derek Adams,none,0400717,Time Out,,2011-11-18,287865419,Open Season +Hank Sartin,fresh,0400717,Time Out,,2011-11-17,287865419,Open Season +,fresh,0400717,Time Out,"I have to say that the humour here (some of it Pythonesque) is mostly spot on and, at times, mischievously dark.",2006-10-14,287865419,Open Season +Richard Roeper,rotten,0400717,Ebert & Roeper,It's just okay.,2006-10-02,287865419,Open Season +,none,0400717,St. Louis Post-Dispatch,,2006-09-30,287865419,Open Season +Geoff Pevere,fresh,0400717,Toronto Star,"Now that we've made one of the best computer-generated talking-animal-on-an-odyssey movies in the brief but busy history of the genre, can we please, please move on?",2006-09-29,287865419,Open Season +Bruce Newman,fresh,0400717,San Jose Mercury News,"A little bit like Over the Hedge, and a lot like the upcoming Flushed Away, in which an animated house mouse is forced to fend for himself in the sewers of London, Open Season may sound a bit familiar, but it is never dull.",2006-09-29,287865419,Open Season +Peter Hartlaub,rotten,0400717,San Francisco Chronicle,"With animated movies coming out every other week or so, mediocrity is becoming a rule. Open Season loses more points than most films because of its similarities to Over the Hedge, one of the few kids films that did it right this year.",2006-09-29,287865419,Open Season +Roger Moore,fresh,0400717,Orlando Sentinel,It's not deep and not totally original. But Open Season is whiplash quick with the gags and spot-on with the funny voices.,2006-09-29,287865419,Open Season +Lou Lumenick,rotten,0400717,New York Post,"An ugly, painfully derivative and sleep-inducing talking-animals cartoon laced with potty humor.",2006-09-29,287865419,Open Season +Elizabeth Weitzman,fresh,0400717,New York Daily News,A story that balances gentle messages with enough goofy anarchy to please any kid.,2006-09-29,287865419,Open Season +Colin Covert,fresh,0400717,Minneapolis Star Tribune,Open Season is a rambunctious blast. It's Sony Pictures Animation's first full-length feature film and no effort was spared getting it right.,2006-09-29,287865419,Open Season +Peter Debruge,rotten,0400717,Miami Herald,"For an inaugural effort, Open Season ain't bad, but the studio shows far more promise with its gee-whiz visuals than it does in the story department.",2006-09-29,287865419,Open Season +Kevin Crust,fresh,0400717,Los Angeles Times,"The movie is a genial romp and because it relies on the gentlest of scatological comedy, it can be enjoyed by all ages.",2006-09-29,287865419,Open Season +Mark Medley,fresh,0400717,Globe and Mail,The film wraps mindless cartoon violence and a few fart jokes around life lessons about friendship and responsibility. Kids should like it; parents won't mind it.,2006-09-29,287865419,Open Season +John Monaghan,rotten,0400717,Detroit Free Press,"Some theaters are showing the movie in IMAX 3D, which is the way I saw it. The novelty helps, but it still can't bring depth to entertainment this shallow.",2006-09-29,287865419,Open Season +Nancy Churnin,fresh,0400717,Dallas Morning News,One of the biggest surprises in this first full-length film from Sony Pictures Animation is how funny Ashton Kutcher is as Elliot.,2006-09-29,287865419,Open Season +Christy Lemire,fresh,0400717,Associated Press,This debut offering from Sony Pictures Animation has a giddy energy about it and a gleeful sense of its own weirdness.,2006-09-29,287865419,Open Season +Bill Zwecker,rotten,0400717,Chicago Sun-Times,"While the filmmakers here have provided us with a passable tale that is mildly humorous, Open Season breaks no new ground, from neither the animation nor the storytelling.",2006-09-29,287865419,Open Season +Janice Page,rotten,0400717,Boston Globe,"When your most distinctive element is Ashton Kutcher as a one-antlered mule deer, respect has reason to elude you.",2006-09-29,287865419,Open Season +Owen Gleiberman,fresh,0109339,Entertainment Weekly,,2011-09-07,770711075,Brother Minister: The Assassination of Malcolm X +,fresh,0109339,Entertainment Weekly,,2010-10-10,770711075,Brother Minister: The Assassination of Malcolm X +Owen Gleiberman,fresh,0109785,Entertainment Weekly,,2011-09-07,15795,Federal Hill +Jonathan Rosenbaum,fresh,0109785,Chicago Reader,Corrente's handling of class divisions (one of the heroes starts seeing a Brown University senior he sells cocaine to) and the body language of the performances keep things fresh.,2007-09-28,15795,Federal Hill +David Stratton,fresh,0109785,Variety,"Producer-director-scripter Michael Corrente manages to bring freshness to basically derivative material in Federal Hill, thanks to a number of excellent performances and some evocative black-and-white images of a world he knows intimately.",2007-09-28,15795,Federal Hill +Caryn James,fresh,0109785,New York Times,"Federal Hill is lively and likable, a first film with the kind of swift action, clever dialogue and clear-cut characters that suggest an expert director's touch.",2003-05-20,15795,Federal Hill +Mick LaSalle,fresh,0109785,San Francisco Chronicle,Federal Hill has sincerity on its side and a fair degree of authenticity.,2002-06-18,15795,Federal Hill +Peter Rainer,rotten,0109785,Los Angeles Times,"There is nothing terribly different or exciting about what he shows us; the film is gripping in a conventional, formulaic way.",2001-02-13,15795,Federal Hill +Roger Ebert,fresh,0109785,Chicago Sun-Times,"The movie has a good ear for the way the characters talk, dress, move and live; it's another Italian-American slice-of-life, well acted and directed.",2000-01-01,15795,Federal Hill +James Berardinelli,rotten,0109785,ReelViews,"With the possible exception of utilizing an atypical location (Providence, Rhode Island's Federal Hill as opposed to New York City or Long Island), there is little in this film that hasn't been done before, and better.",2000-01-01,15795,Federal Hill +Hal Hinson,rotten,0109785,Washington Post,"Though Corrente, who wrote, produced and directed this debut feature, displays a sure, confident hand, his style and sensibility aren't singular enough to make this collection of behavioral details feel original.",2000-01-01,15795,Federal Hill +,fresh,0109785,Entertainment Weekly,,1994-06-01,15795,Federal Hill +Lisa Schwarzbaum,rotten,0113409,Entertainment Weekly,,2011-09-07,13576,In the Mouth of Madness +,none,0113409,Variety,,2011-04-04,13576,In the Mouth of Madness +,rotten,0113409,Entertainment Weekly,,2011-04-04,13576,In the Mouth of Madness +Geoff Andrew,none,0113409,Time Out,,2006-02-09,13576,In the Mouth of Madness +Janet Maslin,none,0113409,New York Times,,2003-05-20,13576,In the Mouth of Madness +,none,0113409,Globe and Mail,,2002-04-12,13576,In the Mouth of Madness +Kevin Thomas,fresh,0113409,Los Angeles Times,A thinking person's horror picture that dares to be as cerebral as it is visceral.,2001-02-13,13576,In the Mouth of Madness +Roger Ebert,rotten,0113409,Chicago Sun-Times,One wonders how In the Mouth of Madness might have turned out if the script had contained even a little more wit and ambition.,2000-01-01,13576,In the Mouth of Madness +Mick LaSalle,rotten,0113409,San Francisco Chronicle,"Cheesy horror celebrating the power of cheesy horror, while pretending to be appalled.",2000-01-01,13576,In the Mouth of Madness +John Hartl,fresh,0113409,Film.com,"A stylized collection of well-timed shockers, helped along by the contributions of its capable cast.",2000-01-01,13576,In the Mouth of Madness +James Berardinelli,rotten,0113409,ReelViews,"Confusing, weird, and not very involving.",2000-01-01,13576,In the Mouth of Madness +Desson Thomson,rotten,0113409,Washington Post,"Uninvolving, abysmally scripted horror picture.",2000-01-01,13576,In the Mouth of Madness +Richard Harrington,rotten,0113409,Washington Post,Eventually falls apart because of its erratic plot and gaps in logic.,2000-01-01,13576,In the Mouth of Madness +Owen Gleiberman,rotten,0109021,Entertainment Weekly,,2011-09-07,10524,8 Seconds +Todd McCarthy,none,0109021,Variety,,2009-03-26,10524,8 Seconds +,none,0109021,Time Out,,2006-01-26,10524,8 Seconds +Stephen Holden,none,0109021,New York Times,,2003-05-20,10524,8 Seconds +Richard Harrington,none,0109021,Washington Post,,2000-01-01,10524,8 Seconds +Joe Brown,none,0109021,Washington Post,,2000-01-01,10524,8 Seconds +Roger Ebert,rotten,0109021,Chicago Sun-Times,,2000-01-01,10524,8 Seconds +,rotten,0109021,Entertainment Weekly,,1994-02-25,10524,8 Seconds +Owen Gleiberman,rotten,0109035,Entertainment Weekly,,2011-09-07,13406,Above the Rim +Brian Lowry,rotten,0109035,Variety,A fine cast and the movie's general energy can't overcome that mix of cliches and technical flaws.,2008-03-25,13406,Above the Rim +,fresh,0109035,Time Out,"A formula script, but a mobile camera, pulsing rap soundtrack and a game cast whip up the necessary fizz.",2006-06-24,13406,Above the Rim +Janet Maslin,fresh,0109035,New York Times,"Above the Rim has its formulaic elements, but it has been vigorously directed by Jeff Pollack, who appreciates the lively and unpretentious aspects of the story.",2003-05-20,13406,Above the Rim +Peter Travers,fresh,0109035,Rolling Stone,"It's Shakur who steals the show. The rapper's offscreen legal problems are well known, but there's no denying his power as an actor.",2001-05-12,13406,Above the Rim +Desson Thomson,rotten,0109035,Washington Post,A stultifying cliche of a movie -- even by sports-flick standards -- this basketball allegory doesn't get anywhere near the rim.,2000-01-01,13406,Above the Rim +Roger Ebert,fresh,0109035,Chicago Sun-Times,"The movie lives easily on the streets where it is shot, and the performances -- especially by Martin, Shakur and Pinkins -- are convincing.",2000-01-01,13406,Above the Rim +,rotten,0109035,Entertainment Weekly,,1994-03-23,13406,Above the Rim +Peter Rainer,fresh,0106220,Los Angeles Times,"Uneven as it is, Addams Family Values is considerably more enjoyable than its predecessor. At this rate, if there's a third installment, it'll be a knockout. Or at least a TKO.",2013-04-11,12634,Addams Family Values +Michael Sragow,fresh,0106220,New Yorker,"You've got to respect a comedy that makes light of arson, torture, and murder in these squeamish times.",2013-04-11,12634,Addams Family Values +Jay Boyar,rotten,0106220,Orlando Sentinel,"Somehow, the new production fails to sustain the creepy, kooky, mysterious, spooky and altogether ooky visual sweep that held the first film together.",2013-04-11,12634,Addams Family Values +Michael Wilmington,fresh,0106220,Chicago Tribune,"At its best, it's a valentine of venom, sent with mirth and malice aforethought.",2013-04-11,12634,Addams Family Values +Steven Rea,fresh,0106220,Philadelphia Inquirer,"Even if the sequel doesn't offer the delight of discovery, the trip back to Chateau Addams is more than the dead end it could have been.",2013-04-11,12634,Addams Family Values +Owen Gleiberman,fresh,0106220,Entertainment Weekly,,2011-09-07,12634,Addams Family Values +Richard Schickel,rotten,0106220,TIME Magazine,"Like the first of the Addams chronicles, this is an essentially lazy movie, too often settling for easy gags and special effects that don't come to any really funny point.",2008-11-21,12634,Addams Family Values +Geoff Andrew,fresh,0106220,Time Out,"As sequels go, this is passable...",2007-08-16,12634,Addams Family Values +Leonard Klady,fresh,0106220,Variety,"It remains perilously slim in the story department, but glides over the thin ice with technical razzle-dazzle and an exceptionally winning cast.",2007-05-03,12634,Addams Family Values +Jonathan Rosenbaum,fresh,0106220,Chicago Reader,"The comedy has moved into high gear and become one of the funniest, most mean-spirited satirical assaults on sunny American values since the salad days of W.C. Fields.",2007-05-03,12634,Addams Family Values +,fresh,0106220,Time Out New York,"As sequels go, this is passable: no more coherent than the episodic first instalment, but with enough sick humour to satisfy the mildly depraved.",2006-02-09,12634,Addams Family Values +Janet Maslin,fresh,0106220,New York Times,"Mr. Sonnenfeld repeats some of the first film's favorite visual stunts without wearing out their welcome, and he sustains much more exuberance than a sequel might be expected to have.",2003-05-20,12634,Addams Family Values +James Berardinelli,rotten,0106220,ReelViews,"A few sparkling performances and funny moments save this from being a complete waste of time, but it's not a promising way to start the Thanksgiving/Christmas movie season.",2000-01-01,12634,Addams Family Values +Desson Thomson,rotten,0106220,Washington Post,"A thinner, airier reunion.",2000-01-01,12634,Addams Family Values +Roger Ebert,fresh,0106220,Chicago Sun-Times,"Raul Julia and Anjelica Huston are given a lot of one-liners and payoff gags, of course, but what's funny is the stuff that comes in between -- the real affection with which they embrace each other, and the way they delight in their unspeakable lifestyle.",2000-01-01,12634,Addams Family Values +Stanley Kauffmann,rotten,0106226,The New Republic,"I don't know any of those [prior] versions, and I wonder how (which means I doubt that) they avoided the snare that Wharton unwittingly set for her adapters, the snare that, for all his gifts, caught Scorsese.",2013-06-19,10537,The Age of Innocence +Owen Gleiberman,fresh,0106226,Entertainment Weekly,,2011-09-07,10537,The Age of Innocence +Jonathan Rosenbaum,rotten,0106226,Chicago Reader,"Manages to be both personal and true to its source, though it never quite comes together.",2010-02-01,10537,The Age of Innocence +Todd McCarthy,fresh,0106226,Variety,An extraordinarily sumptuous piece of filmmaking.,2008-09-22,10537,The Age of Innocence +Peter Travers,fresh,0106226,Rolling Stone,"Spurning Masterpiece Theatre twittiness, Scorsese cuts to the primal passions of Wharton's tale.",2006-07-22,10537,The Age of Innocence +Vincent Canby,fresh,0106226,New York Times,"Mr. Scorsese has made a big, intelligent movie that functions as if it were a window on a world he had just discovered, and about which he can't wait to spread the news.",2006-07-22,10537,The Age of Innocence +Geoff Andrew,fresh,0106226,Time Out,Scorsese's most poignantly moving film.,2006-02-09,10537,The Age of Innocence +Desson Thomson,fresh,0106226,Washington Post,Scorsese shows he can flex an entirely different set of muscles and still make a great movie.,2000-01-01,10537,The Age of Innocence +Rita Kempley,fresh,0106226,Washington Post,Perhaps it shouldn't come as such a grand surprise that he is as deft at exploring the nuances of Edwardian manners as he is the laws of modern-day machismo.,2000-01-01,10537,The Age of Innocence +James Berardinelli,fresh,0106226,ReelViews,"A sumptuous motion picture, a feast for the senses.",2000-01-01,10537,The Age of Innocence +Roger Ebert,fresh,0106226,Chicago Sun-Times,"Scorsese, that artist of headlong temperament, here exhibits enormous patience.",2000-01-01,10537,The Age of Innocence +,fresh,0106226,Entertainment Weekly,,1993-10-01,10537,The Age of Innocence +Owen Gleiberman,rotten,0109068,Entertainment Weekly,,2011-09-07,11351,Airheads +Leonard Klady,rotten,0109068,Variety,The anarchic saga could have used more bite or the hint of a threat just to keep things interesting.,2008-06-01,11351,Airheads +Geoff Andrew,rotten,0109068,Time Out,"About airheads, and for them, too.",2006-02-09,11351,Airheads +Janet Maslin,rotten,0109068,New York Times,"There should have been enough material here for six sitcoms. Instead, there's not even enough for one movie.",2003-05-20,11351,Airheads +Peter Travers,fresh,0109068,Rolling Stone,"Fraser and Buscemi are deadpan delights. And Sandler, Opera Man on SNL, is a red-hot screen find.",2001-05-12,11351,Airheads +James Berardinelli,rotten,0109068,ReelViews,"Observing how fertile the field of heavy metal music is for satire, it's disappointing to watch Airheads bumble around, desperately trying to find something funny to say.",2000-01-01,11351,Airheads +Kevin McManus,fresh,0109068,Washington Post,"On the whole, Airheads is heavily entertaining.",2000-01-01,11351,Airheads +Mick LaSalle,fresh,0109068,San Francisco Chronicle,A spoof of heavy-metal culture that at the same time respects the vitality and pent-up passion behind it.,2000-01-01,11351,Airheads +Richard Harrington,rotten,0109068,Washington Post,"Even Beavis and Butt-head get to call in their critique. Naturally, they think the Lone Rangers suck.",2000-01-01,11351,Airheads +,rotten,0109068,Entertainment Weekly,,1994-08-05,11351,Airheads +Owen Gleiberman,rotten,0109067,Entertainment Weekly,,2011-09-07,12537,The Air Up There +Brian Lowry,rotten,0109067,Variety,"Working a bit too hard to send the crowd into a frenzy, the action in this basketball-oriented yarn isn't exactly fantastic, but it is mildly entertaining.",2008-03-24,12537,The Air Up There +,fresh,0109067,Time Out,"Give or take the odd spot of predictable arrogance, however, it's a good-humoured, good-hearted film.",2006-06-24,12537,The Air Up There +Janet Maslin,rotten,0109067,New York Times,"Children may find this funny, but the film isn't geared to very young audiences. It includes much more violence and profanity than its PG rating indicates.",2003-05-20,12537,The Air Up There +Desson Thomson,rotten,0109067,Washington Post,"Like the multitude of Disney visitors to Africa before (and after) him, he must learn to respect the noble savages he wishes to exploit. Saleh and his Winabis are not for sale -- at least, not immediately.",2000-01-01,12537,The Air Up There +David Mills,rotten,0109067,Washington Post,"Neither Max Apple's script nor Paul M. Glaser's direction succeeds in convincing you that these characters live, or that this story has anything to do with any thing.",2000-01-01,12537,The Air Up There +James Berardinelli,rotten,0109067,ReelViews,"A lightweight, brainless family movie chronicling the triumph of the underdog.",2000-01-01,12537,The Air Up There +,rotten,0109067,Entertainment Weekly,,1994-01-07,12537,The Air Up There +Owen Gleiberman,rotten,0106292,Entertainment Weekly,,2011-09-07,11855,Another Stakeout +Geoff Andrew,none,0106292,Time Out,,2006-02-09,11855,Another Stakeout +Vincent Canby,none,0106292,New York Times,,2003-05-20,11855,Another Stakeout +Roger Ebert,fresh,0106292,Chicago Sun-Times,,2000-01-01,11855,Another Stakeout +Hal Hinson,none,0106292,Washington Post,,2000-01-01,11855,Another Stakeout +Desson Thomson,none,0106292,Washington Post,,2000-01-01,11855,Another Stakeout +James Berardinelli,rotten,0106292,ReelViews,,2000-01-01,11855,Another Stakeout +,rotten,0106292,Entertainment Weekly,,1993-07-23,11855,Another Stakeout +Owen Gleiberman,rotten,0109198,Entertainment Weekly,,2011-09-07,13792,Bad Girls +Jonathan Rosenbaum,rotten,0109198,Chicago Reader,"It's the usual combo of high concept and low execution, and not even Jonathan Kaplan's background as an exploitation director can bail him out.",2010-02-08,13792,Bad Girls +Todd McCarthy,none,0109198,Variety,,2009-03-26,13792,Bad Girls +,none,0109198,Time Out,,2006-01-26,13792,Bad Girls +Stephen Holden,none,0109198,New York Times,,2003-05-20,13792,Bad Girls +,none,0109198,Globe and Mail,,2002-04-12,13792,Bad Girls +Peter Travers,none,0109198,Rolling Stone,,2001-05-12,13792,Bad Girls +Rita Kempley,none,0109198,Washington Post,,2000-01-01,13792,Bad Girls +Eve Zibart,none,0109198,Washington Post,,2000-01-01,13792,Bad Girls +Roger Ebert,rotten,0109198,Chicago Sun-Times,,2000-01-01,13792,Bad Girls +James Berardinelli,rotten,0109198,ReelViews,,2000-01-01,13792,Bad Girls +,rotten,0109198,Entertainment Weekly,,1994-04-22,13792,Bad Girls +Ben Kenigsberg,fresh,0497465,Time Out,,2011-11-17,770680718,Vicky Cristina Barcelona +Owen Gleiberman,fresh,0497465,Entertainment Weekly,,2011-09-07,770680718,Vicky Cristina Barcelona +Cole Haddon,fresh,0497465,Film.com,,2011-05-06,770680718,Vicky Cristina Barcelona +Dave Calhoun,fresh,0497465,Time Out,"The script is witty and playful, the casting just right.",2009-02-05,770680718,Vicky Cristina Barcelona +,fresh,0497465,Entertainment Weekly,,2008-12-29,770680718,Vicky Cristina Barcelona +Kirk Honeycutt,fresh,0497465,Hollywood Reporter,The film belongs to Bardem and Cruz.,2008-10-18,770680718,Vicky Cristina Barcelona +,fresh,0497465,St. Louis Post-Dispatch,,2008-10-18,770680718,Vicky Cristina Barcelona +Kenneth Turan,rotten,0497465,Los Angeles Times,"There is nothing wrong with Allen's determination to mix humor and drama, it's simply too bad he's not getting better at it.",2008-10-18,770680718,Vicky Cristina Barcelona +Rene Rodriguez,fresh,0497465,Miami Herald,"Every time you're ready to count Woody Allen out for good, he comes back and surprises you.",2008-10-18,770680718,Vicky Cristina Barcelona +Mick LaSalle,fresh,0497465,San Francisco Chronicle,"When great artists maintain their health and energy into their 70s, amazing things can happen -- and they're happening with Woody Allen.",2008-10-18,770680718,Vicky Cristina Barcelona +Wesley Morris,fresh,0497465,Boston Globe,Vicky Cristina Barcelona is fitfully good.,2008-10-18,770680718,Vicky Cristina Barcelona +Christopher Orr,rotten,0497465,The New Republic,Vicky Cristina Barcelona is the cinematic equivalent of a book on tape: a movie that watches itself for you and tells you what it sees.,2008-09-16,770680718,Vicky Cristina Barcelona +Jonathan F. Richards,fresh,0497465,Film.com,"The performances are all wonderful, but top honors go to the amazing Penelope Cruz.",2008-08-22,770680718,Vicky Cristina Barcelona +Manohla Dargis,fresh,0497465,New York Times,Vicky Cristina Barcelona is a rueful comedy about two young American women who savor many Continental delicacies.,2008-08-18,770680718,Vicky Cristina Barcelona +Joanne Kaufman,fresh,0497465,Wall Street Journal,A bittersweet meditation on art and passion and on love in its many guises.,2008-08-15,770680718,Vicky Cristina Barcelona +Claudia Puig,fresh,0497465,USA Today,"As exhilarating, captivating and enjoyable as a summer romance in an exotic city.",2008-08-15,770680718,Vicky Cristina Barcelona +Peter Howell,fresh,0497465,Toronto Star,"Vicky Cristina Barcelona is a comedy, a good one, and also one of Allen's best-ever meditations on the many entanglements of love.",2008-08-15,770680718,Vicky Cristina Barcelona +Richard Corliss,fresh,0497465,TIME Magazine,Vicky Cristina Barcelona is so engaging so much of the time that it feels like a modest rejuvenation: evidence that a summer in Spain can do wonders for a writer-director who may not have outlived his prime.,2008-08-15,770680718,Vicky Cristina Barcelona +Andrew O'Hehir,rotten,0497465,Salon.com,"It's literally difficult to believe that the person who made this picturesque, clueless, oddly misanthropic picture also made Annie Hall and Crimes and Misdemeanors.",2008-08-15,770680718,Vicky Cristina Barcelona +Roger Moore,fresh,0497465,Orlando Sentinel,"Likable, beautifully acted, scenic and sexy.",2008-08-15,770680718,Vicky Cristina Barcelona +Owen Gleiberman,rotten,0106400,Entertainment Weekly,,2011-09-07,9997,The Beverly Hillbillies +Jonathan Rosenbaum,rotten,0106400,Chicago Reader,"Four writers worked on the script, and they all should hang their heads in shame.",2008-05-13,9997,The Beverly Hillbillies +Todd McCarthy,fresh,0106400,Variety,"It's thin stuff, but the ingratiating naivete of the characters and the aw-shucks friendliness of the cast are disarming, and it becomes easy to just let this go down as a country tune with some moonshine on the side.",2008-05-13,9997,The Beverly Hillbillies +,rotten,0106400,Time Out,Director Spheeris should be ashamed of herself.,2006-06-24,9997,The Beverly Hillbillies +Janet Maslin,fresh,0106400,New York Times,"You'll hate yourself for enjoying this, but enjoy it you will.",2004-08-30,9997,The Beverly Hillbillies +Peter Travers,rotten,0106400,Rolling Stone,Tomlin finds the humor and the heart in these hillbillies. The rest is just crude oil.,2001-05-12,9997,The Beverly Hillbillies +Roger Ebert,rotten,0106400,Chicago Sun-Times,"Imagine the dumbest half-hour sitcom you've ever seen, spin it out to 93 minutes by making it even more thin and shallow, and you have this movie. It's appalling. It's not even really a good version of whatever it was that made the TV series appealing.",2000-01-01,9997,The Beverly Hillbillies +Desson Thomson,fresh,0106400,Washington Post,"Like the old show, the movie glides by quickly and pleasantly. If it's nothing fancy, it's mighty sweet.",2000-01-01,9997,The Beverly Hillbillies +James Berardinelli,rotten,0106400,ReelViews,"Perhaps the clearest evidence of the dearth of original ideas in Hollywood is the constant need to regurgitate old, worn-out television series.",2000-01-01,9997,The Beverly Hillbillies +,rotten,0106400,Entertainment Weekly,,1993-10-15,9997,The Beverly Hillbillies +Owen Gleiberman,rotten,0109254,Entertainment Weekly,,2011-09-07,14113,Beverly Hills Cop III +Richard Natale,none,0109254,Variety,,2009-03-26,14113,Beverly Hills Cop III +,none,0109254,Time Out,,2006-06-24,14113,Beverly Hills Cop III +Caryn James,none,0109254,New York Times,,2003-05-20,14113,Beverly Hills Cop III +,rotten,0109254,Globe and Mail,"Like most flicks conceived as marketing vehicles, it's hollow at the core.",2002-04-12,14113,Beverly Hills Cop III +Peter Travers,rotten,0109254,Rolling Stone,Gimmicks replace characterization at every turn.,2001-05-12,14113,Beverly Hills Cop III +Desson Thomson,rotten,0109254,Washington Post,[A] goofy vanity project.,2000-01-01,14113,Beverly Hills Cop III +Joe Brown,rotten,0109254,Washington Post,The most lackluster entry in the franchise.,2000-01-01,14113,Beverly Hills Cop III +James Berardinelli,rotten,0109254,ReelViews,"One wonders where the Eddie Murphy of 48 Hours and Trading Places has gone. The irreverence is still there, but there's no verve or freshness.",2000-01-01,14113,Beverly Hills Cop III +,rotten,0109254,Entertainment Weekly,,1994-05-25,14113,Beverly Hills Cop III +,none,0109303,Time Out,,2006-02-09,14857,Blown Away +Caryn James,none,0109303,New York Times,,2003-05-20,14857,Blown Away +,none,0109303,Globe and Mail,,2002-04-12,14857,Blown Away +Peter Travers,none,0109303,Rolling Stone,,2001-05-12,14857,Blown Away +Roger Ebert,rotten,0109303,Chicago Sun-Times,,2000-01-01,14857,Blown Away +James Berardinelli,rotten,0109303,ReelViews,,2000-01-01,14857,Blown Away +Desson Thomson,none,0109303,Washington Post,,2000-01-01,14857,Blown Away +Hal Hinson,none,0109303,Washington Post,,2000-01-01,14857,Blown Away +,rotten,0109303,Entertainment Weekly,,1994-07-01,14857,Blown Away +Owen Gleiberman,rotten,0109305,Entertainment Weekly,,2011-09-07,11556,Blue Chips +Todd McCarthy,rotten,0109305,Variety,A deafness-inducing but otherwise ho-hum would-be expose of shady recruiting practices by college basketball programs.,2008-03-25,11556,Blue Chips +Jonathan Rosenbaum,rotten,0109305,Chicago Reader,Not even an unsentimental basketball fan like director William Friedkin can wash away all the corn syrup.,2008-03-25,11556,Blue Chips +,fresh,0109305,Time Out,This hard-hitting college basketball drama marks a notable return to form for William Friedkin.,2006-06-24,11556,Blue Chips +Janet Maslin,fresh,0109305,New York Times,"If Mr. Friedkin didn't have to work so strenuously framing two-shots of Mr. Nolte with this seven-foot athlete, it might be hard to remember that Mr. O'Neal has a day job.",2003-05-20,11556,Blue Chips +Hal Hinson,rotten,0109305,Washington Post,The filmmakers don't get the ball into the Shaq-man's hands enough -- both literally and figuratively -- to make this personable giant's screen debut memorable.,2000-01-01,11556,Blue Chips +Desson Thomson,rotten,0109305,Washington Post,"If it wasn't for some exciting roundball action, Shaquille O'Neal's hulking-dunking presence and a wonderfully guttural performance from coach Nick Nolte, you'd slither off the bench asleep.",2000-01-01,11556,Blue Chips +James Berardinelli,fresh,0109305,ReelViews,A rare example of an entry into this genre that attempts to be honest and unique.,2000-01-01,11556,Blue Chips +Roger Ebert,fresh,0109305,Chicago Sun-Times,"What Friedkin brings to the story is a tone that feels completely accurate; the movie is a morality play, told in the realistic, sometimes cynical terms of modern high-pressure college sports.",2000-01-01,11556,Blue Chips +,rotten,0109305,Entertainment Weekly,,1994-02-18,11556,Blue Chips +Owen Gleiberman,fresh,0109306,Entertainment Weekly,,2011-09-07,11706,Blue Sky +Todd McCarthy,none,0109306,Variety,,2009-03-26,11706,Blue Sky +,none,0109306,Time Out,,2006-06-24,11706,Blue Sky +Caryn James,none,0109306,New York Times,,2003-05-20,11706,Blue Sky +Rita Kempley,none,0109306,Washington Post,,2000-01-01,11706,Blue Sky +James Berardinelli,rotten,0109306,ReelViews,,2000-01-01,11706,Blue Sky +Roger Ebert,fresh,0109306,Chicago Sun-Times,,2000-01-01,11706,Blue Sky +Kevin McManus,none,0109306,Washington Post,,2000-01-01,11706,Blue Sky +,fresh,0109306,Entertainment Weekly,,1994-09-16,11706,Blue Sky +Joe Morgenstern,fresh,0049366,Wall Street Journal,Few modern-day movies are more genuinely frightening.,2010-10-23,18032,Invasion of the Body Snatchers +Variety Staff,fresh,0049366,Variety,"This tense, offbeat piece of science-fiction is occasionally difficult to follow due to the strangeness of its scientific premise. Action nevertheless is increasingly exciting.",2008-11-26,18032,Invasion of the Body Snatchers +Don Druker,fresh,0049366,Chicago Reader,"Don Siegel's superb little effort, with its matter-of-fact isolation of hero Kevin McCarthy (ironic, no?) from the smarmy complacency of a small town gone to hell -- and way beyond -- points the way to his gripping action films of the 60s and 70s.",2007-05-30,18032,Invasion of the Body Snatchers +Geoff Andrew,fresh,0049366,Time Out,"It's still a chilling picture, gaining over Phil Kaufman's smart remake by virtue of its intimate small town setting, and it has one of the greatest endings ever filmed.",2006-06-24,18032,Invasion of the Body Snatchers +Owen Gleiberman,rotten,0106471,Entertainment Weekly,,2011-09-07,14132,Boxing Helena +Variety Staff,rotten,0106471,Variety,"It's probably just as well that last-minute dropouts Kim Basinger or Madonna didn't take the title role, as the presence of a star lurking powerlessly on the little platform no doubt would have been distracting and more laughable than it [is] now.",2008-02-08,14132,Boxing Helena +,rotten,0106471,Time Out,Grotesquely misconceived.,2006-06-24,14132,Boxing Helena +Janet Maslin,fresh,0106471,New York Times,"s. Lynch has both talent and a point. Her film is by no means the gory, exploitative quasi-pornography that it sounds like from afar.",2003-05-20,14132,Boxing Helena +Peter Travers,rotten,0106471,Rolling Stone,"What Lynch, who wrote the script at 19, sees as high drama is really high camp.",2001-05-12,14132,Boxing Helena +Rita Kempley,rotten,0106471,Washington Post,What Ms. Lynch has given us is a prettied-up snuff movie.,2000-01-01,14132,Boxing Helena +John Hartl,rotten,0106471,Film.com,"Fenn's slow-motion fountain-bathing scene looks like an over-the-top TV commercial, the cop-out finale is a film-school cliche, and the male characters are so one-dimensional and pathetic that the movie could inspire a Men's Action Coalition.",2000-01-01,14132,Boxing Helena +Joe Brown,rotten,0106471,Washington Post,Helena might have been salvageable as a so-bad-it's-good camp goof -- if only it weren't so boring.,2000-01-01,14132,Boxing Helena +James Berardinelli,rotten,0106471,ReelViews,It's just not a particularly good motion picture.,2000-01-01,14132,Boxing Helena +Owen Gleiberman,fresh,0106489,Entertainment Weekly,,2011-09-07,12976,A Bronx Tale +Todd McCarthy,none,0106489,Variety,,2008-11-26,12976,A Bronx Tale +David Ansen,none,0106489,Newsweek,,2008-03-31,12976,A Bronx Tale +,none,0106489,Time Out,,2006-06-24,12976,A Bronx Tale +Janet Maslin,none,0106489,New York Times,,2003-05-20,12976,A Bronx Tale +Peter Travers,none,0106489,Rolling Stone,,2001-05-12,12976,A Bronx Tale +James Berardinelli,fresh,0106489,ReelViews,,2000-01-01,12976,A Bronx Tale +Roger Ebert,fresh,0106489,Chicago Sun-Times,,2000-01-01,12976,A Bronx Tale +Desson Thomson,none,0106489,Washington Post,,2000-01-01,12976,A Bronx Tale +,fresh,0106489,Entertainment Weekly,,1993-01-01,12976,A Bronx Tale +Owen Gleiberman,rotten,0109361,Entertainment Weekly,,2011-09-07,11578,Cabin Boy +Brian Lowry,none,0109361,Variety,,2009-03-27,11578,Cabin Boy +Caryn James,none,0109361,New York Times,,2003-05-20,11578,Cabin Boy +David Mills,none,0109361,Washington Post,,2000-01-01,11578,Cabin Boy +James Berardinelli,rotten,0109361,ReelViews,,2000-01-01,11578,Cabin Boy +,rotten,0109361,Entertainment Weekly,,1994-01-07,11578,Cabin Boy +,none,0337909,Time Out,,2006-06-24,10412,Calendar Girls +Michael O'Sullivan,none,0337909,Washington Post,,2005-09-26,10412,Calendar Girls +Hap Erstein,fresh,0337909,Atlanta Journal-Constitution,"An innocent comic exercise, fueled more on charm than titillation.",2004-01-08,10412,Calendar Girls +Andrew Sarris,fresh,0337909,New York Observer,"Amiable enough as a frothy entertainment, with darker overtones rendered with emotional effectiveness.",2004-01-08,10412,Calendar Girls +,none,0337909,St. Louis Post-Dispatch,,2004-01-03,10412,Calendar Girls +Joe Baltake,fresh,0337909,Sacramento Bee,The movie -- like the calendar -- moves along smoothly.,2004-01-02,10412,Calendar Girls +Roger Moore,fresh,0337909,Orlando Sentinel,Sentimental and eccentric.,2004-01-02,10412,Calendar Girls +Jeff Strickler,fresh,0337909,Minneapolis Star Tribune,Calendar Girls will make your day.,2004-01-02,10412,Calendar Girls +Connie Ogle,fresh,0337909,Miami Herald,A breezy British comedy reminiscent of The Full Monty.,2004-01-02,10412,Calendar Girls +Eric Harrison,rotten,0337909,Houston Chronicle,Tries to be both funny and touching and and isn't enough of either.,2004-01-02,10412,Calendar Girls +Lisa Schwarzbaum,fresh,0337909,Entertainment Weekly,Breezes along for a good stretch in easy delight at age-defying liberation.,2004-01-02,10412,Calendar Girls +Terry Lawson,fresh,0337909,Detroit Free Press,"A refreshing lark, made all the more enjoyable by a cast of fine actors.",2004-01-02,10412,Calendar Girls +Lisa Kennedy,fresh,0337909,Denver Post,A lovely romp.,2004-01-02,10412,Calendar Girls +Philip Wuntch,rotten,0337909,Dallas Morning News,"Conventional, preachy and, worst of all, predictable.",2004-01-02,10412,Calendar Girls +Randy Cordova,fresh,0337909,Arizona Republic,Cozy and enjoyable.,2004-01-02,10412,Calendar Girls +Richard Roeper,fresh,0337909,Ebert & Roeper,"... good-natured confection, filled with breezy humor and heartfelt relationships ...",2003-12-22,10412,Calendar Girls +Stephanie Zacharek,rotten,0337909,Salon.com,"Unlike the flowers and the women of Yorkshire, Calendar Girls hits its stride early on, and goes to seed well before we can enjoy its full bloom.",2003-12-20,10412,Calendar Girls +Mike Clark,fresh,0337909,USA Today,The never-naughty Calendar Girls is as easy to take as it is because director Nigel Cole avoids the hard sell.,2003-12-19,10412,Calendar Girls +Geoff Pevere,rotten,0337909,Toronto Star,"There's a terrific comedy buried somewhere here about moral hypocrisy and community panic, but it never fully emerges.",2003-12-19,10412,Calendar Girls +Moira MacDonald,fresh,0337909,Seattle Times,A heartwarmer of a story.,2003-12-19,10412,Calendar Girls +Leonard Klady,none,0106519,Variety,,2009-03-26,16865,Carlito's Way +,fresh,0106519,Time Out,"Pacino looks every inch a movie star, and De Palma provides a timely reminder of just how impoverished the Hollywood lexicon has become since the glory days of the '70s.",2006-06-24,16865,Carlito's Way +Janet Maslin,fresh,0106519,New York Times,"""Carlito's Way"" is best watched as lively, colorful posturing and as a fine demonstration of this director's bravura visual style.",2003-05-20,16865,Carlito's Way +Peter Travers,rotten,0106519,Rolling Stone,,2001-05-12,16865,Carlito's Way +Roger Ebert,fresh,0106519,Chicago Sun-Times,"""Carlito's Way,"" like ""Scarface,"" is first and last a character study, a portrait of a man who wants to be better than he is.",2000-01-01,16865,Carlito's Way +Hal Hinson,rotten,0106519,Washington Post,"About halfway through, the overwhelming fact that the movie is a complete nothing becomes too much to ignore.",2000-01-01,16865,Carlito's Way +Desson Thomson,rotten,0106519,Washington Post,Pacino has his moments but for the most part he's surprisingly underwhelming. He's a great actor but even I can do a better Puerto Rican accent.,2000-01-01,16865,Carlito's Way +James Berardinelli,rotten,0106519,ReelViews,,2000-01-01,16865,Carlito's Way +,fresh,0106519,Entertainment Weekly,A competent and solidly unsurprising urban-underworld thriller: De Palma's imitation of a middle-drawer Sidney Lumet movie.,1993-01-01,16865,Carlito's Way +Leonard Klady,none,0109439,Variety,,2009-05-29,11473,City Slickers II: The Legend of Curly's Gold +,none,0109439,Time Out,,2006-02-09,11473,City Slickers II: The Legend of Curly's Gold +Janet Maslin,none,0109439,New York Times,,2003-05-20,11473,City Slickers II: The Legend of Curly's Gold +,none,0109439,Globe and Mail,,2002-04-12,11473,City Slickers II: The Legend of Curly's Gold +Peter Travers,none,0109439,Rolling Stone,,2001-05-12,11473,City Slickers II: The Legend of Curly's Gold +James Berardinelli,rotten,0109439,ReelViews,,2000-01-01,11473,City Slickers II: The Legend of Curly's Gold +Roger Ebert,rotten,0109439,Chicago Sun-Times,,2000-01-01,11473,City Slickers II: The Legend of Curly's Gold +Desson Thomson,none,0109439,Washington Post,,2000-01-01,11473,City Slickers II: The Legend of Curly's Gold +Rita Kempley,none,0109439,Washington Post,,2000-01-01,11473,City Slickers II: The Legend of Curly's Gold +,rotten,0109439,Entertainment Weekly,,1994-06-10,11473,City Slickers II: The Legend of Curly's Gold +Brian Lowry,none,0109443,Variety,,2009-03-26,12165,Clean Slate +Caryn James,none,0109443,New York Times,,2003-05-20,12165,Clean Slate +James Berardinelli,rotten,0109443,ReelViews,,2000-01-01,12165,Clean Slate +,rotten,0109443,Entertainment Weekly,,1994-05-06,12165,Clean Slate +Christopher Harris,fresh,0106582,Globe and Mail,it has truly awe-inspiring stunts and special effects and many of its suspense sequences will leave you with your heart in your mouth.,2013-08-03,16194,Cliffhanger +Jeff Shannon,rotten,0106582,Seattle Times,"The fact that so much money was lavished on such a thick-headed project represents the height of fiscal ineptitude, but this is the kind of roller-coaster ride for which eager audiences will gladly check their brains at the turnstiles, so go figure.",2013-08-03,16194,Cliffhanger +Steven Rea,fresh,0106582,Philadelphia Inquirer,"The cinematography and gravity-defying stunt performances are exhilarating. The story, alas, is pure routine.",2013-08-03,16194,Cliffhanger +Jay Boyar,rotten,0106582,Orlando Sentinel,Some movies get you so excited - so revved up on action and thrills -- that you almost feel like you're flying. Cliffhanger makes you feel like you're dropping.,2013-08-03,16194,Cliffhanger +Anthony Lane,rotten,0106582,New Yorker,"That rasping tension is soon smoothed away, as the plot sets off on its daft and hackneyed course.",2013-08-03,16194,Cliffhanger +Kenneth Turan,rotten,0106582,Los Angeles Times,"Cliffhanger no doubt makes for a great coming attraction, but as a two-hour movie its claims are much more problematic.",2013-08-03,16194,Cliffhanger +Gene Siskel,rotten,0106582,Chicago Tribune,Take away the mountains and what you have is a howlingly bad action film with a cornball villain out to steal a massive amount of United States currency from federal agents.,2013-08-03,16194,Cliffhanger +Dave Kehr,fresh,0106582,Chicago Tribune,"Like the roller-coaster ride Cliffhanger clearly wants to be, the film sends you out pleasantly rattled and wobbly of gait.",2013-08-03,16194,Cliffhanger +Jonathan Rosenbaum,rotten,0106582,Chicago Reader,It's hard to think of a movie my feelings have been more divided on.,2013-08-02,16194,Cliffhanger +Richard Schickel,fresh,0106582,TIME Magazine,"We are not at Cliffhanger for realism; we're there for the cliffhanging, and there's plenty of it.",2010-07-25,16194,Cliffhanger +Owen Gleiberman,fresh,0106582,Entertainment Weekly,"Despite the don't-look-down Olympian settings, Cliffhanger's spirit is brutal and earthbound. The movie is like one of those computer-designed simulator rides that whip you around until you're dizzy and aching but don't actually take you anywhere.",2010-07-07,16194,Cliffhanger +Todd McCarthy,fresh,0106582,Variety,Cliffhanger lives up to its title as a two-hour rollercoaster ride that never stops.,2009-03-26,16194,Cliffhanger +Geoff Andrew,rotten,0106582,Time Out,"Fun for the undemanding, but Stallone's 'comeback' should have been much tighter.",2006-06-24,16194,Cliffhanger +Janet Maslin,fresh,0106582,New York Times,"Cliffhanger, the new high-altitude thriller starring Sylvester Stallone, wastes no time in establishing its first priority, that of sending its audience into a cold sweat.",2003-05-20,16194,Cliffhanger +Roger Ebert,fresh,0106582,Chicago Sun-Times,"Cliffhanger is a device to entertain us, and it works, especially during those moments when Stallone is hanging by his fingernails over a three-mile fall, and the bad guys are stomping on him.",2000-01-01,16194,Cliffhanger +Rita Kempley,rotten,0106582,Washington Post,"A predictably thick-headed, occasionally plodding bacchanalia of blood, grunts and testosterone.",2000-01-01,16194,Cliffhanger +James Berardinelli,rotten,0106582,ReelViews,"Whether Cliffhanger will bring Stallone's name back into the top echelon of action movie stars has yet to be determined, but if this film can't, the task may be impossible.",2000-01-01,16194,Cliffhanger +Desson Thomson,fresh,0106582,Washington Post,"Just pull the plug on your judgment, good sense and values. Remember to leave enough motor skills to face forward -- that's where the screen is.",2000-01-01,16194,Cliffhanger +Owen Gleiberman,fresh,0106598,Entertainment Weekly,,2011-09-07,10612,Coneheads +Duane Byrge,rotten,0106598,Hollywood Reporter,Can you inflate a gimmick-driven comedy skit into a full-fledged feature film? Up to a point.,2008-05-16,10612,Coneheads +Leonard Klady,fresh,0106598,Variety,"A sweet, funny anarchic pastiche that should find broad based popularity.",2008-05-16,10612,Coneheads +Janet Maslin,rotten,0106598,New York Times,"Coneheads falls flat about as often as it turns funny, and displays more amiability than style.",2003-05-20,10612,Coneheads +Desson Thomson,fresh,0106598,Washington Post,"A respectably funny -- but small -- effort, a reunion party best watched in your living room, while you consume mass quantities of pizza with extra molten lactate extract of hooved mammals.",2000-01-01,10612,Coneheads +Roger Ebert,rotten,0106598,Chicago Sun-Times,"This is a dismal, dreary and fairly desperate movie, in which the actors try very hard but are unable to overcome an uninspired screenplay.",2000-01-01,10612,Coneheads +James Berardinelli,rotten,0106598,ReelViews,"I expected stupid humor, silly humor, or bizarre humor, but not no humor.",2000-01-01,10612,Coneheads +Rita Kempley,rotten,0106598,Washington Post,"Curtin and Aykroyd rely on old standbys... When that doesn't work, which mostly it doesn't, they try grossing us out with a series of revolting Remulakian childbirth jokes.",2000-01-01,10612,Coneheads +,fresh,0106598,Entertainment Weekly,,1993-07-23,10612,Coneheads +Desmond Ryan,rotten,0109456,Philadelphia Inquirer,"The killer may find his target, but Color of Night fails to hit the nail on the head by a frustrating margin.",2013-05-17,13567,Color of Night +Jay Boyar,rotten,0109456,Orlando Sentinel,I'm tempted to go ahead and explain just exactly how transparent -- and implausible -- this mystery is. But then I don't want to spoil it for people who are even worse than I am at this sort of thing. People like Forrest Gump.,2013-05-17,13567,Color of Night +John Hartl,rotten,0109456,Seattle Times,"Mundane sex scenes, a standard L.A. car chase and Bakula's outrageously gory death scene (which plays like an unintentional parody) are all part of the predictable script.",2013-05-17,13567,Color of Night +Jonathan Rosenbaum,fresh,0109456,Chicago Reader,"The plot gets so convoluted and farfetched that you still may be scratching your head after the denouement, but you probably won't be bored.",2013-05-17,13567,Color of Night +Michael Wilmington,fresh,0109456,Chicago Tribune,"It's a psycho-erotic thriller with more twists and shocks than the rattlesnake which, at one point, leaps out at star Bruce Willis-from a location we won't describe. (It would spoil one of the several dozen surprises.)",2013-05-17,13567,Color of Night +Gene Siskel,rotten,0109456,Chicago Tribune,Color of Night and North represent the nadir of Willis' plummeting film career. He can be a most engaging talent; his script selection of late has been awful.,2013-05-17,13567,Color of Night +Owen Gleiberman,rotten,0109456,Entertainment Weekly,A deliriously brain-dead erotic thriller.,2011-09-07,13567,Color of Night +Todd McCarthy,rotten,0109456,Variety,Color of Night is a knuckleheaded thriller that means to get a rise out of audiences but will merely make them see red.,2009-03-26,13567,Color of Night +Trevor Johnston,rotten,0109456,Time Out,This -- another of Willis's crimes against celluloid -- is a special kind of bad.,2006-02-09,13567,Color of Night +Janet Maslin,rotten,0109456,New York Times,"The enthusiastically nutty Color of Night has the single-mindedness of a bad dream, and about as much reliance on everyday logic.",2003-05-20,13567,Color of Night +James Berardinelli,rotten,0109456,ReelViews,"Where's John McClane when you need him? If nothing else, the main character from the two Die Hard films would have livened up proceedings in this pathetically inept psychological thriller.",2000-01-01,13567,Color of Night +Desson Thomson,rotten,0109456,Washington Post,A clunker ripe for hecklers and oglers.,2000-01-01,13567,Color of Night +Roger Ebert,rotten,0109456,Chicago Sun-Times,Color of Night approaches badness from so many directions that one really must admire its imagination.,2000-01-01,13567,Color of Night +Rita Kempley,rotten,0109456,Washington Post,A convoluted psychosexual thriller that promises the moon and gives us Bruce's butt.,2000-01-01,13567,Color of Night +Owen Gleiberman,rotten,0109480,Entertainment Weekly,,2011-09-07,12171,Cops and Robbersons +Leonard Klady,rotten,0109480,Variety,"Trapped in a sitcom sensibility, the film never makes the vital connection with the audience that's necessary to spawn a hit.",2008-06-30,12171,Cops and Robbersons +Jonathan Rosenbaum,rotten,0109480,Chicago Reader,"Chevy Chase returns to the anonymous, unmemorable suburban mode that made his earlier movies profitable. And guess what? The results are anonymous and unmemorable.",2008-06-30,12171,Cops and Robbersons +Janet Maslin,rotten,0109480,New York Times,"In Cops and Robbersons, Chevy Chase has an unfortunate chance to prove that there's something even more unfunny than his disastrous talk show.",2003-05-20,12171,Cops and Robbersons +Richard Harrington,rotten,0109480,Washington Post,"Chevy Chase is lucky Cops and Robbersons isn't a sitcom. If it were, it would be canceled as pronto as his talk show was.",2000-01-01,12171,Cops and Robbersons +Roger Ebert,rotten,0109480,Chicago Sun-Times,Know what this sounds like? It sounds like a screenplay.,2000-01-01,12171,Cops and Robbersons +,rotten,0109480,Entertainment Weekly,,1994-04-15,12171,Cops and Robbersons +Brian Lowry,none,0109493,Variety,,2009-03-26,11313,The Cowboy Way +Caryn James,none,0109493,New York Times,,2004-08-30,11313,The Cowboy Way +,none,0109493,Globe and Mail,,2002-04-12,11313,The Cowboy Way +Peter Travers,none,0109493,Rolling Stone,,2001-05-12,11313,The Cowboy Way +Joe Brown,none,0109493,Washington Post,,2000-01-01,11313,The Cowboy Way +James Berardinelli,rotten,0109493,ReelViews,,2000-01-01,11313,The Cowboy Way +Rita Kempley,none,0109493,Washington Post,,2000-01-01,11313,The Cowboy Way +,rotten,0109493,Entertainment Weekly,,1994-06-03,11313,The Cowboy Way +Richard Schickel,fresh,0106673,TIME Magazine,"A genial, expertly played political comedy proves that the spirit of Mr. Smith still lives.",2013-08-02,10250,Dave +Jeff Shannon,fresh,0106673,Seattle Times,"It's impossible to say whether Dave will play as wonderfully over the decades as it does right now, but this smooth-as-silk comedy could not be more timely, or connect more hopefully with our current national consciousness.",2013-08-02,10250,Dave +Steven Rea,fresh,0106673,Philadelphia Inquirer,"While it's sloppy and draggy in parts, Kevin Kline, in the title role, delivers an ingratiating comedic performance.",2013-08-02,10250,Dave +Jay Boyar,fresh,0106673,Orlando Sentinel,Kline is so polished and resourceful that he can glide his way through even the creakiest bits and make them seem fresh.,2013-08-02,10250,Dave +Kenneth Turan,fresh,0106673,Los Angeles Times,"Though replete with amusing situations and clever lines, its strongest suit is the delicately pitched comic performances of its actors, most especially star Kevin Kline.",2013-08-02,10250,Dave +Terrence Rafferty,rotten,0106673,New Yorker,"After the promisingly nasty beginning, the filmmakers settle into a sort of campaign mode, lulling and flattering the audience with a fairy-tale vision of the common man's victory over the Washington establishment.",2013-08-02,10250,Dave +Gene Siskel,fresh,0106673,Chicago Tribune,"Dave has been directed by Ivan Reitman in a refreshingly restrained fashion -- there are plenty of quiet passages, rare for American movies these days -- which compliments Kevin Kline's wonderful work as well.",2013-08-02,10250,Dave +Dave Kehr,fresh,0106673,Chicago Tribune,"It's a beautifully proportioned, wonderfully complete movie.",2013-08-02,10250,Dave +Owen Gleiberman,fresh,0106673,Entertainment Weekly,"For all its modest charm, Dave is a true throwback to the Capra days, a political comedy just cockeyed enough to triumph over cynicism.",2011-09-07,10250,Dave +Jonathan Rosenbaum,fresh,0106673,Chicago Reader,"An overall mood of sweetness may help one to forgive the archaic and childish aspects of the would-be analysis, which splits everyone between angels and devils.",2009-02-02,10250,Dave +Stephen Garrett,fresh,0106673,Time Out,A buoyant comedy in the Capra tradition.,2006-01-26,10250,Dave +Janet Maslin,fresh,0106673,New York Times,"In spite of this sogginess, and despite a self-congratulatory, do-gooder streak that the film discovers within Dave, this comedy remains bright and buoyant much of the way through.",2003-05-20,10250,Dave +Peter Travers,fresh,0106673,Rolling Stone,[Mixes] comedy and corn with surprising savvy.,2001-05-12,10250,Dave +Brian Lowry,fresh,0106673,Variety,"A delightful, buoyant new take on an old theme.",2001-02-13,10250,Dave +James Berardinelli,fresh,0106673,ReelViews,"A highly-enjoyable, fresh, and energetic motion picture that even the most hard-bitten cynic will be hard-pressed to condemn.",2000-01-01,10250,Dave +Rita Kempley,fresh,0106673,Washington Post,Offers feel-good guffaws.,2000-01-01,10250,Dave +Desson Thomson,fresh,0106673,Washington Post,"Will hit the warm, gushy spot for a lot of people.",2000-01-01,10250,Dave +Roger Ebert,fresh,0106673,Chicago Sun-Times,Wonderful lighthearted entertainment.,2000-01-01,10250,Dave +,none,0106677,Variety,,2012-02-23,13761,Dazed and Confused +Variety Staff,fresh,0106677,Variety,"The teenage wasteland, 1976-style, of Dazed and Confused is smack-dab between The Brady Bunch and Children of the Damned , and it's a scary, if sometimes giddily amusing, place to visit.",2011-08-08,13761,Dazed and Confused +Richard Corliss,fresh,0106677,TIME Magazine,Bet it makes you wanna dance.,2011-08-08,13761,Dazed and Confused +,fresh,0106677,Time Out,"Seriously funny, and shorn of any hint of nostalgia or wish-fulfilment, this is pretty much where it's at.",2007-08-16,13761,Dazed and Confused +Jonathan Rosenbaum,fresh,0106677,Chicago Reader,"A better-than-average teen movie but not much more, at least if you aren't a member of Linklater's generation.",2007-07-19,13761,Dazed and Confused +,fresh,0106677,Time Out New York,"Seriously funny, and shorn of any hint of nostalgia or wish-fulfilment, this is pretty much where it's at.",2006-01-26,13761,Dazed and Confused +Janet Maslin,fresh,0106677,New York Times,"Dazed and Confused has an enjoyably playful spirit, one that amply compensates for its lack of structure.",2003-05-20,13761,Dazed and Confused +Peter Travers,fresh,0106677,Rolling Stone,"The ultimate party movie -- loud, crude, socially irresponsible and totally irresistible.",2001-05-12,13761,Dazed and Confused +Desson Thomson,fresh,0106677,Washington Post,"Succeeds on its own terms and reflects American culture so well, it becomes part of it.",2000-01-01,13761,Dazed and Confused +James Berardinelli,rotten,0106677,ReelViews,This is light entertainment -- nothing groundbreaking or even especially noteworthy.,2000-01-01,13761,Dazed and Confused +Roger Ebert,fresh,0106677,Chicago Sun-Times,"The film's real inspiration, I think, is to depict some high school kids from the 1970s with such unblinking attention that we will realize how romanticized most movie teenagers are.",2000-01-01,13761,Dazed and Confused +Owen Gleiberman,fresh,0106677,Entertainment Weekly,"Once every decade or so, a movie captures the hormone-drenched, fashion- crazed, pop-song-driven rituals of American youth culture with such loving authenticity that it comes to seem a kind of anthem.",1993-09-10,13761,Dazed and Confused +Owen Gleiberman,fresh,0106697,Entertainment Weekly,,2011-09-07,13431,Demolition Man +Richard Schickel,rotten,0106697,TIME Magazine,Ultimately the script's often sharp social satire is drowned out by the noise and confusion. It is also undercut by casting virtually all the psychopathically murderous criminals as minority-group members.,2010-07-25,13431,Demolition Man +Jonathan Rosenbaum,rotten,0106697,Chicago Reader,"Nearly all the SF premises are accorded the status of Andrew Dice Clay one-liners -- which means that they, along with the characters, keep changing from one scene to the next.",2008-04-30,13431,Demolition Man +Emanuel Levy,rotten,0106697,Variety,"A noisy, soulless, self-conscious pastiche that mixes elements of sci-fi, action-adventure and romance, then pours on a layer of comedy replete with Hollywood in-jokes.",2008-04-30,13431,Demolition Man +,fresh,0106697,Time Out,"Forget your preconceptions, but not your brain cells and sense of irony.",2006-01-26,13431,Demolition Man +Vincent Canby,fresh,0106697,New York Times,"Demolition Man is a significant artifact of our time or, at least, of this week.",2003-05-20,13431,Demolition Man +Peter Travers,rotten,0106697,Rolling Stone,"Demolition Man is sleek and empty as well as brutal and pointless. It feels computer engineered, untouched by human hands. A real pod movie.",2001-05-12,13431,Demolition Man +James Berardinelli,rotten,0106697,ReelViews,"In the end, that's all this film is: flames, flying bullets, and special effects. It could be worse, I suppose, but as long as people go into this film with their eyes open, there shouldn't be any surprises.",2000-01-01,13431,Demolition Man +Hal Hinson,fresh,0106697,Washington Post,"Basically, Demolition Man is a futuristic cop picture with slightly more imagination and wit than the typical example of the slash-and-burn genre.",2000-01-01,13431,Demolition Man +,fresh,0106697,Entertainment Weekly,,1993-10-08,13431,Demolition Man +Emanuel Levy,rotten,0109729,Variety,"Not as exciting as the first film, this one can't decide whether it's a tarvelogue, an adventure, or National Geographic documentary.",2006-07-05,10732,The Endless Summer 2 +Stephen Holden,rotten,0109729,New York Times,"Had The Endless Summer II stuck to its subject, it would be a pleasant diversion. But it is weighed down with frivolous travel vignettes that are as dull as they are cute and contrived.",2003-05-20,10732,The Endless Summer 2 +Joe Brown,rotten,0109729,Washington Post,"Pretty hard to sit through, because Brown's incessant beach boy prattle is endlessly irritating.",2000-01-01,10732,The Endless Summer 2 +Roger Ebert,rotten,0109729,Chicago Sun-Times,"Although the movie runs 95 minutes, it contains nothing much in the way of information about surfing.",2000-01-01,10732,The Endless Summer 2 +Hal Hinson,fresh,0109729,Washington Post,"One of those rare bits of movie marginalia that are entirely without merit and, still, a pleasure to sit through.",2000-01-01,10732,The Endless Summer 2 +Jack Kroll,rotten,0106834,Newsweek,There are just too many half-cooked ingredients in this utopian stew of a movie.,2013-01-18,14680,Even Cowgirls Get the Blues +Deborah Young,none,0106834,Variety,,2008-09-24,14680,Even Cowgirls Get the Blues +,none,0106834,Time Out,,2006-01-26,14680,Even Cowgirls Get the Blues +Caryn James,none,0106834,New York Times,,2003-05-20,14680,Even Cowgirls Get the Blues +Desson Thomson,none,0106834,Washington Post,,2000-01-01,14680,Even Cowgirls Get the Blues +James Berardinelli,rotten,0106834,ReelViews,,2000-01-01,14680,Even Cowgirls Get the Blues +Joe Brown,none,0106834,Washington Post,,2000-01-01,14680,Even Cowgirls Get the Blues +Roger Ebert,rotten,0106834,Chicago Sun-Times,,2000-01-01,14680,Even Cowgirls Get the Blues +,rotten,0106834,Entertainment Weekly,,1994-05-20,14680,Even Cowgirls Get the Blues +,fresh,0106873,Entertainment Weekly,,2008-12-01,12162,Fatal Instinct +Brian Lowry,rotten,0106873,Variety,The filmmakers have provided critics ample artillery by prominently featuring a skunk in this thuddingly flat spoof of erotic thrillers.,2008-09-30,12162,Fatal Instinct +Jonathan Rosenbaum,rotten,0106873,Chicago Reader,"It's a real pity, because Reiner has certainly been funnier and more inventive on other outings and Sherilyn Fenn makes a winsome gal Friday.",2008-09-30,12162,Fatal Instinct +Janet Maslin,rotten,0106873,New York Times,A collection of gags that vary much too wildly in terms of timing and wit.,2003-05-20,12162,Fatal Instinct +Peter Travers,rotten,0106873,Rolling Stone,Small jokes are buried under elaborate setups. Sight gags are repeated to the point of exhaustion.,2001-05-12,12162,Fatal Instinct +Roger Ebert,rotten,0106873,Chicago Sun-Times,"Maybe you'll be in the right mood and like this stuff. It looks good, and the actors are several notches above the usual parody cast in ability. And yet...",2000-01-01,12162,Fatal Instinct +Rita Kempley,rotten,0106873,Washington Post,"Lacking in both inspiration and ingenuity, it doesn't so much spoof the conventions of the genre as dumb down famous -- and in some cases, forgotten -- scenes from a slew of other movies.",2000-01-01,12162,Fatal Instinct +James Berardinelli,rotten,0106873,ReelViews,"If I see another send-up of Sharon Stone's character in Basic Instinct, I think I'll walk out of the theater.",2000-01-01,12162,Fatal Instinct +Richard Corliss,fresh,0106332,TIME Magazine,"The scenes in the Peking Opera School, where boys are caned for doing wrong or right, are no less horrifying than the later tableaus of public humiliation at the hands of the Maoists.",2008-08-12,13016,Ba wang bie ji +Jonathan Rosenbaum,fresh,0106332,Chicago Reader,This is entertaining filmmaking on a grand scale.,2008-08-12,13016,Ba wang bie ji +Derek Elley,rotten,0106332,Variety,Seductively lensed but emotionally uninvolving.,2008-05-21,13016,Ba wang bie ji +David Ansen,fresh,0106332,Newsweek,Chen's remarkable movie uses an unusual love triangle to telescope more than 50 years of tumultuous Chinese history.,2008-04-07,13016,Ba wang bie ji +Geoff Andrew,fresh,0106332,Time Out,"Appropriately operatic, Chen's visually spectacular epic is sumptuous in every respect. Intelligent, enthralling, rhapsodic.",2006-01-26,13016,Ba wang bie ji +Vincent Canby,fresh,0106332,New York Times,One of those very rare film spectacles that deliver just about everything the ads are likely to promise.,2003-05-20,13016,Ba wang bie ji +Roger Ebert,fresh,0106332,Chicago Sun-Times,The film flows with such urgency that all its connections seem logical. And it is filmed with such visual splendor that possible objections are swept aside.,2000-01-01,13016,Ba wang bie ji +Desson Thomson,rotten,0106332,Washington Post,"Like Cheung's ethereally plaintive voice, the movie is a siren song that's appealing at first, but held too long. It becomes an increasing whine.",2000-01-01,13016,Ba wang bie ji +Hal Hinson,fresh,0106332,Washington Post,"The director carries us through this early history with impressive sensitivity; he has a beautiful, graceful touch, both with the camera and with his actors.",2000-01-01,13016,Ba wang bie ji +James Berardinelli,fresh,0106332,ReelViews,A motion picture experience that few will soon forget after leaving the theater.,2000-01-01,13016,Ba wang bie ji +,fresh,0106332,Entertainment Weekly,,1993-01-01,13016,Ba wang bie ji +,none,0109783,Newsday,,2008-10-18,15272,The Favor +Walter V. Addiego,none,0109783,San Francisco Chronicle,,2008-10-18,15272,The Favor +,none,0109783,Village Voice,,2008-04-30,15272,The Favor +Leonard Klady,none,0109783,Variety,,2006-06-24,15272,The Favor +Janet Maslin,none,0109783,New York Times,,2004-08-30,15272,The Favor +Joe Brown,none,0109783,Washington Post,,2000-01-01,15272,The Favor +Desson Thomson,none,0109783,Washington Post,,2000-01-01,15272,The Favor +James Berardinelli,rotten,0109783,ReelViews,,2000-01-01,15272,The Favor +Roger Ebert,rotten,0109783,Chicago Sun-Times,,2000-01-01,15272,The Favor +,rotten,0109783,Entertainment Weekly,,1994-04-29,15272,The Favor +Owen Gleiberman,fresh,0106880,Entertainment Weekly,,2011-09-07,13500,Fear of a Black Hat +Peter Travers,fresh,0106880,Rolling Stone,The best hip-hop film of all.,2007-08-14,13500,Fear of a Black Hat +Emanuel Levy,fresh,0106880,Variety,"Inspired by This Is Spinal Tap, this mockumentary exposes the trials of a hardcore rap band, N.W.H. (Niggas With Hats) with wild, irreverent humor and exuberant music.",2006-06-30,13500,Fear of a Black Hat +,rotten,0106880,Time Out,"While individual interviews, pop-video parodies and album titles hit the mark, the film as a whole is insufficiently clear-cut in its satire of the bands' dubious antics and attitudes.",2006-01-26,13500,Fear of a Black Hat +Janet Maslin,fresh,0106880,New York Times,"If Mr. Cundieff doesn't match the satirical genius of Mr. Reiner's film, he does understand the rules of the game.",2003-05-20,13500,Fear of a Black Hat +Roger Ebert,fresh,0106880,Chicago Sun-Times,"Not as fearless and sharp-edged as it could be -- but it provides a lot of laughs, and barbecues a few sacred cows.",2000-01-01,13500,Fear of a Black Hat +James Berardinelli,fresh,0106880,ReelViews,"This movie is not tightly-scripted or elegantly produced, but it is (for the most part) highly entertaining. For those who have been waiting for a sequel to Spinal Tap, this may be the best alternative.",2000-01-01,13500,Fear of a Black Hat +Michael Snyder,fresh,0106880,San Francisco Chronicle,"As it recounts the history of N.W.H., the film also manages to lampoon rap music and its archetypes, as well as poking fun at the venal, self-serving music-business types looking to grab easy money from the scene.",2000-01-01,13500,Fear of a Black Hat +Richard Harrington,fresh,0106880,Washington Post,"Fear of a Black Hat is not brilliant, but it's bright enough.",2000-01-01,13500,Fear of a Black Hat +,fresh,0106880,Entertainment Weekly,,1994-06-03,13500,Fear of a Black Hat +Lisa Schwarzbaum,rotten,0111732,Entertainment Weekly,,2011-09-07,10922,With Honors +Brian Lowry,none,0111732,Variety,,2008-06-10,10922,With Honors +,none,0111732,Time Out,,2006-01-26,10922,With Honors +Caryn James,none,0111732,New York Times,,2003-05-20,10922,With Honors +,none,0111732,Globe and Mail,,2002-04-12,10922,With Honors +Peter Travers,none,0111732,Rolling Stone,,2001-05-12,10922,With Honors +James Berardinelli,rotten,0111732,ReelViews,,2000-01-01,10922,With Honors +Desson Thomson,none,0111732,Washington Post,,2000-01-01,10922,With Honors +Roger Ebert,rotten,0111732,Chicago Sun-Times,,2000-01-01,10922,With Honors +Jeanne Cooper,none,0111732,Washington Post,,2000-01-01,10922,With Honors +,rotten,0111732,Entertainment Weekly,,1994-04-29,10922,With Honors +Owen Gleiberman,rotten,0106926,Entertainment Weekly,,2011-09-07,15609,Flesh and Bone +Todd McCarthy,none,0106926,Variety,,2009-03-26,15609,Flesh and Bone +,none,0106926,Time Out,,2006-01-26,15609,Flesh and Bone +Janet Maslin,none,0106926,New York Times,,2003-05-20,15609,Flesh and Bone +Peter Travers,none,0106926,Rolling Stone,,2001-05-12,15609,Flesh and Bone +Desson Thomson,none,0106926,Washington Post,,2000-01-01,15609,Flesh and Bone +Rita Kempley,none,0106926,Washington Post,,2000-01-01,15609,Flesh and Bone +James Berardinelli,fresh,0106926,ReelViews,,2000-01-01,15609,Flesh and Bone +Roger Ebert,rotten,0106926,Chicago Sun-Times,,2000-01-01,15609,Flesh and Bone +,rotten,0106926,Entertainment Weekly,,1993-11-05,15609,Flesh and Bone +,none,0111712,Variety,,2012-02-23,11660,Widows' Peak +Derek Elley,none,0111712,Variety,,2009-03-26,11660,Widows' Peak +,none,0111712,Time Out,,2006-06-24,11660,Widows' Peak +Caryn James,none,0111712,New York Times,,2003-05-20,11660,Widows' Peak +,none,0111712,Globe and Mail,,2002-04-12,11660,Widows' Peak +Peter Travers,none,0111712,Rolling Stone,,2001-05-12,11660,Widows' Peak +Roger Ebert,fresh,0111712,Chicago Sun-Times,,2000-01-01,11660,Widows' Peak +Rita Kempley,none,0111712,Washington Post,,2000-01-01,11660,Widows' Peak +Joe Brown,none,0111712,Washington Post,,2000-01-01,11660,Widows' Peak +James Berardinelli,fresh,0111712,ReelViews,,2000-01-01,11660,Widows' Peak +,fresh,0111712,Entertainment Weekly,,1994-05-13,11660,Widows' Peak +Richard Corliss,rotten,0106918,TIME Magazine,Tom Cruise heads a tony cast in a best-seller movie that is firm at the start and infirm by the end.,2008-05-26,16446,The Firm +Owen Gleiberman,fresh,0106918,Entertainment Weekly,The Firm amusingly satirizes the New Traditionalist aspirations of today's young urban elite -- not so much the lifestyle itself as the illusion of utter security it represents.,2008-05-26,16446,The Firm +Todd McCarthy,fresh,0106918,Variety,A smooth adaptation of John Grisham's giant bestseller that is destined to be one of the summer's strong audience pleasers.,2008-05-26,16446,The Firm +Wally Hammond,fresh,0106918,Time Out,"Adorning the film, in supporting roles, are its saving graces.",2006-01-26,16446,The Firm +Vincent Canby,rotten,0106918,New York Times,The movie is extremely long (two hours and 34 minutes) and so slow that by the end you feel as if you've been standing up even if you've been sitting down.,2003-05-20,16446,The Firm +Peter Travers,rotten,0106918,Rolling Stone,"The book moved at turbo speed. At two and a half hours, the movie crawls.",2001-05-12,16446,The Firm +Roger Ebert,fresh,0106918,Chicago Sun-Times,"With a screenplay that developed the story more clearly, this might have been a superior movie, instead of just a good one with some fine performances.",2000-01-01,16446,The Firm +Rita Kempley,rotten,0106918,Washington Post,"Pollack makes a solid job of it, as does Cruise. But solid isn't enough when it comes to thrillers -- or courtroom dramas, for that matter. Solid is great when it comes to office furniture.",2000-01-01,16446,The Firm +Joe Brown,fresh,0106918,Washington Post,"Cruise was born to play company man, and the role is an opportunity to sum up his old roles and transcend them with his most potently emotional work.",2000-01-01,16446,The Firm +James Berardinelli,rotten,0106918,ReelViews,"Very little of what made the written version so enjoyable has been successfully translated to the screen, and what we're left with instead is an overly-long (two hours and thirty-four minutes, to be exact), pedantic thriller.",2000-01-01,16446,The Firm +Owen Gleiberman,fresh,0106965,Entertainment Weekly,,2011-09-07,11960,Free Willy +Leonard Klady,none,0106965,Variety,,2008-06-23,11960,Free Willy +,none,0106965,Time Out,,2006-01-26,11960,Free Willy +Vincent Canby,none,0106965,New York Times,,2003-05-20,11960,Free Willy +James Berardinelli,rotten,0106965,ReelViews,,2000-01-01,11960,Free Willy +Roger Ebert,fresh,0106965,Chicago Sun-Times,,2000-01-01,11960,Free Willy +Hal Hinson,none,0106965,Washington Post,,2000-01-01,11960,Free Willy +Desson Thomson,none,0106965,Washington Post,,2000-01-01,11960,Free Willy +,fresh,0106965,Entertainment Weekly,,1993-07-16,11960,Free Willy +,none,0109842,Variety,,2012-02-23,13814,Fresh +Owen Gleiberman,fresh,0109842,Entertainment Weekly,,2011-09-07,13814,Fresh +,fresh,0109842,Entertainment Weekly,,2011-01-01,13814,Fresh +G. Allen Johnson,fresh,0109842,San Francisco Chronicle,,2010-10-01,13814,Fresh +,none,0109842,Time Out,,2006-01-26,13814,Fresh +Janet Maslin,none,0109842,New York Times,,2003-05-20,13814,Fresh +,none,0109842,Globe and Mail,,2002-04-12,13814,Fresh +Peter Travers,none,0109842,Rolling Stone,,2001-05-12,13814,Fresh +Roger Ebert,fresh,0109842,Chicago Sun-Times,,2000-01-01,13814,Fresh +Hal Hinson,none,0109842,Washington Post,,2000-01-01,13814,Fresh +Desson Thomson,none,0109842,Washington Post,,2000-01-01,13814,Fresh +James Berardinelli,fresh,0109842,ReelViews,,2000-01-01,13814,Fresh +Jeff Shannon,fresh,0106977,Seattle Times,"The film is little more than a well-oiled machine that serves a strictly limited function, but like a precision timepiece, it is a thing to marvel at, even under close scrutiny.",2013-07-29,12168,The Fugitive +Peter Travers,fresh,0106977,Rolling Stone,"For dynamite suspense loaded with thrills and wicked fun, you can't beat The Fugitive.",2013-07-29,12168,The Fugitive +Gene Siskel,fresh,0106977,Chicago Tribune,I've already seen The Fugitive twice. I'll probably see it again.,2013-07-29,12168,The Fugitive +Steven Rea,fresh,0106977,Philadelphia Inquirer,"Thoroughly engaging, edge-of-the-seat entertainment.",2013-07-29,12168,The Fugitive +Jay Boyar,rotten,0106977,Orlando Sentinel,"While there are actors in this film, there isn't much room for acting. The rapid editing and near-absence of dialogue reduces the actors to action figures with colorful labels pasted on their foreheads.",2013-07-29,12168,The Fugitive +Kenneth Turan,fresh,0106977,Los Angeles Times,"The Fugitive is a super-adrenalized stemwinder, a crisp and jolting melodrama that screws the tension so pitilessly tight it does everything but squeak.",2013-07-29,12168,The Fugitive +Anthony Lane,fresh,0106977,New Yorker,"It's a pleasure to find a thriller fulfilling its duties with such gusto: the emotions ring solid, the script finds time to relax into backchat, and for once the stunts look like acts of desperation rather than shows of prowess.",2013-07-29,12168,The Fugitive +Owen Gleiberman,fresh,0106977,Entertainment Weekly,It isn't just a high-powered summer blockbuster. It's something cannier (and rarer): a suspense thriller rooted in character.,2010-07-06,12168,The Fugitive +Richard Schickel,fresh,0106977,TIME Magazine,A first-rate thriller.,2008-08-24,12168,The Fugitive +Leonard Klady,fresh,0106977,Variety,"A consummate nail-biter that never lags, it leaves you breathless from the chase yet anxious for the next bit of mayhem or clever plot twist.",2008-05-20,12168,The Fugitive +Jonathan Rosenbaum,fresh,0106977,Chicago Reader,"Though it's a good half hour too long, this overblown 1993 spin-off of the 60s TV show otherwise adds up to a pretty good suspense thriller.",2008-05-20,12168,The Fugitive +Geoff Andrew,fresh,0106977,Time Out,"A glossy, formula chase movie with the requisite number of extravagant action sequences (most notably a massive train crash).",2006-01-26,12168,The Fugitive +Janet Maslin,fresh,0106977,New York Times,"Both stars have toughness and restraint that make their characters' battle of wits truly hypnotic, and in many ways more credible than it was on television.",2003-05-20,12168,The Fugitive +Desson Thomson,fresh,0106977,Washington Post,"A juggernaut of exaggeration, momentum and thrills.",2000-01-01,12168,The Fugitive +James Berardinelli,fresh,0106977,ReelViews,"""Innovative"" is not a legitimate description of The Fugitive, but ""entertaining"" is.",2000-01-01,12168,The Fugitive +Roger Ebert,fresh,0106977,Chicago Sun-Times,Davis paints with bold visual strokes so that the movie rises above its action-film origins and becomes operatic.,2000-01-01,12168,The Fugitive +Rita Kempley,fresh,0106977,Washington Post,"A flurry of stunts, close shaves and deeds of desperate daring, it easily transcends its television origins to become a stylish pacemaker-buster on the order of ""Die Hard, MD.""",2000-01-01,12168,The Fugitive +Todd McCarthy,none,0107004,Variety,,2009-03-26,11187,Geronimo: An American Legend +,none,0107004,Time Out,,2006-02-09,11187,Geronimo: An American Legend +Janet Maslin,none,0107004,New York Times,,2003-05-20,11187,Geronimo: An American Legend +Roger Ebert,fresh,0107004,Chicago Sun-Times,A film of great beauty and considerable intelligence.,2000-01-01,11187,Geronimo: An American Legend +James Berardinelli,rotten,0107004,ReelViews,,2000-01-01,11187,Geronimo: An American Legend +Desson Thomson,none,0107004,Washington Post,,2000-01-01,11187,Geronimo: An American Legend +Richard Harrington,none,0107004,Washington Post,,2000-01-01,11187,Geronimo: An American Legend +,rotten,0107004,Entertainment Weekly,,1993-01-01,11187,Geronimo: An American Legend +Ben Kenigsberg,rotten,0971209,Time Out,,2011-11-18,770803513,A Perfect Getaway +Joshua Rothkopf,rotten,0971209,Time Out,,2011-11-17,770803513,A Perfect Getaway +Dennis Harvey,fresh,0971209,Variety,A big-reveal thriller with surprises that really do surprise -- and are worth waiting for through an audaciously long buildup.,2009-12-18,770803513,A Perfect Getaway +Cliff Doerksen,rotten,0971209,Chicago Reader,Writer-director David Twohy (Pitch Black) serves up mechanical thrills culminating in a bogus twist ending,2009-08-20,770803513,A Perfect Getaway +Michael Phillips,fresh,0971209,Chicago Tribune,"A Perfect Getaway is a little better -- well, a little stranger -- than most of the disposables this summer.",2009-08-14,770803513,A Perfect Getaway +Nigel Floyd,fresh,0971209,Time Out,"David Twohy's taut, palm-sweating thriller has two things going for it: it keeps you guessing and it doesn't insult your intelligence.",2009-08-14,770803513,A Perfect Getaway +Joshua Rothkopf,rotten,0971209,Time Out New York,"The aesthetic is closer to a grand finale of Survivor than anything else, and while all the actors do scrappy work, they don't have much psychology to play with -- unlike a fun, class-conscious wilderness tale like The Edge.",2009-08-12,770803513,A Perfect Getaway +Ben Mankiewicz,rotten,0971209,At the Movies,I just don't think there was enough drama in the first two-thirds of this movie.,2009-08-10,770803513,A Perfect Getaway +Ben Lyons,rotten,0971209,At the Movies,"A terrific twist, but goes wasted in a movie that really runs out of steam.",2009-08-10,770803513,A Perfect Getaway +Stephen Cole,fresh,0971209,Globe and Mail,A Perfect Getaway is the rarest of film treats -- a B-movie that knows where it's going and how to get there.,2009-08-07,770803513,A Perfect Getaway +Lou Lumenick,fresh,0971209,New York Post,"Twohy serves up a hard-to-swallow second-act twist and an unconvincing back story, but the slightly overlong A Perfect Getaway recovers with a pulse-pounding climax.",2009-08-07,770803513,A Perfect Getaway +Joe Neumaier,rotten,0971209,New York Daily News,"The result isn't deadly dull, but it does turn what should have been a most dangerous game into a basic scenery-chewing contest.",2009-08-07,770803513,A Perfect Getaway +Stephen Whitty,fresh,0971209,Newark Star-Ledger,"A Perfect Getaway is one of those very clever whodunits that keeps you guessing for quite awhile. But on the way home, as you replay its tricks, you may feel more conned than charmed.",2009-08-07,770803513,A Perfect Getaway +Glenn Whipp,fresh,0971209,Los Angeles Times,"Twohy correctly banks on the fact that his audience will be too busy sifting through those aforementioned ""red snappers"" to care about the details.",2009-08-07,770803513,A Perfect Getaway +Connie Ogle,fresh,0971209,Miami Herald,"For a low-brow, psycho-on-the-loose-in-paradise thriller, A Perfect Getaway is surprisingly entertaining, with exactly the right elements to overcome the inevitable cliches.",2009-08-07,770803513,A Perfect Getaway +Kirk Honeycutt,rotten,0971209,Hollywood Reporter,"A gimmicky, tricked-out tale that is all too self-aware. But the film does keep you guessing and probably guessing wrong.",2009-08-07,770803513,A Perfect Getaway +Adam Graham,rotten,0971209,Detroit News,"Viewers know the gotcha is coming not only because they've been groomed to expect a third-act left turn in movies like this, but because the film's characters won't stop talking about it.",2009-08-07,770803513,A Perfect Getaway +Peter Hartlaub,fresh,0971209,San Francisco Chronicle,"A Perfect Getaway is a clever, heart-pounding thriller, and a welcome return to form for the director.",2009-08-07,770803513,A Perfect Getaway +Jason Anderson,fresh,0971209,Toronto Star,What is surprising about this effective little thriller is how cleverly writer-director David Twohy toys with the conventions of the genre as they exist today.,2009-08-07,770803513,A Perfect Getaway +Cary Darling,rotten,0971209,Dallas Morning News,David Twohy doesn't do much new and the twist is as obvious as a tornado in the Texas Panhandle. But that doesn't make it any less of an escapist joyride on a hot summer day.,2009-08-07,770803513,A Perfect Getaway +John Hartl,rotten,0109891,Seattle Times,The new summer movies don't get much more formulaic than this bald attempt to capture the audience that can't wait to see the next three or four installments of Home Alone.,2013-05-28,12618,Getting Even with Dad +Carrie Rickey,rotten,0109891,Philadelphia Inquirer,This seems to be the work not of screenwriters but of Hollywood marketing executives who believe movies are popular because they tell audiences what they want to hear.,2013-05-28,12618,Getting Even with Dad +Peter Rainer,rotten,0109891,Los Angeles Times,It's all a bit smug and suspect.,2013-05-28,12618,Getting Even with Dad +Jay Boyar,rotten,0109891,Orlando Sentinel,Tone: Home Alone-style slapstick with occasional (almost random) heart-tugging.,2013-05-28,12618,Getting Even with Dad +Brian Lowry,rotten,0109891,Variety,Neither Macaulay Culkin nor Ted Danson has improved his luck in selecting projects with this schizophrenic comedy.,2010-07-06,12618,Getting Even with Dad +,rotten,0109891,Time Out,"The script is formula and so is the direction, which leaves the acting.",2006-06-24,12618,Getting Even with Dad +John Petrakis,rotten,0109891,Chicago Tribune,"Perhaps blackmail isn't an easy subject to warm up to, or robbery the best ground to rebuild a relationship on, but with a little care, some added ingredients and a bit more spice, Getting Even With Dad could have been a satisfying [film].",2003-05-20,12618,Getting Even with Dad +Roger Ebert,rotten,0109891,Chicago Sun-Times,"Here is a movie with broad ambitions: It wants to be a caper, a comedy, a romance, and a showcase for MacAulay Culkin. That's too much of a stretch.",2000-01-01,12618,Getting Even with Dad +Rita Kempley,rotten,0109891,Washington Post,It's so monotonously unimaginative that it practically qualifies as child abuse.,2000-01-01,12618,Getting Even with Dad +James Berardinelli,rotten,0109891,ReelViews,The dysfunctional family in this film is little more than a shameless plot device to introduce a lame father/son bonding adventure.,2000-01-01,12618,Getting Even with Dad +Desson Thomson,rotten,0109891,Washington Post,"Who, exactly, is supposed to fall for this stuff?",2000-01-01,12618,Getting Even with Dad +Lisa Schwarzbaum,rotten,0109891,Entertainment Weekly,It probably sounded terrific in the pitch meeting.,1994-06-17,12618,Getting Even with Dad +,none,0109913,Variety,,2012-02-23,14774,Go Fish +Phil Gallo,none,0109913,Variety,,2011-06-29,14774,Go Fish +Emanuel Levy,fresh,0109913,Variety,"The most significant lesbian film of the past 20 years, this comedy is refreshingly not about coming out--it challenges prevalent stereotypes about lesbians without the stiff and sanctimonious tone of films like Claire of the Moon.",2006-08-02,14774,Go Fish +,none,0109913,Time Out,,2006-06-24,14774,Go Fish +Janet Maslin,none,0109913,New York Times,,2003-05-20,14774,Go Fish +,fresh,0109913,Globe and Mail,,2002-04-12,14774,Go Fish +James Berardinelli,fresh,0109913,ReelViews,,2000-01-01,14774,Go Fish +Roger Ebert,rotten,0109913,Chicago Sun-Times,,2000-01-01,14774,Go Fish +Rita Kempley,none,0109913,Washington Post,,2000-01-01,14774,Go Fish +,fresh,0109913,Entertainment Weekly,,1995-06-01,14774,Go Fish +Lisa Schwarzbaum,rotten,0109920,Entertainment Weekly,,2011-09-07,770672571,A Good Man in Africa +Leonard Klady,none,0109920,Variety,,2009-03-26,770672571,A Good Man in Africa +Derek Adams,none,0109920,Time Out,,2006-02-09,770672571,A Good Man in Africa +Janet Maslin,none,0109920,New York Times,,2003-05-20,770672571,A Good Man in Africa +Peter Travers,none,0109920,Rolling Stone,,2001-05-12,770672571,A Good Man in Africa +Hal Hinson,none,0109920,Washington Post,,2000-01-01,770672571,A Good Man in Africa +James Berardinelli,rotten,0109920,ReelViews,,2000-01-01,770672571,A Good Man in Africa +Joe Brown,none,0109920,Washington Post,,2000-01-01,770672571,A Good Man in Africa +Mick LaSalle,none,0109920,San Francisco Chronicle,,2000-01-01,770672571,A Good Man in Africa +Roger Ebert,rotten,0109920,Chicago Sun-Times,,2000-01-01,770672571,A Good Man in Africa +Owen Gleiberman,fresh,0107057,Entertainment Weekly,,2011-09-07,14921,Guilty as Sin +Lawrence Cohn,none,0107057,Variety,,2009-03-26,14921,Guilty as Sin +Derek Adams,none,0107057,Time Out,,2006-06-24,14921,Guilty as Sin +Janet Maslin,none,0107057,New York Times,,2003-05-20,14921,Guilty as Sin +Roger Ebert,fresh,0107057,Chicago Sun-Times,,2000-01-01,14921,Guilty as Sin +Desson Thomson,none,0107057,Washington Post,,2000-01-01,14921,Guilty as Sin +Rita Kempley,none,0107057,Washington Post,,2000-01-01,14921,Guilty as Sin +James Berardinelli,rotten,0107057,ReelViews,,2000-01-01,14921,Guilty as Sin +,fresh,0107057,Entertainment Weekly,,1993-06-04,14921,Guilty as Sin +Owen Gleiberman,rotten,0107096,Entertainment Weekly,,2011-09-07,14946,Heaven & Earth +Todd McCarthy,none,0107096,Variety,,2009-03-26,14946,Heaven & Earth +Derek Adams,none,0107096,Time Out,,2006-02-09,14946,Heaven & Earth +Janet Maslin,rotten,0107096,New York Times,"Mr. Stone tells this tale vigorously, but he has the wrong cinematic vocabulary for his heroine's essentially passive experience.",2004-06-05,14946,Heaven & Earth +Desson Thomson,rotten,0107096,Washington Post,"Heaven has so many themes, ranging from Buddhist spirituality to feminism, it ends up with none.",2001-11-16,14946,Heaven & Earth +Roger Ebert,fresh,0107096,Chicago Sun-Times,"This is the first time [Stone] has tried to place himself inside a woman's imagination, and that he succeeds so well is due partly...to an extraordinary performance by Hiep Thi Le in the leading role.",2001-10-30,14946,Heaven & Earth +James Berardinelli,fresh,0107096,ReelViews,"Heaven and Earth has the epic scope one would expect from a film of this magnitude, but it lacks much of the narrative strength of Stone's first two Vietnamese tales.",2001-10-30,14946,Heaven & Earth +,rotten,0107096,Entertainment Weekly,,1994-06-01,14946,Heaven & Earth +,none,0107144,Variety,,2012-02-23,10548,Hot Shots! Part Deux +Owen Gleiberman,rotten,0107144,Entertainment Weekly,,2011-09-07,10548,Hot Shots! Part Deux +Brian Lowry,none,0107144,Variety,,2009-03-26,10548,Hot Shots! Part Deux +Jonathan Rosenbaum,rotten,0107144,Chicago Reader,This is a long way from the inspirations of Airplane!,2008-02-04,10548,Hot Shots! Part Deux +Trevor Lewis,fresh,0107144,Time Out,"Unlike its grim predecessor, there are at least two chuckles this time round.",2006-02-09,10548,Hot Shots! Part Deux +Janet Maslin,fresh,0107144,New York Times,Is nothing sacred to the makers of Hot Shots! Part Deux? Nope. Not a thing.,2003-05-20,10548,Hot Shots! Part Deux +Rita Kempley,fresh,0107144,Washington Post,"God help me, I laughed and slapped my thighs.",2000-01-01,10548,Hot Shots! Part Deux +Roger Ebert,fresh,0107144,Chicago Sun-Times,One of the pleasures of watching a spoof like this is to spot the references; it's like a quiz on pop art.,2000-01-01,10548,Hot Shots! Part Deux +James Berardinelli,rotten,0107144,ReelViews,There are many instances when the film is too obvious in its attempts at humor.,2000-01-01,10548,Hot Shots! Part Deux +,rotten,0107144,Entertainment Weekly,,1993-05-21,10548,Hot Shots! Part Deux +Leonard Klady,none,0113674,Variety,,2008-10-18,549397693,Live Nude Girls +James Berardinelli,fresh,0113674,ReelViews,,2000-01-01,549397693,Live Nude Girls +Mick LaSalle,none,0113674,San Francisco Chronicle,,2000-01-01,549397693,Live Nude Girls +Owen Gleiberman,fresh,0112966,Entertainment Weekly,,2011-09-07,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Leonard Klady,none,0112966,Variety,,2009-03-26,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +,none,0112966,Time Out,,2006-01-26,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Janet Maslin,none,0112966,New York Times,,2003-05-20,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Peter Stack,fresh,0112966,San Francisco Chronicle,,2002-06-18,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +,none,0112966,Globe and Mail,,2002-04-12,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Kenneth Turan,none,0112966,Los Angeles Times,,2001-02-13,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Desson Thomson,none,0112966,Washington Post,,2000-01-01,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Hal Hinson,none,0112966,Washington Post,,2000-01-01,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Roger Ebert,fresh,0112966,Chicago Sun-Times,,2000-01-01,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Mike Clark,rotten,0112966,USA Today,"Though there's nothing in the film to equal the excitement of seeing a marquee collapse from the weight of its title, an attractive cast and setting turn a tired one-joke premise into an adequate view.",2000-01-01,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +James Berardinelli,fresh,0112966,ReelViews,,1995-05-12,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +,fresh,0112966,Entertainment Weekly,,1995-05-12,10729,The Englishman Who Went Up a Hill But Came Down a Mountain +Richard Schickel,fresh,0107151,TIME Magazine,"The thing works in its goofy way, mainly because Bille August is a man of apparently dauntless conviction. He has written and directed every scene with serene authority.",2013-05-20,15276,The House of the Spirits +Michael Wilmington,fresh,0107151,Chicago Tribune,"The flaws aren't fatal. The beauty and brilliance that might have been, don't preclude the quality and bravery that exist on the screen.",2013-05-20,15276,The House of the Spirits +Jay Boyar,rotten,0107151,Orlando Sentinel,The House of the Spirits is like Gone With the Wind with the fun and excitement replaced by lofty. All that's left is the wind.,2013-05-20,15276,The House of the Spirits +Carrie Rickey,rotten,0107151,Philadelphia Inquirer,"How can an accomplished director take a great novel, the best actors working and the finest technicians available and make a film so... bland? It's a puzzlement.",2013-05-20,15276,The House of the Spirits +Kenneth Turan,rotten,0107151,Los Angeles Times,"Inert from its opening moments to its too-long-delayed close, this lackluster production is an example of international filmmaking at its least attractive, and a misstep in the careers of pretty much everyone involved.",2013-05-20,15276,The House of the Spirits +Peter Travers,rotten,0107151,Rolling Stone,It's always painful when a brilliant book becomes a bust of a movie.,2013-05-20,15276,The House of the Spirits +Anthony Lane,rotten,0107151,New Yorker,"This is really quite an achievement. It brings together Jeremy Irons, Meryl Streep, Winona Ryder, Antonio Banderas, and Vanessa Redgrave and insures that, without exception, they all give their worst performances ever.",2013-05-20,15276,The House of the Spirits +Lisa Schwarzbaum,rotten,0107151,Entertainment Weekly,"August's earnest International Motion Picture Adaptation remains all too tethered to earth, weighted down by a surfeit of good intentions.",2011-09-07,15276,The House of the Spirits +Todd McCarthy,rotten,0107151,Variety,"Just as the characters' motivations are mostly crude rather than complex, and the view of class politics superficial and romantic rather than acute or intelligent, so is the film's treatment of the novel's magical realism on the mundane side.",2008-09-26,15276,The House of the Spirits +,rotten,0107151,Time Out,"Irons gives an excruciating performance - what Streep's genuinely warm, wonderful Clara sees in him you'd need ESP to fathom.",2006-02-09,15276,The House of the Spirits +Janet Maslin,fresh,0107151,New York Times,"It does take daring chances with a book that could not have been adapted otherwise, using extraordinary actors to rise above its occasional lapses. The lack of fidelity is often offset by intelligence of a subtler kind.",2004-08-30,15276,The House of the Spirits +Joe Brown,rotten,0107151,Washington Post,"Cinematographer Jorgen Persson gives The House of the Spirits plenty of picturesque moments, but August's stolid, straightforward direction isn't suited to Allende's magical-realist voice.",2000-01-01,15276,The House of the Spirits +Roger Ebert,rotten,0107151,Chicago Sun-Times,"All of the characters have the right names, all of the necessary events occur, and indeed the very best local actors have been engaged. But the soul has been mislaid.",2000-01-01,15276,The House of the Spirits +Desson Thomson,rotten,0107151,Washington Post,"The viewer doesn't have to be familiar with the book, however, to realize the film's a pretentious failure.",2000-01-01,15276,The House of the Spirits +James Berardinelli,fresh,0107151,ReelViews,"Bille August has done a fine job with Isable Allende's tale, crafting a captivating motion picture, but it's hard not to recognize the flaws, and wonder about the lost potential.",2000-01-01,15276,The House of the Spirits +Owen Gleiberman,rotten,0110064,Entertainment Weekly,,2011-09-07,14403,House Party 3 +Emanuel Levy,none,0110064,Variety,,2009-03-26,14403,House Party 3 +Caryn James,none,0110064,New York Times,,2003-05-20,14403,House Party 3 +David Mills,none,0110064,Washington Post,,2000-01-01,14403,House Party 3 +Owen Gleiberman,rotten,0110074,Entertainment Weekly,,2011-09-07,10690,The Hudsucker Proxy +Duane Byrge,rotten,0110074,Hollywood Reporter,A visually arresting but emotionally uninvolving dark comedy.,2007-11-06,10690,The Hudsucker Proxy +Jonathan Rosenbaum,rotten,0110074,Chicago Reader,"A jeering, dreamlike comedy with nothing much on its mind except how neat the Coen brothers are and how stupid or contemptible everybody else is, including everyone in the audience.",2007-11-06,10690,The Hudsucker Proxy +Todd McCarthy,rotten,0110074,Variety,"Nearly everything in the Coen brothers' latest and biggest film seems like a wizardly but artificial synthesis, leaving a hole in the middle where some emotion and humanity should be.",2007-11-06,10690,The Hudsucker Proxy +Geoff Andrew,fresh,0110074,Time Out,"A minor work, but confirmation of the Coens' position among America's most ambitious, able and exciting film-makers.",2006-06-24,10690,The Hudsucker Proxy +Caryn James,fresh,0110074,New York Times,"Movies are, after all, about fakery; so is the story of Norville's rise and fall and redemption.",2003-05-20,10690,The Hudsucker Proxy +James Berardinelli,fresh,0110074,ReelViews,A wickedly funny and incisive lampoon of big business.,2000-01-01,10690,The Hudsucker Proxy +Roger Ebert,rotten,0110074,Chicago Sun-Times,Not even the slightest attempt is made to suggest that the film takes its own story seriously. Everything is style. The performances seem deliberately angled as satire.,2000-01-01,10690,The Hudsucker Proxy +Joe Brown,rotten,0110074,Washington Post,"Clever but cold, a heartless mechanical gizmo.",2000-01-01,10690,The Hudsucker Proxy +Desson Thomson,rotten,0110074,Washington Post,If something brilliant is happening in The Hudsucker Proxy -- and you're meant to believe that it is -- it's apparent only to Ethan and Joel Coen.,2000-01-01,10690,The Hudsucker Proxy +,rotten,0110074,Entertainment Weekly,,1994-01-01,10690,The Hudsucker Proxy +Owen Gleiberman,fresh,0110097,Entertainment Weekly,,2011-09-07,12349,I'll Do Anything +Brian Lowry,none,0110097,Variety,,2009-03-26,12349,I'll Do Anything +Janet Maslin,none,0110097,New York Times,,2003-05-20,12349,I'll Do Anything +,none,0110097,Globe and Mail,,2002-04-12,12349,I'll Do Anything +Desson Thomson,none,0110097,Washington Post,,2000-01-01,12349,I'll Do Anything +Roger Ebert,fresh,0110097,Chicago Sun-Times,,2000-01-01,12349,I'll Do Anything +Rita Kempley,none,0110097,Washington Post,,2000-01-01,12349,I'll Do Anything +James Berardinelli,fresh,0110097,ReelViews,,2000-01-01,12349,I'll Do Anything +,fresh,0110097,Entertainment Weekly,,1994-02-04,12349,I'll Do Anything +Kevin Thomas,fresh,0110123,Los Angeles Times,"If Shore's comic genius eludes you or if you find the film something less than a constant laugh riot, you may still be willing to agree that it's amiable enough and not begrudge in the least the likelihood that Shore fans will be pleased.",2013-05-22,10745,In the Army Now +Carrie Rickey,fresh,0110123,Philadelphia Inquirer,"Is In the Army Now funny? Yes, Drill Sergeant, Sir! Is it stupid? Yes, sir! Does it kill brain cells? Yes, sirree!",2013-05-22,10745,In the Army Now +Jeff Shannon,rotten,0110123,Seattle Times,"Being an appealing, shallow goof-off can wear thin, and Shore seems incapable of carrying a movie, even when it's a 90-minute knock-off like this.",2013-05-22,10745,In the Army Now +Michael Wilmington,rotten,0110123,Chicago Tribune,The movie's best performance is given by a camel.,2013-05-22,10745,In the Army Now +Owen Gleiberman,rotten,0110123,Entertainment Weekly,[An] abysmal knockoff of Stripes.,2011-09-07,10745,In the Army Now +Janet Maslin,rotten,0110123,New York Times,"Putting Mr. Shore under the authority of a pretty female drill sergeant (Lynn Whitfield) is, along with that bad haircut, one of this film's only ways of getting laughs.",2003-05-20,10745,In the Army Now +Desson Thomson,rotten,0110123,Washington Post,"Every promising situation -- Shore suffering through basic training, dealing with real battle and so on -- suffers immediate creative fatigue.",2000-01-01,10745,In the Army Now +Rita Kempley,rotten,0110123,Washington Post,"It's a tale as old as the jokes, which were already old when the Peloponnesians went to war.",2000-01-01,10745,In the Army Now +Roger Ebert,rotten,0110123,Chicago Sun-Times,"The screenplay, work by five writers, based on a story by three others, seems to have been rewritten often enough that any individuality has been lost.",2000-01-01,10745,In the Army Now +Clifford Terry,fresh,0107206,Chicago Tribune,"Petersen directs his film in a straightforward, workmanlike fashion-few surprises here -- and, curiously, for most of the film is better at establishing a kind of amiability than a hard tension.",2013-07-30,16314,In the Line of Fire +Gene Siskel,fresh,0107206,Chicago Tribune,"Director Wolfgang Petersen moves the story along, but his real job is to simply stay out of the way of his two racehorse lead actors. And he does.",2013-07-30,16314,In the Line of Fire +Kenneth Turan,fresh,0107206,Los Angeles Times,Every part of this film trades so heavily on Eastwood's presence that it is impossible to imagine it with anyone else in the starring role.,2013-07-30,16314,In the Line of Fire +Terrence Rafferty,fresh,0107206,New Yorker,"The movie has a clear, simple thriller logic that's far more satisfying than the static variations-on-a-massacre construction of Eastwood's Dirty Harry pictures and spaghetti Westerns.",2013-07-30,16314,In the Line of Fire +Jay Boyar,fresh,0107206,Orlando Sentinel,"Despite the presence of all these action-flick cliches, In the Line of Fire works. Sure, it's no more than a formula movie, but it's an effective formula movie.",2013-07-30,16314,In the Line of Fire +Carrie Rickey,fresh,0107206,Philadelphia Inquirer,"Between them, director Petersen and screenwriter Jeff Maguire do a memorable job developing their characters in this story of personal and professional redemption.",2013-07-30,16314,In the Line of Fire +Jonathan Rosenbaum,rotten,0107206,Chicago Reader,"If you don't care about such motivations, this is a pretty good thriller, though not one you're likely to remember for very long.",2013-07-30,16314,In the Line of Fire +John Hartl,fresh,0107206,Seattle Times,"For the most part, this is an exciting, engaging thriller, well-directed by Wolfgang Petersen.",2013-07-30,16314,In the Line of Fire +Richard Corliss,fresh,0107206,TIME Magazine,"Clint Eastwood has always been an old man. Even in the '60s, as the gunslinger in Sergio Leone westerns, Eastwood had the squinty eyes, sour mouth and weary walk of a soldier who had been in too many wars.",2013-07-30,16314,In the Line of Fire +Todd McCarthy,fresh,0107206,Variety,"Director Wolfgang Petersen sends the story efficiently down its straight and narrow track, deftly engineering the battle of wills between two desperately committed men.",2009-03-26,16314,In the Line of Fire +Geoff Andrew,fresh,0107206,Time Out,"Directing each set-piece for all he's worth, Petersen highlights the plot with vivid details and invests several of the action sequences with moral/psychological dimensions.",2006-02-09,16314,In the Line of Fire +Vincent Canby,fresh,0107206,New York Times,The most uproariously entertaining movie of the summer so far.,2003-05-20,16314,In the Line of Fire +Peter Travers,fresh,0107206,Rolling Stone,In the Line of Fire is often an explosive blend of pounding tension and wisecracking humor. This is formula dished out by experts.,2001-05-12,16314,In the Line of Fire +Roger Ebert,fresh,0107206,Chicago Sun-Times,"Despite the familiar plot elements ... In the Line of Fire is not a retread but a smart, tense, well-made thriller -- Eastwood's best in the genre since Tightrope.",2000-01-01,16314,In the Line of Fire +James Berardinelli,fresh,0107206,ReelViews,"Hands down, Malkovich's assassin is the best thing about this solid thriller -- a villain that rivals Hannibal Lecter for intelligence and cold, calculated viciousness.",2000-01-01,16314,In the Line of Fire +Hal Hinson,rotten,0107206,Washington Post,"Malkovich does such wonderfully unexpected things, especially with his line readings, that he leaves us dumbfounded. No other performer is more effortlessly unnerving than this perversely gifted actor.",2000-01-01,16314,In the Line of Fire +Desson Thomson,fresh,0107206,Washington Post,"[It] is not a brilliant movie. But thanks to Eastwood, it feels like one.",2000-01-01,16314,In the Line of Fire +Owen Gleiberman,fresh,0107206,Entertainment Weekly,"Though the movie is engrossing, it lacks something: fire, weirdness, originality.",1993-07-09,16314,In the Line of Fire +,none,0107207,Variety,,2012-02-23,13519,In the Name of the Father +Richard Corliss,fresh,0107207,TIME Magazine,"By the end of the movie, whether or not you're a member of Sinn Fein, the Brits' brutality toward the Conlons will get your Irish up.",2008-03-11,13519,In the Name of the Father +Owen Gleiberman,fresh,0107207,Entertainment Weekly,[Sheridan] works with such piercing fervor and intelligence that In the Name of the Father just about transcends its tidy moral design.,2008-03-11,13519,In the Name of the Father +Todd McCarthy,fresh,0107207,Variety,"Miscarried justice often provides the vehicle for emotionally wrenching drama and histrionic fireworks, and such is the case in spades with In the Name of the Father.",2008-03-11,13519,In the Name of the Father +Jonathan Rosenbaum,fresh,0107207,Chicago Reader,"The acting's so good it frequently transcends the simplicities of the script, and whenever Day-Lewis or Postlethwaite is on-screen the movie crackles.",2008-03-11,13519,In the Name of the Father +Trevor Johnston,fresh,0107207,Time Out,"Sheridan's movie seeks to engage and enrage. It's not, however, a film with an ideological axe to sharpen, but one which unfolds, with a sense of passionate conviction, a story of injustice.",2006-06-24,13519,In the Name of the Father +Francis X. Clines,fresh,0107207,New York Times,The film offers layers of dramatic detail for those who might be confused at points but teased to inquire further.,2003-05-21,13519,In the Name of the Father +James Berardinelli,fresh,0107207,ReelViews,"The brilliance of Jim Sheridan's motion picture is that we come to view every event from the perspective of how it impacts on the relationship between Gerry and his father, in whose name the final struggle is fought.",2000-01-01,13519,In the Name of the Father +Roger Ebert,fresh,0107207,Chicago Sun-Times,[Day-Lewis] proves here once again that he is one of the most talented and interesting actors of his generation.,2000-01-01,13519,In the Name of the Father +Desson Thomson,fresh,0107207,Washington Post,As good a compromise of fact and fiction as you could hope for -- and still call it a movie.,2000-01-01,13519,In the Name of the Father +Rita Kempley,rotten,0107207,Washington Post,The film takes forever to do what 60 Minutes does with the same meat in a single segment.,2000-01-01,13519,In the Name of the Father +Lisa Schwarzbaum,rotten,0110137,Entertainment Weekly,,2011-09-07,14359,The Inkwell +Todd McCarthy,none,0110137,Variety,,2009-03-26,14359,The Inkwell +Stephen Holden,none,0110137,New York Times,,2004-08-30,14359,The Inkwell +Desson Thomson,none,0110137,Washington Post,,2000-01-01,14359,The Inkwell +Roger Ebert,fresh,0110137,Chicago Sun-Times,,2000-01-01,14359,The Inkwell +,rotten,0110137,Entertainment Weekly,,1994-04-22,14359,The Inkwell +Jeff Shannon,fresh,0108551,Seattle Times,"A powerful portrait of emotional endurance, propelled by the outstanding performances of Bassett and Fishburne, both of whom lend a crucial dimension to the gradual redundancies of Kate Lanier's otherwise insightful screenplay.",2013-07-29,13236,What's Love Got to Do with It +Carrie Rickey,fresh,0108551,Philadelphia Inquirer,Their nuanced performances give a spectrum of emotional shadings to a black-and-white script that casts Tina as the Beauty to Ike's unreconstructed Beast.,2013-07-29,13236,What's Love Got to Do with It +Jay Boyar,fresh,0108551,Orlando Sentinel,Angela Bassett is a wonderfully sympathetic screen presence who may have a big career ahead of her.,2013-07-29,13236,What's Love Got to Do with It +Terrence Rafferty,fresh,0108551,New Yorker,"Fishburne's astonishing portrayal of Ike is what holds the movie together. The actor builds, in precise increments, a devastating portrait of a macho control freak; he even finds a kind of ghastly humor in the character's madness.",2013-07-29,13236,What's Love Got to Do with It +Kenneth Turan,fresh,0108551,Los Angeles Times,"Though the picture rightfully belongs to Bassett, a final word must be said about Fishburne, who never fails to make Ike seem human if not defensible. Even in defeat, he is remarkably compelling.",2013-07-29,13236,What's Love Got to Do with It +Clifford Terry,rotten,0108551,Chicago Tribune,"Brian Gibson, who directed the script by Kate Lanier, seems to have trouble taking charge of his material as he skips through the years.",2013-07-29,13236,What's Love Got to Do with It +Gene Siskel,fresh,0108551,Chicago Tribune,"A powerful, joyful, raw, energetically acted bio-pic detailing the joys and pain of the on- and offstage lives of blues rockers Ike and Tina Turner.",2013-07-29,13236,What's Love Got to Do with It +Jonathan Rosenbaum,fresh,0108551,Chicago Reader,"As a powerhouse showcase for the acting talents of Angela Bassett and Laurence Fishburne and as a potent portrayal of wife beating and the emotions that surround it, it's quite a show.",2013-07-29,13236,What's Love Got to Do with It +Owen Gleiberman,fresh,0108551,Entertainment Weekly,"A splashy, volatile, crowd- pleasing rock-star melodrama that makes up in sheer emotional wallop what it sometimes lacks in finesse.",2011-09-07,13236,What's Love Got to Do with It +Variety Staff,fresh,0108551,Variety,A passionate personal and professional drama that hits both the high and low notes of an extraordinary career.,2009-03-26,13236,What's Love Got to Do with It +Geoff Andrew,fresh,0108551,Time Out,"Angela Bassett shakes her tail feather with aplomb and pins down the singer's gestures with amazing precision. Top honours, however, belong to Fishburne's swaggering, savage portrayal of Ike.",2006-06-24,13236,What's Love Got to Do with It +Janet Maslin,fresh,0108551,New York Times,"The brilliant, mercurial portrayal of Ike Turner by Laurence Fishburne is what elevates What's Love Got to Do With It beyond the realm of run-of-the-mill biography.",2003-05-20,13236,What's Love Got to Do with It +Rita Kempley,fresh,0108551,Washington Post,"A handsome woman with the lanky appeal of Katharine Hepburn, Bassett brays and bruises with equal effectiveness.",2000-01-01,13236,What's Love Got to Do with It +Roger Ebert,fresh,0108551,Chicago Sun-Times,"It's a story of pain and courage, uncommonly honest and unflinching, and the next time I hear Tina Turner singing I will listen to the song in a whole new way.",2000-01-01,13236,What's Love Got to Do with It +James Berardinelli,fresh,0108551,ReelViews,"You don't have to be a Tina Turner fan to appreciate this movie, but, regardless of your opinion of her music, What's Love Got To Do With It cannot fail to impart an impression of her courage and inner strength.",2000-01-01,13236,What's Love Got to Do with It +Desson Thomson,fresh,0108551,Washington Post,"A melodrama of starry-eyed love and black-eyed beatings, exhausting road tours and the singer's even harder road to self-realization, the movie contains its emotional highs and lows in the hermetically sealed bio-pic format.",2000-01-01,13236,What's Love Got to Do with It +Owen Gleiberman,rotten,0110197,Entertainment Weekly,,2011-09-07,15989,Jimmy Hollywood +Todd McCarthy,none,0110197,Variety,,2009-03-26,15989,Jimmy Hollywood +Geoff Andrew,none,0110197,Time Out,,2006-06-24,15989,Jimmy Hollywood +Janet Maslin,none,0110197,New York Times,,2003-05-20,15989,Jimmy Hollywood +,none,0110197,Globe and Mail,,2002-04-12,15989,Jimmy Hollywood +Peter Travers,none,0110197,Rolling Stone,,2001-05-12,15989,Jimmy Hollywood +Desson Thomson,none,0110197,Washington Post,,2000-01-01,15989,Jimmy Hollywood +James Berardinelli,rotten,0110197,ReelViews,,2000-01-01,15989,Jimmy Hollywood +Roger Ebert,rotten,0110197,Chicago Sun-Times,,2000-01-01,15989,Jimmy Hollywood +Joe Brown,none,0110197,Washington Post,,2000-01-01,15989,Jimmy Hollywood +,rotten,0110197,Entertainment Weekly,,1994-03-30,15989,Jimmy Hollywood +Variety Staff,rotten,0107286,Variety,"This is an exceedingly well directed, cleverly filmed and edited, tension-filled affair. It is also a wholly preposterous, muddled, paranoid view of the inner-city nightmare where the slightest misstep is sure to have a fateful result.",2008-09-02,15499,Judgment Night +Janet Maslin,fresh,0107286,New York Times,"A tight, energetic sleeper in the action-adventure genre, manages to pack a few anti-machismo sentiments into an otherwise brawny tale.",2003-05-20,15499,Judgment Night +Richard Harrington,rotten,0107286,Washington Post,"The filmmakers have made a big deal of a soundtrack that features 10 collaborations between rappers and rockers (the theme is performed by De La Soul and Teenage Fan Club), but their casting consciousness is less adventurous.",2000-01-01,15499,Judgment Night +James Berardinelli,rotten,0107286,ReelViews,It's refreshing to know that it's not just characters in horror films who are irredeemably dumb.,2000-01-01,15499,Judgment Night +Desson Thomson,rotten,0107286,Washington Post,"Perhaps the ultimate Judgment comes from Estevez, who observes: 'Nothing about tonight makes sense.'",2000-01-01,15499,Judgment Night +Jeff Shannon,fresh,0107290,Seattle Times,"Jurassic Park is an astonishing success in one sense and one sense only: It is the monster of all monster movies, guaranteed to challenge weak bladders, flutter heartbeats and win automatic Oscars for the [tech crew].",2013-07-31,10983,Jurassic Park +Michael O'Sullivan,fresh,0107290,Washington Post,The enthralling man-vs.-nature parable based on the late Michael Crichton's best-selling novel hasn't aged one bit.,2013-04-05,10983,Jurassic Park +Richard Corliss,fresh,0107290,TIME Magazine,The 3-D process adds not just dimension but depth - a technological extension of cinematographer Gregg Toland's deep-focus innovations in The Grapes of Wrath and Citizen Kane. The change in perspective creates greater intensity.,2013-04-05,10983,Jurassic Park +Tom Russo,fresh,0107290,Boston Globe,"I'm a fan of this movie. It is thrilling, and the 3-D treatment is a nice enhancement.",2013-04-04,10983,Jurassic Park +Peter Howell,fresh,0107290,Toronto Star,"This movie doesn't just stand the test of time, it transcends it.",2013-04-04,10983,Jurassic Park +Rafer Guzman,fresh,0107290,Newsday,"""Jurassic Park"" remains an absolute thrill from a Spielberg in top form: Funny, scary, fast-moving and full of just-right details.",2013-04-04,10983,Jurassic Park +Sean O'Connell,fresh,0107290,Washington Post,"""Jurassic Park"" was impressive in 1993. Twenty years later, it's flawless.",2013-04-04,10983,Jurassic Park +Nell Minow,fresh,0107290,Chicago Sun-Times,"Spielberg has gone on to weightier and more prestigious projects, but this thrill ride is one of his best and a masterpiece of the genre.",2013-04-04,10983,Jurassic Park +Alan Scherstuhl,fresh,0107290,Village Voice,"That T. rex is worth the wait, but the wait itself is even more memorable.",2013-04-03,10983,Jurassic Park +Terrence Rafferty,rotten,0107290,New Yorker,"For all the ingenuity of the movie's engineering, Jurassic Park doesn't have the imagination -- or the courage -- to take us any place we haven't been a thousand times before. It's just a creature feature on amphetamines.",2013-04-01,10983,Jurassic Park +Kenneth Turan,rotten,0107290,Los Angeles Times,Do the dinosaurs work? Indeed they do. Does anything else? Not really.,2013-04-01,10983,Jurassic Park +Steven Rea,fresh,0107290,Philadelphia Inquirer,The earthshaking footfalls of these lizard-kings are palpable and terrifying. Spielberg's crew of dinosaur-effects artists has conjured up a Mesozoic menagerie whose realism outdoes anything in cinema history.,2013-04-01,10983,Jurassic Park +Jay Boyar,fresh,0107290,Orlando Sentinel,This is as close as any of us is likely to get to witnessing life in prehistoric times.,2013-04-01,10983,Jurassic Park +Dave Kehr,fresh,0107290,Chicago Tribune,"The characters aren't much more well-defined than the anonymous victims of a teen horror movie... The dinosaur effects, however, are absolutely stunning, and sometimes so natural that one even forgets to be impressed.",2013-04-01,10983,Jurassic Park +Owen Gleiberman,fresh,0107290,Entertainment Weekly,"Spielberg's peerless twin gift has always been for making the fantastic seem real (Close Encounters, E.T., the Indiana Jones trilogy) and the real fantastic (Jaws).",2009-11-06,10983,Jurassic Park +Duane Byrge,fresh,0107290,Hollywood Reporter,The well-selected cast is winningly sympathetic and entertainingly idiosyncratic.,2007-06-05,10983,Jurassic Park +Jonathan Rosenbaum,rotten,0107290,Chicago Reader,There's more soul to be found in any Kong close-up than in this film's overplayed reactions.,2007-06-05,10983,Jurassic Park +Geoff Andrew,fresh,0107290,Time Out,"Spielberg is still supreme as an action director, and when the T Rex makes beefburger of the jeep, or the vicious 'Raptors stalk their human prey, the film inspires wonder and awe.",2006-06-24,10983,Jurassic Park +Peter Travers,fresh,0107290,Rolling Stone,You won't believe your eyes.,2006-06-24,10983,Jurassic Park +Janet Maslin,fresh,0107290,New York Times,Mr. Spielberg has great fun with every last growl and rumble signaling the approach of danger...,2003-05-20,10983,Jurassic Park +Owen Gleiberman,rotten,0107302,Entertainment Weekly,,2011-09-07,16615,Kalifornia +Leonard Klady,none,0107302,Variety,,2009-03-26,16615,Kalifornia +Geoff Andrew,none,0107302,Time Out,,2006-06-24,16615,Kalifornia +Janet Maslin,none,0107302,New York Times,,2003-05-20,16615,Kalifornia +Peter Travers,none,0107302,Rolling Stone,,2001-05-12,16615,Kalifornia +Richard Harrington,none,0107302,Washington Post,,2000-01-01,16615,Kalifornia +James Berardinelli,rotten,0107302,ReelViews,,2000-01-01,16615,Kalifornia +Roger Ebert,fresh,0107302,Chicago Sun-Times,,2000-01-01,16615,Kalifornia +Joe Brown,none,0107302,Washington Post,,2000-01-01,16615,Kalifornia +Owen Gleiberman,rotten,0110265,Entertainment Weekly,,2011-09-07,16732,Killing Zoe +,rotten,0110265,Entertainment Weekly,,2011-01-01,16732,Killing Zoe +Leonard Klady,none,0110265,Variety,,2009-03-26,16732,Killing Zoe +Geoff Andrew,none,0110265,Time Out,,2006-06-24,16732,Killing Zoe +Janet Maslin,none,0110265,New York Times,,2003-05-20,16732,Killing Zoe +,none,0110265,Globe and Mail,,2002-04-12,16732,Killing Zoe +Roger Ebert,rotten,0110265,Chicago Sun-Times,,2000-01-01,16732,Killing Zoe +James Berardinelli,rotten,0110265,ReelViews,,2000-01-01,16732,Killing Zoe +Hal Hinson,none,0110265,Washington Post,,2000-01-01,16732,Killing Zoe +Joe Brown,none,0110265,Washington Post,,2000-01-01,16732,Killing Zoe +Mick LaSalle,none,0110265,San Francisco Chronicle,,2000-01-01,16732,Killing Zoe +Owen Gleiberman,fresh,0107322,Entertainment Weekly,,2011-09-07,12718,King of the Hill +Todd McCarthy,none,0107322,Variety,,2009-03-26,12718,King of the Hill +,none,0107322,Hollywood Reporter,,2008-04-24,12718,King of the Hill +Geoff Andrew,none,0107322,Time Out,,2006-06-24,12718,King of the Hill +Janet Maslin,fresh,0107322,New York Times,"The film does a lovely job of juxtaposing the sharp contrasts in Aaron's life, and in marveling at the fact that he survives as buoyantly as he does.",2004-08-30,12718,King of the Hill +Peter Travers,fresh,0107322,Rolling Stone,,2001-05-12,12718,King of the Hill +James Berardinelli,fresh,0107322,ReelViews,A remarkable odyssey about a resilient young hero who uses both his imagination and his sense of reality to survive.,2000-01-01,12718,King of the Hill +Roger Ebert,fresh,0107322,Chicago Sun-Times,"With the kind of material you'd never dream of associating with him, Soderbergh has made his best film.",2000-01-01,12718,King of the Hill +Desson Thomson,fresh,0107322,Washington Post,It's his best work by far.,2000-01-01,12718,King of the Hill +Richard Harrington,rotten,0107322,Washington Post,The slow-paced King of the Hill is a feel-good fable in which it's difficult to work up any worry over a boy with clearly unsinkable spirits.,2000-01-01,12718,King of the Hill +,fresh,0107322,Entertainment Weekly,,1993-09-01,12718,King of the Hill +Steven Gaydos,fresh,0110305,Variety,"What makes ""Lassie"" work is the craftsmanship and thoughtfulness that director Petrie and his creative team bring to the task.",2013-02-28,11992,Lassie +Janet Maslin,fresh,0110305,New York Times,"A stubbornly sweet, picturesque children's film ...",2003-05-20,11992,Lassie +Roger Ebert,fresh,0110305,Chicago Sun-Times,"It's somehow reassuring, these days, to see a movie where there's no problem Lassie can't solve.",2000-01-01,11992,Lassie +Kevin McManus,fresh,0110305,Washington Post,"For better or worse, ""Lassie"" is as safe and square as the TV show of yesteryear.",2000-01-01,11992,Lassie +Richard Leiby,fresh,0110305,Washington Post,"The story may be predictable, ham-fisted and saccharine, but that's why kids (and softhearted parents) will like it.",2000-01-01,11992,Lassie +Lisa Schwarzbaum,fresh,0110305,Entertainment Weekly,"A remarkably clean, bracing production that does a difficult thing exceptionally well, depicting believably modern young people in a believably old-fashioned plot.",1994-07-22,11992,Lassie +Owen Gleiberman,rotten,0107362,Entertainment Weekly,,2011-09-07,12608,Last Action Hero +Todd McCarthy,none,0107362,Variety,,2009-03-26,12608,Last Action Hero +Geoff Andrew,none,0107362,Time Out,,2006-06-24,12608,Last Action Hero +Vincent Canby,none,0107362,New York Times,,2003-05-20,12608,Last Action Hero +Roger Ebert,rotten,0107362,Chicago Sun-Times,"There is a lot of action in Last Action Hero, but the underlying story never ever quite works.",2000-01-01,12608,Last Action Hero +James Berardinelli,rotten,0107362,ReelViews,"The pulse-pounding, sizzling pull of a Die Hard is absent.",2000-01-01,12608,Last Action Hero +Desson Thomson,fresh,0107362,Washington Post,"Even if this intermixing of kid fantasy and adult shoot'em-up, Hollywood insider jokes and cheap Arnold puns, doesn't completely bowl you over, it's clever and intriguing.",2000-01-01,12608,Last Action Hero +Hal Hinson,rotten,0107362,Washington Post,"Feels like a farewell, of sorts, to Arnold.",2000-01-01,12608,Last Action Hero +,rotten,0107362,Entertainment Weekly,,1993-06-18,12608,Last Action Hero +Brian Lowry,none,0107413,Variety,,2009-03-26,12314,Life with Mikey +Janet Maslin,none,0107413,New York Times,,2003-05-20,12314,Life with Mikey +James Berardinelli,rotten,0107413,ReelViews,,2000-01-01,12314,Life with Mikey +Roger Ebert,rotten,0107413,Chicago Sun-Times,,2000-01-01,12314,Life with Mikey +Rita Kempley,none,0107413,Washington Post,,2000-01-01,12314,Life with Mikey +Owen Gleiberman,rotten,0110353,Entertainment Weekly,,2011-09-07,11845,Lightning Jack +Leonard Klady,fresh,0110353,Variety,"A good-natured, if laconic, oater that rides along nicely on the screen persona of writer/actor Paul Hogan.",2008-08-25,11845,Lightning Jack +Stephen Holden,rotten,0110353,New York Times,"The film has no internal comic rhythm to match its faltering sense of humor. Much of the time, it plods along like a mediocre conventional western.",2003-05-20,11845,Lightning Jack +Richard Harrington,rotten,0110353,Washington Post,Lightning Jack feels like a film you might stumble across late at night on the USA Network.,2000-01-01,11845,Lightning Jack +Roger Ebert,rotten,0110353,Chicago Sun-Times,"It's impossible to dislike Paul Hogan, and almost as hard to like his movies. They're as goodhearted as they are simple-minded.",2000-01-01,11845,Lightning Jack +James Berardinelli,rotten,0110353,ReelViews,Hogan should hang up his spurs until a truly original impulse comes along.,2000-01-01,11845,Lightning Jack +,rotten,0110353,Entertainment Weekly,,1994-03-11,11845,Lightning Jack +Brian Lowry,none,0107478,Variety,,2008-12-01,11783,Made in America +Derek Adams,none,0107478,Time Out,,2006-02-09,11783,Made in America +Janet Maslin,none,0107478,New York Times,,2003-05-20,11783,Made in America +James Berardinelli,rotten,0107478,ReelViews,,2000-01-01,11783,Made in America +Rita Kempley,none,0107478,Washington Post,,2000-01-01,11783,Made in America +Roger Ebert,fresh,0107478,Chicago Sun-Times,,2000-01-01,11783,Made in America +,rotten,0107478,Entertainment Weekly,,1993-05-28,11783,Made in America +Owen Gleiberman,rotten,0107497,Entertainment Weekly,,2011-09-07,16623,Malice +Derek Adams,none,0107497,Time Out,,2006-02-09,16623,Malice +Vincent Canby,none,0107497,New York Times,,2003-05-20,16623,Malice +Peter Travers,none,0107497,Rolling Stone,,2001-05-12,16623,Malice +Roger Ebert,rotten,0107497,Chicago Sun-Times,,2000-01-01,16623,Malice +James Berardinelli,rotten,0107497,ReelViews,,2000-01-01,16623,Malice +,rotten,0107497,Entertainment Weekly,,1993-10-01,16623,Malice +Owen Gleiberman,fresh,0107501,Entertainment Weekly,,2011-09-07,11327,The Man Without a Face +Brian Lowry,none,0107501,Variety,,2009-03-26,11327,The Man Without a Face +Derek Adams,none,0107501,Time Out,,2006-02-09,11327,The Man Without a Face +Janet Maslin,none,0107501,New York Times,,2003-05-20,11327,The Man Without a Face +Peter Travers,none,0107501,Rolling Stone,,2001-05-12,11327,The Man Without a Face +Richard Harrington,none,0107501,Washington Post,,2000-01-01,11327,The Man Without a Face +James Berardinelli,rotten,0107501,ReelViews,,2000-01-01,11327,The Man Without a Face +Joe Brown,none,0107501,Washington Post,,2000-01-01,11327,The Man Without a Face +Roger Ebert,fresh,0107501,Chicago Sun-Times,,2000-01-01,11327,The Man Without a Face +,fresh,0107501,Entertainment Weekly,,1993-08-25,11327,The Man Without a Face +Owen Gleiberman,fresh,0107507,Entertainment Weekly,Nobody labors quite like Woody Allen to produce a modest entertainment.,2011-09-07,11130,Manhattan Murder Mystery +Geoff Andrew,fresh,0107507,Time Out,"A movie inspired by movie escapism. Minor, but surprisingly, almost defiantly upbeat.",2006-02-09,11130,Manhattan Murder Mystery +Janet Maslin,fresh,0107507,New York Times,"Although ""Manhattan Murder Mystery"" struggles with its own contrivances, it achieves a gentle, nostalgic grace and a hint of un-self-conscious wisdom.",2003-05-20,11130,Manhattan Murder Mystery +Desson Thomson,fresh,0107507,Washington Post,That Woody Allen found time to be remotely funny -- in the midst of his highly publicized legal troubles -- surely merits some kind of professional award.,2000-01-01,11130,Manhattan Murder Mystery +Roger Ebert,fresh,0107507,Chicago Sun-Times,"""Manhattan Murder Mystery"" is an accomplished balancing act.",2000-01-01,11130,Manhattan Murder Mystery +James Berardinelli,fresh,0107507,ReelViews,,2000-01-01,11130,Manhattan Murder Mystery +Rita Kempley,fresh,0107507,Washington Post,"Happily, these two stir up stardust memories of his earlier, funnier work, instead of the embarrassing voyeurism of ""Husbands and Wives.""",2000-01-01,11130,Manhattan Murder Mystery +Jonathan Rosenbaum,fresh,0107554,Chicago Reader,"Don't let the silly styling of the title put you off; this is a powerful, convincing, and terrifying look at teenage crime in contemporary Watts.",2008-03-17,17045,Menace II Society +Owen Gleiberman,fresh,0107554,Entertainment Weekly,"Bleak, brilliant, and unsparing: a full-scale vision of the madness that is tearing up the black inner city.",2008-03-17,17045,Menace II Society +Leonard Klady,fresh,0107554,Variety,"Fierce, violent and searing in its observation, the film makes previous excursions seem like a stroll through the park.",2008-03-17,17045,Menace II Society +Geoff Andrew,rotten,0107554,Time Out,"Regrettably, the Hughes brothers' first feature is a compendium of cliches.",2006-02-09,17045,Menace II Society +Stephen Holden,rotten,0107554,New York Times,"If Menace II Society is terrific on ambiance, it is considerably less successful in revealing character.",2003-05-20,17045,Menace II Society +Peter Travers,fresh,0107554,Rolling Stone,"Nothing the Hughes brothers have done in their videos for Tone Loc, Tupac Shakur and others prepares you for the controlled intensity and maturity they bring to their stunning feature debut.",2001-05-12,17045,Menace II Society +Roger Ebert,fresh,0107554,Chicago Sun-Times,Anyone who views this film thoughtfully must ask why our society makes guns easier to obtain and use than does any other country in the civilized world. And that is only the most obvious of the many questions the film inspires.,2000-01-01,17045,Menace II Society +Desson Thomson,fresh,0107554,Washington Post,It's maddening and enlivening. It's brilliant and tacky. It's funny and horrifying. It will gratify the worst elements in the crowd; it will engage the very best.,2000-01-01,17045,Menace II Society +James Berardinelli,fresh,0107554,ReelViews,It won't be a fun time -- at least not in the conventional sense -- but you'll sit through a ninety-seven minute odyssey that won't be quickly forgotten.,2000-01-01,17045,Menace II Society +,none,0116253,Variety,,2012-02-23,14206,Executive Decision +Owen Gleiberman,rotten,0116253,Entertainment Weekly,,2011-09-07,14206,Executive Decision +Leonard Klady,none,0116253,Variety,,2009-03-26,14206,Executive Decision +,none,0116253,Time Out,,2006-01-26,14206,Executive Decision +,none,0116253,Washington Post,,2003-05-20,14206,Executive Decision +Desson Thomson,fresh,0116253,Washington Post,Satisfying junk food.,2003-05-20,14206,Executive Decision +Richard Harrington,fresh,0116253,Washington Post,Deliciously turbulent.,2000-01-01,14206,Executive Decision +James Berardinelli,fresh,0116253,ReelViews,"For uncomplicated excitement, the film offers a solid one-hundred thirty minutes.",2000-01-01,14206,Executive Decision +Mick LaSalle,rotten,0116253,San Francisco Chronicle,Stuart Baird's direction is so sluggish and Jim and John Thomas' script so padded that Executive Decision has no build.,2000-01-01,14206,Executive Decision +Roger Ebert,fresh,0116253,Chicago Sun-Times,"A movie for people who are sophisticated enough to know how shameless the film is, but fun-loving enough to enjoy its excesses and manic zeal.",2000-01-01,14206,Executive Decision +Janet Maslin,fresh,0116253,New York Times,"A good, taut movie for red-meat action audiences.",2000-01-01,14206,Executive Decision +Susan Stark,rotten,0116253,Detroit News,,2000-01-01,14206,Executive Decision +Joe Baltake,fresh,0116253,Sacramento Bee,"It doesn't always work, but there's something inspiring about Baird's unwillingness to follow the usual formula.",2000-01-01,14206,Executive Decision +Mike Clark,rotten,0116253,USA Today,There's nothing like a protracted action drama in which anti-terrorist commandos slink around the bowels of an airborne 747 and talk about what they hope to accomplish upstairs in the final shootout.,2000-01-01,14206,Executive Decision +,rotten,0116253,Entertainment Weekly,,1995-06-01,14206,Executive Decision +Trevor Johnston,fresh,0074102,Time Out,"Unsanitised, worryingly convincing in its sadomasochistic detail, this is seriously provocative cinema, a telling reminder of what it really means to be dangerous.",2009-08-29,225034758,Ai no korîda +,none,0074102,Variety,,2008-06-16,225034758,Ai no korîda +Geoff Andrew,none,0074102,Time Out,,2006-02-09,225034758,Ai no korîda +Richard Eder,none,0074102,New York Times,,2005-05-09,225034758,Ai no korîda +James Berardinelli,fresh,0074102,ReelViews,,2000-01-01,225034758,Ai no korîda +Edward Guthmann,none,0074102,San Francisco Chronicle,,2000-01-01,225034758,Ai no korîda +Owen Gleiberman,fresh,0111689,Entertainment Weekly,,2011-09-07,770677243,What Happened Was... +,none,0111689,Variety,,2009-03-26,770677243,What Happened Was... +Emanuel Levy,fresh,0111689,Variety,"This intense, mysterious drama about a date between two lonely misfits, is sensitively directed by Tom Noonan, better known as an actor; it was the surprise winner of the Grand Jury Prize of the 1994 Sundance Film Festival.",2006-12-20,770677243,What Happened Was... +Janet Maslin,none,0111689,New York Times,,2003-05-20,770677243,What Happened Was... +,none,0111689,Globe and Mail,,2002-04-12,770677243,What Happened Was... +Desson Thomson,none,0111689,Washington Post,,2000-01-01,770677243,What Happened Was... +Rita Kempley,none,0111689,Washington Post,,2000-01-01,770677243,What Happened Was... +James Berardinelli,fresh,0111689,ReelViews,,2000-01-01,770677243,What Happened Was... +Roger Ebert,rotten,0111689,Chicago Sun-Times,,2000-01-01,770677243,What Happened Was... +,fresh,0111689,Entertainment Weekly,,1994-06-01,770677243,What Happened Was... +,none,0107616,Variety,,2012-02-23,12668,Much Ado About Nothing +Owen Gleiberman,fresh,0107616,Entertainment Weekly,,2011-09-07,12668,Much Ado About Nothing +Todd McCarthy,fresh,0107616,Variety,Continuously enjoyable from its action-filled opening to the dazzling final shot...,2008-07-02,12668,Much Ado About Nothing +Derek Adams,fresh,0107616,Time Out,"There's much to commend in Branagh's pruned, international version of Shakespeare's troubling comedy.",2006-02-09,12668,Much Ado About Nothing +Vincent Canby,fresh,0107616,New York Times,Kenneth Branagh...has done it again.,2003-05-20,12668,Much Ado About Nothing +Peter Travers,rotten,0107616,Rolling Stone,"The picture is overripe, and with few exceptions, so are the performances.",2001-05-12,12668,Much Ado About Nothing +Roger Ebert,fresh,0107616,Chicago Sun-Times,"The key to the film's success is in the acting, especially in the sparks that fly between Branagh and Thompson.",2000-01-01,12668,Much Ado About Nothing +Hal Hinson,rotten,0107616,Washington Post,"Somehow, the movie feels insubstantial and uninspired.",2000-01-01,12668,Much Ado About Nothing +Desson Thomson,fresh,0107616,Washington Post,"Director Branagh, who altered the play imaginatively for the screen, gives wonderful import to this silliness from long ago.",2000-01-01,12668,Much Ado About Nothing +James Berardinelli,fresh,0107616,ReelViews,"This film cements Branagh's status as a great director of Shakespeare, and perhaps of film in general, as well.",2000-01-01,12668,Much Ado About Nothing +,fresh,0107616,Entertainment Weekly,,1993-05-07,12668,Much Ado About Nothing +Derek Adams,none,0107611,Time Out,,2006-02-09,14335,Mr. Jones +Janet Maslin,none,0107611,New York Times,,2003-05-20,14335,Mr. Jones +Roger Ebert,fresh,0107611,Chicago Sun-Times,,2000-01-01,14335,Mr. Jones +James Berardinelli,rotten,0107611,ReelViews,,2000-01-01,14335,Mr. Jones +Desson Thomson,none,0107611,Washington Post,,2000-01-01,14335,Mr. Jones +Owen Gleiberman,rotten,0107613,Entertainment Weekly,,2011-09-07,11883,Mr. Wonderful +,rotten,0107613,Entertainment Weekly,,2008-12-01,11883,Mr. Wonderful +Brian Lowry,fresh,0107613,Variety,Short on laughs but tinged with a pleasant European flavor.,2008-03-18,11883,Mr. Wonderful +Derek Adams,fresh,0107613,Time Out,Writer/director Minghella's second feature brings ambivalence and a touch of realpolitik to the stuff of candyfloss romance.,2006-06-24,11883,Mr. Wonderful +Peter Travers,fresh,0107613,Rolling Stone,"Without that yeoman cast effort and Dillon's easy charm, Mr. Wonderful could easily be mistaken for Mr. Potatohead.",2001-05-12,11883,Mr. Wonderful +Roger Ebert,rotten,0107613,Chicago Sun-Times,"One of those films where it's clear to the audience within five minutes what must obviously happen, and clear to the characters only at the end of the story.",2000-01-01,11883,Mr. Wonderful +James Berardinelli,fresh,0107613,ReelViews,"Mr. Wonderful doesn't aspire to be anything more than it is, and such a simple, uncomplicated presentation, coupled with likable characters, makes this film a fine example of light, romantic entertainment.",2000-01-01,11883,Mr. Wonderful +,none,0107614,Variety,,2012-02-23,10997,Mrs. Doubtfire +Owen Gleiberman,fresh,0107614,Entertainment Weekly,,2011-09-07,10997,Mrs. Doubtfire +Brian Lowry,fresh,0107614,Variety,"Although overly sappy in places and probably 20 minutes too long, this Robin Williams-in-drag vehicle provides the comic a slick surface for doing his shtick, within a story possessing broad family appeal.",2008-07-22,10997,Mrs. Doubtfire +David Ansen,fresh,0107614,Newsweek,I've rarely laughed so much at a movie I generally disliked.,2008-04-07,10997,Mrs. Doubtfire +Derek Adams,fresh,0107614,Time Out,"Sit-com stuff, then, with laboured farcical interludes, and a mushy post-feminist sensibility. Funny notwithstanding.",2006-02-09,10997,Mrs. Doubtfire +Janet Maslin,fresh,0107614,New York Times,"The dress, the mask and Mrs. Doubtfire's gentility are inherently limiting, but nothing holds Mr. Williams back when he's on a roll.",2003-05-20,10997,Mrs. Doubtfire +James Berardinelli,fresh,0107614,ReelViews,"In terms of plot, the film is rather feeble, but sometimes there's more to a movie than story, and this is one of those rare occasions when all the other elements pull together and lift the production.",2000-01-01,10997,Mrs. Doubtfire +Desson Thomson,fresh,0107614,Washington Post,"Williams has to break out of a second-rate ""Tootsie"" imitation, ankles clamped in pathos and face covered in latex. He pulls it off in the end, but it's not pretty.",2000-01-01,10997,Mrs. Doubtfire +Rita Kempley,fresh,0107614,Washington Post,"You will laugh till your ribs ache -- not because director Chris Columbus of the ""Home Alone"" movies has a gift for farce, which he does, but because Williams is to funny what the Energizer Bunny is to batteries. He keeps going and going and going.",2000-01-01,10997,Mrs. Doubtfire +Roger Ebert,rotten,0107614,Chicago Sun-Times,"The film is not as amusing as the premise, and there were long stretches when I'd had quite enough of Mrs. Doubtfire.",2000-01-01,10997,Mrs. Doubtfire +William Goss,rotten,0107653,Film.com,"As immersive and well-acted as any character study Leigh's done, but ultimately numbing in its insistence on focusing on this would-be world-wary philosopher.",2011-07-19,17059,Naked +Derek Elley,none,0107653,Variety,,2009-03-26,17059,Naked +,none,0107653,Time Out,,2006-01-26,17059,Naked +Vincent Canby,none,0107653,New York Times,,2003-05-20,17059,Naked +,none,0107653,Los Angeles Times,,2003-01-31,17059,Naked +Roger Ebert,fresh,0107653,Chicago Sun-Times,,2000-01-01,17059,Naked +Rita Kempley,none,0107653,Washington Post,,2000-01-01,17059,Naked +Desson Thomson,none,0107653,Washington Post,,2000-01-01,17059,Naked +James Berardinelli,fresh,0107653,ReelViews,,2000-01-01,17059,Naked +John Hartl,rotten,0110657,Seattle Times,"The Next Karate Kid is harmless as children's entertainment, but for 104 very long minutes, there isn't a recognizable human being in sight.",2013-06-14,11808,The Next Karate Kid +Chris Willman,rotten,0110657,Los Angeles Times,The overt message of any Karate Kid movie: Don't fight unless you absolutely have to. The implicit message: You'll always have to. Let the smitings begin!,2013-05-22,11808,The Next Karate Kid +Carrie Rickey,rotten,0110657,Philadelphia Inquirer,"While the message that a girl can defend herself against the boys threatening her is a good one, it's lost in a movie where the bullies look like Mussolini's bodyguards and where Julie waits for her boyfriend and Miyagi to come to her defense.",2013-05-22,11808,The Next Karate Kid +Clifford Terry,rotten,0110657,Chicago Tribune,Only the reasonably-appealing performances of Morita and newcomer Swank keep it all from becoming even more of a loser.,2013-05-22,11808,The Next Karate Kid +Lisa Schwarzbaum,rotten,0110657,Entertainment Weekly,Not that girls will go see this or boys will care.,2011-09-07,11808,The Next Karate Kid +Lisa Nesselson,rotten,0110657,Variety,The franchise is still kicking -- but not very high.,2009-03-26,11808,The Next Karate Kid +Stephen Holden,rotten,0110657,New York Times,[It] may be the silliest episode yet in the popular Karate Kid series.,2004-08-30,11808,The Next Karate Kid +Rita Kempley,rotten,0110657,Washington Post,What is the sound of one hand clapping? The audience giving it up for The Next Karate Kid.,2000-01-01,11808,The Next Karate Kid +Gene Siskel,fresh,0110649,Chicago Tribune,A sometimes smart social commentary on Los Angeles characters who seek spiritual salvation when they can't buy every object they want.,2013-01-16,770738659,The New Age +Todd McCarthy,none,0110649,Variety,,2012-03-14,770738659,The New Age +Lisa Schwarzbaum,fresh,0110649,Entertainment Weekly,,2011-09-07,770738659,The New Age +,none,0110649,Variety,,2009-03-26,770738659,The New Age +,none,0110649,Time Out,,2006-01-26,770738659,The New Age +Janet Maslin,none,0110649,New York Times,,2003-05-20,770738659,The New Age +James Berardinelli,rotten,0110649,ReelViews,,2000-01-01,770738659,The New Age +Roger Ebert,fresh,0110649,Chicago Sun-Times,,2000-01-01,770738659,The New Age +,fresh,0110649,Entertainment Weekly,,1994-06-01,770738659,The New Age +,none,0110678,Time Out,,2006-01-26,16798,No Escape +Caryn James,none,0110678,New York Times,,2003-05-20,16798,No Escape +Rita Kempley,none,0110678,Washington Post,,2000-01-01,16798,No Escape +Joe Brown,none,0110678,Washington Post,,2000-01-01,16798,No Escape +Roger Ebert,rotten,0110678,Chicago Sun-Times,,2000-01-01,16798,No Escape +James Berardinelli,rotten,0110678,ReelViews,,2000-01-01,16798,No Escape +,rotten,0110678,Entertainment Weekly,,1994-04-29,16798,No Escape +Michael Sragow,rotten,0110687,New Yorker,The amalgams of TV stereotypes that satirize foreign and regional cultures are embarrassing.,2013-07-09,152392086,North +Michael Wilmington,rotten,0110687,Chicago Tribune,"It's a prime example of what can happen when hip, slightly cynical establishment filmmakers try to make a deeply sentimental movie.",2013-06-05,152392086,North +Kenneth Turan,rotten,0110687,Los Angeles Times,"How could director Rob Reiner, whose touch for what pleases a mass audience is usually unfailing, have strayed this far?",2013-06-05,152392086,North +Leonard Klady,rotten,0110687,Variety,The intrinsic failure of Alan Zweibel and Andrew Scheinman's script is that it tips its hand from the start.,2009-03-26,152392086,North +Geoff Andrew,rotten,0110687,Time Out,"Reiner is undecided just how fantastically he should treat this ludicrous plotline. Added to which there's a dire musical number, a silly thriller subplot, and much maudlin didacticism from narrator Willis in various guardian angel (dis)guises. Misery.",2006-01-26,152392086,North +Janet Maslin,fresh,0110687,New York Times,"North, a playful modern fable about a boy in search of new parents, doesn't always work, but much of it is clever in amusingly unpredictable ways.",2003-05-20,152392086,North +Joe Brown,rotten,0110687,Washington Post,North seldom raises more than a chuckle.,2000-01-01,152392086,North +James Berardinelli,rotten,0110687,ReelViews,"The premise of North sounds flat, the previews look insipid, and, while the movie doesn't turn out nearly as bad as either would lead you to believe, North is still a lackluster production.",2000-01-01,152392086,North +Rita Kempley,rotten,0110687,Washington Post,This movie is aimed at neither kids nor adults; it simply isn't aimed.,2000-01-01,152392086,North +Roger Ebert,rotten,0110687,Chicago Sun-Times,I hated this movie. Hated hated hated hated hated this movie. Hated it.,2000-01-01,152392086,North +Mick LaSalle,rotten,0110687,San Francisco Chronicle,"It's strange and oddly distasteful, at its best managing to be bad in some original and unexpected ways.",2000-01-01,152392086,North +Owen Gleiberman,rotten,0110687,Entertainment Weekly,It's depressing enough to see a director turn into a button pusher. But what can you say about a director who just keeps hitting the same button?,1994-07-22,152392086,North +Owen Gleiberman,rotten,0107756,Entertainment Weekly,,2011-09-07,10947,Orlando +Keith Uhlich,fresh,0107756,Time Out New York,"Swinton's androgynous affect has rarely been better exploited: It's a kick to see her transition among Orlando's numerous identities, whether wooing a Russian princess or submitting to the charms of the horseback-riding Shelmerdine.",2010-07-21,10947,Orlando +David Stratton,none,0107756,Variety,,2009-03-26,10947,Orlando +,none,0107756,Time Out,,2006-01-26,10947,Orlando +Vincent Canby,none,0107756,New York Times,,2003-05-20,10947,Orlando +Rita Kempley,none,0107756,Washington Post,,2000-01-01,10947,Orlando +Joe Brown,none,0107756,Washington Post,,2000-01-01,10947,Orlando +Roger Ebert,fresh,0107756,Chicago Sun-Times,This is the kind of movie you want to talk about afterward.,2000-01-01,10947,Orlando +,rotten,0107756,Entertainment Weekly,,1992-09-16,10947,Orlando +Owen Gleiberman,rotten,0107808,Entertainment Weekly,,2011-09-07,11109,A Perfect World +Todd McCarthy,none,0107808,Variety,,2009-03-26,11109,A Perfect World +David Ansen,none,0107808,Newsweek,,2008-04-07,11109,A Perfect World +Derek Adams,none,0107808,Time Out,,2006-02-09,11109,A Perfect World +Janet Maslin,none,0107808,New York Times,,2004-08-30,11109,A Perfect World +Peter Travers,fresh,0107808,Rolling Stone,"In going beyond chase-yarn duty, Eastwood and Costner do themselves proud.",2001-06-06,11109,A Perfect World +James Berardinelli,fresh,0107808,ReelViews,"A Perfect World is evidence that Hollywood is still capable of producing the kinds of moving, intelligent movies that have increasingly become the province of independent film makers.",2000-01-01,11109,A Perfect World +Roger Ebert,fresh,0107808,Chicago Sun-Times,This is a movie that surprises you.,2000-01-01,11109,A Perfect World +Desson Thomson,fresh,0107808,Washington Post,"Within its narrow, unambitious, commercial boundaries, the movie is highly watchable.",2000-01-01,11109,A Perfect World +Hal Hinson,none,0107808,Washington Post,,2000-01-01,11109,A Perfect World +,rotten,0107808,Entertainment Weekly,,1993-11-24,11109,A Perfect World +Todd McCarthy,fresh,0107818,Variety,"[An] extremely well-made message picture about tolerance, justice and discrimination is pitched at mainstream audiences, befitting its position as the first major Hollywood film to directly tackle the disease.",2008-10-10,11536,Philadelphia +Geoff Andrew,fresh,0107818,Time Out,"Safe and apolitical it may be, but Philadelphia succeeds as a deeply affecting humanist drama.",2006-06-24,11536,Philadelphia +Janet Maslin,fresh,0107818,New York Times,"""Philadelphia"" mostly succeeds in being forceful, impassioned and moving, sometimes even rising to the full range of emotion that its subject warrants. But too often, even at its most assertive, it works in safely predictable ways.",2003-05-20,11536,Philadelphia +Rita Kempley,fresh,0107818,Washington Post,"It's less like a film by Demme than the best of Frank Capra. It is not just canny, corny and blatantly patriotic, but compassionate, compelling and emotionally devastating.",2000-01-01,11536,Philadelphia +James Berardinelli,fresh,0107818,ReelViews,"The story is timely and powerful, and the performances of Hanks and Washington assure that the characters will not immediately vanish into obscurity.",2000-01-01,11536,Philadelphia +Desson Thomson,rotten,0107818,Washington Post,"This AIDS courtroom drama is so pumped full of nitrous oxide, you could get your teeth drilled on it.",2000-01-01,11536,Philadelphia +Roger Ebert,fresh,0107818,Chicago Sun-Times,"Philadelphia breaks no new dramatic ground ... And yet Philadelphia is quite a good film, on its own terms.",2000-01-01,11536,Philadelphia +,fresh,0107818,Entertainment Weekly,,1993-12-22,11536,Philadelphia +Owen Gleiberman,fresh,0107822,Entertainment Weekly,,2011-09-07,13284,The Piano +David Stratton,none,0107822,Variety,,2008-10-18,13284,The Piano +David Ansen,none,0107822,Newsweek,,2008-03-31,13284,The Piano +Jonathan Rosenbaum,fresh,0107822,Chicago Reader,"Sweetie and An Angel at My Table have taught us to expect startling as well as beautiful things from Jane Campion, and this assured and provocative third feature (1993) offers yet another lush parable.",2007-05-10,13284,The Piano +Geoff Andrew,fresh,0107822,Time Out,"Campion never underestimates the power physical obsession exerts over human souls, and, for once, a modern film treats erotic passion honestly.",2006-06-24,13284,The Piano +Vincent Canby,fresh,0107822,New York Times,Ms. Campion somehow suggests states of mind you've never before recognized on the screen.,2003-05-20,13284,The Piano +Hal Hinson,fresh,0107822,Washington Post,"[An] evocative, powerful, extraordinarily beautiful film from the Australian director Jane Campion.",2000-01-01,13284,The Piano +Roger Ebert,fresh,0107822,Chicago Sun-Times,The Piano is as peculiar and haunting as any film I've seen.,2000-01-01,13284,The Piano +Desson Thomson,fresh,0107822,Washington Post,"The Piano plays itself with such contrapuntal richness, it resonates in you forever.",2000-01-01,13284,The Piano +James Berardinelli,fresh,0107822,ReelViews,"The Piano is a solid motion picture with a universal message and occasional splashes of genius, but it is remarkable only as Holly Hunter's performance is concerned.",2000-01-01,13284,The Piano +,fresh,0107822,Entertainment Weekly,,1993-11-19,13284,The Piano +Owen Gleiberman,rotten,0107840,Entertainment Weekly,,2011-09-07,13452,Poetic Justice +Leonard Klady,none,0107840,Variety,,2008-07-22,13452,Poetic Justice +Derek Adams,none,0107840,Time Out,,2006-02-09,13452,Poetic Justice +Vincent Canby,none,0107840,New York Times,,2003-05-20,13452,Poetic Justice +Peter Travers,none,0107840,Rolling Stone,,2001-05-12,13452,Poetic Justice +James Berardinelli,rotten,0107840,ReelViews,,2000-01-01,13452,Poetic Justice +Hal Hinson,none,0107840,Washington Post,,2000-01-01,13452,Poetic Justice +Desson Thomson,none,0107840,Washington Post,,2000-01-01,13452,Poetic Justice +Roger Ebert,fresh,0107840,Chicago Sun-Times,,2000-01-01,13452,Poetic Justice +,rotten,0107840,Entertainment Weekly,,1993-07-23,13452,Poetic Justice +Brian Lowry,none,0107889,Variety,,2009-03-26,75470827,The Program +Janet Maslin,none,0107889,New York Times,,2004-08-30,75470827,The Program +James Berardinelli,rotten,0107889,ReelViews,,2000-01-01,75470827,The Program +Norman Chad,none,0107889,Washington Post,,2000-01-01,75470827,The Program +Roger Ebert,fresh,0107889,Chicago Sun-Times,,2000-01-01,75470827,The Program +Hal Hinson,none,0107889,Washington Post,,2000-01-01,75470827,The Program +,rotten,0107889,Entertainment Weekly,,1993-09-24,75470827,The Program +Owen Gleiberman,rotten,0111003,Entertainment Weekly,,2011-09-07,15495,The Puppet Masters +,rotten,0111003,Variety,Only the most undiscriminating monster-pic buff will come away satisfied.,2009-12-06,15495,The Puppet Masters +Derek Adams,rotten,0111003,Time Out,There's no suspense (ETs rampage from the word go); no frissons (loud hailers telegraph the shocks); and it's insufficiently bright to be an hommage.,2006-02-09,15495,The Puppet Masters +Stephen Holden,rotten,0111003,New York Times,"A choppy, unsuspenseful succession of chases, melodramatic showdowns and routine special effects.",2004-08-30,15495,The Puppet Masters +Richard Harrington,rotten,0111003,Washington Post,"The Puppet Masters occasionally lives up to its reputation, but the delay between story conception and celluloid conversion has clearly wilted its power and potential.",2000-01-01,15495,The Puppet Masters +James Berardinelli,rotten,0111003,ReelViews,"Attempts at detailed characterization don't work particularly well, and there's a love story that feels as forced as it is superfluous - although even that isn't as unnecessary as the film's final ten minutes.",2000-01-01,15495,The Puppet Masters +,rotten,0111003,Entertainment Weekly,,1994-10-21,15495,The Puppet Masters +Lisa Schwarzbaum,rotten,0110939,Entertainment Weekly,,2011-09-07,11698,Radioland Murders +Brian Lowry,none,0110939,Variety,,2009-03-26,11698,Radioland Murders +Geoff Andrew,none,0110939,Time Out,,2006-06-24,11698,Radioland Murders +Caryn James,none,0110939,New York Times,,2003-05-20,11698,Radioland Murders +,none,0110939,Globe and Mail,,2002-04-12,11698,Radioland Murders +James Berardinelli,rotten,0110939,ReelViews,,2000-01-01,11698,Radioland Murders +Mick LaSalle,none,0110939,San Francisco Chronicle,,2000-01-01,11698,Radioland Murders +Hal Hinson,none,0110939,Washington Post,,2000-01-01,11698,Radioland Murders +Desson Thomson,none,0110939,Washington Post,,2000-01-01,11698,Radioland Murders +Roger Ebert,rotten,0110939,Chicago Sun-Times,,2000-01-01,11698,Radioland Murders +Owen Gleiberman,rotten,0110955,Entertainment Weekly,A foulmouthed sitcom of a film.,2011-09-07,13147,The Ref +Variety Staff,rotten,0110955,Variety,"The Ref works virtually none of the miracles of [Richard LaGravenese's screenplay for The Fisher King,] his previous mix 'n' match effort.",2009-03-26,13147,The Ref +Jonathan Rosenbaum,fresh,0110955,Chicago Reader,"What makes most of this work is the brio of the acting, though the direction by Ted Demme and the script by Richard LaGravenese and Marie Weiss certainly don't hurt.",2007-11-27,13147,The Ref +Geoff Andrew,fresh,0110955,Time Out,"In his first starring role, comedian Leary makes his ranting career criminal strangely sympathetic.",2006-02-09,13147,The Ref +Caryn James,fresh,0110955,New York Times,"Staying clear of any mean-spirited attitudes, The Ref is a film to warm the hearts and touch the nerves of dysfunctional families everywhere.",2003-05-20,13147,The Ref +Peter Travers,fresh,0110955,Rolling Stone,Demme brings out the comic ease in Leary.,2001-05-12,13147,The Ref +Desson Thomson,rotten,0110955,Washington Post,This is one holiday party you'll want to miss.,2000-01-01,13147,The Ref +Roger Ebert,fresh,0110955,Chicago Sun-Times,Material like this is only as good as the acting and writing. The Ref is skillful in both areas.,2000-01-01,13147,The Ref +Hal Hinson,rotten,0110955,Washington Post,"The Ref is one of those rare movies that seem to have everything going for it -- a promising director, terrific actors and an original, unapologetically grown-up script -- yet somehow still turns out to be a phenomenal drag.",2000-01-01,13147,The Ref +James Berardinelli,rotten,0110955,ReelViews,"This is not a seamlessly constructed movie, but as long as you're not expecting great art, it's unlikely to disappoint.",2000-01-01,13147,The Ref +Jonathan Rosenbaum,rotten,0107943,Chicago Reader,"The actors keep this interesting, but as a story it drifts and rambles.",2008-02-11,10429,The Remains of the Day +Todd McCarthy,fresh,0107943,Variety,"All the meticulousness, intelligence, taste and superior acting that one expects from Merchant Ivory productions have been brought to bear.",2008-02-11,10429,The Remains of the Day +,fresh,0107943,Time Out,"Who else but Merchant Ivory to give the big-screen treatment to Ishiguro's Booker Prize-winning novel about class, fascism and the stiff upper lip?",2006-02-09,10429,The Remains of the Day +Vincent Canby,fresh,0107943,New York Times,"Here's a film for adults. It's also about time to recognize that Mr. Ivory is one of our finest directors, something that critics tend to overlook because most of his films have been literary adaptations.",2003-05-20,10429,The Remains of the Day +Peter Travers,fresh,0107943,Rolling Stone,What do you call filmmakers who make literary entertainment box office in the age of Beavis and Butt-bead? Try miracle workers.,2001-05-12,10429,The Remains of the Day +Desson Thomson,fresh,0107943,Washington Post,"Put Anthony Hopkins, Emma Thompson and James Fox together and you can expect sterling performances.",2000-01-01,10429,The Remains of the Day +Roger Ebert,fresh,0107943,Chicago Sun-Times,"A subtle, thoughtful movie.",2000-01-01,10429,The Remains of the Day +Rita Kempley,fresh,0107943,Washington Post,There is not a false note in the movie.,2000-01-01,10429,The Remains of the Day +James Berardinelli,fresh,0107943,ReelViews,"Tragic love stories often hit with the hardest impact, and few are better-crafted and more intelligently presented than that of Mr. Stevens and Miss Kenton.",2000-01-01,10429,The Remains of the Day +Geoff Andrew,none,0110971,Time Out,,2006-06-24,10899,Renaissance Man +Janet Maslin,none,0110971,New York Times,,2004-08-30,10899,Renaissance Man +,none,0110971,Globe and Mail,,2002-04-12,10899,Renaissance Man +Hal Hinson,none,0110971,Washington Post,,2000-01-01,10899,Renaissance Man +Desson Thomson,none,0110971,Washington Post,,2000-01-01,10899,Renaissance Man +Roger Ebert,rotten,0110971,Chicago Sun-Times,,2000-01-01,10899,Renaissance Man +Peter Stack,none,0110971,San Francisco Chronicle,,2000-01-01,10899,Renaissance Man +James Berardinelli,rotten,0110971,ReelViews,,2000-01-01,10899,Renaissance Man +,rotten,0110971,Entertainment Weekly,,1994-06-03,10899,Renaissance Man +Owen Gleiberman,rotten,0107969,Entertainment Weekly,,2011-09-07,14232,Rising Sun +Richard Schickel,rotten,0107969,TIME Magazine,It would be nice to see Connery doing something intrinsically interesting instead of trying to make something inherently dull entertaining. And it would be good to see Snipes cut loose more than he is able to here.,2008-11-05,14232,Rising Sun +David Ansen,rotten,0107969,Newsweek,"As the plot grows more intricate, strangely the tension dissipates, until finally the movie just seems to run out of breath.",2008-10-18,14232,Rising Sun +Todd McCarthy,rotten,0107969,Variety,"When working in genre territory before, the idiosyncratic Kaufman has shown a marked tendency to debunk or subvert conventions. Playing it straight here, he brings little to the table.",2008-04-09,14232,Rising Sun +Jonathan Rosenbaum,fresh,0107969,Chicago Reader,"I found it pretty entertaining, as well as provocative in some of its comments about contemporary life.",2008-04-09,14232,Rising Sun +Geoff Andrew,rotten,0107969,Time Out,Kaufman's PC adaptation falls awkwardly between the conventions of the Hollywood conspiracy thriller and something intended as more artily significant.,2006-06-24,14232,Rising Sun +Vincent Canby,rotten,0107969,New York Times,"It directs attention not to the internal reasons for America's economic problems, but to inscrutable, generalized, unknown others from abroad, whose yellow skins and strange manners announce their evil purposes as much as their unfair trade practices.",2003-05-20,14232,Rising Sun +Peter Travers,fresh,0107969,Rolling Stone,"The flaws don't cripple what is a fiercely funny, exciting and provocative detective story about the crimes of corporate culture -- crimes that transcend race and geography.",2001-05-12,14232,Rising Sun +James Berardinelli,rotten,0107969,ReelViews,"There are a few too many plot holes and logical errors. Rising Sun may be solidly-paced, but not all aspects of the production are as successful.",2000-01-01,14232,Rising Sun +Desson Thomson,fresh,0107969,Washington Post,"A thoroughly gratifying prestige thriller, thanks to riveting suspense and two brilliant stars.",2000-01-01,14232,Rising Sun +Hal Hinson,fresh,0107969,Washington Post,"Connery is heaven, and so is the movie.",2000-01-01,14232,Rising Sun +Roger Ebert,rotten,0107969,Chicago Sun-Times,"The screenplay by Kaufman, Crichton and Michael Backes is not about much of anything important.",2000-01-01,14232,Rising Sun +,rotten,0107969,Entertainment Weekly,,1993-07-30,14232,Rising Sun +Lisa Schwarzbaum,rotten,0111001,Entertainment Weekly,,2011-09-07,14034,The Road to Wellville +Todd McCarthy,none,0111001,Variety,,2008-08-08,14034,The Road to Wellville +Geoff Andrew,none,0111001,Time Out,,2006-02-09,14034,The Road to Wellville +Joe Williams,fresh,0111001,St. Louis Post-Dispatch,,2005-07-07,14034,The Road to Wellville +Janet Maslin,none,0111001,New York Times,,2003-05-20,14034,The Road to Wellville +,none,0111001,Globe and Mail,,2002-04-12,14034,The Road to Wellville +Peter Stack,none,0111001,San Francisco Chronicle,,2000-01-01,14034,The Road to Wellville +James Berardinelli,rotten,0111001,ReelViews,,2000-01-01,14034,The Road to Wellville +Hal Hinson,none,0111001,Washington Post,,2000-01-01,14034,The Road to Wellville +Roger Ebert,fresh,0111001,Chicago Sun-Times,,2000-01-01,14034,The Road to Wellville +Brian Lowry,rotten,0107978,Variety,"Limiting the gore, but not the carnage, in pursuit of a PG-13 rating and more youngsters, pic remains a cluttered, nasty exercise that seems principally intent on selling action figures.",2009-03-26,12674,RoboCop 3 +Wally Hammond,rotten,0107978,Time Out,Dekker's third instalment also comes third in terms of merit.,2006-02-09,12674,RoboCop 3 +Stephen Holden,rotten,0107978,New York Times,"In the latest episode of the series, which seems to have nearly run out of steam, he is portrayed by Robert John Burke, an actor who bears some resemblance to Mr. Weller while lacking his forerunner's tongue-in-cheek glint of authoritarian machismo.",2004-08-30,12674,RoboCop 3 +Roger Ebert,rotten,0107978,Chicago Sun-Times,"Why do they persist in making these retreads? Because RoboCop is a brand name, I guess, and this is this year's new model. It's an old tradition in Detroit to take an old design and slap on some fresh chrome.",2000-01-01,12674,RoboCop 3 +James Berardinelli,rotten,0107978,ReelViews,"This installment goes for straight action, allowing only brief instances of the facetiousness which made the original so enjoyable.",2000-01-01,12674,RoboCop 3 +Desson Thomson,rotten,0107978,Washington Post,"If you really want more RoboCop, rent the video of the first movie.",2000-01-01,12674,RoboCop 3 +Richard Harrington,rotten,0107978,Washington Post,"As for the conflict, it's hardly riveting and often it's downright silly. The sets and effects betray their downsized budget. And the Japanese bashing is less artful than in Rising Sun, though just as obnoxious.",2000-01-01,12674,RoboCop 3 +Leonard Klady,none,0107977,Variety,,2008-10-13,12696,Robin Hood: Men in Tights +Geoff Andrew,none,0107977,Time Out,,2007-08-16,12696,Robin Hood: Men in Tights +Vincent Canby,none,0107977,New York Times,,2003-05-20,12696,Robin Hood: Men in Tights +Rita Kempley,none,0107977,Washington Post,,2000-01-01,12696,Robin Hood: Men in Tights +Desson Thomson,none,0107977,Washington Post,,2000-01-01,12696,Robin Hood: Men in Tights +James Berardinelli,rotten,0107977,ReelViews,,2000-01-01,12696,Robin Hood: Men in Tights +Owen Gleiberman,rotten,0107983,Entertainment Weekly,,2011-09-07,13864,Romeo Is Bleeding +Todd McCarthy,rotten,0107983,Variety,The far-fetched plotting eventually goes so far over the top that pic flirts with inventing a new genre of film noir camp.,2008-04-09,13864,Romeo Is Bleeding +Jonathan Rosenbaum,rotten,0107983,Chicago Reader,"It would be facile to say it substitutes style for content; actually, it substitutes stylishness for style.",2008-04-09,13864,Romeo Is Bleeding +David Hunter,rotten,0107983,Hollywood Reporter,Stylistic but ultimately unsatisfying.,2008-04-09,13864,Romeo Is Bleeding +,rotten,0107983,Time Out,"Hilary Henkin's script isn't as smart as it thinks it is, and only Olin's breathtakingly excessive femme fatale hits the right note of campy panache.",2006-06-24,13864,Romeo Is Bleeding +Janet Maslin,rotten,0107983,New York Times,"For all its promise, and for all the brittle beauty of Dariusz Wolski's cinematography, Romeo Is Bleeding eventually collapses under the weight of its violent affectations.",2003-05-20,13864,Romeo Is Bleeding +Joe Brown,rotten,0107983,Washington Post,Romeo is most notable for being the first film of the year to cash in on post-Bobbitt fears of castrating (and worse) females.,2000-01-01,13864,Romeo Is Bleeding +Rita Kempley,rotten,0107983,Washington Post,"Basically, there's nothing new or revolutionary about Mona.",2000-01-01,13864,Romeo Is Bleeding +James Berardinelli,rotten,0107983,ReelViews,A satire that has the unfortunate tendency to take itself too seriously.,2000-01-01,13864,Romeo Is Bleeding +Roger Ebert,rotten,0107983,Chicago Sun-Times,"An exercise in overwrought style and overwritten melodrama, and proof that a great cast cannot save a film from self-destruction.",2000-01-01,13864,Romeo Is Bleeding +,rotten,0107983,Entertainment Weekly,,1994-02-04,13864,Romeo Is Bleeding +Owen Gleiberman,fresh,0105275,Entertainment Weekly,,2011-09-07,15466,Romper Stomper +Variety Staff,rotten,0105275,Variety,Romper Stomper is A Clockwork Orange without the intellect.,2008-06-09,15466,Romper Stomper +Geoff Andrew,rotten,0105275,Time Out,"The cheap 'message' of the ending fails to salvage a film that at best is well-meant but misguided, at worst, flashy and garbled.",2006-06-24,15466,Romper Stomper +Richard Harrington,rotten,0105275,Washington Post,"Exploits the frustration, anger and violence of a despicable subculture while excusing the glorification of its hate aesthetic as necessary ""reporting.""",2000-01-01,15466,Romper Stomper +Desson Thomson,rotten,0105275,Washington Post,"It's merely another violent art house picture, slumming modishly in the world of psycho-personalities, and exhibiting only occasional flashes of originality.",2000-01-01,15466,Romper Stomper +,fresh,0105275,Entertainment Weekly,,1993-01-01,15466,Romper Stomper +,none,0108000,Variety,,2009-03-26,770683869,Ruby in Paradise +Geoff Andrew,none,0108000,Time Out,,2006-02-09,770683869,Ruby in Paradise +Janet Maslin,none,0108000,New York Times,,2003-05-20,770683869,Ruby in Paradise +James Berardinelli,fresh,0108000,ReelViews,,2000-01-01,770683869,Ruby in Paradise +Roger Ebert,fresh,0108000,Chicago Sun-Times,,2000-01-01,770683869,Ruby in Paradise +Rita Kempley,none,0108000,Washington Post,,2000-01-01,770683869,Ruby in Paradise +Leonard Klady,none,0108002,Variety,,2009-03-26,10143,Rudy +J. R. Jones,fresh,0108002,Chicago Reader,[A] well-crafted piece of middle-American uplift.,2007-03-26,10143,Rudy +Geoff Andrew,rotten,0108002,Time Out,"Directed with composure, but no great fervour, the film's conspicuously uninterested in American football, and much concerned with testing the limits and the resilience of the American dream.",2006-06-24,10143,Rudy +Stephen Holden,fresh,0108002,New York Times,"For all its patness, the movie also has a gritty realism that is not found in many higher-priced versions of the same thing, and its happy ending is not the typical Hollywood leap into fantasy.",2003-05-20,10143,Rudy +Peter Travers,fresh,0108002,Rolling Stone,"It's Ruettiger's persistence that his teammates and the film celebrate. For that, Rudy earns a rousing cheer.",2001-05-12,10143,Rudy +Roger Ebert,fresh,0108002,Chicago Sun-Times,"Astin's performance is so self-effacing, so focused and low-key, that we lose sight of the underdog formula and begin to focus on this dogged kid who won't quit. And the last big scene is an emotional powerhouse, just the way it's supposed to be.",2000-01-01,10143,Rudy +Norman Chad,rotten,0108002,Washington Post,"The film is so uplifting, I felt like calling up Lou Holtz for brunch.",2000-01-01,10143,Rudy +Richard Harrington,fresh,0108002,Washington Post,Indiana has been very good to director David Anspaugh and writer Angelo Pizzo.,2000-01-01,10143,Rudy +James Berardinelli,rotten,0108002,ReelViews,"The cheers in the audience at the end were genuine, which is testimony to the likability (although not necessarily the quality) of the film.",2000-01-01,10143,Rudy +Desson Thomson,fresh,0108002,Washington Post,"Astin gives these familiar doings the charm they need, as he pushes towards a virtually impossible goal.",2000-01-01,10143,Rudy +Todd McCarthy,rotten,0108026,Variety,"Sympathetic performances from Danny Glover and Matt Dillon somewhat compensate for the mildness of the material, but can't disguise the fact that the film has very little to say about a major societal problem.",2009-03-26,709883235,The Saint of Fort Washington +Derek Adams,rotten,0108026,Time Out,"Though something of a failure in its own terms, this social-conscience movie does produce a strong emotional tug...",2006-02-09,709883235,The Saint of Fort Washington +Janet Maslin,fresh,0108026,New York Times,"Whatever its shortcomings, The Saint of Fort Washington takes its subject very seriously, in ways that no audience can fail to find wrenchingly sad.",2003-05-20,709883235,The Saint of Fort Washington +Roger Ebert,fresh,0108026,Chicago Sun-Times,"If you have ever stopped your car at an intersection and been approached by men with squeegees, offering to clean your windshield, you may have wondered who these guys are, where they come from, and where they go at night. This movie knows.",2000-01-01,709883235,The Saint of Fort Washington +Owen Gleiberman,rotten,0105032,Entertainment Weekly,,2011-09-07,285260692,Les nuits fauves +John Hartl,fresh,0108052,Seattle Times,"More than any previous non-documentary Holocaust movie, this one convinces through the accumulation of such detail.",2013-05-06,12903,Schindler's List +Desmond Ryan,fresh,0108052,Philadelphia Inquirer,"Schindler's List is filmed in black and white, but the triumph of Neeson's portrait and Steven Zaillian's screenplay is that Oskar Schindler remains gray and enigmatic.",2013-05-06,12903,Schindler's List +Jay Boyar,fresh,0108052,Orlando Sentinel,"What the visual immediacy of Schindler's List does is to prod each of us to fill in the gaps of emotion for ourselves. To put this another way, the more you are able to invest in this superb, demanding film, the more you are likely to get back.",2013-05-06,12903,Schindler's List +Terrence Rafferty,fresh,0108052,New Yorker,"Few American movies since the silent era have had anything approaching this picture's narrative boldness, visual audacity, and emotional directness.",2013-02-22,12903,Schindler's List +Gene Siskel,fresh,0108052,Chicago Tribune,What Spielberg has done in this Holocaust story is simply and forcefully place us there.,2013-01-16,12903,Schindler's List +Owen Gleiberman,fresh,0108052,Entertainment Weekly,"Schindler's List is a film whose meanings are to be found less in its uplifting outline than in its harrowing flow of images -- images of fear, hope, horror, compassion, degradation, chaos, and death.",2009-11-06,12903,Schindler's List +Todd McCarthy,fresh,0108052,Variety,This is the film to win over Spielberg skeptics.,2008-02-19,12903,Schindler's List +Kenneth Turan,fresh,0108052,Los Angeles Times,"Not only is the subject matter different for Spielberg, the way it is treated is a departure both for him and for the business as usual standards of major studio releases.",2007-02-10,12903,Schindler's List +Jonathan Rosenbaum,fresh,0108052,Chicago Reader,Spielberg does an uncommonly good job both of holding our interest over 185 minutes and of showing more of the nuts and bolts of the Holocaust than we usually get from fiction films.,2007-02-05,12903,Schindler's List +Geoff Andrew,fresh,0108052,Time Out,"It's a noble achievement, and essential viewing.",2006-02-09,12903,Schindler's List +Janet Maslin,fresh,0108052,New York Times,"Rising brilliantly to the challenge of this material and displaying an electrifying creative intelligence, Mr. Spielberg has made sure that neither he nor the Holocaust will ever be thought of in the same way again.",2003-05-20,12903,Schindler's List +Desson Thomson,fresh,0108052,Washington Post,"For a movie -- or more accurately, a Hollywood-approved art movie -- this often-stunning work puts the Holocaust into bracing perspective.",2002-01-15,12903,Schindler's List +Peter Travers,fresh,0108052,Rolling Stone,"Schindler's List, despite blatant compromises, is a rending historical document.",2001-05-12,12903,Schindler's List +Rita Kempley,fresh,0108052,Washington Post,"Schindler's List is a ruthlessly unsentimental portrait of a German war profiteer's epiphany that inspires neither sorrow nor pity, but a kind of emotional numbness.",2000-01-01,12903,Schindler's List +Roger Ebert,fresh,0108052,Chicago Sun-Times,"What is most amazing about this film is how completely Spielberg serves his story. The movie is brilliantly acted, written, directed and seen.",2000-01-01,12903,Schindler's List +John Hartl,fresh,0108052,Film.com,"In a severe, uncompromising manner that none of his previous films has approached, Spielberg has captured the terror of the Nazi reign as well as the determination and resourcefulness of those who resisted.",2000-01-01,12903,Schindler's List +James Berardinelli,fresh,0108052,ReelViews,"Because this film touches us so deeply, the catharsis has a power that few -- if any -- other moments in film history can match.",2000-01-01,12903,Schindler's List +Owen Gleiberman,fresh,0102266,Entertainment Weekly,,2011-09-07,13469,The Last Boy Scout +,none,0102266,Variety,,2009-03-26,13469,The Last Boy Scout +Geoff Andrew,none,0102266,Time Out,,2006-02-09,13469,The Last Boy Scout +Vincent Canby,none,0102266,New York Times,,2003-05-20,13469,The Last Boy Scout +Desson Thomson,rotten,0102266,Washington Post,The filmic equivalent of a hate crime.,2000-01-01,13469,The Last Boy Scout +Rita Kempley,rotten,0102266,Washington Post,"Strictly for viewers who don't want surprises, just a laundry list of buddyisms.",2000-01-01,13469,The Last Boy Scout +Roger Ebert,fresh,0102266,Chicago Sun-Times,"The movie has a lot of laughs, its action sequences are thrilling, its surprises are startling, and it shows a real ingenuity in the ways by which it gets Willis into, and out of, trouble.",2000-01-01,13469,The Last Boy Scout +,fresh,0102266,Entertainment Weekly,,1991-12-13,13469,The Last Boy Scout +Brian Lowry,none,0108065,Variety,,2011-03-10,10468,Searching for Bobby Fischer +Variety Staff,fresh,0108065,Variety,"Pomeranc is wonderfully real and wide-eyed as Josh, with a raspy voice and slight lisp recalling Linus from the Peanuts cartoons.",2009-03-26,10468,Searching for Bobby Fischer +Michael Booth,fresh,0108065,Denver Post,"The mystery of Fischer's talent and torment adds depth to Searching for Bobby Fischer, about a young New York chess prodigy who doesn't want his genius to ruin his life.",2008-02-08,10468,Searching for Bobby Fischer +Derek Adams,fresh,0108065,Time Out,"True, James Horner's score seems to have strayed in from a fists-in-the-air crowd-pleaser, but it's the one weak link in an accomplished, unexpectedly winning movie.",2006-06-24,10468,Searching for Bobby Fischer +Janet Maslin,fresh,0108065,New York Times,"What Bobby Fischer took away, dashing the hopes and the innocence of his acolytes when he spurned chess, may never truly be recaptured. But some of it has found its way to the screen.",2004-08-30,10468,Searching for Bobby Fischer +James Berardinelli,fresh,0108065,ReelViews,"Chess may not be the most exciting activity to watch, but Searching for Bobby Fischer makes for engaging entertainment.",2000-01-01,10468,Searching for Bobby Fischer +Rita Kempley,fresh,0108065,Washington Post,"Searching for Bobby Fischer does for chess what The Karate Kid did for martial arts, albeit with considerably more complexity and class.",2000-01-01,10468,Searching for Bobby Fischer +Desson Thomson,fresh,0108065,Washington Post,"As the boy with a cute little lisp, who emerges from his toy room to mastermind his kings, queens and bishops to tactical victory, Pomeranc imbues the movie with irresistible naivete.",2000-01-01,10468,Searching for Bobby Fischer +Roger Ebert,fresh,0108065,Chicago Sun-Times,"If we can operate at the genius level in a given field, does that mean we must -- even if the cost is the sort of endless purgatory a Bobby Fischer has inhabited? It's an interesting question, and this movie doesn't avoid it.",2000-01-01,10468,Searching for Bobby Fischer +,fresh,0108065,Entertainment Weekly,,1993-08-14,10468,Searching for Bobby Fischer +,none,0328390,Time Out,,2011-11-17,22284,Second Best +Lisa Schwarzbaum,fresh,0328390,Entertainment Weekly,,2011-09-07,22284,Second Best +Dave Calhoun,none,0328390,Time Out New York,,2007-08-16,22284,Second Best +,none,0328390,Time Out,,2006-02-09,22284,Second Best +Kevin Crust,none,0328390,Los Angeles Times,,2005-10-29,22284,Second Best +Jake Tracer,rotten,0328390,L.A. Weekly,"Second Best tries too hard for sincerity, when it's actually more sincere when cynical.",2005-10-27,22284,Second Best +Frank Scheck,rotten,0328390,Hollywood Reporter,"While the dialogue and characterizations frequently resonate with uncomfortable truths and some genuine humor, the central character's quirks are far more irritating than illuminating.",2005-06-15,22284,Second Best +Owen Gleiberman,rotten,0328390,Entertainment Weekly,"Might have made a good stage monologue, but as a film it's overstated and barely baked.",2005-06-01,22284,Second Best +Stephen Whitty,rotten,0328390,Newark Star-Ledger,"Unfortunately there's nothing very sympathetic about Elliot, or even interesting.",2005-05-27,22284,Second Best +Kyle Smith,rotten,0328390,New York Post,A sour and pointless exercise.,2005-05-27,22284,Second Best +Jack Mathews,rotten,0328390,New York Daily News,"Though the essays are smartly written and Pantoliano manages to make Elliot vaguely sympathetic, Second Best is a long slog in the dumps.",2005-05-27,22284,Second Best +Akiva Gottlieb,rotten,0328390,Village Voice,"An ugly, amateurish film that champions mediocrity in a meta-attempt to justify its own ineptitude.",2005-05-24,22284,Second Best +David Rooney,fresh,0328390,Variety,"While the film is lazily directed, it strikes an agreeable balance of wry humor and the soulful observation of lives lived in the shadow of everyone else's achievements.",2005-05-19,22284,Second Best +Stephen Holden,fresh,0328390,New York Times,"Compare and despair: that wise, useful adage popularized by 12-step programs could be the subtitle of Eric Weber's sloppy but smart-enough-to- make-you-squirm comedy.",2005-05-19,22284,Second Best +Jay Carr,fresh,0108071,Boston Globe,"The result is an instant classic -- rich, dense, resonant, powerful.",2013-08-01,9432,The Secret Garden +Jeff Shannon,fresh,0108071,Seattle Times,"While drawing superb performances from her young leads, Holland has masterfully contrasted the garden -- a place where melodic robins seem almost conversant -- with the dread of Misselthwaite.",2013-08-01,9432,The Secret Garden +Jay Boyar,fresh,0108071,Orlando Sentinel,"The movie's dark themes, unhurried pace and talkiness make it something of a gamble for many children. But older children -- especially those who have been asking specific questions about death -- may find some nourishment in this garden.",2013-08-01,9432,The Secret Garden +Carrie Rickey,fresh,0108071,Philadelphia Inquirer,"This enchanted tale vividly shows how love heals and nurtures barren souls, makes them flourish like abundant Edens.",2013-08-01,9432,The Secret Garden +Kenneth Turan,rotten,0108071,Los Angeles Times,"Rather than a fresh breeze, it's the stale air of gilded calculation, the uncomfortable feeling that things are excessively ""just so,"" that overhangs much that is genuinely appealing about this film.",2013-08-01,9432,The Secret Garden +Michael Sragow,rotten,0108071,New Yorker,"It's as if the moviemakers were trying to cook up a New Age Yorkshire pudding, without meat drippings -- what's missing is Burnett's robust optimism and animistic energy.",2013-08-01,9432,The Secret Garden +Jonathan Rosenbaum,fresh,0108071,Chicago Reader,"Screenwriter Caroline Thompson and director Agnieszka Holland have turned Frances Hodgson Burnett's rather gothic 1911 children's book into an evocative, beautifully realized picture.",2013-08-01,9432,The Secret Garden +Johanna Steinmetz,fresh,0108071,Chicago Tribune,"The film is gorgeous to look at, from its period accouterments to its wanderings in explored space (the house is full of secret passageways) to its use of color.",2013-08-01,9432,The Secret Garden +Todd McCarthy,fresh,0108071,Variety,"Executed to near perfection in all artistic departments, this superior adaptation of the perennial favorite novel will find its core public among girls , but should prove satisfying enough to a range of audiences.",2009-02-26,9432,The Secret Garden +David Ansen,fresh,0108071,Newsweek,"It is, first and foremost, a visual delight, a Victorian picture book come to life, from its brief prologue in India through its darkly enchanted recreation of Misselthwaite Manor on the Yorkshire moors.",2008-03-31,9432,The Secret Garden +Trevor Johnston,fresh,0108071,Time Out,"With well-judged performances played straight, and topical subtexts (Green consciousness, the dysfunctional family), this 'children's' film sets no age limit on its potential audience.",2006-02-09,9432,The Secret Garden +Janet Maslin,fresh,0108071,New York Times,"Ms. Holland's film of The Secret Garden is elegantly expressive, a discreet and lovely rendering of the children's classic by Frances Hodgson Burnett.",2003-05-20,9432,The Secret Garden +Roger Ebert,fresh,0108071,Chicago Sun-Times,"It is a work of beauty, poetry and deep mystery, and watching it is like entering for a time into a closed world where one's destiny may be discovered.",2000-01-01,9432,The Secret Garden +Megan Rosenfeld,rotten,0108071,Washington Post,"The young actors are quite proficient and un-sappy too -- it's not their fault if they too often seem like chessmen being moved around on the director's board, composed into picturesque tableaux.",2000-01-01,9432,The Secret Garden +James Berardinelli,fresh,0108071,ReelViews,The Secret Garden has at least two things going for it: remarkable acting and mesmerizing cinematography (by Roger Deakins).,2000-01-01,9432,The Secret Garden +Desson Thomson,fresh,0108071,Washington Post,"What a pleasure -- and what a challenge for the filmmakers -- to come up with a movie that exists primarily on ambience, character interplay, English accents and subtle class differences.",2000-01-01,9432,The Secret Garden +Owen Gleiberman,rotten,0108071,Entertainment Weekly,"The movie is earnest, heartfelt, and, for all its lavishness, rather plodding.",1993-03-18,9432,The Secret Garden +Owen Gleiberman,rotten,0111127,Entertainment Weekly,,2011-09-07,13696,Serial Mom +Todd McCarthy,rotten,0111127,Variety,Rather mild and scattershot in its satiric marksmanship...,2008-05-08,13696,Serial Mom +Derek Adams,fresh,0111127,Time Out,"An uproariously funny, marvellously malicious performance from Turner.",2006-06-24,13696,Serial Mom +Caryn James,none,0111127,New York Times,,2003-05-20,13696,Serial Mom +Rick Groen,rotten,0111127,Globe and Mail,The murders are multiple but the joke is strictly one-note.,2002-04-12,13696,Serial Mom +Peter Travers,fresh,0111127,Rolling Stone,A killingly funny spoof of crime and nonpunishment.,2001-05-12,13696,Serial Mom +Rita Kempley,rotten,0111127,Washington Post,Too realistically gory to really be funny.,2000-01-01,13696,Serial Mom +Joe Brown,rotten,0111127,Washington Post,Offensively tame and almost (gasp) tasteful.,2000-01-01,13696,Serial Mom +Roger Ebert,rotten,0111127,Chicago Sun-Times,"I am not sure why this isn't very funny, but it's not.",2000-01-01,13696,Serial Mom +James Berardinelli,rotten,0111127,ReelViews,"While the idea sounds fertile, the execution is uneven, and the comedy sporadic at best.",2000-01-01,13696,Serial Mom +,rotten,0111127,Entertainment Weekly,,1994-04-13,13696,Serial Mom +Hank Sartin,fresh,0080979,Time Out,,2011-11-18,10631,Kagemusha +Keith Uhlich,fresh,0080979,Time Out,,2011-11-17,10631,Kagemusha +Keith Uhlich,fresh,0080979,Time Out New York,"At worst, the film is an empty vessel that places blind trust in affected stillness and symmetry... the movie quite often switches on a dime to more deep and meaningful textures.",2009-07-15,10631,Kagemusha +,none,0080979,Variety,,2008-07-22,10631,Kagemusha +Geoff Andrew,none,0080979,Time Out,,2006-06-24,10631,Kagemusha +Roger Ebert,fresh,0080979,Chicago Sun-Times,There are great images in this film.,2004-10-23,10631,Kagemusha +Vincent Canby,rotten,0080979,New York Times,"There is beauty in Kagemusha but it is impersonal, distant and ghostly. The old master has never been more rigorous.",2003-05-20,10631,Kagemusha +Derek Adams,fresh,0108101,Time Out,"Biting down on his pipe, his shirt collar permanently askew, Hopkins assays another concerted study in English repression -- a condition unexpectedly relieved by Winger's brash intelligence and brittle wit.",2006-06-24,10426,Shadowlands +Emanuel Levy,fresh,0108101,Variety,Superlative acting by Hopkins and Winger elevates this fictionalized late-in-life romance between the repressed British scholar and writer C.S. Lewis and the American Jewish housewife-poet who introduces him to sex and rejuvenates his life.,2005-11-30,10426,Shadowlands +Janet Maslin,fresh,0108101,New York Times,"Here is Mr. Hopkins giving an amazingly versatile and moving performance, shifting the light in those knowing blue eyes to reveal endless shadings between delight and sorrow.",2003-05-20,10426,Shadowlands +James Berardinelli,fresh,0108101,ReelViews,"Sit back, watch a master at work, and never once believe that you're not observing the real C.S. Lewis.",2000-01-01,10426,Shadowlands +Roger Ebert,fresh,0108101,Chicago Sun-Times,"It understands that not everyone falls into love through the avenue of physical desire; that for some, the lust may be for another's mind, for inner beauty.",2000-01-01,10426,Shadowlands +Rita Kempley,fresh,0108101,Washington Post,A high-class tear-jerker about the romance of repressed British writer C.S. Lewis with feisty American poet Joy Gresham.,2000-01-01,10426,Shadowlands +Desson Thomson,fresh,0108101,Washington Post,Shadowlands is illuminated from beginning to end by Hopkins. This may be the best thing he's ever done.,2000-01-01,10426,Shadowlands +,none,0108122,Variety,,2012-02-23,98828080,Short Cuts +Owen Gleiberman,fresh,0108122,Entertainment Weekly,,2011-09-07,98828080,Short Cuts +Todd McCarthy,fresh,0108122,Variety,"As the grand ringmaster, it's here that Altman passes the baton to his actors , whose behavioral insights are critical to the film's success.",2008-02-27,98828080,Short Cuts +Jonathan Rosenbaum,fresh,0108122,Chicago Reader,"Inevitably it's a mixed bag, though the film's assurance in keeping it all coherent is at times exhilarating.",2008-02-27,98828080,Short Cuts +Geoff Andrew,fresh,0108122,Time Out,"From the exhilarating opening, you know Altman's epic 'adaptation' of eight stories and a poem by Raymond Carver is going to be special.",2006-06-24,98828080,Short Cuts +Vincent Canby,fresh,0108122,New York Times,"The lives are often desperate and the characters inarticulate, but the group portrait is as grandly, sometimes as hilariously, realized as anything the director has ever done.",2003-05-20,98828080,Short Cuts +Peter Travers,fresh,0108122,Rolling Stone,"Triumphantly fierce, funny, moving and innovative.",2001-05-12,98828080,Short Cuts +Roger Ebert,fresh,0108122,Chicago Sun-Times,"The movie is based on short stories by Raymond Carver, but this is Altman's work, not Carver's, and all the film really has in common with its source is a feeling for people who are disconnected.",2000-01-01,98828080,Short Cuts +Desson Thomson,fresh,0108122,Washington Post,"Altman, who has made a career of pulling the critics and cineastes his way, demonstrates that artistic sleight of hand once again.",2000-01-01,98828080,Short Cuts +James Berardinelli,fresh,0108122,ReelViews,"It's a genuine pleasure to find a movie with such a deep and intelligent portrayal of simple human lives, with all their minor triumphs and tragedies.",2000-01-01,98828080,Short Cuts +Rita Kempley,rotten,0108122,Washington Post,"A cynical, sexist and shallow work from cinema's premier misanthrope, Robert Altman, who here shows neither compassion for -- nor insight into -- the human condition.",2000-01-01,98828080,Short Cuts +Lisa Schwarzbaum,rotten,0111194,Entertainment Weekly,,2011-09-07,11761,A Simple Twist of Fate +,rotten,0111194,Entertainment Weekly,,2011-01-01,11761,A Simple Twist of Fate +,none,0111194,Variety,,2009-03-26,11761,A Simple Twist of Fate +Derek Adams,none,0111194,Time Out,,2006-06-24,11761,A Simple Twist of Fate +Janet Maslin,none,0111194,New York Times,,2004-08-30,11761,A Simple Twist of Fate +,none,0111194,Globe and Mail,,2002-04-12,11761,A Simple Twist of Fate +James Berardinelli,rotten,0111194,ReelViews,,2000-01-01,11761,A Simple Twist of Fate +Hal Hinson,none,0111194,Washington Post,,2000-01-01,11761,A Simple Twist of Fate +Roger Ebert,rotten,0111194,Chicago Sun-Times,,2000-01-01,11761,A Simple Twist of Fate +Owen Gleiberman,rotten,0108149,Entertainment Weekly,,2011-09-07,13622,Six Degrees of Separation +Derek Adams,none,0108149,Time Out,,2006-02-09,13622,Six Degrees of Separation +Janet Maslin,none,0108149,New York Times,,2003-05-20,13622,Six Degrees of Separation +James Berardinelli,fresh,0108149,ReelViews,"Ultimately, Six Degrees of Separation will succeed or fail for the individual viewer based on their expectations and preferences.",2000-01-01,13622,Six Degrees of Separation +Rita Kempley,rotten,0108149,Washington Post,"It's too clever by half, an inside joke aimed at the New York gentry.",2000-01-01,13622,Six Degrees of Separation +,rotten,0108149,Entertainment Weekly,,1993-12-10,13622,Six Degrees of Separation +Owen Gleiberman,rotten,0108160,Entertainment Weekly,,2011-09-07,12631,Sleepless in Seattle +Richard Schickel,rotten,0108160,TIME Magazine,"Mostly, Sleepless in Seattle leaves you feeling restless in the audience.",2009-02-02,12631,Sleepless in Seattle +Jonathan Rosenbaum,rotten,0108160,Chicago Reader,"If one can ignore all the straining for lightness here, this is watchable enough, though hardly anything resembling a tearjerker.",2009-02-02,12631,Sleepless in Seattle +Brian Lowry,rotten,0108160,Variety,"Ephron and fellow writers Jeff Arch and David S. Ward have conspired to make Sleepless in Seattle as purposefully schmaltzy as one can imagine, in a manner that's almost cynical.",2008-07-22,12631,Sleepless in Seattle +Peter Travers,fresh,0108160,Rolling Stone,"It's easily the hippest, frankest and funniest date movie around.",2006-08-26,12631,Sleepless in Seattle +,fresh,0108160,Time Out,"The schmaltzy soundtrack is overdone, but cameraman Sven Nykvist wraps it all up in an appropriately warm glow.",2006-02-09,12631,Sleepless in Seattle +Vincent Canby,fresh,0108160,New York Times,"Nora Ephron's Sleepless in Seattle is a feather-light romantic comedy about two lovers who meet for the first time in the last reel. It's a stunt, but it's a stunt that works far more effectively than anybody in his right mind has reason to expect.",2003-05-20,12631,Sleepless in Seattle +Joe Brown,fresh,0108160,Washington Post,A quick check of the exiting audience found many smiling -- and still clutching tissues.,2000-01-01,12631,Sleepless in Seattle +Roger Ebert,fresh,0108160,Chicago Sun-Times,"Sleepless in Seattle is as ephemeral as a talk show, as contrived as the late show, and yet so warm and gentle I smiled the whole way through.",2000-01-01,12631,Sleepless in Seattle +Hal Hinson,fresh,0108160,Washington Post,We fall -- and I think a lot of people will fall hard for this movie -- even though we know we shouldn't.,2000-01-01,12631,Sleepless in Seattle +James Berardinelli,fresh,0108160,ReelViews,"This is a dreamy, romantic fantasy whose mood falls somewhere between magic and reality.",2000-01-01,12631,Sleepless in Seattle +,rotten,0108160,Entertainment Weekly,,1993-06-25,12631,Sleepless in Seattle +Michael Sragow,rotten,0108162,New Yorker,"Sharon Stone goes cold in this botched thiller-maybe from the effort of pretending that her character, a beauteous book editor, would fall for the preening young computer wizard played by the vacant-and-proud-of-it William Baldwin.",2013-06-12,16897,Sliver +Owen Gleiberman,rotten,0108162,Entertainment Weekly,,2011-09-07,16897,Sliver +Brian Lowry,none,0108162,Variety,,2009-03-26,16897,Sliver +Derek Adams,none,0108162,Time Out,,2006-06-24,16897,Sliver +Janet Maslin,none,0108162,New York Times,,2003-05-20,16897,Sliver +Rita Kempley,none,0108162,Washington Post,,2000-01-01,16897,Sliver +James Berardinelli,rotten,0108162,ReelViews,,2000-01-01,16897,Sliver +,rotten,0108162,Entertainment Weekly,,1993-05-21,16897,Sliver +Owen Gleiberman,fresh,0083658,Entertainment Weekly,This is perhaps the only science-fiction film that can be called transcendental.,2011-09-07,12886,Blade Runner +Richard Corliss,fresh,0083658,TIME Magazine,"As a display terminal for the wizardry of Designers Lawrence G. Paull, Douglas Trumbull and Syd Mead, the movie delivers.",2008-08-22,12886,Blade Runner +Peter Hartlaub,fresh,0083658,San Francisco Chronicle,"This definitive print should be the last little push that ""Blade Runner"" needs to complete its 25-year journey from box office failure to cult favorite to full-blown classic.",2007-11-30,12886,Blade Runner +Colin Covert,fresh,0083658,Minneapolis Star Tribune,The film still represents the cutting edge of dark science fiction.,2007-11-29,12886,Blade Runner +Terry Lawson,fresh,0083658,Detroit Free Press,Blade Runner: The Final Cut plays better now than ever.,2007-11-16,12886,Blade Runner +Ty Burr,fresh,0083658,Boston Globe,Open the champagne: Blade Runner is finally just the way Ridley Scott wanted it. And it only took 25 years.,2007-11-16,12886,Blade Runner +Peter Howell,fresh,0083658,Toronto Star,There are no plot-altering additions or subtractions. But the digitally spruced print is gorgeous to look at and listen to.,2007-11-09,12886,Blade Runner +Jonathan Rosenbaum,fresh,0083658,Chicago Reader,Much of the film's erotic charge and moral and ideological ambiguity stem from the fact that these characters are very nearly the only ones we care about.,2007-11-09,12886,Blade Runner +Roger Ebert,fresh,0083658,Chicago Sun-Times,"This is a seminal film, building on older classics like Metropolis or Things to Come, but establishing a pervasive view of the future that has influenced science fiction films ever since.",2007-11-09,12886,Blade Runner +Michael Phillips,fresh,0083658,Chicago Tribune,Ridley Scott created a triumph of retro-futuristic design over narrative or character richness.,2007-11-01,12886,Blade Runner +Jack Mathews,fresh,0083658,New York Daily News,"The opportunity to see one of the milestone visual achievements in a big hall with a giant screen is not to be missed. And even if you saw Blade Runner in a theater in 1982, this will be an entirely new experience.",2007-10-05,12886,Blade Runner +Scott Foundas,fresh,0083658,L.A. Weekly,"Mainly, the re-release is a good excuse to indulge once more in Scott's iconic and highly influential vision of a future Los Angeles choked by rain, neon and cheap pleasure palaces.",2007-10-04,12886,Blade Runner +James Berardinelli,fresh,0083658,ReelViews,"These days, it's almost impossible to find a gritty science fiction motion picture that doesn't owe at least a small debt to Blade Runner's visual style.",2007-05-29,12886,Blade Runner +,fresh,0083658,Variety,A stylistically dazzling film noir set in November 2019 in a brilliantly imagined Los Angeles marked by both technological wonders and horrendous squalor.,2007-05-29,12886,Blade Runner +,rotten,0083658,Time Out,"The android villains are neither menacing nor sympathetic, when ideally they should have been both. This leaves Scott's picturesque violence looking dull and exploitative.",2006-06-24,12886,Blade Runner +Janet Maslin,fresh,0083658,New York Times,As intricately detailed as anything a science-fiction film has yet envisioned.,2004-08-30,12886,Blade Runner +Rita Kempley,fresh,0083658,Washington Post,"It is, in fact, an amazingly sophisticated, sumptuously visionary treatise on the consequences of attaining god-hood.",2001-11-16,12886,Blade Runner +Desson Thomson,fresh,0083658,Washington Post,"The film is great on every level: the poignant screenplay about man's futile quest for immortality; Scott's tremendous direction; the incredible, futuristic sets designed by Lawrence G. Paull, Syd Mead and others; the phenomenal special effects.",2001-11-16,12886,Blade Runner +Owen Gleiberman,rotten,0108186,Entertainment Weekly,,2011-09-07,10642,Son in Law +Dennis Harvey,none,0108186,Variety,,2009-03-26,10642,Son in Law +Derek Adams,none,0108186,Time Out,,2006-06-24,10642,Son in Law +Vincent Canby,none,0108186,New York Times,,2003-05-20,10642,Son in Law +Roger Ebert,rotten,0108186,Chicago Sun-Times,,2000-01-01,10642,Son in Law +Richard Harrington,none,0108186,Washington Post,,2000-01-01,10642,Son in Law +Desson Thomson,none,0108186,Washington Post,,2000-01-01,10642,Son in Law +James Berardinelli,rotten,0108186,ReelViews,,2000-01-01,10642,Son in Law +,rotten,0108186,Entertainment Weekly,,1993-07-02,10642,Son in Law +Leonard Klady,fresh,0108174,Variety,A tres hip slice of life about the dilemma of marital commitment with just a pinch of Hitchcock providing the cutting edge.,2009-02-02,10601,So I Married an Axe Murderer +J. R. Jones,rotten,0108174,Chicago Reader,"Myers pumps out a river of inventive shtick, but it doesn't cohere or connect; he seems less a character than a comedian doing couch time on a late-night talk show.",2009-02-02,10601,So I Married an Axe Murderer +,fresh,0108174,Time Out,"Like an exploding haggis, funny but extremely messy.",2006-06-24,10601,So I Married an Axe Murderer +Janet Maslin,fresh,0108174,New York Times,"The look of So I Married an Axe Murderer is crisply professional, and John Graysmark's production design provides an element of visual surprise.",2004-08-30,10601,So I Married an Axe Murderer +Peter Travers,rotten,0108174,Rolling Stone,"Juggling mirth, romance and murder requires a deft touch -- think of Hitchcock's Trouble With Harry. Axe is a blunt instrument.",2001-05-12,10601,So I Married an Axe Murderer +Hal Hinson,rotten,0108174,Washington Post,"It doesn't help matters much that director Thomas Schlamme pays homage to great marital murder mysteries of the past, mostly because the attempts to borrow from the classics are so halfhearted.",2000-01-01,10601,So I Married an Axe Murderer +James Berardinelli,rotten,0108174,ReelViews,One of the most lame comedy whodunnits ever to make it to the screen.,2000-01-01,10601,So I Married an Axe Murderer +Roger Ebert,rotten,0108174,Chicago Sun-Times,A mediocre movie with a good one trapped inside.,2000-01-01,10601,So I Married an Axe Murderer +Desson Thomson,fresh,0108174,Washington Post,"Axe is not art by any means. It's often overly taken up with resolving itself. But Myers and others create an enjoyably loose, anti-slick feeling about the affair.",2000-01-01,10601,So I Married an Axe Murderer +Owen Gleiberman,rotten,0108238,Entertainment Weekly,,2011-09-07,14036,Striking Distance +Brian Lowry,none,0108238,Variety,,2009-03-26,14036,Striking Distance +Geoff Andrew,none,0108238,Time Out,,2006-02-09,14036,Striking Distance +Vincent Canby,none,0108238,New York Times,,2003-05-20,14036,Striking Distance +Richard Harrington,none,0108238,Washington Post,,2000-01-01,14036,Striking Distance +James Berardinelli,rotten,0108238,ReelViews,,2000-01-01,14036,Striking Distance +Joe Brown,none,0108238,Washington Post,,2000-01-01,14036,Striking Distance +Roger Ebert,rotten,0108238,Chicago Sun-Times,,2000-01-01,14036,Striking Distance +David Rooney,none,0179841,Variety,,2012-02-23,15074,Harem suaré +,none,0179841,Time Out,,2006-01-26,15074,Harem suaré +Owen Gleiberman,rotten,0111323,Entertainment Weekly,,2011-09-07,14805,Surviving the Game +Brian Lowry,none,0111323,Variety,,2009-03-26,14805,Surviving the Game +Geoff Andrew,none,0111323,Time Out,,2006-02-09,14805,Surviving the Game +Janet Maslin,none,0111323,New York Times,,2003-05-20,14805,Surviving the Game +Richard Harrington,none,0111323,Washington Post,,2000-01-01,14805,Surviving the Game +,rotten,0111323,Entertainment Weekly,,1994-04-15,14805,Surviving the Game +Gene Siskel,rotten,0111400,Chicago Tribune,Some of the comic writing undercuts the preposterous story.,2013-01-16,12079,Terminal Velocity +Owen Gleiberman,rotten,0111400,Entertainment Weekly,,2011-09-07,12079,Terminal Velocity +Geoff Andrew,none,0111400,Time Out,,2006-06-24,12079,Terminal Velocity +Stephen Holden,none,0111400,New York Times,,2003-05-20,12079,Terminal Velocity +,none,0111400,Globe and Mail,,2002-04-12,12079,Terminal Velocity +James Berardinelli,rotten,0111400,ReelViews,,2000-01-01,12079,Terminal Velocity +Hal Hinson,none,0111400,Washington Post,,2000-01-01,12079,Terminal Velocity +Roger Ebert,rotten,0111400,Chicago Sun-Times,,2000-01-01,12079,Terminal Velocity +Joe Brown,none,0111400,Washington Post,,2000-01-01,12079,Terminal Velocity +,rotten,0111400,Entertainment Weekly,,1994-09-23,12079,Terminal Velocity +Lisa Schwarzbaum,fresh,0108328,Entertainment Weekly,,2011-09-07,18708,Thirty Two Short Films About Glenn Gould +Leonard Klady,none,0108328,Variety,,2009-03-26,18708,Thirty Two Short Films About Glenn Gould +Geoff Andrew,none,0108328,Time Out,,2006-02-09,18708,Thirty Two Short Films About Glenn Gould +Janet Maslin,none,0108328,New York Times,,2003-05-20,18708,Thirty Two Short Films About Glenn Gould +Roger Ebert,fresh,0108328,Chicago Sun-Times,,2000-01-01,18708,Thirty Two Short Films About Glenn Gould +James Berardinelli,fresh,0108328,ReelViews,,2000-01-01,18708,Thirty Two Short Films About Glenn Gould +Joshua Kosman,none,0108328,San Francisco Chronicle,,2000-01-01,18708,Thirty Two Short Films About Glenn Gould +Desson Thomson,none,0108328,Washington Post,,2000-01-01,18708,Thirty Two Short Films About Glenn Gould +,fresh,0108328,Entertainment Weekly,,1993-09-14,18708,Thirty Two Short Films About Glenn Gould +Geoff Andrew,none,0111418,Time Out,,2006-02-09,14629,Threesome +Janet Maslin,rotten,0111418,New York Times,The film is so proud of its alleged daring that it even begins with a dictionary definition of the word 'deviant.' 'Sitcom' would have been more like it.,2003-05-20,14629,Threesome +,none,0111418,Globe and Mail,,2002-04-12,14629,Threesome +Peter Travers,none,0111418,Rolling Stone,,2001-05-12,14629,Threesome +James Berardinelli,rotten,0111418,ReelViews,"Threesome, by falling into the common trap of mistaking pretentiousness for substance, loses its way early on.",2000-01-01,14629,Threesome +Roger Ebert,fresh,0111418,Chicago Sun-Times,"Not a great movie, but in its own way it is an effective one, and more than most other movies it is accurate and honest about the sexuality of young people.",2000-01-01,14629,Threesome +Joe Brown,rotten,0111418,Washington Post,"A tedious, toilet-talking, try-sexual tease.",2000-01-01,14629,Threesome +Desson Thomson,rotten,0111418,Washington Post,The three become a giggly and rather insufferable bunch.,2000-01-01,14629,Threesome +,rotten,0111418,Entertainment Weekly,,1994-04-08,14629,Threesome +David Ansen,fresh,0107688,Newsweek,This cautionary fable (Be True to Your Ghoulish Self) may be a little too twisted for little kids but anyone 8 or older will spot the friendly glint behind jack's empty eye sockets.,2011-11-02,12490,The Nightmare Before Christmas +Owen Gleiberman,rotten,0107688,Entertainment Weekly,I'm not sure I've ever seen a fantasy film that's at once so visually amazing and so emotionally dead.,2011-09-07,12490,The Nightmare Before Christmas +Roger Moore,fresh,0107688,Orlando Sentinel,"A work of grand visual wit, clever songs, funny gags and genuine pathos, it is perhaps the greatest stop-motion animated film ever, a painstaking style of model animation that computers have all but completely done away with.",2009-05-13,12490,The Nightmare Before Christmas +Richard Corliss,fresh,0107688,TIME Magazine,A fun house of funereal glamour.,2008-12-05,12490,The Nightmare Before Christmas +Jonathan Rosenbaum,fresh,0107688,Chicago Reader,The set designs are ingenious and the songs (music and lyrics by Danny Elfman) are fairly good.,2007-11-27,12490,The Nightmare Before Christmas +Todd McCarthy,fresh,0107688,Variety,"The dazzling techniques employed here create a strikinglook that's never been seen in such sustained form, making this a unique curio that will appeal to kids and film enthusiasts alike.",2007-11-27,12490,The Nightmare Before Christmas +Colin Covert,fresh,0107688,Minneapolis Star Tribune,"The hippest of all holiday classics, the 1993 release rendered anew in 3-D format remains a postmodern three-ring circus of morbid humor, eye-popping puppet animation and show-stopping songs.",2006-10-30,12490,The Nightmare Before Christmas +Scott Brown,fresh,0107688,Entertainment Weekly,"Flattened for years on cable and video, Nightmare has been resurrected in all its tactile glory.",2006-10-25,12490,The Nightmare Before Christmas +Elizabeth Weitzman,fresh,0107688,New York Daily News,(Producer Tim) Burton's skewed vision is seamlessly realized by director Henry Selick and cleverly enhanced by Danny Elfman's songs.,2006-10-20,12490,The Nightmare Before Christmas +Terry Lawson,fresh,0107688,Detroit Free Press,"This is the movie puts the ""oooh"" back in ""boo.""",2006-10-20,12490,The Nightmare Before Christmas +Nancy Churnin,fresh,0107688,Dallas Morning News,"Thirteen years after its debut, Tim Burton's The Nightmare Before Christmas has gone 3D, which makes a good thing even better.",2006-10-20,12490,The Nightmare Before Christmas +Daniel Gray Longino,fresh,0107688,Atlanta Journal-Constitution,"If the 3-D fails to grab you as much as you might hope, it never takes you out of the movie, which is a remarkable feat.",2006-10-19,12490,The Nightmare Before Christmas +Ben Walters,fresh,0107688,Time Out,The script's non-stop momentum suits the roller-coaster photography -- and the punchy running time brings things to a close before eye-strain sets in.,2006-01-26,12490,The Nightmare Before Christmas +Janet Maslin,fresh,0107688,New York Times,"The Nightmare Before Christmas is a major step forward for both stop-motion animation, which is stunningly well used, and for Mr. Burton himself. He now moves from the level of extremely talented eccentric to that of Disney-style household word.",2003-05-20,12490,The Nightmare Before Christmas +Peter Travers,fresh,0107688,Rolling Stone,"Of all the new Halloween films, only this one has the power to truly haunt our dreams.",2001-05-12,12490,The Nightmare Before Christmas +Roger Ebert,fresh,0107688,Chicago Sun-Times,"Working with gifted artists and designers, [Burton] has made a world here that is as completely new as the worlds we saw for the first time in such films as Metropolis, The Cabinet of Dr. Caligari or Star Wars.",2000-01-01,12490,The Nightmare Before Christmas +Desson Thomson,fresh,0107688,Washington Post,"This brilliant combination of stop-motion animation, three-dimensional sets and superbly imaginative graphics, brings animation to new peaks.",2000-01-01,12490,The Nightmare Before Christmas +Richard Harrington,fresh,0107688,Washington Post,This is a modern classic that enriches the Christmas tradition by turning it on its head and spinning it like a bob.,2000-01-01,12490,The Nightmare Before Christmas +James Berardinelli,fresh,0107688,ReelViews,The Nightmare Before Christmas has something to offer just about everyone.,2000-01-01,12490,The Nightmare Before Christmas +Owen Gleiberman,rotten,0108333,Entertainment Weekly,,2011-09-07,10404,The Three Musketeers +,rotten,0108333,Entertainment Weekly,,2009-11-06,10404,The Three Musketeers +Todd McCarthy,none,0108333,Variety,,2009-03-26,10404,The Three Musketeers +Geoff Andrew,none,0108333,Time Out,,2006-06-24,10404,The Three Musketeers +Janet Maslin,none,0108333,New York Times,,2004-08-30,10404,The Three Musketeers +Roger Ebert,rotten,0108333,Chicago Sun-Times,,2000-01-01,10404,The Three Musketeers +James Berardinelli,rotten,0108333,ReelViews,,2000-01-01,10404,The Three Musketeers +Hal Hinson,none,0108333,Washington Post,,2000-01-01,10404,The Three Musketeers +Jonathan Rosenbaum,rotten,0108358,Chicago Reader,"A lot of care and attention were obviously devoted to selecting locations, designing sets, and grooming handlebar mustaches. Much less attention went to making one believe that any of the events took place circa 1879.",2012-05-10,12948,Tombstone +Emanuel Levy,fresh,0108358,Variety,"A tough-talking but soft-hearted tale that is entertaining in a sprawling, old-fashioned manner.",2008-12-04,12948,Tombstone +,fresh,0108358,Time Out,"There's a misguided romantic subplot and the ending rather sprawls, but mostly this is rootin', tootin' entertainment.",2006-02-09,12948,Tombstone +Stephen Holden,rotten,0108358,New York Times,It wants to be at once traditional and morally ambiguous. The two visions don't quite harmonize.,2004-08-30,12948,Tombstone +Richard Harrington,rotten,0108358,Washington Post,"Highly stylized fashion-wise but awkwardly unfocused in its plotlines, it aims for the western iconography of Sam Peckinpah and Sergio Leone but never gets past its own directorial hurdles.",2000-01-01,12948,Tombstone +James Berardinelli,rotten,0108358,ReelViews,"It's difficult to assign responsibility for the most serious of this film's shortcomings, but one thing is clear: somewhere along the way, the creative process misfired.",2000-01-01,12948,Tombstone +Owen Gleiberman,rotten,0108358,Entertainment Weekly,Plays like a three-hour rough cut that's been trimmed down to a slightly shorter rough cut.,1993-12-25,12948,Tombstone +Owen Gleiberman,fresh,0108399,Entertainment Weekly,,2011-09-07,17105,True Romance +Richard Corliss,fresh,0108399,TIME Magazine,"If shoot-'em-up, gobble-'em-down movies like The Fugitive and Jurassic Park are rated PG-13 these days, what does an R-rated action adventure look like? Like True Romance: violent to a fault, glam to the max.",2009-08-16,17105,True Romance +Variety Staff,rotten,0108399,Variety,"Provides some amazing encounters, bravura acting turns and gruesome carnage. But it doesn't add up to enough.",2008-11-19,17105,True Romance +Geoff Andrew,fresh,0108399,Time Out,"If the romance seldom seems 'true', the spiralling violence (script, Quentin Tarantino) does succeed, in a brutish, cod-Jacobean kind of way.",2006-06-24,17105,True Romance +Janet Maslin,fresh,0108399,New York Times,"This film's various outrages are committed unapologetically, and are very much in the service of its bizarre story.",2003-05-20,17105,True Romance +Peter Travers,fresh,0108399,Rolling Stone,It's Tarantino's gutter poetry that detonates True Romance. This movie is dynamite.,2001-05-12,17105,True Romance +Desson Thomson,fresh,0108399,Washington Post,"Sifting through the bloody, pulpy trash of True Romance -- should you care to -- you'll find amusing, smart-alecky nuggets planted by screenwriter Quentin Tarantino.",2000-01-01,17105,True Romance +Richard Harrington,rotten,0108399,Washington Post,"The movie may be stylistically visceral, but it's aesthetically corrupt. It might as well have been called Pump Up the Violence.",2000-01-01,17105,True Romance +John Hartl,fresh,0108399,Film.com,"If you're in the mood for this sort of absurd, violent nonsense ... True Romance does deliver.",2000-01-01,17105,True Romance +James Berardinelli,fresh,0108399,ReelViews,"Despite Tony Scott's occasional blundering, True Romance is still a visceral roller coaster.",2000-01-01,17105,True Romance +Roger Ebert,fresh,0108399,Chicago Sun-Times,"Made with such energy, such high spirits, such an enchanting goofiness, that it's impossible to resist.",2000-01-01,17105,True Romance +Jonathan Rosenbaum,fresh,0057012,Chicago Reader,"Like most of his work, Stanley Kubrick's deadly black satirical comedy-thriller on cold war madness and its possible effects (1964) has aged well.",2007-05-08,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Geoff Andrew,fresh,0057012,Time Out,"Perhaps Kubrick's most perfectly realised film, simply because his cynical vision of the progress of technology and human stupidity is wedded with comedy.",2006-01-26,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Michael Wilmington,fresh,0057012,Chicago Tribune,This landmark movie's madcap humor and terrifying suspense remain undiminished by time.,2004-11-26,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Glenn Abel,fresh,0057012,Hollywood Reporter,Stanley Kubrick's blackest of black comedies.,2004-11-18,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Ty Burr,fresh,0057012,Boston Globe,"Is Dr. Strangelove Kubrick's best movie? Along with Paths of Glory, absolutely.",2004-11-05,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Michael Atkinson,fresh,0057012,Village Voice,"Stanley Kubrick's first genuinely original movie has been seen, reseen, dissected, and iconized, but a few sly truths about it have yet to be fully grokked.",2004-10-12,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +James Berardinelli,fresh,0057012,ReelViews,"The film is always saying something, and a viewer would have to be deaf and blind not to recognize the targets of the sarcasm.",2000-01-01,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Bosley Crowther,fresh,0057012,New York Times,The most shattering sick joke I've ever come across.,2000-01-01,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Roger Ebert,fresh,0057012,Chicago Sun-Times,Dr. Strangelove (1964) is filled with great comic performances.,2000-01-01,12368,Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb +Brian Lowry,rotten,0110763,Variety,"Built on a wispy premise better suited to the realm of TV, The Pagemaster plays like a slickly produced afternoon special.",2007-12-04,9632,The Pagemaster +Derek Adams,rotten,0110763,Time Out,"Mediocre, really, this mixture of real actors and animation.",2006-06-24,9632,The Pagemaster +Caryn James,rotten,0110763,New York Times,A pallid film framed at the start and finish by live action and mostly composed of cheap-looking animation.,2003-05-20,9632,The Pagemaster +Rita Kempley,fresh,0110763,Washington Post,A splendidly original children's fantasy about the world of books.,2000-01-01,9632,The Pagemaster +James Berardinelli,fresh,0110763,ReelViews,"This clever, often engaging, and always fast-paced motion picture uses the visual medium to encourage its viewers to reach out with their imagination.",2000-01-01,9632,The Pagemaster +Roger Ebert,rotten,0110763,Chicago Sun-Times,A sad and dreary film.,2000-01-01,9632,The Pagemaster +Peter Stack,rotten,0110763,San Francisco Chronicle,Plays too much like a TV cartoon.,2000-01-01,9632,The Pagemaster +Cliff Doerksen,fresh,0841044,Time Out,,2011-11-18,770672853,2 Days in Paris +Joshua Rothkopf,fresh,0841044,Time Out,,2011-11-17,770672853,2 Days in Paris +Roger Moore,fresh,0841044,Orlando Sentinel,,2009-05-13,770672853,2 Days in Paris +Christopher Orr,none,0841044,The New Republic,,2008-10-18,770672853,2 Days in Paris +Mark Bourne,fresh,0841044,Film.com,"...an impressive, funny urban comedy of manners from a suitably distinctive voice that I hope we'll hear again soon.",2008-02-05,770672853,2 Days in Paris +Joshua Rothkopf,rotten,0841044,Time Out New York,"For almost an hour, Delpy chases the spirits of Cary Grant and Rosalind Russell; why, then, an ultimate fondness for Ralph Bellamy?",2007-09-22,770672853,2 Days in Paris +,none,0841044,St. Louis Post-Dispatch,,2007-09-22,770672853,2 Days in Paris +Carrie Rickey,fresh,0841044,Philadelphia Inquirer,A movie that is as acutely painful as it is acutely funny.,2007-09-22,770672853,2 Days in Paris +Richard Nilsen,fresh,0841044,Arizona Republic,"The last time I laughed so hard at a movie, it was Nigel Tufnel telling us his amplifier went to 11.",2007-09-06,770672853,2 Days in Paris +Connie Ogle,fresh,0841044,Miami Herald,"2 Days in Paris proves Delpy's got an authentic ear for humor in two languages, and she turns the dewy-eyed notion of Paris as a city for lovers firmly and affectionately on its tete.",2007-08-31,770672853,2 Days in Paris +Tom Long,fresh,0841044,Detroit News,"Bright and engaging a great deal of the time, but it ends up exhausted.",2007-08-31,770672853,2 Days in Paris +Terry Lawson,fresh,0841044,Detroit Free Press,"Delpy does the old-[Woody] Allen thing a lot better than most, and does for Paris what Allen did for Manhattan, making it look newly romantic even to those who have lived there all their lives.",2007-08-31,770672853,2 Days in Paris +Dave Calhoun,fresh,0841044,Time Out,"Partly a study of cross-national relationships and partly a homecoming comedy on Delpy's part, 'Two Days in Paris' neatly balances stabs at both America and the French.",2007-08-31,770672853,2 Days in Paris +Colin Covert,fresh,0841044,Minneapolis Star Tribune,"Goldberg and Delpy also give their characters a wistful charm, and Delpy's zippy, dialog-heavy screenplay sparkles with wit.",2007-08-30,770672853,2 Days in Paris +Joe Baltake,fresh,0841044,Passionate Moviegoer,"'2 Days in Paris' is at once companionable and challenging, and like most worthwhile films these days, also is both derivative and original.",2007-08-25,770672853,2 Days in Paris +Moira MacDonald,fresh,0841044,Seattle Times,"Delpy has a knack for finding just the right details; filming in her own hometown, she fills the movie with funny cross-cultural observances.",2007-08-24,770672853,2 Days in Paris +Mick LaSalle,fresh,0841044,San Francisco Chronicle,It's possible to watch 2 Days in Paris and have absolutely no idea who's calling the shots. This is excellent news because it means that we gain a director without losing an actress.,2007-08-24,770672853,2 Days in Paris +Jonathan Rosenbaum,fresh,0841044,Chicago Reader,"Satirical and casual in its approach, and Delpy's grasp of the material is assured.",2007-08-24,770672853,2 Days in Paris +Roger Ebert,fresh,0841044,Chicago Sun-Times,"[Delpy has] created two original, quirky characters so obsessed with their differences that Paris is almost a distraction. I don't think I heard a single accordion in the whole film.",2007-08-24,770672853,2 Days in Paris +Wesley Morris,fresh,0841044,Boston Globe,Sweet and discreet.,2007-08-24,770672853,2 Days in Paris +Leonard Klady,none,0109226,Variety,,2009-03-26,770739334,"The Beans of Egypt, Maine" +Stephen Holden,none,0109226,New York Times,,2004-08-30,770739334,"The Beans of Egypt, Maine" +Peter Stack,none,0109226,San Francisco Chronicle,,2000-01-01,770739334,"The Beans of Egypt, Maine" +Desson Thomson,none,0109226,Washington Post,,2000-01-01,770739334,"The Beans of Egypt, Maine" +Hal Hinson,none,0109226,Washington Post,,2000-01-01,770739334,"The Beans of Egypt, Maine" +Lisa Schwarzbaum,fresh,0114906,Entertainment Weekly,,2011-09-07,13655,Welcome to the Dollhouse +Emanuel Levy,fresh,0114906,Variety,"One of the highlights of the 1995 Toronto Festival, Solondz's second film is a stark, often funny, always poignant comedy about suburban mores, centering on a misfit Jewish girl tormented by her family and classmates.",2006-12-20,13655,Welcome to the Dollhouse +,none,0114906,Time Out,,2006-01-26,13655,Welcome to the Dollhouse +Peter Stack,fresh,0114906,San Francisco Chronicle,,2002-06-18,13655,Welcome to the Dollhouse +Kenneth Turan,none,0114906,Los Angeles Times,,2001-02-14,13655,Welcome to the Dollhouse +Roger Ebert,fresh,0114906,Chicago Sun-Times,,2000-01-01,13655,Welcome to the Dollhouse +,none,0114906,Washington Post,,2000-01-01,13655,Welcome to the Dollhouse +James Berardinelli,fresh,0114906,ReelViews,,2000-01-01,13655,Welcome to the Dollhouse +Mike Clark,fresh,0114906,USA Today,"At 87 minutes, Dollhouse is a near-perfect morsel. If nothing else, it informs older folk that school principals still threaten to record bad behavior in one's 'personal record' -- only now, computers facilitate the process.",2000-01-01,13655,Welcome to the Dollhouse +Janet Maslin,none,0114906,New York Times,,2000-01-01,13655,Welcome to the Dollhouse +Jonathan Rosenbaum,rotten,0114906,Chicago Reader,,2000-01-01,13655,Welcome to the Dollhouse +Joe Baltake,none,0114906,Sacramento Bee,,2000-01-01,13655,Welcome to the Dollhouse +,fresh,0114906,Entertainment Weekly,,1995-09-10,13655,Welcome to the Dollhouse +Lisa Nesselson,none,0107002,Variety,,2009-03-26,368452091,Germinal +,none,0107002,Time Out,,2006-06-24,368452091,Germinal +Janet Maslin,none,0107002,New York Times,,2003-05-20,368452091,Germinal +James Berardinelli,fresh,0107002,ReelViews,,2000-01-01,368452091,Germinal +Roger Ebert,fresh,0107002,Chicago Sun-Times,,2000-01-01,368452091,Germinal +Michael Phillips,fresh,1190539,Chicago Tribune,"I've more or less had it with this stuff, but the film is distinguished by the grubby velocity of his foot chases, and the effectiveness of its craft (not to mention the unglamorous resolution of at least one character's fate).",2010-02-04,770686074,Chugyeogja +J. R. Jones,fresh,1190539,Chicago Reader,Easily the best cop thriller since The Departed.,2010-02-02,770686074,Chugyeogja +Roger Ebert,fresh,1190539,Chicago Sun-Times,The Chaser is an expert serial-killer film from South Korea and a poster child for what a well-made thriller looked like in the classic days.,2010-01-28,770686074,Chugyeogja +Nick Schager,rotten,1190539,Village Voice,The pessimism of Na's slick debut rings false.,2009-12-30,770686074,Chugyeogja +Aaron Hillis,fresh,1190539,Time Out New York,"South Korean first-timer Na Hong-jin offers nasty thrills, manic foot chases and some genuinely subversive riffs on the police procedural.",2009-12-30,770686074,Chugyeogja +Justin Chang,fresh,1190539,Variety,A grisly serial-killer thriller that develops into a howl of outrage at the ineptitude of the system.,2008-10-18,770686074,Chugyeogja +David Jenkins,rotten,1190539,Time Out,"This playfulness, however, backfires massively in the second half when coincidence and unforeseen consequence conspire uneasily with bloody, messy results.",2008-09-19,770686074,Chugyeogja +Steven Rea,fresh,0104029,Philadelphia Inquirer,Guillermo del Toro's feature debut is an arch twist on the vampire tale.,2013-10-05,14970,Cronos +Kenneth Turan,fresh,0104029,Los Angeles Times,Cronos surprises with its sophisticated and spirited look at a tale straight from the crypt.,2013-10-05,14970,Cronos +Achy Obejas,rotten,0104029,Chicago Tribune,"While the film's first half entices with its secrets, the second half falls into a predictable narrative that refuses to even suggest possibilities.",2013-10-05,14970,Cronos +Jonathan Rosenbaum,fresh,0104029,Chicago Reader,"You have to admire the style, sincerity, and overall sense of craft even if you don't fancy the comic-book gore.",2007-09-24,14970,Cronos +,fresh,0104029,Time Out,"A most startling genre piece: tender, imaginative and wholly its own.",2006-02-09,14970,Cronos +Janet Maslin,fresh,0104029,New York Times,A very stylish and sophisticated Mexican variation on some age-old themes.,2004-08-30,14970,Cronos +Roger Ebert,fresh,0104029,Chicago Sun-Times,Cronos is not really about plot. It is about character.,2000-01-01,14970,Cronos +Richard Harrington,fresh,0104029,Washington Post,"It's also an amazingly assured feature debut for the 29-year-old del Toro, who is both its writer and director.",2000-01-01,14970,Cronos +Desson Thomson,fresh,0104029,Washington Post,An enormously enjoyable gothic yarn from Mexico.,2000-01-01,14970,Cronos +James Berardinelli,rotten,0104029,ReelViews,There were no unnerving images in Cronos. There's a lot of blood and gore -- but that's rather routine.,2000-01-01,14970,Cronos +Geoff Andrew,none,0107315,Time Out,,2006-06-24,21547,Kika +Janet Maslin,fresh,0107315,New York Times,"Kika is actually one of this film maker's more buoyant recent efforts, a sly, rambunctious satire that moves along merrily until it collapses -- as many Almodovar films finally do -- under the weight of its own clutter.",2003-05-20,21547,Kika +Joe Brown,fresh,0107315,Washington Post,It doesn't matter that Kika doesn't make sense -- doesn't even try to make sense. It's just so much fun to watch.,2000-01-01,21547,Kika +Desson Thomson,rotten,0107315,Washington Post,Something alarming has happened to Almodovar: He has become commonplace and predictable.,2000-01-01,21547,Kika +James Berardinelli,rotten,0107315,ReelViews,"Almodovar's central parody is strong enough to save this film from floundering too much or too often. It's daring and nasty, but rarely brilliant.",2000-01-01,21547,Kika +,rotten,0107315,Entertainment Weekly,,1800-01-01,21547,Kika +Deborah Young,none,0106408,Variety,,2009-03-26,147524082,Bhaji on the Beach +,none,0106408,Time Out,,2006-06-24,147524082,Bhaji on the Beach +Janet Maslin,none,0106408,New York Times,,2003-05-20,147524082,Bhaji on the Beach +James Berardinelli,fresh,0106408,ReelViews,,2000-01-01,147524082,Bhaji on the Beach +Hal Hinson,none,0106408,Washington Post,,2000-01-01,147524082,Bhaji on the Beach +Peter Stack,none,0106408,San Francisco Chronicle,,2000-01-01,147524082,Bhaji on the Beach +Desson Thomson,none,0106408,Washington Post,,2000-01-01,147524082,Bhaji on the Beach +Roger Ebert,fresh,0106408,Chicago Sun-Times,,2000-01-01,147524082,Bhaji on the Beach +Brian Lowry,none,0110363,Variety,,2009-03-26,11155,Little Big League +Geoff Andrew,none,0110363,Time Out,,2006-06-24,11155,Little Big League +Stephen Holden,none,0110363,New York Times,,2003-05-20,11155,Little Big League +James Berardinelli,rotten,0110363,ReelViews,,2000-01-01,11155,Little Big League +Roger Ebert,fresh,0110363,Chicago Sun-Times,,2000-01-01,11155,Little Big League +Rita Kempley,none,0110363,Washington Post,,2000-01-01,11155,Little Big League +,fresh,0110363,Entertainment Weekly,,1994-06-29,11155,Little Big League +Gunnar Rehlin,none,0107349,Variety,,2008-05-20,770686513,Kådisbellan +Derek Adams,none,0107349,Time Out,,2006-02-09,770686513,Kådisbellan +Caryn James,none,0107349,New York Times,,2003-05-20,770686513,Kådisbellan +James Berardinelli,fresh,0107349,ReelViews,,2000-01-01,770686513,Kådisbellan +Rita Kempley,none,0107349,Washington Post,,2000-01-01,770686513,Kådisbellan +Brian Lowry,none,0111709,Variety,,2009-03-26,770782876,Wide-Eyed and Legless +Caryn James,none,0111709,New York Times,,2004-08-30,770782876,Wide-Eyed and Legless +Rita Kempley,none,0111709,Washington Post,,2000-01-01,770782876,Wide-Eyed and Legless +Desson Thomson,none,0111709,Washington Post,,2000-01-01,770782876,Wide-Eyed and Legless +James Berardinelli,rotten,0111709,ReelViews,,2000-01-01,770782876,Wide-Eyed and Legless +Roger Ebert,fresh,0111709,Chicago Sun-Times,,2000-01-01,770782876,Wide-Eyed and Legless +Caryn James,none,0109828,New York Times,,2004-08-30,770672303,Foreign Student +,none,0109828,Chicago Reader,,2004-01-10,770672303,Foreign Student +Lloyd Rose,none,0109828,Washington Post,,2000-01-01,770672303,Foreign Student +David Rooney,none,0107225,Variety,,2009-03-26,13478,Io speriamo che me la cavo +Caryn James,none,0107225,New York Times,,2004-08-30,13478,Io speriamo che me la cavo +Roger Ebert,rotten,0107225,Chicago Sun-Times,,2000-01-01,13478,Io speriamo che me la cavo +Hal Hinson,none,0107225,Washington Post,,2000-01-01,13478,Io speriamo che me la cavo +James Berardinelli,fresh,0107225,ReelViews,,2000-01-01,13478,Io speriamo che me la cavo +Lisa Schwarzbaum,fresh,0111252,Entertainment Weekly,,2011-09-07,24510,Spanking the Monkey +Todd McCarthy,none,0111252,Variety,,2008-06-20,24510,Spanking the Monkey +Derek Adams,none,0111252,Time Out,,2006-02-09,24510,Spanking the Monkey +Caryn James,none,0111252,New York Times,,2004-08-30,24510,Spanking the Monkey +James Berardinelli,fresh,0111252,ReelViews,,2000-01-01,24510,Spanking the Monkey +Hal Hinson,none,0111252,Washington Post,,2000-01-01,24510,Spanking the Monkey +Joe Brown,none,0111252,Washington Post,,2000-01-01,24510,Spanking the Monkey +,fresh,0111252,Entertainment Weekly,,1994-07-15,24510,Spanking the Monkey +Rita Kempley,none,0110366,Washington Post,,2000-01-01,12737,The Little Rascals +Desson Thomson,none,0110366,Washington Post,,2000-01-01,12737,The Little Rascals +Geoff Andrew,none,0109120,Time Out,,2006-02-09,11074,Andre +Janet Maslin,none,0109120,New York Times,,2003-05-20,11074,Andre +James Berardinelli,rotten,0109120,ReelViews,,2000-01-01,11074,Andre +Desson Thomson,none,0109120,Washington Post,,2000-01-01,11074,Andre +Peter Stack,none,0109120,San Francisco Chronicle,,2000-01-01,11074,Andre +Roger Ebert,rotten,0109120,Chicago Sun-Times,,2000-01-01,11074,Andre +Hal Hinson,none,0109120,Washington Post,,2000-01-01,11074,Andre +Deborah Young,none,0108059,Variety,,2009-03-26,770704404,La scorta +Derek Adams,none,0108059,Time Out,,2006-06-24,770704404,La scorta +V.A. Musetto,rotten,0108059,New York Post,"Exciting as La Scorta might be, it is at heart a conventional thriller that breaks no new genre ground.",2006-02-03,770704404,La scorta +Michael Atkinson,rotten,0108059,Village Voice,La Scorta suffers from an anemic plot pulse.,2006-01-31,770704404,La scorta +Caryn James,none,0108059,New York Times,,2004-08-30,770704404,La scorta +Hal Hinson,rotten,0108059,Washington Post,"Ultimately, La Scorta is a tight, competent but rather inconsequential thriller. It's diverting, but thin.",2000-01-01,770704404,La scorta +,rotten,0110892,Entertainment Weekly,,2008-12-01,11631,Princess Caraboo +Derek Adams,none,0110892,Time Out,,2006-02-09,11631,Princess Caraboo +Daniel M. Kimmel,rotten,0110892,Variety,The great costumes and sets are more substantial than the plot and characters.,2005-02-11,11631,Princess Caraboo +Caryn James,none,0110892,New York Times,,2003-05-20,11631,Princess Caraboo +,none,0110892,Globe and Mail,,2002-04-12,11631,Princess Caraboo +James Berardinelli,rotten,0110892,ReelViews,,2000-01-01,11631,Princess Caraboo +Hal Hinson,none,0110892,Washington Post,,2000-01-01,11631,Princess Caraboo +David Rooney,none,0112651,Variety,,2009-03-26,14221,The Celluloid Closet +,none,0112651,Time Out,,2006-06-24,14221,The Celluloid Closet +Janet Maslin,none,0112651,New York Times,,2003-05-20,14221,The Celluloid Closet +Roger Ebert,fresh,0112651,Chicago Sun-Times,"Makes it clear Hollywood wanted it both ways: It benefitted from the richness that gays added to films, but didn't want to acknowledge their sexuality.",2000-01-01,14221,The Celluloid Closet +Desson Thomson,none,0112651,Washington Post,,2000-01-01,14221,The Celluloid Closet +James Berardinelli,fresh,0112651,ReelViews,"Top-notch entertainment, not only because it's enjoyable, but because it argues its case with an effectiveness that would impress even a top-notch, homophobic attorney.",2000-01-01,14221,The Celluloid Closet +Stanley Kauffmann,fresh,0112651,The New Republic,"It's interesting to see how gay and lesbian themes began to be treated openly in films, but it's fascinating to see how -- earlier -- those themes were used subtextually in films that make no overt reference to the real subject.",2000-01-01,14221,The Celluloid Closet +Joe Baltake,fresh,0112651,Sacramento Bee,"Even if The Celluloid Closet ... isn't quite the most perfectly political piece of filmmaking that you'd expect (or hoped) it would be, it's still a pretty convincing argument and, what's more, likably entertaining.",2000-01-01,14221,The Celluloid Closet +,fresh,0112651,Entertainment Weekly,,1996-03-15,14221,The Celluloid Closet +Derek Adams,none,0107642,Time Out,,2006-02-09,770707238,Métisse +Janet Maslin,none,0107642,New York Times,,2004-08-30,770707238,Métisse +Roger Ebert,rotten,0107642,Chicago Sun-Times,,2000-01-01,770707238,Métisse +Hal Hinson,none,0107642,Washington Post,,2000-01-01,770707238,Métisse +James Berardinelli,fresh,0107642,ReelViews,,2000-01-01,770707238,Métisse +,none,0109382,Time Out,,2006-01-26,492980388,Caro diario +Janet Maslin,none,0109382,New York Times,,2003-05-20,492980388,Caro diario +James Berardinelli,rotten,0109382,ReelViews,,2000-01-01,492980388,Caro diario +Desson Thomson,none,0109382,Washington Post,,2000-01-01,492980388,Caro diario +Hal Hinson,none,0109382,Washington Post,,2000-01-01,492980388,Caro diario +Roger Ebert,rotten,0109382,Chicago Sun-Times,,2000-01-01,492980388,Caro diario +Owen Gleiberman,fresh,0112572,Entertainment Weekly,,2011-09-07,12187,The Brady Bunch Movie +Jonathan Rosenbaum,rotten,0112572,Chicago Reader,A curiously sour movie in its amused contempt for this fatuous family.,2008-05-20,12187,The Brady Bunch Movie +,fresh,0112572,Time Out,[Director Thomas] drawn hilariously synthetic performances from a shrewdly cloned cast.,2006-02-09,12187,The Brady Bunch Movie +Janet Maslin,rotten,0112572,New York Times,"The actors try hard, but the screenplay isn't solid enough to keep any of them consistently clever.",2003-05-20,12187,The Brady Bunch Movie +Kenneth Turan,fresh,0112572,Los Angeles Times,"The Brady Bunch Movie is never more than lightly amusing, but then neither was the TV show.",2001-02-13,12187,The Brady Bunch Movie +Leonard Klady,fresh,0112572,Variety,"Part homage, part spoof, the deft balancing act is a clever, engaging adaption.",2001-02-13,12187,The Brady Bunch Movie +David Lyman,fresh,0112572,Film.com,"Wonder of wonders, Thomas and her colleagues have turned this mother lode of 1970s kitsch into a pretty tasty little comedy.",2000-01-01,12187,The Brady Bunch Movie +John Teegarden,fresh,0112572,Film.com,"I hate to admit it, but I laughed at the Brady Bunch Movie. I laughed a lot.",2000-01-01,12187,The Brady Bunch Movie +James Berardinelli,rotten,0112572,ReelViews,"The problem with The Brady Bunch is that, satirical or serious, ninety minutes is too much.",2000-01-01,12187,The Brady Bunch Movie +Roger Ebert,rotten,0112572,Chicago Sun-Times,"The film establishes a bland, reassuring, comforting Brady reality - a certain muted tone that works just fine but needs, I think, a bleaker contrast from outside to fully exploit the humor.",2000-01-01,12187,The Brady Bunch Movie +Richard Schickel,fresh,0112572,TIME Magazine,"If dumbness is a large part of our problem, then The Brady Bunch Movie is a small (and oddly cheery) part of its solution.",2000-01-01,12187,The Brady Bunch Movie +Edward Guthmann,fresh,0112572,San Francisco Chronicle,"A gentle, passable spoof.",2000-01-01,12187,The Brady Bunch Movie +,fresh,0112572,Entertainment Weekly,,1995-02-17,12187,The Brady Bunch Movie +Jonathan Rosenbaum,fresh,0099785,Chicago Reader,"The movie is quite enjoyable as long as it explores the fantasy of a neglected little boy having an entire house of his own to explore and play in, and it still manages to be fun when he exhibits superhuman ingenuity and resourcefulness.",2011-07-26,12438,Home Alone +Variety Staff,fresh,0099785,Variety,"Pic boasts wonderful casting, with Culkin a delight as funny, resilient Kevin, and O'Hara bringing a snappy, zesty energy to the role of mom.",2010-07-06,12438,Home Alone +,rotten,0099785,Time Out,[The movie has] an inconsistency of mood not helped by abrupt editing and Columbus' sometimes self-conscious direction.,2006-06-24,12438,Home Alone +Caryn James,fresh,0099785,New York Times,"[A] surprisingly charming film, which may be the first Christmas black comedy for children.",2003-05-20,12438,Home Alone +Jeanne Cooper,fresh,0099785,Washington Post,"This holiday contender from John Hughes is too crass, too loud and too violent to be added blithely to Christmas viewing traditions. But it is funny.",2000-01-01,12438,Home Alone +Roger Ebert,rotten,0099785,Chicago Sun-Times,"If Home Alone had limited itself to the things that might possibly happen to a forgotten 8-year-old, I think I would have liked it more.",2000-01-01,12438,Home Alone +Hal Hinson,fresh,0099785,Washington Post,"Chris Columbus's junky, rambunctiously funny Home Alone is every kid's anarchical wish come true.",2000-01-01,12438,Home Alone +Owen Gleiberman,rotten,0099785,Entertainment Weekly,The movie devolves into an egregious Three Stooges painfest: We're meant to giggle and clap along with Kevin as the crooks get their heads singed with blowtorches and walk barefoot on glass.,1990-11-16,12438,Home Alone +Sheila Benson,rotten,0099653,Los Angeles Times,"The movie's slogan is ""Believe,"" not an unreasonable request. But even those who'd be happy to comply must get past Ghost's one casting jaw-dropper, a certain woolly-mindedness to its script and a production prettified to the point of stickiness.",2013-06-25,10185,Ghost +Dave Kehr,fresh,0099653,Chicago Tribune,"What it offers, apart from the overblown special effects that seem inescapable in American movies, is an unusual and effective combination of swooning, morbid romance and screwball comedy.",2013-06-25,10185,Ghost +Gene Siskel,fresh,0099653,Chicago Tribune,The passion and poignancy of trying to communicate with the dead is well-exploited here. Moore has never been more fetching.,2013-06-25,10185,Ghost +Carrie Rickey,fresh,0099653,Philadelphia Inquirer,"Given its obviously commercial aims, Ghost is remarkably appealing on a purely personal level. It is about how you deal with death.",2013-06-25,10185,Ghost +Jay Boyar,fresh,0099653,Orlando Sentinel,"Ghost is one part horror picture, one part comedy, one part love story, one part murder mystery and four parts entrancing.",2013-06-25,10185,Ghost +Richard Corliss,rotten,0099653,TIME Magazine,A bad movie that a lot of people will like.,2013-06-25,10185,Ghost +Jonathan Rosenbaum,rotten,0099653,Chicago Reader,There's something offensive about the movie's chintzy view of death and the way it periodically flirts with promising conceits only to back away from them in as cowardly a manner as possible.,2013-06-25,10185,Ghost +Terrence Rafferty,rotten,0099653,New Yorker,"It sounds like a horror movie, but it's a romantic fairy tale. The scariest thing about it is its shamelessness.",2013-06-25,10185,Ghost +Owen Gleiberman,fresh,0099653,Entertainment Weekly,Ghost is a dazzlingly enjoyable pop thriller.,2011-09-07,10185,Ghost +Variety Staff,fresh,0099653,Variety,"Ghost is an odd creation -- at times nearly smothering in arty somberness, at others veering into good, wacky fun.",2008-10-18,10185,Ghost +David Ansen,fresh,0099653,Newsweek,"A comedy, romance and supernatural thriller rolled into one, Ghost is a zippy pastiche that somehow manages to seem fresh even though it's built entirely out of borrowed parts.",2008-04-07,10185,Ghost +,fresh,0099653,Time Out,"The real credit for turning a minor mystic romance into one of the most enjoyable movies of the year rests on an excellent script by Bruce Joel Rubin, and on the surprisingly sure direction of Jerry Zucker.",2006-06-24,10185,Ghost +Janet Maslin,rotten,0099653,New York Times,"Ghost' is too slow moving at times, and a few of its special effects look incongruously silly, particularly those showing what happens to ghosts not as virtuous as Sam.",2003-05-20,10185,Ghost +Peter Travers,rotten,0099653,Rolling Stone,"Zucker dutifully pushes all the buttons -- romance, thrills, laughs, tears -- that have been pushed before by more assured hands.",2001-05-12,10185,Ghost +Desson Thomson,fresh,0099653,Washington Post,Surprisingly entertaining.,2000-01-01,10185,Ghost +Rita Kempley,fresh,0099653,Washington Post,"The actors succeed quite nicely in unifying the movie's multiple personalities, its ricocheting screenplay.",2000-01-01,10185,Ghost +Roger Ebert,fresh,0099653,Chicago Sun-Times,"Contains some nice ideas, and occasionally, for whole moments at a time, succeeds in evoking the mysteries that it toys with.",2000-01-01,10185,Ghost +Rick Groen,fresh,0103064,Globe and Mail,"A pop epiphany, marking that commercially creative point where the power of Hollywood meets the purity of myth.",2013-07-29,14016,Terminator 2: Judgment Day +Jay Boyar,fresh,0103064,Orlando Sentinel,"Terminator 2 does work viscerally, however, and with this kind of movie, that's really what counts. No problemo.",2013-07-29,14016,Terminator 2: Judgment Day +Dave Kehr,fresh,0103064,Chicago Tribune,"The pathos of the film is the pathos of its leading character -- it is a magnificent machine, but a machine it remains.",2013-07-29,14016,Terminator 2: Judgment Day +Kenneth Turan,fresh,0103064,Los Angeles Times,"More elaborate than the original, but just as shrewdly put together, it cleverly combines the most successful elements of its predecessor with a number of new twists to produce one hell of a wild ride.",2013-07-29,14016,Terminator 2: Judgment Day +Terrence Rafferty,rotten,0103064,New Yorker,"The picture is full of spectacular action sequences and dazzling special effects, but the narrative doesn't have the snap of the original's: it's lumbering and monotonous, and it carries a heavy-handed anti-nuke message.",2013-07-29,14016,Terminator 2: Judgment Day +Carrie Rickey,fresh,0103064,Philadelphia Inquirer,Inside Terminator 2 beats a human heart. But its soul is that of a killer machine.,2013-07-29,14016,Terminator 2: Judgment Day +Michael Upchurch,fresh,0103064,Seattle Times,"Schwarzenegger is in impeccable deadpan form, milking his tough-guy image for all it's worth and getting laughs out of the Terminator's wooden parroting of slang (""No problemo"" probably will be a catch-phrase to reckon with this summer).",2013-07-29,14016,Terminator 2: Judgment Day +Owen Gleiberman,fresh,0103064,Entertainment Weekly,"Terminator 2 is a state-of-the-art action movie, all right: It gets you thinking that the most reasonable thing might just have been to blow everyone away.",2010-02-04,14016,Terminator 2: Judgment Day +Richard Corliss,rotten,0103064,TIME Magazine,"A humongous, visionary parable that intermittently enthralls and ultimately disappoints. T2 is half of a terrific movie -- the wrong half.",2009-05-18,14016,Terminator 2: Judgment Day +David Ansen,fresh,0103064,Newsweek,"For all its state-of-the-art pyrotechnics and breathtaking thrills, this bruisingly exciting movie never loses sight of its humanity. That's its point, and its pride.",2009-05-18,14016,Terminator 2: Judgment Day +Variety Staff,fresh,0103064,Variety,"Arnold Schwarzenegger is more comfortable and assured here than the first time around, reprising a role so perfectly suited to the voice and physique that have established him as a larger-than-life film persona.",2008-05-08,14016,Terminator 2: Judgment Day +Jonathan Rosenbaum,fresh,0103064,Chicago Reader,"As a fancy mechanism fueled by the pleasure of watching legions of people and equipment being summarily destroyed, this is pretty hot stuff.",2007-03-01,14016,Terminator 2: Judgment Day +Geoff Andrew,fresh,0103064,Time Out,"Structured as a simple chase, the story sags midway, but the first hour and last 30 minutes display an enjoyably relentless bravura.",2006-06-24,14016,Terminator 2: Judgment Day +Janet Maslin,fresh,0103064,New York Times,"Mr. Cameron has made a swift, exciting special-effects epic that thoroughly justifies its vast expense and greatly improves upon the first film's potent but rudimentary visual style.",2003-05-20,14016,Terminator 2: Judgment Day +Peter Travers,fresh,0103064,Rolling Stone,"It's Cameron's show; he's the reigning king of movie pow, with dark wit and a poet's eye for mayhem. T2 cost a reported $100 million, and you can actually see where the money went.",2001-05-12,14016,Terminator 2: Judgment Day +Hal Hinson,fresh,0103064,Washington Post,"It's a tank of a movie, big, powerful and hard to resist.",2000-01-01,14016,Terminator 2: Judgment Day +Roger Ebert,fresh,0103064,Chicago Sun-Times,"Nobody, I think, will complain that it doesn't have enough action.",2000-01-01,14016,Terminator 2: Judgment Day +Joe Brown,fresh,0103064,Washington Post,"Brutally beautiful, darkly comic sci-fi",2000-01-01,14016,Terminator 2: Judgment Day +James Berardinelli,fresh,0103064,ReelViews,Few films have matched it within the science fiction genre for sheer white-knuckle exhilaration.,1991-07-03,14016,Terminator 2: Judgment Day +Sheila Benson,fresh,0099348,Los Angeles Times,"Dances With Wolves is a clear-eyed vision. Authentic as an Edward Curtis photograph, lyrical as a George Catlin oil or a Karl Bodmer landscape, this is a film with a pure ring to it.",2013-02-22,12772,Dances with Wolves +Peter Travers,fresh,0099348,Rolling Stone,Costner tells a personal story that never loses touch with the vast Western spaces encompassing and defining it. Dances With Wolves is an epic that breathes. And it's a beauty.,2013-02-22,12772,Dances with Wolves +Richard Schickel,fresh,0099348,TIME Magazine,"As a director, Costner is alive to the sweep of the country and the expansive spirit of the western-movie tradition.",2009-02-20,12772,Dances with Wolves +Amy Dawes,fresh,0099348,Variety,"In his directorial debut, Kevin Costner brings a rare degree of grace and feeling to this elegiac tale.",2008-01-28,12772,Dances with Wolves +Jonathan Rosenbaum,rotten,0099348,Chicago Reader,"Sincere, capable, at times moving, but overextended, this picture is seriously hampered by its tendency to linger over everything -- especially landscapes with silhouetted figures, and not excluding its own good intentions.",2007-02-05,12772,Dances with Wolves +Geoff Andrew,fresh,0099348,Time Out,"Once you're sucked into the leisurely narrative, it's hard to resist.",2006-01-26,12772,Dances with Wolves +Vincent Canby,rotten,0099348,New York Times,"Its triumph is that it is never exactly boring, only dulled. It's a movie in acute need of sharpening.",2003-05-20,12772,Dances with Wolves +James Berardinelli,fresh,0099348,ReelViews,"It's a rousing adventure, a touching romance, and a stirring drama.",2000-01-01,12772,Dances with Wolves +Desson Thomson,fresh,0099348,Washington Post,"Costner (with Michael Blake's screenplay) creates a vision so childlike, so willfully romantic, it's hard to put up a fight.",2000-01-01,12772,Dances with Wolves +Roger Ebert,fresh,0099348,Chicago Sun-Times,"A simple story, magnificently told.",2000-01-01,12772,Dances with Wolves +John Hartl,fresh,0099348,Film.com,Recalls the sweep as well as the intimacy of a David Lean epic.,2000-01-01,12772,Dances with Wolves +Hal Hinson,fresh,0099348,Washington Post,A stunning combination of all-American boyishness and sweeping grandeur.,2000-01-01,12772,Dances with Wolves +Owen Gleiberman,rotten,0099348,Entertainment Weekly,"[A] beautiful and soft-headed frontier epic, which looks at Native Americans through New Age-colored glasses.",1990-11-09,12772,Dances with Wolves +Variety Staff,fresh,0060153,Variety,"Batman is packed with action, clever sight gags, interesting complications and goes all out on bat with batmania: batplane, batboat, batcycle, etc. etc.",2008-07-22,10340,Batman +,fresh,0060153,Time Out,I'd choose Adam West's Batmobile over Michael Keaton's any day.,2006-01-26,10340,Batman +John Hartl,fresh,0102926,Seattle Times,Jonathan Demme's hypnotic adaptation of the Thomas Harris novel has a seriousness and intensity that's been entirely lacking in horror movies lately.,2013-08-12,16286,The Silence of the Lambs +Desmond Ryan,fresh,0102926,Philadelphia Inquirer,"Hopkins' cumulative screen image is one of civility and decency, and the association adds to the withering, macabre effect of his murderer. It is a remarkably lucid portrait of lunacy.",2013-08-12,16286,The Silence of the Lambs +Jay Boyar,fresh,0102926,Orlando Sentinel,"Demme comes at Harris' material from another angle: His movie may deal with madness, but his perspective is mercifully sane.",2013-08-12,16286,The Silence of the Lambs +Dave Kehr,rotten,0102926,Chicago Tribune,"It's a gnarled, brutal, highly manipulative film that, at its center, seems morally indefensible.",2013-08-12,16286,The Silence of the Lambs +Terrence Rafferty,fresh,0102926,New Yorker,Jonathan Demme's thriller is artful pulp -- tabloid material treated with intelligence and care and a weird kind of sensitivity.,2013-08-12,16286,The Silence of the Lambs +Sheila Benson,fresh,0102926,Los Angeles Times,"Hopkins' performance may be the film's bravura showpiece, but Foster's goes the whole distance, steadfast, controlled, heartbreakingly insightful, a fine addition to her gallery of characterizations.",2013-02-22,16286,The Silence of the Lambs +Gene Siskel,rotten,0102926,Chicago Tribune,"Foster's character, who is appealing, is dwarfed by the monsters she is after. I'd rather see her work on another case.",2013-01-16,16286,The Silence of the Lambs +David Ansen,fresh,0102926,Newsweek,This is the grandest guignol Hollywood has produced in years.,2008-10-18,16286,The Silence of the Lambs +Richard Corliss,fresh,0102926,TIME Magazine,A pretty sharp new thriller.,2008-10-07,16286,The Silence of the Lambs +Todd McCarthy,fresh,0102926,Variety,"The juiciest part is Hopkins,' and he makes the most of it. Helped by some highly dramatic lighting, actor makes the role the personification of brilliant, hypnotic evil, and the screen jolts with electricity whenever he is on.",2007-09-24,16286,The Silence of the Lambs +Jonathan Rosenbaum,rotten,0102926,Chicago Reader,"An accomplished, effective, grisly, and exceptionally sick slasher film that I can't with any conscience recommend, because the purposes to which it places its considerable ingenuity are ultimately rather foul.",2007-02-05,16286,The Silence of the Lambs +Geoff Andrew,fresh,0102926,Time Out,"Understandably, much has been made of Hopkins' hypnotic Lecter, but the laurels must go to Levine's killer, admirably devoid of camp overstatement, and to Foster, who evokes a vulnerable but pragmatic intelligence.",2006-02-09,16286,The Silence of the Lambs +Eleanor Ringel Gillespie,fresh,0102926,Atlanta Journal-Constitution,It's a bona fide classic of its kind.,2005-03-07,16286,The Silence of the Lambs +Vincent Canby,fresh,0102926,New York Times,The Silence of the Lambs is pop film making of a high order. It could well be the first big hit of the year.,2003-05-20,16286,The Silence of the Lambs +Peter Travers,fresh,0102926,Rolling Stone,"For all the unbridled savagery on display, what is shrewd, significant and finally hopeful about Silence of the Lambs is the way it proves that a movie can be mercilessly scary and mercifully humane at the same time.",2001-05-12,16286,The Silence of the Lambs +James Berardinelli,fresh,0102926,ReelViews,There is little doubt that the most memorable aspect of The Silence of the Lambs is Anthony Hopkins' incomparable performance as Lecter.,2000-01-01,16286,The Silence of the Lambs +Desson Thomson,fresh,0102926,Washington Post,"A smart, restrained entertainment, it doesn't splash around in blood and hysteria.",2000-01-01,16286,The Silence of the Lambs +Rita Kempley,fresh,0102926,Washington Post,"Adroitly directed by Jonathan Demme, it lurks about the exquisite edge of horror, before finally leaping into an unholy maw of bloody bones and self-awareness.",2000-01-01,16286,The Silence of the Lambs +Roger Ebert,fresh,0102926,Chicago Sun-Times,The popularity of Jonathan Demme's movie is likely to last as long as there is a market for being scared.,2000-01-01,16286,The Silence of the Lambs +Owen Gleiberman,fresh,0102926,Entertainment Weekly,"Demme has created a supremely sensuous and hypnotic thriller, one that's likely to become his first major hit.",1991-02-13,16286,The Silence of the Lambs +Cath Clarke,fresh,0101414,Time Out,Magic.,2012-05-03,9980,Beauty and the Beast +Variety Staff,fresh,0101414,Variety,A lovely film that ranks with the best of Disney's animated classics.,2012-02-23,9980,Beauty and the Beast +Stephen Whitty,fresh,0101414,Newark Star-Ledger,"What you gain in an extra, faked dimension you lose in lively, genuine beauty.",2012-01-13,9980,Beauty and the Beast +Lisa Schwarzbaum,fresh,0101414,Entertainment Weekly,"The set pieces are narcotically pleasing, especially the Busby Berkeley-style dancing-kitchenware spectacular, ""Be Our Guest,"" and the romantic ballroom centerpiece that brings Beauty and her Beast together.",2012-01-13,9980,Beauty and the Beast +Jennie Punter,fresh,0101414,Globe and Mail,The 3-D pops out to enhance the drama or energy of scenes in which settings are large and integral to the action.,2012-01-13,9980,Beauty and the Beast +Richard Ouzounian,fresh,0101414,Toronto Star,"Some youthful memories are better not revisited, but this definitely isn't one of them. Sometimes you can go home again.",2012-01-12,9980,Beauty and the Beast +Janet Maslin,fresh,0101414,New York Times,"It is a surprise, in a time of sequels and retreads, that the new film is so fresh and altogether triumphant in its own right.",2008-10-18,9980,Beauty and the Beast +Jonathan Rosenbaum,fresh,0101414,Chicago Reader,"Despite some excessive narrative streamlining, this 1991 release was the best Disney animated feature in years, full of charm and humor.",2008-09-10,9980,Beauty and the Beast +Richard Corliss,fresh,0101414,TIME Magazine,Its animators' pens are wands; their movement enchants.,2008-09-01,9980,Beauty and the Beast +Joe Leydon,fresh,0101414,Variety,A uniquely elegant and entertaining mix of hand-drawn classicism and high-tech innovation.,2008-05-20,9980,Beauty and the Beast +,fresh,0101414,Time Out,Dazzlingly good.,2006-01-26,9980,Beauty and the Beast +Richard Roeper,fresh,0101414,Ebert & Roeper,[A] great film...,2002-01-10,9980,Beauty and the Beast +Joe Baltake,fresh,0101414,Sacramento Bee,"Ten years later, it's still flawed and still quite fascinating.",2002-01-06,9980,Beauty and the Beast +Bruce Westbrook,fresh,0101414,Houston Chronicle,There's still room in this world for innocent love stories -- and tales as old as time.,2002-01-04,9980,Beauty and the Beast +Chris Vognar,fresh,0101414,Dallas Morning News,"Brims with charm, style, and flawless execution that doesn't feel the least bit dated by subsequent technological advancements.",2002-01-03,9980,Beauty and the Beast +Jay Boyar,fresh,0101414,Orlando Sentinel,"Moves us because we know that true love can sometimes seem like a mismatch. And also because, in love, we can all feel like captives or beasts.",2002-01-03,9980,Beauty and the Beast +Glenn Lovell,fresh,0101414,San Jose Mercury News,"A sporadically brilliant escape that at times stops to preen and pose, like that he-man lout Gaston.",2002-01-03,9980,Beauty and the Beast +Eleanor Ringel Gillespie,fresh,0101414,Atlanta Journal-Constitution,"In the Imax format, the introduction of the Beast's castle has a breathtaking 3-D effect. And throughout the film, you see textures and details you never noticed.",2002-01-03,9980,Beauty and the Beast +Charles Solomon,fresh,0101414,Los Angeles Times,"It's a pleasure to see ""Beauty and the Beast"" again in a theater with an audience that laughs and cries, but most of those pleasures would be just as evident in a conventional presentation.",2002-01-01,9980,Beauty and the Beast +Lou Lumenick,fresh,0101414,New York Post,"This is the only animated film ever nominated for a Best Picture Oscar, and you'll see why.",2001-12-31,9980,Beauty and the Beast +Variety Staff,fresh,0032910,Variety,Pinocchio is a substantial piece of entertainment for young and old.,2008-09-03,22471,Pinocchio +,fresh,0032910,TIME Magazine,"The charm, humor and loving care with which it treats its inanimate characters puts it in a class by itself.",2008-08-31,22471,Pinocchio +Frank S. Nugent,fresh,0032910,New York Times,It still is the best thing Mr. Disney has done and therefore the best cartoon ever made.,2008-03-10,22471,Pinocchio +,fresh,0032910,Time Out,Probably shows Disney's virtues and vices more clearly than any other cartoon.,2008-03-10,22471,Pinocchio +Jonathan Rosenbaum,fresh,0032910,Chicago Reader,"The moral lessons include a literalization of metaphors about lying and other forms of misbehaving, and the grasp of a little boy's emotions and behavior often borders on the uncanny.",2008-03-10,22471,Pinocchio +Roger Ebert,fresh,0032910,Chicago Sun-Times,"Was there ever a scarier, more exciting animated feature than Pinocchio?",2000-01-01,22471,Pinocchio +Richard Corliss,rotten,0100405,TIME Magazine,"This is old-fashioned, assembly-line moviemaking without the old panache.",2009-02-03,13006,Pretty Woman +Variety Staff,fresh,0100405,Variety,"Pic's casting is astute, with Gere underplaying like a sturdy ballet star who hoists the ballerina Roberts on his shoulders.",2008-04-09,13006,Pretty Woman +Owen Gleiberman,rotten,0100405,Entertainment Weekly,It's saying Roberts' character becomes a better person when she lands a rich guy and learns to cry at the opera.,2008-04-09,13006,Pretty Woman +Jonathan Rosenbaum,rotten,0100405,Chicago Reader,"He pays her $3,000 and they fall in love -- ain't Hollywood grand?",2008-04-09,13006,Pretty Woman +,fresh,0100405,Time Out,"For a film that attempts to satirise snooty materialism, it focuses too pantingly on the designer labels, and comes down firmly on the side of 'rich is better'.",2006-06-24,13006,Pretty Woman +Caryn James,fresh,0100405,New York Times,It is something special.,2003-05-20,13006,Pretty Woman +Desson Thomson,fresh,0100405,Washington Post,"A slick, instantly and entertainingly digestible Cinderella fable.",2000-01-01,13006,Pretty Woman +Roger Ebert,fresh,0100405,Chicago Sun-Times,The sweetest and most openhearted love fable since The Princess Bride.,2000-01-01,13006,Pretty Woman +Rita Kempley,fresh,0100405,Washington Post,Pretty Woman seduces all but the most wary.,2000-01-01,13006,Pretty Woman +John Hartl,fresh,0100405,Film.com,As shamelessly irresistible as the Roy Orbison oldie that accompanies the credits.,2000-01-01,13006,Pretty Woman +Derek Elley,none,0110719,Variety,,2012-02-23,770738014,Okno v Parizh +Todd McCarthy,none,0110719,Variety,,2009-03-26,770738014,Okno v Parizh +Janet Maslin,none,0110719,New York Times,,2004-08-30,770738014,Okno v Parizh +,none,0110719,Globe and Mail,,2002-04-12,770738014,Okno v Parizh +Kevin Thomas,none,0110719,Los Angeles Times,,2001-02-13,770738014,Okno v Parizh +Roger Ebert,rotten,0110719,Chicago Sun-Times,,2000-01-01,770738014,Okno v Parizh +Peter Stack,none,0110719,San Francisco Chronicle,,2000-01-01,770738014,Okno v Parizh +Stanley Kauffmann,none,0110719,The New Republic,,2000-01-01,770738014,Okno v Parizh +J. Hoberman,fresh,0065214,Village Voice,Arguably the strongest Hollywood movie of the 1960s -- a western that galvanizes the cliches of its dying genre with a shocking jolt of delirious carnage.,2013-04-29,12968,The Wild Bunch +Carrie Rickey,fresh,0065214,Philadelphia Inquirer,"In an era when body-count films mirror the mounting body count offscreen, The Wild Bunch dissects death rather than glorifying it.",2013-04-29,12968,The Wild Bunch +Michael Wilmington,fresh,0065214,Chicago Tribune,"The Wild Bunch is an American masterpiece, one of the greatest films ever produced in the Hollywood system.",2013-04-29,12968,The Wild Bunch +Jay Boyar,fresh,0065214,Orlando Sentinel,"It is certainly one of the best westerns ever made, and the best film of any kind to come out in 1969.",2013-04-29,12968,The Wild Bunch +Peter Travers,fresh,0065214,Rolling Stone,It's a towering achievement that grows more riveting and resonant with the years.,2013-04-29,12968,The Wild Bunch +,fresh,0065214,TIME Magazine,"The Wild Bunch is Peckinpah's most complex inquiry into the metamorphosis of man into myth. Not incidentally, it is also a raucous, violent, powerful feat of American film making.",2013-04-29,12968,The Wild Bunch +Whitney Willaims,rotten,0065214,Variety,"Film at 145 minutes is far over-length, and should be tightened extensively, particularly in first half.",2007-06-26,12968,The Wild Bunch +Dave Kehr,fresh,0065214,Chicago Reader,"The on-screen carnage established a new level in American movies, but few of the films that followed in its wake could duplicate Peckinpah's depth of feeling.",2007-06-26,12968,The Wild Bunch +,fresh,0065214,Time Out,"In purely cinematic terms, the film is a savagely beautiful spectacle, Lucien Ballard's superb cinematography complementing Peckinpah's darkly elegiac vision.",2006-01-26,12968,The Wild Bunch +Vincent Canby,fresh,0065214,New York Times,"The Wild Bunch takes the basic elements of the Western movie myth, which once defined a simple, morally comprehensible world, and by bending them turns them into symbols of futility and aimless corruption.",2003-05-20,12968,The Wild Bunch +Peter Stack,fresh,0065214,San Francisco Chronicle,"A true cinematic touchstone, the film has influenced a generation of movie makers, from Scorsese to Tarantino to Hong Kong action king John Woo.",2000-01-01,12968,The Wild Bunch +Roger Ebert,fresh,0065214,Chicago Sun-Times,Seeing this restored version is like understanding the film at last.,2000-01-01,12968,The Wild Bunch +Bruce Reid,fresh,0065214,Film.com,"The director was one of the very few filmmakers who could create a world that, however nastier or more brutish than the one we live in, never felt smaller or less complex.",2000-01-01,12968,The Wild Bunch +James Berardinelli,fresh,0065214,ReelViews,"Not only does The Wild Bunch illustrate Peckinpah's mastery of his medium, but it presents a story that is effective on nearly every level.",2000-01-01,12968,The Wild Bunch +Todd McCarthy,none,0110395,Variety,,2009-04-08,15043,Love and a .45 +Geoff Andrew,none,0110395,Time Out,,2006-06-24,15043,Love and a .45 +Janet Maslin,none,0110395,New York Times,,2003-05-20,15043,Love and a .45 +,none,0110395,Globe and Mail,,2002-04-12,15043,Love and a .45 +Edward Guthmann,none,0110395,San Francisco Chronicle,,2000-01-01,15043,Love and a .45 +Lisa Schwarzbaum,fresh,0109934,Entertainment Weekly,,2011-09-07,770676496,A Great Day in Harlem +Jonathan Rosenbaum,fresh,0109934,Chicago Reader,"If you wanted to introduce someone to what jazz is all about, this would be an ideal place to start.",2007-10-17,770676496,A Great Day in Harlem +Godfrey Cheshire,rotten,0109934,Variety,"For non-buffs, pic fails the acid test of exciting interest where there was little or none before; it could easily have covered the same ground in half its length.",2007-10-17,770676496,A Great Day in Harlem +,fresh,0109934,Time Out,"A wonderful, warm little movie.",2006-02-09,770676496,A Great Day in Harlem +,fresh,0109934,Hollywood Reporter,Monumental.,2005-12-29,770676496,A Great Day in Harlem +Stephen Holden,fresh,0109934,New York Times,"Anyone with the misconception that the spirit of a particular music is not a direct reflection of the souls of the musicians who created it must see A Great Day in Harlem, Jean Bach's small and very moving documentary about the jazz life.",2004-08-30,770676496,A Great Day in Harlem +Jesse Hamlin,fresh,0109934,San Francisco Chronicle,"It's a funny and moving film whose swinging rhythms and informal tone capture a feeling for the music, the people who make it and the affection and respect they feel for each other and the art form.",2000-01-01,770676496,A Great Day in Harlem +James Berardinelli,fresh,0109934,ReelViews,"If there's such a thing as a magical documentary, A Great Day in Harlem is it.",2000-01-01,770676496,A Great Day in Harlem +,fresh,0109934,Entertainment Weekly,,1995-06-01,770676496,A Great Day in Harlem +Leonard Klady,none,0112606,Variety,,2009-03-26,11524,Bye Bye Love +,none,0112606,Time Out,,2006-06-24,11524,Bye Bye Love +Stephen Holden,none,0112606,New York Times,,2004-08-30,11524,Bye Bye Love +Peter Stack,none,0112606,San Francisco Chronicle,,2002-06-18,11524,Bye Bye Love +Kevin Thomas,none,0112606,Los Angeles Times,,2001-02-13,11524,Bye Bye Love +Desson Thomson,none,0112606,Washington Post,,2000-01-01,11524,Bye Bye Love +Hal Hinson,none,0112606,Washington Post,,2000-01-01,11524,Bye Bye Love +Roger Ebert,rotten,0112606,Chicago Sun-Times,,2000-01-01,11524,Bye Bye Love +James Berardinelli,rotten,0112606,ReelViews,,2000-01-01,11524,Bye Bye Love +,fresh,0112606,Entertainment Weekly,,1994-06-01,11524,Bye Bye Love +Lisa Schwarzbaum,fresh,0117247,Entertainment Weekly,,2011-09-07,12565,One Fine Day +,none,0117247,Time Out,,2006-01-26,12565,One Fine Day +Janet Maslin,none,0117247,New York Times,,2003-05-20,12565,One Fine Day +Jeff Strickler,none,0117247,Minneapolis Star Tribune,,2002-11-06,12565,One Fine Day +Edward Guthmann,none,0117247,San Francisco Chronicle,,2002-06-18,12565,One Fine Day +,rotten,0117247,Globe and Mail,,2002-04-12,12565,One Fine Day +Kenneth Turan,none,0117247,Los Angeles Times,,2001-02-14,12565,One Fine Day +Joe Baltake,none,0117247,Sacramento Bee,,2000-01-01,12565,One Fine Day +James Berardinelli,rotten,0117247,ReelViews,,2000-01-01,12565,One Fine Day +,none,0117247,Washington Post,,2000-01-01,12565,One Fine Day +Susan Stark,rotten,0117247,Detroit News,,2000-01-01,12565,One Fine Day +,none,0117247,Houston Chronicle,,2000-01-01,12565,One Fine Day +Stephanie Zacharek,none,0117247,Salon.com,,2000-01-01,12565,One Fine Day +Mike Clark,rotten,0117247,USA Today,"One Fine Day is two formulaic hours, but they do illustrate how two attractive leads and a lickety-split narrative can elevate meager material into something this side of bearability.",2000-01-01,12565,One Fine Day +Roger Ebert,rotten,0117247,Chicago Sun-Times,,2000-01-01,12565,One Fine Day +,fresh,0117247,Entertainment Weekly,,1996-12-20,12565,One Fine Day +Owen Gleiberman,rotten,0112625,Entertainment Weekly,,2011-09-07,13930,Candyman: Farewell to the Flesh +Leonard Klady,none,0112625,Variety,,2009-03-26,13930,Candyman: Farewell to the Flesh +,none,0112625,Time Out,,2006-06-24,13930,Candyman: Farewell to the Flesh +Caryn James,none,0112625,New York Times,,2004-08-30,13930,Candyman: Farewell to the Flesh +Kevin Thomas,none,0112625,Los Angeles Times,,2001-02-13,13930,Candyman: Farewell to the Flesh +Richard Harrington,none,0112625,Washington Post,,2000-01-01,13930,Candyman: Farewell to the Flesh +Roger Ebert,rotten,0112625,Chicago Sun-Times,,2000-01-01,13930,Candyman: Farewell to the Flesh +Peter Stack,none,0112625,San Francisco Chronicle,,2000-01-01,13930,Candyman: Farewell to the Flesh +Leonard Klady,fresh,0116282,Variety,"Fargo is a strikingly mature, uniqueentertainment that plays on many levels ... all satisfying.",2007-11-06,104762093,Fargo +Geoff Andrew,fresh,0116282,Time Out,The Coens remain effortlessly ahead of the American field.,2006-01-26,104762093,Fargo +Rita Kempley,fresh,0116282,Washington Post,"Gunderson (Frances McDormand) [is] the most endearing, hilarious and wholly feminine heroine since Thelma or Louise.",2002-01-18,104762093,Fargo +Kenneth Turan,fresh,0116282,Los Angeles Times,Chief Gunderson was created by the Coens specifically for Frances McDormand ... and they've been rewarded by a brilliant and unblinking comic performance.,2001-02-14,104762093,Fargo +James Berardinelli,fresh,0116282,ReelViews,"It's easy to admire what the Coens are trying to do in Fargo, but more difficult to actually like the film.",2000-01-01,104762093,Fargo +Richard Corliss,rotten,0116282,TIME Magazine,All attitude and low aptitude. Its function is to italicize the Coens' giddy contempt toward people who talk and think Minnesotan.,2000-01-01,104762093,Fargo +Susan Stark,fresh,0116282,Detroit News,"With Fargo, Joel and Ethan Coen return to the glory days of 1987 and Raising Arizona.",2000-01-01,104762093,Fargo +Peter Stack,fresh,0116282,San Francisco Chronicle,A crime gem that is darkly funny even when it's chilling -- and certain to become a classic.,2000-01-01,104762093,Fargo +Joe Baltake,fresh,0116282,Sacramento Bee,"Funny without really trying to be, and it proves conclusively that fact is stranger than fiction.",2000-01-01,104762093,Fargo +Keith Simanton,fresh,0116282,Film.com,Uniquely fascinating.,2000-01-01,104762093,Fargo +Shannon Gee,fresh,0116282,Film.com,"Has a murder mystery, a heist gone wrong, tragedy, comedy, and well flushed out characters that are both simple and complex at the same time.",2000-01-01,104762093,Fargo +Janet Maslin,fresh,0116282,New York Times,The Coens are at their clever best with this snowbound film noir.,2000-01-01,104762093,Fargo +Jonathan Rosenbaum,rotten,0116282,Chicago Reader,"Whether these characters are lovable or detestable, they're lovable or detestable in a TV way -- defined by a minimal set of traits that are endlessly reiterated and incapable of expansion or alteration, a fixed loop.",2000-01-01,104762093,Fargo +Laura Miller,rotten,0116282,Salon.com,The danger in portraying characters you consider significantly less interesting than yourself is that too much superiority and not enough affection can lead to a fatal snottiness.,2000-01-01,104762093,Fargo +Louis B. Parks,fresh,0116282,Houston Chronicle,"Kidnapping, larceny and murder have seldom been funnier than in Fargo.",2000-01-01,104762093,Fargo +Bruce Reid,fresh,0116282,Film.com,"Like every other critic I'm aware of, I loved this movie.",2000-01-01,104762093,Fargo +Roger Ebert,fresh,0116282,Chicago Sun-Times,"To watch it is to experience steadily mounting delight, as you realize the filmmakers have taken enormous risks, gotten away with them and made a movie that is completely original, and as familiar as an old shoe.",2000-01-01,104762093,Fargo +Paula Nechak,fresh,0116282,Film.com,"This mordant, macabre look at the American obsession with fast food, television and murder is icily funny.",2000-01-01,104762093,Fargo +Mike Clark,fresh,0116282,USA Today,A nifty bit of nastiness from two of our most dependably provocative filmmakers.,2000-01-01,104762093,Fargo +Stanley Kauffmann,fresh,0116282,The New Republic,The hot news about Joel and Ethan Coen is that they have made a tolerable film.,2000-01-01,104762093,Fargo +Joe Leydon,none,0116552,Variety,,2009-03-26,9524,Homeward Bound II: Lost in San Francisco +Kevin McManus,fresh,0116552,Washington Post,The tone is ideal for a family audience. The length is perfect. And the sequence of last-minute surprises elicits tears and laughter in just the right proportions.,2003-04-02,9524,Homeward Bound II: Lost in San Francisco +Rita Kempley,fresh,0116552,Washington Post,"Wee urbanites might find Disney's scorn for city life a shade offputting, but if preview audiences are any indication, little ones will laugh their tiny heinies off at the humor herein.",2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Roger Ebert,rotten,0116552,Chicago Sun-Times,"The first movie was good-hearted and I liked it, but since then Babe has raised the bar, with animals that not only talk more realistically, but say things that are wittier and more pungent.",2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Susan Stark,rotten,0116552,Detroit News,,2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Stephen Holden,fresh,0116552,New York Times,It does a better job than most family films in projecting a child's-eye view of a world where siblings and pets are equally cherished members of the family.,2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Peter Stack,fresh,0116552,San Francisco Chronicle,"Taken on its own entirely hokey terms, Homeward Bound II: Lost in San Francisco is a charming romp of a talking animal movie.",2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Susan Wloszczyna,fresh,0116552,USA Today,It's more padded than Lassie's bed. But 9-and-unders were having a tail-wagging good time.,2000-01-01,9524,Homeward Bound II: Lost in San Francisco +Variety Staff,rotten,0082509,Variety,"Initial segments have a boisterous blend of dynamic graphics, intriguing plot premises and sly wit that unfortunately slide gradually downhill.",2009-03-26,13299,Heavy Metal +Dave Kehr,fresh,0082509,Chicago Reader,"Some of the animation is first-rate, particularly in the more modest comedy segments, and even the heavy set pieces have greater flash and dazzle than anything Ralph Bakshi mustered around the same period.",2007-04-16,13299,Heavy Metal +Derek Adams,rotten,0082509,Time Out,"Fantasies that are gratuitously sexist and Fascist (macho whoring and warmongering), and whose roots reach all the way back to post-hippie paranoia, feed the tangled plot-lines of a movie that... should disappoint even the teenage wet-dreamers.",2006-02-09,13299,Heavy Metal +Janet Maslin,fresh,0082509,New York Times,"Heavy Metal has been animated with great verve, and scored very well, with music much less ear-splitting than the title would suggest.",2004-08-30,13299,Heavy Metal +Jeff Gilbert,fresh,0082509,Film.com,"Regardless of its dated stylishness (which still holds up remarkably well a decade plus later), Heavy Metal was a pioneering film in 1981 and remains a pivitol and infuential body of art today.",2000-01-01,13299,Heavy Metal +Bruce Reid,rotten,0082509,Film.com,"Asked if I wanted to see it again, I figured, why not? I would have remembered if it was really bad. But memory does play tricks.",2000-01-01,13299,Heavy Metal +Daniel M. Kimmel,rotten,0116514,Variety,"Except for the most undiscriminating gorehound, pic is a pointless mess.",2005-04-29,13552,Hellraiser: Bloodline +Stephen Holden,none,0116514,New York Times,,2003-05-20,13552,Hellraiser: Bloodline +Kevin Thomas,none,0116514,Los Angeles Times,,2001-02-14,13552,Hellraiser: Bloodline +Richard Harrington,none,0116514,Washington Post,,2000-01-01,13552,Hellraiser: Bloodline +Owen Gleiberman,fresh,0117283,Entertainment Weekly,,2011-09-07,12017,The Pallbearer +Todd McCarthy,none,0117283,Variety,,2009-03-26,12017,The Pallbearer +Kevin Thomas,none,0117283,Los Angeles Times,,2001-02-14,12017,The Pallbearer +Janet Maslin,none,0117283,New York Times,,2000-01-01,12017,The Pallbearer +Roger Ebert,fresh,0117283,Chicago Sun-Times,,2000-01-01,12017,The Pallbearer +James Berardinelli,rotten,0117283,ReelViews,,2000-01-01,12017,The Pallbearer +Joe Baltake,none,0117283,Sacramento Bee,,2000-01-01,12017,The Pallbearer +Susan Stark,rotten,0117283,Detroit News,,2000-01-01,12017,The Pallbearer +Peter Stack,none,0117283,San Francisco Chronicle,,2000-01-01,12017,The Pallbearer +,none,0117283,Washington Post,,2000-01-01,12017,The Pallbearer +,fresh,0117283,Entertainment Weekly,,1996-05-03,12017,The Pallbearer +,none,0070506,Time Out,,2006-02-09,19937,Pane e cioccolata +Vincent Canby,none,0070506,New York Times,,2005-05-09,19937,Pane e cioccolata +Dave Kehr,none,0070506,Chicago Reader,,2000-01-01,19937,Pane e cioccolata +Stefan Kanfer,fresh,0065421,TIME Magazine,"The animals' exuberance is so infectious and their ""acting"" so true to human life that by the fadeout The Aristocats does, indeed, give the audience paws for reflection.",2009-11-04,9398,The AristoCats +Dave Kehr,rotten,0065421,Chicago Reader,"This 1970 animated feature is dull, careless, and all too typical of the Disney studio's slapdash output before the unexpected renaissance of The Rescuers.",2009-11-04,9398,The AristoCats +Variety Staff,fresh,0065421,Variety,"Helped immeasurably by the voices of Phil Harris, Eva Gabor, Sterling Holloway, Scatman Crothers and others, plus some outstanding animation, songs, sentiment, some excellent dialog and even a touch of psychedelia.",2008-06-17,9398,The AristoCats +Wally Hammond,fresh,0065421,Time Out,Purr-fect.,2006-06-24,9398,The AristoCats +,fresh,0065421,New York Times,"The real beauty of the picture, which is as amusing, smoothly machined and beautifully colored as any Disney should be, is in the characterizations, sustained within a sprightly but simple format.",2005-05-09,9398,The AristoCats +David Rooney,none,0113083,Variety,,2008-07-01,22549,La flor de mi secreto +,none,0113083,Washington Post,,2006-08-12,22549,La flor de mi secreto +,none,0113083,Time Out,,2006-01-26,22549,La flor de mi secreto +Caryn James,fresh,0113083,New York Times,"Though The Flower of My Secret is a slight work, it is a pleasing return to form.",2003-05-20,22549,La flor de mi secreto +Desson Thomson,fresh,0113083,Washington Post,"The movie is full of familiar Almodovar fare, but it feels freshened.",2002-12-11,22549,La flor de mi secreto +Kevin Thomas,fresh,0113083,Los Angeles Times,"An intimate, beautifully wrought work, it reflects a new maturity in Almodovar's work and is one of his best pictures.",2001-02-14,22549,La flor de mi secreto +Edward Guthmann,fresh,0113083,San Francisco Chronicle,"It's a witty, intelligent scramble, and it's beautifully mounted.",2000-01-01,22549,La flor de mi secreto +Roger Ebert,rotten,0113083,Chicago Sun-Times,"Likely to be disappointing to Almodovar's admirers, and inexplicable to anyone else.",2000-01-01,22549,La flor de mi secreto +Jeff Millar,rotten,0113083,Houston Chronicle,"If Leo appears to be doing some more or less orthodox movie-style suffering -- crying jags, a suicide attempt and the like -- perhaps that's just what she's supposed to be doing.",2000-01-01,22549,La flor de mi secreto +Mike Clark,fresh,0113083,USA Today,"Secret isn't the usual romp, but it's Almodovar's most committed work in years.",2000-01-01,22549,La flor de mi secreto +Joe Baltake,fresh,0113083,Sacramento Bee,"A ripe, entertaining soap opera.",2000-01-01,22549,La flor de mi secreto +Rita Kempley,fresh,0113083,Washington Post,"Though Almodovar touches on many of his favorite absurdities, he does so with surprising subtlety.",2000-01-01,22549,La flor de mi secreto +Scott Rosenberg,fresh,0113083,Salon.com,It slowly unfolds from a narrow satire into a romance that's rich with real-life bitterness.,2000-01-01,22549,La flor de mi secreto +James Berardinelli,rotten,0113083,ReelViews,"It's bland as often as it is affecting, and presents little that's new or original.",2000-01-01,22549,La flor de mi secreto +David Rooney,none,0118001,Variety,,2009-03-26,12321,Two Much +Geoff Andrew,none,0118001,Time Out,,2006-06-24,12321,Two Much +Jonathan Rosenbaum,none,0118001,Chicago Reader,,2004-09-04,12321,Two Much +,none,0118001,Los Angeles Times,,2001-02-14,12321,Two Much +,none,0118001,Houston Chronicle,,2000-01-01,12321,Two Much +Roger Ebert,rotten,0118001,Chicago Sun-Times,,2000-01-01,12321,Two Much +Stanley Kauffmann,none,0118001,The New Republic,,2000-01-01,12321,Two Much +,none,0118001,New York Times,,2000-01-01,12321,Two Much +Peter Stack,none,0118001,San Francisco Chronicle,,2000-01-01,12321,Two Much +James Berardinelli,rotten,0118001,ReelViews,,2000-01-01,12321,Two Much +Joe Baltake,none,0118001,Sacramento Bee,,2000-01-01,12321,Two Much +,rotten,0118001,Entertainment Weekly,,1996-03-15,12321,Two Much +,none,0102855,Variety,,2012-02-23,770673074,Cerro Torre: Schrei aus Stein +Lisa Schwarzbaum,fresh,0107471,Entertainment Weekly,,2011-09-07,19293,Ma saison préférée +Todd McCarthy,none,0107471,Variety,,2008-12-31,19293,Ma saison préférée +Derek Adams,none,0107471,Time Out,,2006-02-09,19293,Ma saison préférée +Kevin Thomas,none,0107471,Los Angeles Times,,2001-02-14,19293,Ma saison préférée +Edward Guthmann,none,0107471,San Francisco Chronicle,,2000-01-01,19293,Ma saison préférée +Jonathan Rosenbaum,none,0107471,Chicago Reader,,2000-01-01,19293,Ma saison préférée +Roger Ebert,fresh,0107471,Chicago Sun-Times,"One of those intriguing films that functions without a plot, and uses instead an intense curiosity about its characters.",2000-01-01,19293,Ma saison préférée +Janet Maslin,none,0107471,New York Times,,2000-01-01,19293,Ma saison préférée +Stanley Kauffmann,none,0107471,The New Republic,,2000-01-01,19293,Ma saison préférée +James Berardinelli,fresh,0107471,ReelViews,,2000-01-01,19293,Ma saison préférée +,fresh,0107471,Entertainment Weekly,,1800-01-01,19293,Ma saison préférée +Dennis Harvey,none,0113839,Variety,,2011-04-22,770800369,A Modern Affair +Daniel M. Kimmel,rotten,0113839,Variety,This mix of sitcomsitcom antics and romantic melodrama involving a couple who meet through a sperm donation is a complete misfire...,2005-04-29,770800369,A Modern Affair +Michael O'Sullivan,none,0113839,Washington Post,,2002-01-22,770800369,A Modern Affair +Stephen Holden,none,0113839,New York Times,,2000-01-01,770800369,A Modern Affair +Lisa Schwarzbaum,rotten,0117891,Entertainment Weekly,,2011-09-07,14135,A Thin Line Between Love and Hate +Brian Lowry,rotten,0117891,Variety,Sluggishly paced and too seldom funny...,2009-03-26,14135,A Thin Line Between Love and Hate +Geoff Andrew,rotten,0117891,Time Out,"The script lacks wit and depth, while Lawrence's direction is meandering and undramatic, full of showy, over-elaborate camera movements.",2006-02-09,14135,A Thin Line Between Love and Hate +Stephen Holden,rotten,0117891,New York Times,"Too serious to be a comedy, too flippant to be a thriller, it often feels like a backhanded act of penance for the misogynist humor in the star's comedy act.",2003-05-20,14135,A Thin Line Between Love and Hate +Edward Guthmann,rotten,0117891,San Francisco Chronicle,"[Lawrence is] a charming, gifted comic with a killer smile, but he's way out of his depth in this Fatal Attraction knockoff, which he also co-wrote and stars in.",2002-06-18,14135,A Thin Line Between Love and Hate +James Berardinelli,rotten,0117891,ReelViews,"The screenplay is credited to four writers, and its unevenness argues that none of them were on the same wavelength.",2000-01-01,14135,A Thin Line Between Love and Hate +Susan Stark,rotten,0117891,Detroit News,,2000-01-01,14135,A Thin Line Between Love and Hate +Andy Seiler,rotten,0117891,USA Today,"A Thin Line Between Love and Hate takes its name from the Persuaders 1971 hit that has been re-recorded by the Pretenders, Annie Lennox and H-Town. You could have just as much fun simply playing one of them and skipping the movie.",2000-01-01,14135,A Thin Line Between Love and Hate +,rotten,0117891,Entertainment Weekly,,1996-04-03,14135,A Thin Line Between Love and Hate +,none,0117381,Variety,,2012-02-23,13253,Primal Fear +Todd McCarthy,none,0117381,Variety,,2008-07-25,13253,Primal Fear +Derek Adams,none,0117381,Time Out,,2006-06-24,13253,Primal Fear +Janet Maslin,none,0117381,New York Times,,2003-05-20,13253,Primal Fear +Peter Stack,fresh,0117381,San Francisco Chronicle,,2002-06-18,13253,Primal Fear +Peter Travers,none,0117381,Rolling Stone,,2001-05-12,13253,Primal Fear +Kenneth Turan,none,0117381,Los Angeles Times,,2001-02-14,13253,Primal Fear +James Berardinelli,rotten,0117381,ReelViews,,2000-01-01,13253,Primal Fear +,none,0117381,Houston Chronicle,,2000-01-01,13253,Primal Fear +Joe Baltake,none,0117381,Sacramento Bee,,2000-01-01,13253,Primal Fear +Andrew Ross,none,0117381,Salon.com,,2000-01-01,13253,Primal Fear +,none,0117381,Washington Post,,2000-01-01,13253,Primal Fear +Mike Clark,fresh,0117381,USA Today,"As a forum for its actors and for the big-screen directorial debut of multi-Emmy winner Gregory Hoblit, the film is up to the job.",2000-01-01,13253,Primal Fear +Roger Ebert,fresh,0117381,Chicago Sun-Times,,2000-01-01,13253,Primal Fear +Susan Stark,fresh,0117381,Detroit News,,2000-01-01,13253,Primal Fear +,rotten,0117381,Entertainment Weekly,,1996-04-05,13253,Primal Fear +Lisa Schwarzbaum,rotten,0115837,Entertainment Weekly,,2011-09-07,14458,Carried Away +Leonard Klady,none,0115837,Variety,,2009-03-26,14458,Carried Away +,none,0115837,Washington Post,,2006-08-05,14458,Carried Away +Desson Thomson,rotten,0115837,Washington Post,"Tries to incorporate almost film-noir elements into a heartland love story. The blending feels inorganic; and composer Bruce Broughton doesn't help matters by coating every moment with a repetitive, syrupy theme.",2006-08-02,14458,Carried Away +,none,0115837,Time Out,,2006-02-09,14458,Carried Away +Stephen Holden,fresh,0115837,New York Times,An earnestly well-meaning film whose adult characters have a refreshingly grown-up perspective on their choices in life.,2003-05-20,14458,Carried Away +Roger Ebert,fresh,0115837,Chicago Sun-Times,"Everyone in the film -- even the teenager -- is more intelligent and articulate than is usually permitted in American movies, and having gotten themselves into an emotional tangle, they go to work getting themselves out again.",2000-01-01,14458,Carried Away +Hal Hinson,rotten,0115837,Washington Post,"Think Dennis Hopper has played too many crazies? Well, you'll wish he'd stuck to blowing up buses after you see him in Carried Away.",2000-01-01,14458,Carried Away +James Berardinelli,fresh,0115837,ReelViews,"Carried Away is erotic, but it's also thoughtful and intelligent, and, coupled with Hopper's extraordinary performance, that's reason enough to be carried away by this motion picture.",2000-01-01,14458,Carried Away +,rotten,0115837,Entertainment Weekly,,1996-03-29,14458,Carried Away +Joe Leydon,none,0115509,Variety,,2009-03-26,9802,All Dogs Go to Heaven 2 +Stephen Holden,none,0115509,New York Times,,2003-05-20,9802,All Dogs Go to Heaven 2 +Susan Stark,rotten,0115509,Detroit News,,2000-01-01,9802,All Dogs Go to Heaven 2 +Lisa Schwarzbaum,fresh,0114671,Entertainment Weekly,,2011-09-07,133039859,Land and Freedom +,none,0114671,Variety,,2009-03-26,133039859,Land and Freedom +Geoff Andrew,none,0114671,Time Out,,2006-02-09,133039859,Land and Freedom +Caryn James,none,0114671,New York Times,,2003-05-20,133039859,Land and Freedom +Kenneth Turan,none,0114671,Los Angeles Times,,2001-02-14,133039859,Land and Freedom +Hal Hinson,none,0114671,Washington Post,,2000-01-01,133039859,Land and Freedom +Stanley Kauffmann,none,0114671,The New Republic,,2000-01-01,133039859,Land and Freedom +James Berardinelli,fresh,0114671,ReelViews,,2000-01-01,133039859,Land and Freedom +,fresh,0114671,Entertainment Weekly,,1996-03-15,133039859,Land and Freedom +Emanuel Levy,fresh,0112844,Variety,"A minor but quirkily charming comedy about alientaion, love, and folly that reflects the zeitgeist in terms of AIDS and modern technology.",2006-06-19,770739496,Denise Calls Up +,none,0112844,Time Out,,2006-01-26,770739496,Denise Calls Up +Janet Maslin,none,0112844,New York Times,,2003-05-20,770739496,Denise Calls Up +,none,0112844,Washington Post,,2002-10-17,770739496,Denise Calls Up +Hal Hinson,fresh,0112844,Washington Post,Salwen has captured and properly identified a very particular modern American species. His emergence as a filmmaker is a true event.,2002-10-16,770739496,Denise Calls Up +Kenneth Turan,fresh,0112844,Los Angeles Times,"At only 80 minutes, it doesn't overstay its welcome, but slight though it may be, it knows how to create constant smiles.",2001-02-14,770739496,Denise Calls Up +Roger Ebert,rotten,0112844,Chicago Sun-Times,It's hard to care about a movie story in which the characters never meet one another or really care about one another.,2000-01-01,770739496,Denise Calls Up +Joe Baltake,fresh,0112844,Sacramento Bee,"An alert, funny antisocial comedy.",2000-01-01,770739496,Denise Calls Up +Stanley Kauffmann,fresh,0112844,The New Republic,"After a while, besides enjoying the stories as such, we begin to enjoy the film's trickiness, almost all on the phone, as a sort of high-wire act.",2000-01-01,770739496,Denise Calls Up +Mick LaSalle,fresh,0112844,San Francisco Chronicle,"Doesn't go much past its gimmick, but it marks Salwen as a talent worth watching.",2000-01-01,770739496,Denise Calls Up +James Berardinelli,rotten,0112844,ReelViews,Might have been more effective if the writer/director had taken the time to create characters imbued with more than token traces of humanity.,2000-01-01,770739496,Denise Calls Up +Desson Thomson,fresh,0112844,Washington Post,Too slight to be a cautionary fable and not light enough to merit the term 'goofy caper.' But it sits in an enjoyable place of its own.,2000-01-01,770739496,Denise Calls Up +Godfrey Cheshire,none,0116275,Variety,,2009-01-23,12123,A Family Thing +Stephen Holden,none,0116275,New York Times,,2004-08-30,12123,A Family Thing +Peter Stack,fresh,0116275,San Francisco Chronicle,,2002-06-18,12123,A Family Thing +Kenneth Turan,none,0116275,Los Angeles Times,,2001-02-14,12123,A Family Thing +Joe Baltake,none,0116275,Sacramento Bee,,2000-01-01,12123,A Family Thing +Jonathan Rosenbaum,none,0116275,Chicago Reader,,2000-01-01,12123,A Family Thing +Susan Stark,rotten,0116275,Detroit News,,2000-01-01,12123,A Family Thing +Susan Wloszczyna,fresh,0116275,USA Today,"It's likely to be overrated by some and underrated by others, and both contingents will be wrong. One can't, however, overrate the performances, with auntie ruling the roost in more ways than one.",2000-01-01,12123,A Family Thing +Roger Ebert,fresh,0116275,Chicago Sun-Times,,2000-01-01,12123,A Family Thing +James Berardinelli,fresh,0116275,ReelViews,,2000-01-01,12123,A Family Thing +,none,0116275,Washington Post,,2000-01-01,12123,A Family Thing +,fresh,0116275,Entertainment Weekly,,1996-03-29,12123,A Family Thing +Gunnar Rehlin,none,0827729,Variety,,2012-02-23,770679557,Nina Frisk +Owen Gleiberman,rotten,0117608,Entertainment Weekly,,2011-09-07,10970,Sgt. Bilko +Brian Lowry,rotten,0117608,Variety,"Though Martin and a solid supporting cast produce a few scattered moments of near-hilarity, for the most part the terrain here is as flat as it gets.",2008-05-19,10970,Sgt. Bilko +Jonathan Rosenbaum,fresh,0117608,Chicago Reader,[A] celebration of high jinks.,2008-05-19,10970,Sgt. Bilko +,rotten,0117608,Time Out,"This is shoddy hackwork, replaying classic scenarios (the honest new recruit, audits by Pentagon bigwigs and manoeuvres in Nevada) with such disregard for narrative structure the reels might be in the wrong order.",2006-06-24,10970,Sgt. Bilko +Janet Maslin,fresh,0117608,New York Times,"The film is full of gratifying gags like these, but it also has to strain for newly enlarged scope.",2004-08-30,10970,Sgt. Bilko +Peter Stack,fresh,0117608,San Francisco Chronicle,Wacky is just the right tone for a spring comedy.,2002-06-18,10970,Sgt. Bilko +Roger Ebert,fresh,0117608,Chicago Sun-Times,One of the pleasures of the movie is all the little jokes hidden in the corners.,2000-01-01,10970,Sgt. Bilko +Susan Wloszczyna,fresh,0117608,USA Today,Director Jonathan Lynn has had his hits (My Cousin Vinny) and stinkeroos (Greedy). This falls in between.,2000-01-01,10970,Sgt. Bilko +Hal Hinson,fresh,0117608,Washington Post,Martin's aggrieved expressions and sublime physical bits are constantly entertaining.,2000-01-01,10970,Sgt. Bilko +James Berardinelli,rotten,0117608,ReelViews,This Sgt. Bilko should be court-martialed.,2000-01-01,10970,Sgt. Bilko +Susan Stark,rotten,0117608,Detroit News,,2000-01-01,10970,Sgt. Bilko +,rotten,0117608,Entertainment Weekly,,1996-03-29,10970,Sgt. Bilko +Owen Gleiberman,rotten,0113448,Entertainment Weekly,,2011-09-07,11637,Jack & Sarah +,none,0113448,Variety,,2009-03-26,11637,Jack & Sarah +Geoff Andrew,none,0113448,Time Out,,2006-09-23,11637,Jack & Sarah +Jack Mathews,none,0113448,Los Angeles Times,,2001-02-13,11637,Jack & Sarah +Stephen Holden,none,0113448,New York Times,,2000-01-01,11637,Jack & Sarah +Roger Ebert,fresh,0113448,Chicago Sun-Times,,2000-01-01,11637,Jack & Sarah +Joe Baltake,none,0113448,Sacramento Bee,,2000-01-01,11637,Jack & Sarah +Stanley Kauffmann,none,0113448,The New Republic,,2000-01-01,11637,Jack & Sarah +Peter Stack,none,0113448,San Francisco Chronicle,,2000-01-01,11637,Jack & Sarah +,rotten,0113448,Entertainment Weekly,,1996-03-22,11637,Jack & Sarah +,none,0116414,Houston Chronicle,,2008-10-18,298627921,Girl 6 +Susan Stark,rotten,0116414,Detroit News,,2008-10-18,298627921,Girl 6 +,none,0116414,Washington Post,,2008-10-18,298627921,Girl 6 +Todd McCarthy,rotten,0116414,Variety,"[Randle] holds the film together as best she can with her luminous presence and dignity, but can't supply the lacking subtext, past history and motivation.",2008-09-23,298627921,Girl 6 +,fresh,0116414,Time Out,"There's something refreshing about the film's reckless proximity to anarchy, the stylishly imaginative cinematography and lusciously exorbitant Prince soundtrack, even if it does ring hollow when Lee tries to get serious on us.",2006-06-24,298627921,Girl 6 +Edward Guthmann,rotten,0116414,San Francisco Chronicle,"Lee's never been too hip to women's perspectives, and in Girl 6, he proves that marriage, maturity and 10 years of filmmaking haven't substantially corrected his blind spot.",2002-06-18,298627921,Girl 6 +Peter Travers,rotten,0116414,Rolling Stone,Lee has done the impossible: He's sucked the fun out of call-in sex and replaced it with sanctimonious prattle.,2001-05-12,298627921,Girl 6 +Kenneth Turan,rotten,0116414,Los Angeles Times,"While Lee is a skillful director, he's also more coldly analytical than emotional, and it is not his style to get us to feel for this woman as much as we should.",2001-02-14,298627921,Girl 6 +Jonathan Rosenbaum,rotten,0116414,Chicago Reader,Lee draws his lines between fantasy and reality without much confidence and with only a sketchy logic.,2000-01-01,298627921,Girl 6 +Mike Clark,rotten,0116414,USA Today,"Frenetic but lazily conceived, it's like one of those puny low-budget toss-offs Brian De Palma used to spring on us when he thought nobody was looking.",2000-01-01,298627921,Girl 6 +Roger Ebert,rotten,0116414,Chicago Sun-Times,Strongly told stories have a way of carrying their characters along with them. But here we have an undefined character in an aimless story. Too bad.,2000-01-01,298627921,Girl 6 +James Berardinelli,rotten,0116414,ReelViews,"Lee may have a keen sense of setting and dialogue, but his characterization is off.",2000-01-01,298627921,Girl 6 +Laura Miller,rotten,0116414,Salon.com,"Instead of effervescent and mercurial, the movie is simply muddled. What happened?",2000-01-01,298627921,Girl 6 +Janet Maslin,fresh,0116414,New York Times,"Mr. Lee isn't as successful at shaping a story around Girl 6, but enjoying her company is all his slender, sunny film really tries to do.",2000-01-01,298627921,Girl 6 +Owen Gleiberman,rotten,0116095,Entertainment Weekly,,2011-09-07,14865,Diabolique +Todd McCarthy,none,0116095,Variety,,2009-03-26,14865,Diabolique +,none,0116095,Time Out,,2006-01-26,14865,Diabolique +Peter Stack,rotten,0116095,San Francisco Chronicle,,2002-06-18,14865,Diabolique +Roger Ebert,rotten,0116095,Chicago Sun-Times,,2000-01-01,14865,Diabolique +,none,0116095,Washington Post,,2000-01-01,14865,Diabolique +James Berardinelli,rotten,0116095,ReelViews,,2000-01-01,14865,Diabolique +,none,0116095,Houston Chronicle,,2000-01-01,14865,Diabolique +Joe Baltake,none,0116095,Sacramento Bee,,2000-01-01,14865,Diabolique +Susan Stark,rotten,0116095,Detroit News,,2000-01-01,14865,Diabolique +Mike Clark,rotten,0116095,USA Today,"The husband is still a brute, and the swimming pool is still moldy, but the new Diabolique fails to translate into anything more than the latest ham-handed Hollywood makeover of a European classic.",2000-01-01,14865,Diabolique +Janet Maslin,none,0116095,New York Times,,2000-01-01,14865,Diabolique +,rotten,0116095,Entertainment Weekly,,1996-03-22,14865,Diabolique +Lisa Nesselson,none,0111543,Variety,,2009-03-26,770684032,Un indien dans la ville +Joe Baltake,none,0111543,Sacramento Bee,,2000-01-01,770684032,Un indien dans la ville +Janet Maslin,none,0111543,New York Times,,2000-01-01,770684032,Un indien dans la ville +,none,0111543,Houston Chronicle,,2000-01-01,770684032,Un indien dans la ville +James Berardinelli,rotten,0111543,ReelViews,,2000-01-01,770684032,Un indien dans la ville +Roger Ebert,rotten,0111543,Chicago Sun-Times,"If you, under any circumstances, see Little Indian, Big City, I will never let you read one of my reviews again.",2000-01-01,770684032,Un indien dans la ville +Susan Stark,rotten,0111543,Detroit News,,2000-01-01,770684032,Un indien dans la ville +Andy Seiler,rotten,0111543,USA Today,The French idea of a 'family film' is a bit kinkier than what we're accustomed to.,2000-01-01,770684032,Un indien dans la ville +Peter Stack,none,0111543,San Francisco Chronicle,,2000-01-01,770684032,Un indien dans la ville +Lisa Schwarzbaum,fresh,0113947,Entertainment Weekly,,2011-09-07,496447106,Nelly & Monsieur Arnaud +Derek Elley,none,0113947,Variety,,2009-03-26,496447106,Nelly & Monsieur Arnaud +,none,0113947,Time Out,,2006-01-26,496447106,Nelly & Monsieur Arnaud +,rotten,0113947,Globe and Mail,,2002-12-23,496447106,Nelly & Monsieur Arnaud +,none,0113947,Washington Post,,2002-09-09,496447106,Nelly & Monsieur Arnaud +Desson Thomson,fresh,0113947,Washington Post,Writer-director Sautet's great achievement is to introduce a world of undefinable impulses; the two actors' great achievement is to step into that world and experience them.,2002-09-04,496447106,Nelly & Monsieur Arnaud +Janet Maslin,fresh,0113947,New York Times,"With a fine appreciation for the nuances of polite repression, Sautet makes a quiet, careful study of these two lonely people.",2000-01-01,496447106,Nelly & Monsieur Arnaud +Peter Stack,fresh,0113947,San Francisco Chronicle,It glows with sorrowful humor in its look at two people who seem just right for each other but don't have time on their side.,2000-01-01,496447106,Nelly & Monsieur Arnaud +Jonathan Rosenbaum,fresh,0113947,Chicago Reader,"It's one sign of Sautet's success that, though he presents neither character as especially admirable or exceptional, he makes us care about them a great deal.",2000-01-01,496447106,Nelly & Monsieur Arnaud +Hal Hinson,fresh,0113947,Washington Post,"It's reserved, polished and challengingly intelligent.",2000-01-01,496447106,Nelly & Monsieur Arnaud +Roger Ebert,fresh,0113947,Chicago Sun-Times,"It is a matter of great erotic fascination when two people are intrigued by the notion of becoming lovers, but are held back by the fear of rejection _and_ the fear of involvement.",2000-01-01,496447106,Nelly & Monsieur Arnaud +Joe Baltake,fresh,0113947,Sacramento Bee,Sautet avoids the pitfalls of the usual May-December romance by eschewing all the cliches.,2000-01-01,496447106,Nelly & Monsieur Arnaud +James Berardinelli,fresh,0113947,ReelViews,"These are two great actors giving top-notch performances, and the restrained romance they project is fascinating.",2000-01-01,496447106,Nelly & Monsieur Arnaud +,fresh,0113947,Entertainment Weekly,,1996-04-12,496447106,Nelly & Monsieur Arnaud +Owen Gleiberman,fresh,0115956,Entertainment Weekly,,2011-09-07,16796,Courage Under Fire +Variety Staff,fresh,0115956,Variety,"A carefully conceived, dramatically honorable picture that treats its subject with clarity and intelligence, especially by contemporary standards.",2008-07-22,16796,Courage Under Fire +,fresh,0115956,Time Out,"As the detective-story flashback structure gets under way, what initially seemed adherence to dramatic and moral cliche becomes more complex and interesting.",2006-06-24,16796,Courage Under Fire +Janet Maslin,fresh,0115956,New York Times,"Despite its underlying predictability, Courage Under Fire manages warmth, intelligence and a healthy share of surprises.",2004-08-30,16796,Courage Under Fire +Desson Thomson,rotten,0115956,Washington Post,I wasn't particularly moved or riveted with suspense.,2002-09-11,16796,Courage Under Fire +Peter Stack,fresh,0115956,San Francisco Chronicle,A fascinating mystery mixed with war action.,2002-06-18,16796,Courage Under Fire +Liam Lacey,fresh,0115956,Globe and Mail,"At the end of Courage Under Fire, you feel torn between admiration and annoyance with the filmmakers, who take an attention-grabbing premise and skillfully develop it into a conclusion that's pure piffle.",2002-04-12,16796,Courage Under Fire +Peter Travers,fresh,0115956,Rolling Stone,Courage Under Fire honors its subject and its audience.,2001-05-12,16796,Courage Under Fire +Kenneth Turan,fresh,0115956,Los Angeles Times,"While its re-creation of combat is not Courage Under Fire's most involving aspect, the film succeeds in making the Gulf War seem more of a real event than all the footage shipped back on CNN could.",2001-02-14,16796,Courage Under Fire +Rita Kempley,fresh,0115956,Washington Post,"A downright entertaining combo or mystery, melodrama and action adventure.",2000-01-01,16796,Courage Under Fire +Roger Ebert,fresh,0115956,Chicago Sun-Times,"The end of the film understandably lays on the emotion a little heavily, but until then Courage Under Fire has been a fascinating emotional and logistical puzzle.",2000-01-01,16796,Courage Under Fire +Stanley Kauffmann,fresh,0115956,The New Republic,"Steven Rosenblum's editing is excellent, smoothly uniting present and past, articulating individual scenes alertly.",2000-01-01,16796,Courage Under Fire +Susan Stark,fresh,0115956,Detroit News,,2000-01-01,16796,Courage Under Fire +Susan Wloszczyna,fresh,0115956,USA Today,"Part Rashomon, part The Caine Mutiny, the first major-studio film to deal with 1991's Desert Storm not only captures the terror of battle but also its wrenching aftermath.",2000-01-01,16796,Courage Under Fire +Joe Baltake,fresh,0115956,Sacramento Bee,"Zwick pulls off the trick of making each story plausible, while Ryan successfully sheds her usual overmannered acting style and turns in a solid, if fleeting, performance as a no-nonsense, leathery woman.",2000-01-01,16796,Courage Under Fire +James Berardinelli,fresh,0115956,ReelViews,"Courage Under Fire is as profound and intelligent as it is moving, and that makes this memorable motion picture one of 1996's best.",2000-01-01,16796,Courage Under Fire +,fresh,0115956,Entertainment Weekly,,1996-07-12,16796,Courage Under Fire +David Ansen,fresh,0317919,Newsweek,"...this snappy installment is a marked improvement over John Woo's surprisingly dull sequel, though the set pieces lack the elegance and visual coherence of the Brian de Palma original.",2007-11-01,155654854,Mission: Impossible III +Ben Walters,fresh,0317919,Time Out,"There are plentiful perilous countdowns, most of the set-pieces are impressively mounted and, in its own silly way, the pay-off offers a glancing blow at US foreign policy. Relatable? No. But quite fun.",2006-06-24,155654854,Mission: Impossible III +Joe Morgenstern,fresh,0317919,Wall Street Journal,"The summer's first action epic does exactly what it's supposed to do, more clearly than M:i:I, and more likeably than M:i:II.",2006-06-22,155654854,Mission: Impossible III +Rex Reed,rotten,0317919,New York Observer,"As idiot movies go, this one is as sub-mental as you might expect.",2006-05-10,155654854,Mission: Impossible III +Andrew Sarris,rotten,0317919,New York Observer,My final reaction to Mission: Impossible III is one of bemused tolerance and even mild absorption in all the silliness.,2006-05-10,155654854,Mission: Impossible III +David Edelstein,rotten,0317919,New York Magazine,"There are no flourishes to savor. Instead, there are big-deal stunts.",2006-05-09,155654854,Mission: Impossible III +Anthony Lane,rotten,0317919,New Yorker,"The grand finale? A fistfight, after which somebody gets run over. Listen, if I want to see that kind of action, I don't go to Shanghai. I don't even go to the movies. I go to the South Bronx and stand outside a bar.",2006-05-08,155654854,Mission: Impossible III +Richard Roeper,fresh,0317919,Ebert & Roeper,The best of the three.,2006-05-08,155654854,Mission: Impossible III +Peter Howell,rotten,0317919,Toronto Star,"Abrams knows how to frame a shot and how to propulsively push both action and love stories, but logic continues to elude him as much as it did De Palma and Woo.",2006-05-05,155654854,Mission: Impossible III +Roger Moore,fresh,0317919,Orlando Sentinel,"If Mission: Impossible 3 is the first pitch of the popcorn-movie season, just two words come to mind -- butter up.",2006-05-05,155654854,Mission: Impossible III +Liam Lacey,fresh,0317919,Globe and Mail,What summer movies aspire to -- a slick demonstration of hot buttered entertainment that will probably slide you right out of the theatre before you even stop to ask a logical question or two.,2006-05-05,155654854,Mission: Impossible III +Robert Denerstein,fresh,0317919,Denver Rocky Mountain News,"For all the attempts at adding depth, it's likely that audiences will come away remembering the fireworks.",2006-05-05,155654854,Mission: Impossible III +Michael Booth,fresh,0317919,Denver Post,"All the popcorn season really wants is a good reason to see super-fit bodies flying around on a big screen, and M:I:III gits 'er done.",2006-05-05,155654854,Mission: Impossible III +Philip Wuntch,fresh,0317919,Dallas Morning News,"Mission: Impossible III will make you jump up and down with exuberance, just like its star.",2006-05-05,155654854,Mission: Impossible III +Bill Muller,rotten,0317919,Arizona Republic,Director Abrams seems to have attended the Tony Scott Extreme Closeup Academy.,2006-05-05,155654854,Mission: Impossible III +Carrie Rickey,fresh,0317919,Philadelphia Inquirer,"Whatever your feelings about Cruise, Mission: Impossible III is nirvana for thrill seekers.",2006-05-04,155654854,Mission: Impossible III +Ann Hornaday,fresh,0317919,Washington Post,"Director J.J. Abrams, creator of such TV hits as Alias and Lost, makes a reasonably impressive feature debut with the best installment of the series.",2006-05-04,155654854,Mission: Impossible III +James Berardinelli,rotten,0317919,ReelViews,"Mission: Impossible III provides lots of action, but too little excitement.",2006-05-04,155654854,Mission: Impossible III +Manohla Dargis,rotten,0317919,New York Times,"Although he slams into stationary objects with his customary zeal, Tom Cruise is off his game here, sabotaged by a misguided attempt to shade his character with gray.",2006-05-04,155654854,Mission: Impossible III +Peter Rainer,fresh,0317919,Christian Science Monitor,It's an expertly engineered popcorn movie -- hold the butter substitute -- but it also tries (and fails) to be a love story for the ages.,2006-05-04,155654854,Mission: Impossible III +Derek Elley,none,0109028,Variety,,2009-04-10,446196047,Cold Fever +,none,0109028,Time Out,,2006-06-24,446196047,Cold Fever +Stephen Holden,none,0109028,New York Times,,2004-08-30,446196047,Cold Fever +James Berardinelli,fresh,0109028,ReelViews,,2000-01-01,446196047,Cold Fever +Mick LaSalle,none,0109028,San Francisco Chronicle,,2000-01-01,446196047,Cold Fever +Susan Stark,fresh,0109028,Detroit News,,2000-01-01,446196047,Cold Fever +Roger Ebert,fresh,0109028,Chicago Sun-Times,,2000-01-01,446196047,Cold Fever +Lisa Schwarzbaum,rotten,0117071,Entertainment Weekly,,2011-09-07,416720691,Moll Flanders +Jeremy Gerard,none,0117071,Variety,,2009-03-26,416720691,Moll Flanders +Derek Adams,none,0117071,Time Out,,2006-06-24,416720691,Moll Flanders +,rotten,0117071,Globe and Mail,,2002-04-12,416720691,Moll Flanders +Peter Travers,none,0117071,Rolling Stone,,2001-05-12,416720691,Moll Flanders +Joe Baltake,none,0117071,Sacramento Bee,,2000-01-01,416720691,Moll Flanders +,none,0117071,Washington Post,,2000-01-01,416720691,Moll Flanders +Susan Stark,fresh,0117071,Detroit News,,2000-01-01,416720691,Moll Flanders +Roger Ebert,fresh,0117071,Chicago Sun-Times,,2000-01-01,416720691,Moll Flanders +Mick LaSalle,none,0117071,San Francisco Chronicle,,2000-01-01,416720691,Moll Flanders +Susan Wloszczyna,rotten,0117071,USA Today,"For a story about a London harlot's trials and tribulations, this is one unsexy, drawn-out dirge with only a few smirking moments as relief.",2000-01-01,416720691,Moll Flanders +Stephen Holden,none,0117071,New York Times,,2000-01-01,416720691,Moll Flanders +James Berardinelli,fresh,0117071,ReelViews,,2000-01-01,416720691,Moll Flanders +,rotten,0117071,Entertainment Weekly,,1996-06-14,416720691,Moll Flanders +Geoff Andrew,none,0112257,Time Out,,2007-08-16,770676644,"301, 302" +Daniel M. Kimmel,rotten,0112257,Variety,This feminist horror story from Korea is sluggishly paced and confusingly told with flashbacks within flashbacks.,2005-04-29,770676644,"301, 302" +Kevin Thomas,none,0112257,Los Angeles Times,,2001-02-14,770676644,"301, 302" +Peter Stack,none,0112257,San Francisco Chronicle,,2000-01-01,770676644,"301, 302" +,none,0116136,Variety,,2012-02-23,11684,DragonHeart +Todd McCarthy,none,0116136,Variety,,2009-03-26,11684,DragonHeart +,none,0116136,Time Out,,2006-01-26,11684,DragonHeart +Peter Stack,none,0116136,San Francisco Chronicle,,2002-06-18,11684,DragonHeart +Peter Travers,none,0116136,Rolling Stone,,2001-05-12,11684,DragonHeart +Kenneth Turan,none,0116136,Los Angeles Times,,2001-02-14,11684,DragonHeart +Susan Stark,fresh,0116136,Detroit News,,2000-01-01,11684,DragonHeart +Joe Baltake,none,0116136,Sacramento Bee,,2000-01-01,11684,DragonHeart +Roger Ebert,fresh,0116136,Chicago Sun-Times,,2000-01-01,11684,DragonHeart +James Berardinelli,rotten,0116136,ReelViews,,2000-01-01,11684,DragonHeart +Mike Clark,rotten,0116136,USA Today,This mildly engaging castle-storming adventure is best pegged as a family comedy.,2000-01-01,11684,DragonHeart +,none,0116136,Washington Post,,2000-01-01,11684,DragonHeart +Janet Maslin,none,0116136,New York Times,,2000-01-01,11684,DragonHeart +,fresh,0116136,Entertainment Weekly,,1996-05-31,11684,DragonHeart +Richard Schickel,rotten,0083511,TIME Magazine,"Neither jokes nor fast, flashy action can completely distract audiences from the failure to establish an authentic, rather than a purely conventional connection between Nolte and Murphy.",2009-06-06,13379,48 Hrs. +Dave Kehr,fresh,0083511,Chicago Reader,"All in all, a superior genre piece, if not the height of Hill's artistry.",2007-03-01,13379,48 Hrs. +,fresh,0083511,Time Out,"A down-the-line thriller, plain, fast and efficient.",2006-01-26,13379,48 Hrs. +Roger Ebert,fresh,0083511,Chicago Sun-Times,"The movie's story is nothing to write home about. It's pretty routine. What makes the movie special is how it's made. Nolte and Murphy are good, and their dialogue is good, too -- quirky and funny.",2004-10-23,13379,48 Hrs. +Janet Maslin,fresh,0083511,New York Times,"[It] is more memorable for its characters than for its high style, more a series of energetic scenes than a collection of handsome imagery. It has life, ferocity and humor in place of icy, stylized elegance, and that seems more than a fair trade.",2004-08-30,13379,48 Hrs. +Dave Calhoun,fresh,0054189,Time Out,"It's Delon -- impossibly beautiful, impossible to read, cold, cool -- who steals the film.",2013-08-27,11689,Plein soleil +Lisa Schwarzbaum,fresh,0054189,Entertainment Weekly,,2011-09-07,11689,Plein soleil +Derek Adams,none,0054189,Time Out,,2006-01-26,11689,Plein soleil +Eric Brace,none,0054189,Washington Post,,2002-01-22,11689,Plein soleil +Kevin Thomas,none,0054189,Los Angeles Times,,2001-02-14,11689,Plein soleil +Roger Ebert,fresh,0054189,Chicago Sun-Times,,2000-01-01,11689,Plein soleil +Joe Baltake,none,0054189,Sacramento Bee,,2000-01-01,11689,Plein soleil +James Berardinelli,fresh,0054189,ReelViews,,2000-01-01,11689,Plein soleil +Mike Clark,fresh,0054189,USA Today,Rene Clement's subversive direction makes us root for Delon to pull off a tricky tightrope disguise as suspicious police pursue him from hotel to apartment and town to town.,2000-01-01,11689,Plein soleil +Edward Guthmann,none,0054189,San Francisco Chronicle,,2000-01-01,11689,Plein soleil +,fresh,0054189,Entertainment Weekly,,1996-06-28,11689,Plein soleil +Lisa Schwarzbaum,rotten,0426931,Entertainment Weekly,,2011-09-07,770413356,August Rush +Hank Sartin,rotten,0426931,Time Out New York,,2008-01-18,770413356,August Rush +Jennifer Preyss,fresh,0426931,Atlanta Journal-Constitution,"However predictable, a good ol' fashioned happy ending is always welcome. But bring a box of tissues: A good cry is to be expected as well.",2007-12-01,770413356,August Rush +Richard Roeper,rotten,0426931,Ebert & Roeper,"Even the final few moments, which should have us choking up, seemed hurried and shot from the wrong angles.",2007-11-27,770413356,August Rush +,none,0426931,St. Louis Post-Dispatch,,2007-11-24,770413356,August Rush +Wally Hammond,fresh,0426931,Time Out,This inspirational drama gets three stars for oddity value alone.,2007-11-22,770413356,August Rush +Claudia Puig,fresh,0426931,USA Today,"August Rush will not be for everyone, but it works if you surrender to its lilting and unabashedly sentimental tale of evocative music and visual poetry.",2007-11-22,770413356,August Rush +Geoff Pevere,rotten,0426931,Toronto Star,Exuberantly bad and strenuously preposterous.,2007-11-21,770413356,August Rush +Desson Thomson,rotten,0426931,Washington Post,"Intended as a fuzzy family fable, August plays more to the gag reflex than to the heart.",2007-11-21,770413356,August Rush +Tom Keogh,fresh,0426931,Seattle Times,"If it isn't brilliant cinema, it's honest and powerful.",2007-11-21,770413356,August Rush +Pam Grady,rotten,0426931,San Francisco Chronicle,[An] inane musical melodrama.,2007-11-21,770413356,August Rush +Elizabeth Weitzman,rotten,0426931,New York Daily News,"It would be nice to say this predictable fantasy has such a big heart, we can forgive its excesses. But director Kirsten Sheridan overplays nearly every already-corny scene.",2007-11-21,770413356,August Rush +Carina Chocano,rotten,0426931,Los Angeles Times,August Rush feels like the cinematic equivalent of being stuffed with fruitcake and doused with a gallon of egg nog.,2007-11-21,770413356,August Rush +Amy Biancolli,fresh,0426931,Houston Chronicle,"The goal is to drive mothers everywhere insane with the urge to rescue him and brush his hair (or the other way around), and in my case it worked.",2007-11-21,770413356,August Rush +Jennie Punter,rotten,0426931,Globe and Mail,It's hard to believe in the magical power of music to heal and connect lost souls when the tunes are lame.,2007-11-21,770413356,August Rush +Terry Lawson,rotten,0426931,Detroit Free Press,Director Kirsten Sheridan has no interest in keeping August Rush tethered to reality or toning down the sentimentality.,2007-11-21,770413356,August Rush +Peter Rainer,rotten,0426931,Christian Science Monitor,"It tries very hard to be fanciful, lyrical, sentimental, magical, rapturous, romantic, heartwarming, tear-jerking and inspiring. The result, however, is a goulash of half-baked bathos.",2007-11-21,770413356,August Rush +Roger Ebert,fresh,0426931,Chicago Sun-Times,"I dislike sentimentality where it doesn't belong, but there's something brave about the way August Rush declares itself and goes all the way with coincidence, melodrama and skillful tear-jerking.",2007-11-21,770413356,August Rush +Andrea Gronvall,rotten,0426931,Chicago Reader,An exercise in dissonance.,2007-11-21,770413356,August Rush +Wesley Morris,rotten,0426931,Boston Globe,"If August Rush is a fairy tale, it's an excruciatingly, sometimes hilariously oblivious one.",2007-11-21,770413356,August Rush +Owen Gleiberman,fresh,0116683,Entertainment Weekly,"At its lyrical best, James and the Giant Peach, an adaptation of Roald Dahl's 1961 children's classic, evokes the casual enchantment of a book that, for many kids (including me), cast the spell of a goofily blissed-out mirage.",2011-09-07,10249,James and the Giant Peach +Susan Stark,fresh,0116683,Detroit News,,2008-10-18,10249,James and the Giant Peach +Richard Corliss,fresh,0116683,TIME Magazine,We fully anticipate the wrath of several generations of possessive children when we declare that the new Disney film of James and the Giant Peach is an improvement on Roald Dahl's 1961 backyard fantasy.,2008-09-03,10249,James and the Giant Peach +Jeremy Gerard,fresh,0116683,Variety,An extraordinary achievement.,2008-09-03,10249,James and the Giant Peach +Hal Hinson,fresh,0116683,Washington Post,The latest in an impressive string of first-rate movies for kids.,2008-09-03,10249,James and the Giant Peach +Wally Hammond,fresh,0116683,Time Out,"Despite a lightness of plot, it most beautifully captures the book's free-floating, fantastic sense of adventure and wonder.",2006-06-24,10249,James and the Giant Peach +Peter Stack,fresh,0116683,San Francisco Chronicle,"James and the Giant Peach is frequently so alluring that viewers may feel the urge to get lost in the picture's curious shadings, intricate merriment and fantastical atmosphere.",2002-06-18,10249,James and the Giant Peach +Kenneth Turan,rotten,0116683,Los Angeles Times,"In general the magic as well as the heart of Roald Dahl's novel has remained stubbornly on the page, leaving us with this overly mechanical copy, as appetizing as a once-flavorful peach that's been in cold storage for far too long.",2001-02-14,10249,James and the Giant Peach +James Berardinelli,fresh,0116683,ReelViews,"This weird story has been transformed into a playful, visually arresting experience with more than a few allusions to The Wizard of Oz.",2000-01-01,10249,James and the Giant Peach +Desson Thomson,fresh,0116683,Washington Post,It's ripe to bursting with visual effects a heady combination of stop-motion and computer-generated imagery.,2000-01-01,10249,James and the Giant Peach +Janet Maslin,fresh,0116683,New York Times,"James and the Giant Peach, the latest animated film from Disney, is a technological marvel, arch and innovative with a daringly offbeat visual conception. But it's also a strenuously artful film with a macabre edge that may scare small children.",2000-01-01,10249,James and the Giant Peach +Susan Wloszczyna,fresh,0116683,USA Today,A stunner with a breathtaking array of eye-teasers.,2000-01-01,10249,James and the Giant Peach +Roger Ebert,fresh,0116683,Chicago Sun-Times,"It will, I think, entertain kids for whom stop-motion animation is the last thing they're thinking about.",2000-01-01,10249,James and the Giant Peach +Owen Gleiberman,fresh,0116287,Entertainment Weekly,,2011-09-07,13560,Fear +,none,0116287,Time Out,,2006-01-26,13560,Fear +Jack Mathews,none,0116287,Los Angeles Times,,2001-02-14,13560,Fear +Susan Stark,rotten,0116287,Detroit News,,2000-01-01,13560,Fear +Stephen Holden,none,0116287,New York Times,,2000-01-01,13560,Fear +Susan Wloszczyna,rotten,0116287,USA Today,"For a while, the cast is appealing enough, and the design is House Beautiful enough, to camouflage the Fatal flaws that turn the second half into an overblown, predictable snicker-fest.",2000-01-01,13560,Fear +Mick LaSalle,none,0116287,San Francisco Chronicle,,2000-01-01,13560,Fear +James Berardinelli,rotten,0116287,ReelViews,,2000-01-01,13560,Fear +Hal Hinson,none,0116287,Washington Post,,2000-01-01,13560,Fear +,fresh,0116287,Entertainment Weekly,,1996-04-12,13560,Fear +Owen Gleiberman,rotten,0116768,Entertainment Weekly,,2011-09-07,13425,Kids in the Hall: Brain Candy +Leonard Klady,fresh,0116768,Variety,The ensemble is assured and adroitly gets the gags across without telegraphing punch lines.,2008-05-19,13425,Kids in the Hall: Brain Candy +David Ansen,fresh,0116768,Newsweek,"A twisted comedy for twisted times, this movie made me happy. Go figure.",2008-03-31,13425,Kids in the Hall: Brain Candy +Geoff Andrew,rotten,0116768,Time Out,A quintet of Canadian TV comedians hit the cinema screen with a splat.,2006-02-09,13425,Kids in the Hall: Brain Candy +Edward Guthmann,fresh,0116768,San Francisco Chronicle,"A splendid showcase for their diverse, frisky talents.",2002-06-18,13425,Kids in the Hall: Brain Candy +Rita Kempley,rotten,0116768,Washington Post,[A] shrill and slovenly opus.,2000-01-01,13425,Kids in the Hall: Brain Candy +Janet Maslin,rotten,0116768,New York Times,"Isn't anything more than a sloppy showcase for the group's costume-changing tricks, but sometimes its sheer chutzpah can be amusing.",2000-01-01,13425,Kids in the Hall: Brain Candy +Andy Seiler,rotten,0116768,USA Today,Some of this is very funny; much of it isn't.,2000-01-01,13425,Kids in the Hall: Brain Candy +Susan Stark,rotten,0116768,Detroit News,,2000-01-01,13425,Kids in the Hall: Brain Candy +Roger Ebert,rotten,0116768,Chicago Sun-Times,"Reader, I did not laugh.",2000-01-01,13425,Kids in the Hall: Brain Candy +,rotten,0116768,Entertainment Weekly,,1996-04-12,13425,Kids in the Hall: Brain Candy +Owen Gleiberman,rotten,0116269,Entertainment Weekly,,2011-09-07,16092,Faithful +Joe Leydon,none,0116269,Variety,,2008-08-06,16092,Faithful +Janet Maslin,none,0116269,New York Times,,2003-05-20,16092,Faithful +Peter Stack,none,0116269,San Francisco Chronicle,,2002-06-18,16092,Faithful +Jack Mathews,none,0116269,Los Angeles Times,,2001-02-14,16092,Faithful +Mike Clark,rotten,0116269,USA Today,"If I had Diabolique and Faithful in theaters simultaneously, I'd hire a hit man to take myself out.",2000-01-01,16092,Faithful +James Berardinelli,fresh,0116269,ReelViews,,2000-01-01,16092,Faithful +Joe Baltake,none,0116269,Sacramento Bee,,2000-01-01,16092,Faithful +Roger Ebert,rotten,0116269,Chicago Sun-Times,,2000-01-01,16092,Faithful +Susan Stark,rotten,0116269,Detroit News,,2000-01-01,16092,Faithful +,none,0116269,Washington Post,,2000-01-01,16092,Faithful +,rotten,0116269,Entertainment Weekly,,1996-04-05,16092,Faithful +,none,0114787,Hollywood Reporter,,2010-05-20,18629,Underground +Deborah Young,none,0114787,Variety,,2009-03-26,18629,Underground +Geoff Andrew,none,0114787,Time Out,,2006-02-09,18629,Underground +Kevin Thomas,fresh,0114787,Los Angeles Times,"A sprawling, rowdy, vital film laced with both outrageous absurdist dark humor and unspeakable pain, suffering and injustice.",2001-02-14,18629,Underground +Janet Maslin,fresh,0114787,New York Times,"Feverish, whimsical allegory elevated by moments of brilliant clarity.",2000-01-01,18629,Underground +Joe Baltake,fresh,0114787,Sacramento Bee,"For anyone who's an aficionado of film, this is pure, unadulterated bliss.",2000-01-01,18629,Underground +Jeff Millar,fresh,0114787,Houston Chronicle,The film can be both frenetic and strained. But it also has has a great deal of power and can be quite haunting.,2000-01-01,18629,Underground +Geoff Andrew,none,0113720,Time Out,,2006-06-24,19435,Lust och fägring stor +,none,0113720,Los Angeles Times,,2001-11-13,19435,Lust och fägring stor +,fresh,0048473,TIME Magazine,"It is a pastoral poem dappled with the play of brilliant images and strong, dark feelings, a luminous revelation of Indian life in language that all the world can understand.",2011-10-17,20091,Pather Panchali +Jonathan Rosenbaum,fresh,0048473,Chicago Reader,Satyajit Ray's beautiful first feature.,2007-10-24,20091,Pather Panchali +Variety Staff,fresh,0048473,Variety,"Film justly won the 'most human document award' at the 1956 Cannes Film Fest, unveiling a mature film talent in director Satyajit Ray.",2007-10-24,20091,Pather Panchali +Geoff Andrew,fresh,0048473,Time Out,"A masterpiece, inarguably.",2006-06-24,20091,Pather Panchali +Bosley Crowther,fresh,0048473,New York Times,There are lovely little threads in the strange fabric. It's a film that takes patience to be enjoyed.,2003-05-20,20091,Pather Panchali +Roger Ebert,fresh,0048473,Chicago Sun-Times,"The great, sad, gentle sweep of The Apu Trilogy remains in the mind of the moviegoer as a promise of what film can be.",2001-03-21,20091,Pather Panchali +Edward Guthmann,fresh,0048473,San Francisco Chronicle,One of the legendary debuts in the history of film -- deservedly so.,2000-01-01,20091,Pather Panchali +James Berardinelli,fresh,0048473,ReelViews,"This is the kind of motion picture that will stay with you for hours, or perhaps even days, after you've left the theater, and that's a rare characteristic for any movie.",2000-01-01,20091,Pather Panchali +,fresh,0052572,TIME Magazine,"The World of Apu completes, in alternations of suffering and joy, one of the most vital and abundant movies ever made.",2012-08-14,770674866,Apur Sansar +,fresh,0052572,Time Out,"Great acting, remarkable use of locations, a humanistic ethos that's both wise and wary.",2012-08-07,770674866,Apur Sansar +Variety Staff,fresh,0052572,Variety,"Director Satyajit Ray, with greater technical means, makes the truth of his relationships and the revelation of India the main trumps of the film. Wit, tenderness and intrinsic human revelations illuminate this unusual film.",2007-10-24,770674866,Apur Sansar +Jonathan Rosenbaum,fresh,0052572,Chicago Reader,"Though the rhythm of the storytelling is choppy and Apu himself seems incompletely realized, the first appearance of the remarkable Sharmila Tagore as his well-to-do bride upgrades the film's middle section.",2007-10-24,770674866,Apur Sansar +Bosley Crowther,fresh,0052572,New York Times,An impressive capstone is put not only upon a touching human drama but also upon the development of a genuine artist's skill.,2003-05-20,770674866,Apur Sansar +Roger Ebert,fresh,0052572,Chicago Sun-Times,What we sense all through The Apu Trilogy is a different kind of life than we are used to.,2001-03-21,770674866,Apur Sansar +Edward Guthmann,fresh,0052572,San Francisco Chronicle,"The Apu Trilogy, 36 years after its completion, remains one of the screen's great gifts.",2000-01-01,770674866,Apur Sansar +James Berardinelli,fresh,0052572,ReelViews,"The 'Apu Trilogy' is a true masterpiece, and The World of Apu is its crown jewel.",2000-01-01,770674866,Apur Sansar +Owen Gleiberman,fresh,0117128,Entertainment Weekly,,2011-09-07,12431,Mystery Science Theater 3000: The Movie +Todd McCarthy,fresh,0117128,Variety,"[The wisecracks], more often than not, don't go over. But those that do still add up to lotsa laughs, and the sheer weight of them eventually builds an atmosphere of mild lunacy that it's useless to resist.",2008-05-20,12431,Mystery Science Theater 3000: The Movie +John F. Kelly,fresh,0117128,Washington Post,"So, how does movie differ from TV show? The answer is, thankfully, not a lot.",2007-06-05,12431,Mystery Science Theater 3000: The Movie +Kenneth Turan,fresh,0117128,Los Angeles Times,"Helping to make these pleasantries funny is their spur-of-the-moment quality, the same quick spontaneity that characterizes chance remarks overheard at raucous movie houses. Capturing that bright and unexpected quality is what the MST3K crew does best.",2001-02-14,12431,Mystery Science Theater 3000: The Movie +Susan Stark,rotten,0117128,Detroit News,,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Peter Stack,rotten,0117128,San Francisco Chronicle,"[It's] is a tough call to recommend for everyone. But for a goofy time laughing at stupid comedy with otherwise intelligent people, it might be just the ticket.",2000-01-01,12431,Mystery Science Theater 3000: The Movie +James Berardinelli,rotten,0117128,ReelViews,I guess there are some concepts that don't excel in the translation from the small screen to the big one.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Mary Elizabeth Williams,fresh,0117128,Salon.com,The illusion that it's just a bunch of wiseguys making fun of a movie is what prevails. It's a pretty impressive special effect.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Janet Maslin,fresh,0117128,New York Times,One of the film's more likable aspects is its certainty that nothing's sacred.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Susan Wloszczyna,fresh,0117128,USA Today,"From the opening spoof of 2001: A Space Odyssey to the end-credit yuks, MST3K:TM seizes your funny bone like a rabid mongoose and never lets go.",2000-01-01,12431,Mystery Science Theater 3000: The Movie +Roger Ebert,fresh,0117128,Chicago Sun-Times,Part of the appeal of the program is in the wisecracking. But the movies themselves are also crucial.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Jonathan Rosenbaum,rotten,0117128,Chicago Reader,They've hit a fatal snag. The feature they selected happens to be a pretty good one -- certainly much better than Mystery Science Theater 3000: The Movie by just about any criterion one could think of.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +Rita Kempley,fresh,0117128,Washington Post,A flat-out hilarious celebration of B-moviemaking mastery.,2000-01-01,12431,Mystery Science Theater 3000: The Movie +,fresh,0117128,Entertainment Weekly,,1996-04-19,12431,Mystery Science Theater 3000: The Movie +Lisa Schwarzbaum,rotten,0117705,Entertainment Weekly,,2011-09-07,12491,Space Jam +,none,0117705,Washington Post,,2008-10-18,12491,Space Jam +Jonathan Rosenbaum,fresh,0117705,Chicago Reader,"Simpler and cruder than Who Framed Roger Rabbit in terms of story and technique, this is still a great deal of fun, confirming that Jordan is every bit as mythological a creature as Daffy Duck or Yosemite Sam.",2008-03-24,12491,Space Jam +Todd McCarthy,fresh,0117705,Variety,"Cute, rambunctious, generally amusing rather than outright funny, this clever mix of live action, highlighted by the unequaled skills of basketball superstar Michael Jordan, and animated Looney Tunes antics will be a must-see for kids.",2008-03-24,12491,Space Jam +Rita Kempley,rotten,0117705,Washington Post,Sufferin' succotash!,2008-03-24,12491,Space Jam +,rotten,0117705,Time Out,"Visually, it's a mess: the attempts to blend 2- and 3-D animation with live-action and computer-generated images produce scenes that are fuzzier than the storyline.",2006-06-24,12491,Space Jam +Janet Maslin,rotten,0117705,New York Times,"This film was made very quickly by animation standards, and the haste shows.",2003-05-20,12491,Space Jam +Peter Stack,rotten,0117705,San Francisco Chronicle,"It's the first time either Jordan or Bugs has had a starring role on the big screen. It's gimmicky Saturday-morning cartoon wackiness in your face -- funny, but brain-deadening.",2002-06-18,12491,Space Jam +Kevin Thomas,fresh,0117705,Los Angeles Times,"Space Jam is no Who Framed Roger Rabbit, but it works well enough.",2001-02-14,12491,Space Jam +James Berardinelli,rotten,0117705,ReelViews,"This movie, which could just as easily be called The Michael Jordan Worship Show, plays like a 90-minute homage to His Airness, selling his every virtue.",2000-01-01,12491,Space Jam +Roger Ebert,fresh,0117705,Chicago Sun-Times,"It's an inspired way to use, and kid, Jordan's image while at the same time updating Bugs Bunny & Company to doing battle in the multizillion-dollar animation sweepstakes.",2000-01-01,12491,Space Jam +Bruce Westbrook,rotten,0117705,Houston Chronicle,"In basketball terms, Space Jam is more akin to the 'garbage time' that concludes lopsided games, when reckless playing is no substitute for the real thing.",2000-01-01,12491,Space Jam +Mike Clark,rotten,0117705,USA Today,The movie's undermining flaw is its lack of screen magic (and first-rate cartoon gags) that Who Framed Roger Rabbit had throughout.,2000-01-01,12491,Space Jam +Milo Miles,rotten,0117705,Salon.com,The climactic game in Space Jam goes slack repeatedly.,2000-01-01,12491,Space Jam +Desson Thomson,fresh,0117705,Washington Post,"Jordan has immense likability, and his extraordinary talents need no further adulation.",2000-01-01,12491,Space Jam +Susan Stark,fresh,0117705,Detroit News,,2000-01-01,12491,Space Jam +,rotten,0117705,Entertainment Weekly,,1996-11-15,12491,Space Jam +Dave Kehr,rotten,0062711,Chicago Reader,The film is ugly on so many levels -- from art direction to human values -- that it's hard to know where to begin.,2007-04-17,10569,Barbarella +Variety Staff,rotten,0062711,Variety,"Despite a certain amount of production dash and polish and a few silly-funny lines of dialog, Barbarella isn't very much of a film.",2007-04-17,10569,Barbarella +,fresh,0062711,Time Out,"Terry Southern's dialogue occasionally sparkles, and the imaginative designs, as shot by Claude Renoir, look really splendid.",2006-01-26,10569,Barbarella +Renata Adler,rotten,0062711,New York Times,"Throughout the movie, there is the assumption that just mentioning a thing (sex, politics, religion) makes it funny and that mentioning it in some offensive context makes it funnier.",2005-05-09,10569,Barbarella +Colin Covert,fresh,0062711,Minneapolis Star Tribune,It's fun in a 'What were they smoking?' kind of way.,2004-06-10,10569,Barbarella +Edward Guthmann,fresh,0062711,San Francisco Chronicle,"Fonda looks sensational and glides through this romp like a dazed, ripe-to-the- touch innocent.",2000-01-01,10569,Barbarella +Todd McCarthy,none,0114307,Variety,,2009-03-26,133039473,The Run of the Country +Geoff Andrew,none,0114307,Time Out,,2006-06-24,133039473,The Run of the Country +Stephen Holden,none,0114307,New York Times,,2003-05-20,133039473,The Run of the Country +Kevin Thomas,none,0114307,Los Angeles Times,,2002-08-15,133039473,The Run of the Country +,none,0114307,Globe and Mail,,2002-04-12,133039473,The Run of the Country +Peter Travers,none,0114307,Rolling Stone,,2001-05-12,133039473,The Run of the Country +James Berardinelli,fresh,0114307,ReelViews,,2000-01-01,133039473,The Run of the Country +Peter Stack,none,0114307,San Francisco Chronicle,,2000-01-01,133039473,The Run of the Country +Roger Ebert,rotten,0114307,Chicago Sun-Times,,2000-01-01,133039473,The Run of the Country +Joe Baltake,none,0114307,Sacramento Bee,,2000-01-01,133039473,The Run of the Country +Hal Hinson,none,0114307,Washington Post,,2000-01-01,133039473,The Run of the Country +Desson Thomson,none,0114307,Washington Post,,2000-01-01,133039473,The Run of the Country +,none,0058898,Variety,,2009-03-26,19117,"Alphaville, une étrange aventure de Lemmy Caution" +Dave Kehr,fresh,0058898,Chicago Reader,"It remains an outstanding example of the filmmaker's power to transform an environment through the selection of detail: everything in it is familiar, but nothing is recognizable.",2007-05-29,19117,"Alphaville, une étrange aventure de Lemmy Caution" +Geoff Andrew,fresh,0058898,Time Out,"One of Godard's most sheerly enjoyable movies, a dazzling amalgam of film noir and science fiction.",2006-06-24,19117,"Alphaville, une étrange aventure de Lemmy Caution" +Bosley Crowther,rotten,0058898,New York Times,Mr. Godard's conclusion that love -- good old love -- conquers all is a curiously disappointing finish for such an initially promising film.,2005-05-09,19117,"Alphaville, une étrange aventure de Lemmy Caution" +,none,0082206,Time Out,,2006-02-09,136193957,Coup de torchon +Roger Ebert,rotten,0082206,Chicago Sun-Times,,2004-10-23,136193957,Coup de torchon +Janet Maslin,none,0082206,New York Times,,2004-08-30,136193957,Coup de torchon +Geoff Andrew,none,0111430,Time Out,,2007-08-16,770676158,Tigrero: A Film That Was Never Made +Caryn James,none,0111430,New York Times,,2003-05-20,770676158,Tigrero: A Film That Was Never Made +Jonathan Rosenbaum,none,0111430,Chicago Reader,,2000-01-01,770676158,Tigrero: A Film That Was Never Made +Jonathan Rosenbaum,none,0107727,Chicago Reader,,2000-01-01,21513,L'oeil de Vichy +Lisa Schwarzbaum,rotten,0113443,Entertainment Weekly,,2011-09-07,14142,It's My Party +Emanuel Levy,rotten,0113443,Variety,"This chronicle of a person with AIDS who decides to terminate his life while his faculties are still intact feels like a personal work, but it's all background detail, lacking a strong dramatic core",2006-12-15,14142,It's My Party +Geoff Andrew,none,0113443,Time Out,,2006-02-09,14142,It's My Party +Joe Baltake,none,0113443,Sacramento Bee,,2000-01-01,14142,It's My Party +Susan Stark,rotten,0113443,Detroit News,,2000-01-01,14142,It's My Party +Peter Stack,none,0113443,San Francisco Chronicle,,2000-01-01,14142,It's My Party +Andy Seiler,fresh,0113443,USA Today,"This Party has its funny, sad and awkward moments. But at the end, you'll be glad you went.",2000-01-01,14142,It's My Party +James Berardinelli,fresh,0113443,ReelViews,,2000-01-01,14142,It's My Party +Stephen Holden,none,0113443,New York Times,,2000-01-01,14142,It's My Party +Roger Ebert,fresh,0113443,Chicago Sun-Times,,2000-01-01,14142,It's My Party +,rotten,0113443,Entertainment Weekly,,1996-03-22,14142,It's My Party +,none,0109491,Time Out,,2006-06-24,12130,Country Life +Caryn James,none,0109491,New York Times,,2003-05-20,12130,Country Life +,none,0109491,Globe and Mail,,2002-04-12,12130,Country Life +Kenneth Turan,none,0109491,Los Angeles Times,,2001-02-13,12130,Country Life +Peter Stack,none,0109491,San Francisco Chronicle,,2000-01-01,12130,Country Life +Joe Baltake,none,0109491,Sacramento Bee,,2000-01-01,12130,Country Life +Roger Ebert,fresh,0109491,Chicago Sun-Times,,2000-01-01,12130,Country Life +Hal Hinson,none,0109491,Washington Post,,2000-01-01,12130,Country Life +James Berardinelli,fresh,0109491,ReelViews,,2000-01-01,12130,Country Life +Lisa Schwarzbaum,fresh,0114048,Entertainment Weekly,,2011-09-07,12021,Operation Dumbo Drop +Joe Leydon,none,0114048,Variety,,2009-03-26,12021,Operation Dumbo Drop +Janet Maslin,none,0114048,New York Times,,2003-05-20,12021,Operation Dumbo Drop +Peter Stack,none,0114048,San Francisco Chronicle,,2002-06-18,12021,Operation Dumbo Drop +Kevin Thomas,none,0114048,Los Angeles Times,,2001-02-13,12021,Operation Dumbo Drop +Hal Hinson,none,0114048,Washington Post,,2000-01-01,12021,Operation Dumbo Drop +Roger Ebert,rotten,0114048,Chicago Sun-Times,,2000-01-01,12021,Operation Dumbo Drop +Mike Clark,fresh,0114048,USA Today,"Photographed by the great Russell Boyd but looking drab and washed out for 108 minutes, the movie just gets by on heart and a conversation-stopping finale.",2000-01-01,12021,Operation Dumbo Drop +,fresh,0114048,Entertainment Weekly,,1995-07-28,12021,Operation Dumbo Drop +Leonard Klady,none,0111613,Variety,,2009-03-26,770675136,Das Versprechen +James Berardinelli,fresh,0111613,ReelViews,Director Margarethe von Trotta effortlessly weaves history and personal events into a tapestry full of emotion and irony.,2001-02-13,770675136,Das Versprechen +,none,0117104,Variety,,2012-02-23,11152,Mrs. Winterbourne +Rita Kempley,rotten,0117104,Washington Post,"For a Cinderella story, it's sorely without magic.",2009-08-03,11152,Mrs. Winterbourne +Brian Lowry,rotten,0117104,Variety,"The brazen sentimentality at work here -- while effective in the context of what some might call ""a chick flick""-- doesn't give the material much weight.",2008-06-20,11152,Mrs. Winterbourne +,rotten,0117104,Time Out,Lake is a rather chilly and distinctly unpersuasive presence.,2006-06-24,11152,Mrs. Winterbourne +James Berardinelli,rotten,0117104,ReelViews,"This film mistakes action for energy, ridiculous circumstances for comedy, and a mismatched male/female pairing for romance.",2000-01-01,11152,Mrs. Winterbourne +Mike Clark,rotten,0117104,USA Today,"A watered-down star vehicle for chat queen Ricki Lake, the comedy lite has been flicked on none too delicately by director Richard Benjamin.",2000-01-01,11152,Mrs. Winterbourne +Roger Ebert,rotten,0117104,Chicago Sun-Times,"This is more of a movie to see on video, on an empty night when you need something to hurl at the gloom.",2000-01-01,11152,Mrs. Winterbourne +Mick LaSalle,rotten,0117104,San Francisco Chronicle,A straight romantic comedy that depends on Lake's charm and acting ability to keep it afloat. The result is disaster.,2000-01-01,11152,Mrs. Winterbourne +Janet Maslin,rotten,0117104,New York Times,The plot remains joyless in its contrivances.,2000-01-01,11152,Mrs. Winterbourne +Susan Stark,rotten,0117104,Detroit News,,2000-01-01,11152,Mrs. Winterbourne +Suzanne Tobin,rotten,0117104,Washington Post,"Lake Goes From TV Talk to B Movie By Suzanne Tobin Washington Post Staff Writer April 19, 1996 In this case of mistaken identity, Ricki Lake's career takes a dubious step from trashy TV talk show to B movie.",2000-01-01,11152,Mrs. Winterbourne +,rotten,0117104,Entertainment Weekly,,1996-04-19,11152,Mrs. Winterbourne +Mark Caro,rotten,0117688,Chicago Tribune,These escapist showdown movies are only as good as their villains and heroes. The heavies here are more of those ubiquitous gung-ho military types who are due to be dishonorably discharged from further cinematic duty.,2013-05-28,12544,Solo +Doug Thomas,fresh,0117688,Seattle Times,"Here's a surprise tucked into the languishing days of summer movies. Arriving with hardly any attention is a satisfying, even fun, action picture about a futuristic soldier named Solo.",2013-05-28,12544,Solo +Desmond Ryan,rotten,0117688,Philadelphia Inquirer,Solo is at least instructive as a miscellany of action movie cliches in one neat and depressing package.,2013-05-28,12544,Solo +Leonard Klady,rotten,0117688,Variety,"The best one can say for Norberto Barba is that he directs a slick piece of goods. But no amount of fast cutting or tempo can disguise the material's simplistic, thoughtless nature.",2006-08-05,12544,Solo +,rotten,0117688,Globe and Mail,,2002-04-12,12544,Solo +Richard Harrington,rotten,0117688,Washington Post,"Since filmgoers are told early on that there is only one other super-cyborg prototype in the world, well, guess what the big climax is?",2002-01-22,12544,Solo +Kevin Thomas,rotten,0117688,Los Angeles Times,A lackluster action-adventure.,2001-02-14,12544,Solo +Susan Wloszczyna,rotten,0117688,USA Today,"Not one fight is memorable, and the set looks recycled from an Indiana Jones theme park.",2000-01-01,12544,Solo +Susan Stark,rotten,0117688,Detroit News,,2000-01-01,12544,Solo +Peter Stack,fresh,0117688,San Francisco Chronicle,"For what it is, a straightforward sci-fi action movie with an equally straightforward hero, Solo works.",2000-01-01,12544,Solo +Stephen Holden,rotten,0117688,New York Times,"As movie androids go, Solo is a softie, and that's his problem.",2000-01-01,12544,Solo +James Berardinelli,rotten,0117688,ReelViews,It's all painfully formulaic.,2000-01-01,12544,Solo +Bruce Fretts,rotten,0117688,Entertainment Weekly,Soloflex might be a better title.,1996-08-23,12544,Solo +Edward Guthmann,none,0109751,San Francisco Chronicle,,2000-01-01,770669578,Etz Hadomim Tafus +Stanley Kauffmann,none,0109751,The New Republic,,2000-01-01,770669578,Etz Hadomim Tafus +Stephen Holden,none,0109751,New York Times,,2000-01-01,770669578,Etz Hadomim Tafus +Leonard Klady,none,0117774,Variety,,2009-03-26,15509,The Substitute +Geoff Andrew,none,0117774,Time Out,,2006-06-24,15509,The Substitute +Susan Stark,rotten,0117774,Detroit News,,2002-03-13,15509,The Substitute +Kevin Thomas,fresh,0117774,Los Angeles Times,There's a sense of shrewd observation throughout The Substitute that makes it come alive and seem quite a few cuts above such usual genre fare.,2001-02-13,15509,The Substitute +James Berardinelli,rotten,0117774,ReelViews,"Aside from a lot of only moderately-satisfying violence, The Substitute comes across as rather lame.",2000-01-01,15509,The Substitute +Mick LaSalle,fresh,0117774,San Francisco Chronicle,Those who appreciate the irony of a killing machine turned loose on a pack of nasty students will find The Substitute a source of nonstop delight.,2000-01-01,15509,The Substitute +Roger Ebert,rotten,0117774,Chicago Sun-Times,"The title changes, the actors change, and the superficial details of the story change, but it is always about exactly the same thing: heavily armed men shooting at one another.",2000-01-01,15509,The Substitute +,none,0117774,Washington Post,,2000-01-01,15509,The Substitute +Stephen Holden,rotten,0117774,New York Times,The entire setup is too garish to be credible.,2000-01-01,15509,The Substitute +John Hartl,rotten,0117774,Film.com,"There's a certain amount of camp value to this over-the-top thriller, which might as well be called Rambo Goes to High School.",2000-01-01,15509,The Substitute +Keith Simanton,rotten,0117774,Film.com,"An angry, white, mercenary movie out to spill blood and beat its manly chest.",2000-01-01,15509,The Substitute +Lisa Schwarzbaum,fresh,0139668,Entertainment Weekly,,2011-09-07,14454,True Crime +Todd McCarthy,none,0139668,Variety,,2008-06-24,14454,True Crime +Geoff Andrew,none,0139668,Time Out,,2006-06-24,14454,True Crime +,none,0139668,Houston Chronicle,,2005-07-21,14454,True Crime +,rotten,0139668,Globe and Mail,,2003-04-25,14454,True Crime +Jeff Strickler,none,0139668,Minneapolis Star Tribune,,2002-11-06,14454,True Crime +Peter Travers,none,0139668,Rolling Stone,,2001-05-11,14454,True Crime +Kenneth Turan,none,0139668,Los Angeles Times,,2001-02-14,14454,True Crime +Susan Stark,fresh,0139668,Detroit News,,2000-01-01,14454,True Crime +Joe Baltake,none,0139668,Sacramento Bee,,2000-01-01,14454,True Crime +Edward Guthmann,fresh,0139668,San Francisco Chronicle,,2000-01-01,14454,True Crime +Roger Ebert,fresh,0139668,Chicago Sun-Times,,2000-01-01,14454,True Crime +Andrew O'Hehir,none,0139668,Salon.com,,2000-01-01,14454,True Crime +Paul Tatara,none,0139668,CNN.com,,2000-01-01,14454,True Crime +James Berardinelli,fresh,0139668,ReelViews,,2000-01-01,14454,True Crime +Stanley Kauffmann,none,0139668,The New Republic,,2000-01-01,14454,True Crime +J. Hoberman,none,0139668,Village Voice,,2000-01-01,14454,True Crime +Peter Rainer,none,0139668,New York Magazine,,2000-01-01,14454,True Crime +Janet Maslin,none,0139668,New York Times,,2000-01-01,14454,True Crime +,fresh,0139668,Entertainment Weekly,,1999-03-19,14454,True Crime +Derek Elley,none,0112604,Variety,,2009-03-26,21510,Butterfly Kiss +,none,0112604,Time Out,,2006-06-24,21510,Butterfly Kiss +Kevin Thomas,none,0112604,Los Angeles Times,,2002-08-15,21510,Butterfly Kiss +Laura Miller,none,0112604,Salon.com,,2000-01-01,21510,Butterfly Kiss +Stephen Holden,none,0112604,New York Times,,2000-01-01,21510,Butterfly Kiss +Edward Guthmann,none,0112604,San Francisco Chronicle,,2000-01-01,21510,Butterfly Kiss +Roger Ebert,fresh,0112604,Chicago Sun-Times,,2000-01-01,21510,Butterfly Kiss +Emanuel Levy,rotten,0116289,Variety,"Everything in and about Baigelman's debut is irritatingly derivative: second-hand plot, small-time characters, limited and movieish vision, and bad performances for Reeves and Diaz.",2006-07-01,14571,Feeling Minnesota +,none,0116289,Time Out,,2006-01-26,14571,Feeling Minnesota +Peter Travers,none,0116289,Rolling Stone,,2001-05-12,14571,Feeling Minnesota +Joe Baltake,none,0116289,Sacramento Bee,,2000-01-01,14571,Feeling Minnesota +James Berardinelli,rotten,0116289,ReelViews,,2000-01-01,14571,Feeling Minnesota +Janet Maslin,none,0116289,New York Times,,2000-01-01,14571,Feeling Minnesota +Susan Stark,rotten,0116289,Detroit News,,2000-01-01,14571,Feeling Minnesota +Roger Ebert,fresh,0116289,Chicago Sun-Times,,2000-01-01,14571,Feeling Minnesota +,none,0116289,Washington Post,,2000-01-01,14571,Feeling Minnesota +,none,0116289,Houston Chronicle,,2000-01-01,14571,Feeling Minnesota +Edward Guthmann,none,0116289,San Francisco Chronicle,,2000-01-01,14571,Feeling Minnesota +Stephen Holden,none,0109593,New York Times,,2004-08-30,16965,Delta of Venus +Kevin Thomas,none,0109593,Los Angeles Times,,2001-02-13,16965,Delta of Venus +,none,0109593,Houston Chronicle,,2000-01-01,16965,Delta of Venus +Edward Guthmann,none,0109593,San Francisco Chronicle,,2000-01-01,16965,Delta of Venus +Ray Bennett,rotten,0963743,Hollywood Reporter,"The film lacks the wit and drama that might pitch it beyond the target demographic, though judging from what makes the girls squirm in the film, it might not succeed even there.",2008-07-25,770685222,"Angus, Thongs and Perfect Snogging" +Derek Elley,fresh,0963743,Variety,A good-natured bundle of early-teen femme angst pitched squarely at the youngsters who've made Louise Rennison's books a hit both sides of the Pond.,2008-07-25,770685222,"Angus, Thongs and Perfect Snogging" +,none,0104046,Time Out,,2010-08-23,403902799,Daens +Joe Morgenstern,fresh,0119094,Wall Street Journal,"[A] gorgeously shot, repetitively violent, occasionally repellent, sometimes silly and consistently trashy fantasy.",2013-08-02,13172,Face/Off +Steven Rea,rotten,0119094,Philadelphia Inquirer,"For all its fiery explosions, Face/Off just kind of implodes.",2013-08-02,13172,Face/Off +Jay Boyar,fresh,0119094,Orlando Sentinel,"It's sick, slick and sensational.",2013-08-02,13172,Face/Off +Michael Wilmington,fresh,0119094,Chicago Tribune,"In Face/Off, Woo sweeps us away again, into a world of wild action, heroism, villainy and double faces that turn deadly.",2013-08-02,13172,Face/Off +David Edelstein,fresh,0119094,Slate,A knockout new thriller by John Woo.,2013-08-02,13172,Face/Off +Keith Simanton,fresh,0119094,Seattle Times,"Face/Off is a full-blooded, movie-going experience. It's 100 percent movie.",2013-08-02,13172,Face/Off +Gene Siskel,fresh,0119094,Chicago Tribune,Face/Off is the best action movie of the summer.,2013-08-02,13172,Face/Off +Stephen Hunter,fresh,0119094,Washington Post,"Almost indefensibly violent, the film is one of those whirligigs of wit, barbaric energy, blood spatters and firepower that will be adored by the morally retarded among us -- like me -- and loathed by the morally superior.",2013-08-02,13172,Face/Off +Lisa Schwarzbaum,fresh,0119094,Entertainment Weekly,Face/Off makes bad movies look worse and makes the making of good movies look like the most thrilling work in the world.,2011-09-07,13172,Face/Off +,fresh,0119094,Time Out,"Woo's poetic-kinetic style has evolved, if not to the point of abstraction, then to delirium: he makes a virtue of incredulity.",2006-01-26,13172,Face/Off +Rick Groen,fresh,0119094,Globe and Mail,John Woo's Face/Off puts the acting into action flick...,2002-04-12,13172,Face/Off +Peter Travers,fresh,0119094,Rolling Stone,Scenes of high-voltage action vie with wild hilarity as two guys with guns switch faces and identities.,2001-05-11,13172,Face/Off +Kenneth Turan,fresh,0119094,Los Angeles Times,"It's difficult to describe the jolt his films deliver when [Woo]'s on, and he is on with a vengeance here.",2001-02-14,13172,Face/Off +Todd McCarthy,fresh,0119094,Variety,Watching John Travolta and Nicolas Cage square off and literally exchange roles brings back the old-fashioned pleasure of astutely judged movie star pairings in a major way.,2001-02-14,13172,Face/Off +Susan Stark,fresh,0119094,Detroit News,,2000-01-01,13172,Face/Off +Janet Maslin,fresh,0119094,New York Times,Here comes a mega-movie that actually delivers what mega-movies promise...,2000-01-01,13172,Face/Off +Roger Ebert,fresh,0119094,Chicago Sun-Times,"You see what thickets this plot constructs; it's as if Travolta adds the spin courtesy of Cage's personality, while Cage mellows in the direction of Travolta.",2000-01-01,13172,Face/Off +Joe Baltake,fresh,0119094,Sacramento Bee,"...it is as elegantly made as it is violent, mating movie mayhem with bits of poetry, opera, psychology and the abstract.",2000-01-01,13172,Face/Off +Jonathan Rosenbaum,fresh,0119094,Chicago Reader,"A dizzying, beautiful ride.",2000-01-01,13172,Face/Off +Jeff Millar,fresh,0119094,Houston Chronicle,"If there has been a major Hollywood release with a higher body count, I don't remember it.",2000-01-01,13172,Face/Off +David Fear,fresh,1078188,Time Out,,2011-11-17,770677844,Boy A +Owen Gleiberman,rotten,1078188,Entertainment Weekly,,2011-09-07,770677844,Boy A +Amy Biancolli,fresh,1078188,Houston Chronicle,It makes us feel sympathy for the devil.,2008-09-12,770677844,Boy A +Christy DeSmith,fresh,1078188,Minneapolis Star Tribune,"Director John Crowley, a veteran Irish theater director now working in film, is deliberate with every last element of his film.",2008-09-05,770677844,Boy A +Kamal Al-Solaylee,fresh,1078188,Globe and Mail,"Even its structurally weaker moments give Garfield an opportunity to expand on Jack's physical and mental dislocation. Given Boy A's final floating reel, it's an anchoring performance in every sense of the word.",2008-08-29,770677844,Boy A +J. R. Jones,fresh,1078188,Chicago Reader,The movie is taut with suspense but culminates in wise resignation as the hero comes to understand he's running from a part of himself.,2008-08-12,770677844,Boy A +Stanley Kauffmann,fresh,1078188,The New Republic,Crowley gets a remarkable performance from Andrew Garfield: his Jack is a person who carries guilt with him even when he is trying to override it.,2008-08-11,770677844,Boy A +John Hartl,fresh,1078188,Seattle Times,"Boy A is one of those rare movies that takes the idea of rehabilitation seriously. In the end, it may present a worst-case scenario, but it does so with unusual depth and conviction.",2008-08-08,770677844,Boy A +Ruthe Stein,fresh,1078188,San Francisco Chronicle,"In tandem, the director and screenwriter build up a palpable suspense. Boy A will rivet you while raising issues about forgiveness and just who deserves it.",2008-08-08,770677844,Boy A +Carrie Rickey,fresh,1078188,Philadelphia Inquirer,"Along with Garfield and the splendid Scottish actor Mullan, Crowley brings great tact to this bruising saga of atonement and moral regeneration. Though a bad seed can bring forth good fruit, will others want to pick it?",2008-08-08,770677844,Boy A +Tom Maurstad,fresh,1078188,Dallas Morning News,"There are some gaps in the movie's reality, and some O. Henry-like contrivances, but the masterful trick Boy A plays on viewers is to get them to care before giving them reasons not to.",2008-08-08,770677844,Boy A +Wesley Morris,rotten,1078188,Boston Globe,We're introduced to more string-pulling symbolism than a movie this inherently sad ever needs. It's too much.,2008-08-08,770677844,Boy A +Roger Ebert,fresh,1078188,Chicago Sun-Times,"Mullen and Garfield fit well together -- both have faces you like on first sight, both have charm, both have warmth.",2008-08-08,770677844,Boy A +Michael Phillips,fresh,1078188,Chicago Tribune,"Although the screenplay tips our sympathies wholly in the young man's direction, it's cleverly structured to reveal the particulars of the long-ago crime, and what led up to it, in flashback.",2008-08-07,770677844,Boy A +Richard Roeper,fresh,1078188,Ebert & Roeper,Bleak but expertly rendered.,2008-07-28,770677844,Boy A +Joe Morgenstern,fresh,1078188,Wall Street Journal,"A small, huge film about the harsh realities of rehabilitation, and the shimmering possibility of redemption.",2008-07-25,770677844,Boy A +Joe Neumaier,fresh,1078188,New York Daily News,"If Hitchcock had done a coming-of-age drama, it might have resembled this haunting, nervous, sad movie.",2008-07-25,770677844,Boy A +Gary Goldstein,fresh,1078188,Los Angeles Times,"An absorbing, finely nuanced morality tale.",2008-07-25,770677844,Boy A +David Fear,fresh,1078188,Time Out New York,"Wisely, John Crowley embeds the mulling of social issues within a character study, albeit one that stylistically straddles Loachian realism and lad-movie flashiness.",2008-07-24,770677844,Boy A +Ernest Hardy,fresh,1078188,L.A. Weekly,"Crowley, his cast and the script constantly reveal new layers to the characters, preventing simple labels like 'hero' or 'villain.' These people are all cringingly human.",2008-07-24,770677844,Boy A +Lisa Schwarzbaum,fresh,0177789,Entertainment Weekly,,2011-09-07,10245,Galaxy Quest +Trevor Johnston,fresh,0177789,Time Out,"Effects and production design are splendidly integrated into the overall enterprise, which is even more enjoyable for being so unexpected.",2006-06-24,10245,Galaxy Quest +Jay Carr,fresh,0177789,Boston Globe,,2002-06-18,10245,Galaxy Quest +Kevin Courrier,fresh,0177789,Globe and Mail,Boldly going where few parodies have gone before.,2002-03-19,10245,Galaxy Quest +Peter Rainer,fresh,0177789,New York Magazine,The drolleries take precedence over the special effects.,2000-01-01,10245,Galaxy Quest +Stephanie Zacharek,fresh,0177789,Salon.com,A sweet-spirited and clever film for anyone who's ever been a sci-fi nerd -- or laughed at one.,2000-01-01,10245,Galaxy Quest +Cody Clark,fresh,0177789,Mr. Showbiz,The movie's cast is delightful.,2000-01-01,10245,Galaxy Quest +Lawrence Van Gelder,fresh,0177789,New York Times,An amiable comedy that simultaneously manages to spoof these popular futuristic space adventures and replicate the very elements that have made them so durable.,2000-01-01,10245,Galaxy Quest +Mark Caro,rotten,0177789,Chicago Tribune,It's a clever premise but not one that lends itself to an hour and 42 minutes of high jinks.,2000-01-01,10245,Galaxy Quest +James Berardinelli,fresh,0177789,ReelViews,"In many ways, Galaxy Quest is more fantasy than science fiction. It's a lighthearted romp.",2000-01-01,10245,Galaxy Quest +Mick LaSalle,fresh,0177789,San Francisco Chronicle,"This movie is more than one joke or one idea. It's a thoroughly satisfying comedy -- and a respectable space adventure, as well.",2000-01-01,10245,Galaxy Quest +Joe Baltake,rotten,0177789,Sacramento Bee,"It's a film that falls far short of its potential and, during its dull moments, you can't help contemplating its assorted missed opportunities.",2000-01-01,10245,Galaxy Quest +Sean Means,fresh,0177789,Film.com,"For fans of science fiction Galaxy Quest is a sweet, funny valentine to their obsessiveness.",2000-01-01,10245,Galaxy Quest +John Anderson,fresh,0177789,Newsday,Spaceballs meets the Six Clueless Samurai.,2000-01-01,10245,Galaxy Quest +Jeff Millar,fresh,0177789,Houston Chronicle,"The film's warm-fuzzies are formulaic and not at all genuine. The humor, though, is clever and keenly satiric without being mean-spirited.",2000-01-01,10245,Galaxy Quest +Roger Ebert,fresh,0177789,At the Movies,The movie's humor works best when the illogic of the TV show gets in the way.,2000-01-01,10245,Galaxy Quest +Bob Longino,fresh,0177789,Atlanta Journal-Constitution,"It'll beam you way, way up.",2000-01-01,10245,Galaxy Quest +Tom Long,fresh,0177789,Detroit News,"A big, dumb piece of fun that will do little for your heart or intellect, but will undoubtedly leave you laughing.",2000-01-01,10245,Galaxy Quest +Kevin Thomas,fresh,0177789,Los Angeles Times,"Fast, light and funny, Galaxy Quest has a wide, generation - spanning appeal -- and you don't have to be a die-hard Trekkie to enjoy it.",2000-01-01,10245,Galaxy Quest +Jonathan Foreman,fresh,0177789,New York Post,"Affectionate, often clever and unflaggingly funny!",2000-01-01,10245,Galaxy Quest +Leonard Klady,none,0117784,Variety,,2009-03-26,15147,Sunset Park +Susan Stark,rotten,0117784,Detroit News,,2000-01-01,15147,Sunset Park +,none,0117784,Washington Post,,2000-01-01,15147,Sunset Park +Roger Ebert,rotten,0117784,Chicago Sun-Times,,2000-01-01,15147,Sunset Park +Susan Wloszczyna,rotten,0117784,USA Today,"The camera fails to capture the basketball action to its best advantage, and it really isn't explained how the players become so talented so quickly.",2000-01-01,15147,Sunset Park +Stephen Holden,none,0117784,New York Times,,2000-01-01,15147,Sunset Park +Todd McCarthy,none,0117107,Variety,,2009-03-26,13601,Mulholland Falls +Derek Adams,none,0117107,Time Out,,2006-06-24,13601,Mulholland Falls +Peter Stack,none,0117107,San Francisco Chronicle,,2002-06-18,13601,Mulholland Falls +Kenneth Turan,none,0117107,Los Angeles Times,,2001-02-14,13601,Mulholland Falls +Joe Baltake,none,0117107,Sacramento Bee,,2000-01-01,13601,Mulholland Falls +James Berardinelli,rotten,0117107,ReelViews,,2000-01-01,13601,Mulholland Falls +Janet Maslin,none,0117107,New York Times,,2000-01-01,13601,Mulholland Falls +Mike Clark,rotten,0117107,USA Today,"Connelly, Melanie Griffith and Bruce Dern all fare well in a predominantly misused cast, but the tone of this talkfest is dreary.",2000-01-01,13601,Mulholland Falls +,none,0117107,Washington Post,,2000-01-01,13601,Mulholland Falls +Susan Stark,fresh,0117107,Detroit News,,2000-01-01,13601,Mulholland Falls +Stanley Kauffmann,none,0117107,The New Republic,,2000-01-01,13601,Mulholland Falls +Roger Ebert,fresh,0117107,Chicago Sun-Times,,2000-01-01,13601,Mulholland Falls +,rotten,0117107,Entertainment Weekly,,1996-04-26,13601,Mulholland Falls +Owen Gleiberman,fresh,0117979,Entertainment Weekly,,2011-09-07,11048,The Truth About Cats & Dogs +Brian Lowry,none,0117979,Variety,,2009-03-26,11048,The Truth About Cats & Dogs +Geoff Andrew,none,0117979,Time Out,,2006-02-09,11048,The Truth About Cats & Dogs +Edward Guthmann,fresh,0117979,San Francisco Chronicle,,2002-06-18,11048,The Truth About Cats & Dogs +Jack Mathews,none,0117979,Los Angeles Times,,2001-02-14,11048,The Truth About Cats & Dogs +Susan Wloszczyna,rotten,0117979,USA Today,"Though its romantic-comedy triangle borrows heavily from Cyrano de Bergerac, the film has more in common with Three's Company.",2000-01-01,11048,The Truth About Cats & Dogs +Janet Maslin,none,0117979,New York Times,,2000-01-01,11048,The Truth About Cats & Dogs +Joe Baltake,none,0117979,Sacramento Bee,,2000-01-01,11048,The Truth About Cats & Dogs +James Berardinelli,fresh,0117979,ReelViews,,2000-01-01,11048,The Truth About Cats & Dogs +Roger Ebert,fresh,0117979,Chicago Sun-Times,,2000-01-01,11048,The Truth About Cats & Dogs +Susan Stark,fresh,0117979,Detroit News,,2000-01-01,11048,The Truth About Cats & Dogs +,none,0117979,Washington Post,,2000-01-01,11048,The Truth About Cats & Dogs +,fresh,0117979,Entertainment Weekly,,1996-04-26,11048,The Truth About Cats & Dogs +Jonathan Rosenbaum,fresh,0095776,Chicago Reader,"The animation is fairly unexciting though serviceable, and the overall mystification of class difference would probably have made Dickens shudder, but kids should find this tolerable enough.",2009-11-13,9542,Oliver & Company +Rita Kempley,fresh,0095776,Washington Post,"Even as a cartoon poodle, Bette Midler stops the show.",2009-11-13,9542,Oliver & Company +,fresh,0095776,Time Out,"Much cornball adventure ensues, punctuated by healthy helpings of singing, dancing and general merriment.",2006-01-26,9542,Oliver & Company +Peter Stack,fresh,0095776,San Francisco Chronicle,"The film offers a fanciful, lush urban setting, unusual for Disney animated features, and a couple of good songs.",2002-06-18,9542,Oliver & Company +Susan Wloszczyna,rotten,0095776,USA Today,"Despite three screenwriters and 13 names credited for the story, the script quickly sinks into a predictable 'girl-meets-pet, girl-loses-pet, girl-and -pet-reunite' sap-trap.",2000-01-01,9542,Oliver & Company +Desson Thomson,fresh,0095776,Washington Post,Take the kids. Have fun.,2000-01-01,9542,Oliver & Company +,none,0115851,Washington Post,,2008-10-18,12316,Celtic Pride +Joe Leydon,fresh,0115851,Variety,An uneven but largely likable basketball-themed comedy.,2008-03-24,12316,Celtic Pride +Desson Thomson,rotten,0115851,Washington Post,The outcome is deeply unsatisfying.,2008-03-24,12316,Celtic Pride +Jack Mathews,rotten,0115851,Los Angeles Times,"This is a bad time for NBA fans in Boston. Just as their beloved Celtics are about to wrap up a dismal season, with nearly 50 losses and no berth in the playoffs, Hollywood comes out with a comedy about the Celtics that's even worse than the team.",2001-02-14,12316,Celtic Pride +Hal Hinson,rotten,0115851,Washington Post,"Not only is the picture woefully short on laughs, it's also coarse, overbearing and, in places, downright insulting.",2000-01-01,12316,Celtic Pride +James Berardinelli,rotten,0115851,ReelViews,"You don't even have to be a Celtics fan to appreciate it. In fact, considering who becomes the butt of the film's ultimate joke, perhaps it's best if you're not one.",2000-01-01,12316,Celtic Pride +Stephen Holden,rotten,0115851,New York Times,"Celtic Pride has ingredients that could have made for a tough knockabout farce. Unfortunately, the film, directed by Tom De Cerchio from a screenplay by Judd Apatow, doesn't know the meaning of the term 'light touch.'",2000-01-01,12316,Celtic Pride +Jeff Millar,fresh,0115851,Houston Chronicle,Does De Cerchio have a future at Disney or what?,2000-01-01,12316,Celtic Pride +Joe Leydon,none,0116322,Variety,,2009-03-16,10682,Flipper +,none,0116322,Time Out,,2006-01-26,10682,Flipper +David Kronke,none,0116322,Los Angeles Times,,2001-02-14,10682,Flipper +Peter Stack,none,0116322,San Francisco Chronicle,,2000-01-01,10682,Flipper +Janet Maslin,none,0116322,New York Times,,2000-01-01,10682,Flipper +James Berardinelli,rotten,0116322,ReelViews,,2000-01-01,10682,Flipper +Susan Stark,fresh,0116322,Detroit News,,2000-01-01,10682,Flipper +Joe Baltake,none,0116322,Sacramento Bee,,2000-01-01,10682,Flipper +Roger Ebert,rotten,0116322,Chicago Sun-Times,,2000-01-01,10682,Flipper +Mike Clark,rotten,0116322,USA Today,"Flipper is inoffensive, but it's also asleep in the deep.",2000-01-01,10682,Flipper +,none,0116322,Washington Post,,2000-01-01,10682,Flipper +,rotten,0116322,Entertainment Weekly,,1996-05-17,10682,Flipper +David Rooney,none,0216605,Variety,,2009-01-21,770728333,La captive +,none,0216605,Time Out,,2006-02-09,770728333,La captive +V.A. Musetto,fresh,0216605,New York Post,"La Captive is so good that it makes amends for A Couch in New York, Akerman's simply dreadful 1996 English-language love story.",2002-05-09,770728333,La captive +Kevin Thomas,none,0110712,Los Angeles Times,,2001-02-14,14927,Of Love and Shadows +David Ansen,none,0112817,Newsweek,,2008-03-31,12921,Dead Man +,none,0112817,Time Out,,2006-01-26,12921,Dead Man +Jack Mathews,none,0112817,Los Angeles Times,,2001-02-14,12921,Dead Man +Stephen Holden,none,0112817,New York Times,,2000-01-01,12921,Dead Man +,none,0112817,Washington Post,,2000-01-01,12921,Dead Man +James Berardinelli,rotten,0112817,ReelViews,,2000-01-01,12921,Dead Man +Stanley Kauffmann,none,0112817,The New Republic,,2000-01-01,12921,Dead Man +Jonathan Rosenbaum,fresh,0112817,Chicago Reader,,2000-01-01,12921,Dead Man +Susan Stark,fresh,0112817,Detroit News,,2000-01-01,12921,Dead Man +Greil Marcus,none,0112817,Salon.com,,2000-01-01,12921,Dead Man +Edward Guthmann,none,0112817,San Francisco Chronicle,,2000-01-01,12921,Dead Man +Mike Clark,rotten,0112817,USA Today,"Coy to a fault, the movie collapses under its own weight with 90 minutes to go, despite Robby MAuller's impressive black-and-white photography, which puts the film on a higher artistic plane than other equally unbearable movies.",2000-01-01,12921,Dead Man +Roger Ebert,rotten,0112817,Chicago Sun-Times,,2000-01-01,12921,Dead Man +Joe Baltake,none,0112817,Sacramento Bee,,2000-01-01,12921,Dead Man +,rotten,0112817,Entertainment Weekly,,1995-05-26,12921,Dead Man +,none,0113362,Variety,,2009-03-26,13427,Le hussard sur le toit +Derek Adams,none,0113362,Time Out,,2006-06-24,13427,Le hussard sur le toit +Kevin Thomas,none,0113362,Los Angeles Times,,2001-02-14,13427,Le hussard sur le toit +Susan Stark,fresh,0113362,Detroit News,,2000-01-01,13427,Le hussard sur le toit +Stephen Holden,none,0113362,New York Times,,2000-01-01,13427,Le hussard sur le toit +Joe Baltake,none,0113362,Sacramento Bee,,2000-01-01,13427,Le hussard sur le toit +Peter Stack,none,0113362,San Francisco Chronicle,,2000-01-01,13427,Le hussard sur le toit +Stanley Kauffmann,none,0113362,The New Republic,,2000-01-01,13427,Le hussard sur le toit +Roger Ebert,fresh,0113362,Chicago Sun-Times,,2000-01-01,13427,Le hussard sur le toit +James Berardinelli,fresh,0113362,ReelViews,,2000-01-01,13427,Le hussard sur le toit +Mike Clark,rotten,0113362,USA Today,"Production values count for something, and it's a good thing, too, because this French period piece takes two hours and then some to reach its conclusion without reaching even a trot.",2000-01-01,13427,Le hussard sur le toit +,none,0113362,Washington Post,,2000-01-01,13427,Le hussard sur le toit +,rotten,0113362,Entertainment Weekly,,1996-05-17,13427,Le hussard sur le toit +Leonard Klady,none,0073778,Variety,,2009-03-26,15524,The Jezebels +Geoff Andrew,none,0073778,Time Out,,2006-02-09,15524,The Jezebels +,none,0073778,Washington Post,,2002-09-26,15524,The Jezebels +Richard Harrington,rotten,0073778,Washington Post,"The acting is so bad that apparently none of the performers ever got another job in the movies, and the costumes in Ben Hur seem less dated that those on display here.",2002-09-25,15524,The Jezebels +Kevin Thomas,fresh,0073778,Los Angeles Times,"A terrific example of efficient, resourceful filmmaking, and its depiction of urban ills is, if anything, all too prophetic.",2001-02-14,15524,The Jezebels +Stephen Holden,rotten,0073778,New York Times,To watch Switchblade Sisters is to visit a never-never land of shopworn media images colliding in a tabloid high school of the mind.,2000-01-01,15524,The Jezebels +Desson Thomson,fresh,0073778,Washington Post,"Sublime, exploitative camp.",2000-01-01,15524,The Jezebels +Mick LaSalle,rotten,0073778,San Francisco Chronicle,Just good enough to make it understandable why someone else might really like it. And it's just bad enough to make you wonder about such a person.,2000-01-01,15524,The Jezebels +Roger Ebert,rotten,0073778,Chicago Sun-Times,"Badly acted, written and directed.",2000-01-01,15524,The Jezebels +James Berardinelli,rotten,0073778,ReelViews,"A 1975 exploitation dud, this is the kind of movie Cinemax screens late at night. It's not just bad, it's execrable.",2000-01-01,15524,The Jezebels +Mark Olsen,none,0112546,Los Angeles Times,,2006-06-24,770679931,Boca a boca +,none,0112546,Hollywood Reporter,,2006-06-24,770679931,Boca a boca +,fresh,0112546,Entertainment Weekly,,2006-05-26,770679931,Boca a boca +Lou Lumenick,rotten,0112546,New York Post,,2006-05-20,770679931,Boca a boca +Derek Adams,none,0112546,Time Out,,2006-02-09,770679931,Boca a boca +Janet Maslin,none,0112546,New York Times,,2000-01-01,770679931,Boca a boca +Lisa Schwarzbaum,rotten,0108500,Entertainment Weekly,,2011-09-07,351526299,Les visiteurs +Lisa Nesselson,none,0108500,Variety,,2009-03-26,351526299,Les visiteurs +,none,0108500,Time Out,,2006-01-26,351526299,Les visiteurs +Stephen Holden,none,0108500,New York Times,,2003-05-20,351526299,Les visiteurs +,none,0108500,Los Angeles Times,,2001-02-14,351526299,Les visiteurs +James Berardinelli,rotten,0108500,ReelViews,,2000-01-01,351526299,Les visiteurs +Edward Guthmann,none,0108500,San Francisco Chronicle,,2000-01-01,351526299,Les visiteurs +Roger Ebert,rotten,0108500,Chicago Sun-Times,,2000-01-01,351526299,Les visiteurs +Stanley Kauffmann,none,0108500,The New Republic,,2000-01-01,351526299,Les visiteurs +,rotten,0108500,Entertainment Weekly,,1993-01-01,351526299,Les visiteurs +Lisa Schwarzbaum,rotten,0117108,Entertainment Weekly,,2011-09-07,12739,Multiplicity +Derek Adams,none,0117108,Time Out,,2006-06-24,12739,Multiplicity +Janet Maslin,none,0117108,New York Times,,2003-05-20,12739,Multiplicity +,rotten,0117108,Globe and Mail,,2002-04-12,12739,Multiplicity +Peter Travers,none,0117108,Rolling Stone,,2001-05-12,12739,Multiplicity +Kenneth Turan,fresh,0117108,Los Angeles Times,"More Kafkaesque than comedic, more fascinating to watch than out-and-out funny.",2001-02-14,12739,Multiplicity +James Berardinelli,fresh,0117108,ReelViews,"Although Multiplicity is funny, it's not as heartwarming or inventive as Groundhog Day.",2000-01-01,12739,Multiplicity +Susan Stark,rotten,0117108,Detroit News,"The comedy itself, however, is uneven and, more often than not, obvious.",2000-01-01,12739,Multiplicity +Keith Simanton,rotten,0117108,Film.com,"Keaton does a dandy job by his four Dougs, but the problem is a script that assumes a physical comedian can do it all, including twisting characters to make them fit the plot line. It doesn't work.",2000-01-01,12739,Multiplicity +Mick LaSalle,rotten,0117108,San Francisco Chronicle,"Director Harold Ramis had more serious ambitions. Multiplicity should have been another Groundhog Day, which Ramis also directed, but he comes up short.",2000-01-01,12739,Multiplicity +Sean Means,rotten,0117108,Film.com,"Ramis and his quartet of writers, including City Slickers shtick factories of Lowell Ganz & Babaloo Mandel, can't find much to do with their simple premise.",2000-01-01,12739,Multiplicity +Rita Kempley,fresh,0117108,Washington Post,A buoyant domestic farce.,2000-01-01,12739,Multiplicity +Joe Baltake,fresh,0117108,Sacramento Bee,An effects-based comedy whose seamlessness is a sign that this newfangled comedic genre has gone beyond the adolescence stage and taken on a new maturity.,2000-01-01,12739,Multiplicity +Jonathan Rosenbaum,none,0117108,Chicago Reader,,2000-01-01,12739,Multiplicity +Susan Wloszczyna,rotten,0117108,USA Today,Multiplicity cheats itself by not letting its imagination run as wild as its star.,2000-01-01,12739,Multiplicity +Roger Ebert,rotten,0117108,Chicago Sun-Times,"Groundhog Day had a certain sweetness and even a sly philosophical depth, but Multiplicity is more of a ground-level comedy, in which we can usually anticipate the problems for Doug and his clones.",2000-01-01,12739,Multiplicity +Stanley Kauffmann,rotten,0117108,The New Republic,Multiplicity exists because it's now possible for an actor to appear on screen with himself and not by means of anything so quaint as double exposure.,2000-01-01,12739,Multiplicity +Andy Spletzer,rotten,0117108,Film.com,I recommend this to anyone who wants to see a solipsistic comedy about the darker side of marriage.,2000-01-01,12739,Multiplicity +,rotten,0117108,Entertainment Weekly,,1996-07-17,12739,Multiplicity +Deborah Young,none,0113270,Variety,,2010-08-23,243347526,The Haunted World of Edward D. Wood Jr. +,none,0115963,Variety,,2012-02-23,16582,The Craft +Owen Gleiberman,fresh,0115963,Entertainment Weekly,,2011-09-07,16582,The Craft +,none,0115963,Variety,,2009-03-26,16582,The Craft +Emanuel Levy,rotten,0115963,Variety,"Fleming's film begins promisingly as a black comedy a la Heathers, but then quickly succumbs to its machinery of special effects; this is yet another bad picture in a long list of Hollywood flops about witchcraft.",2007-06-15,16582,The Craft +,none,0115963,Time Out,,2006-06-24,16582,The Craft +Mick LaSalle,fresh,0115963,San Francisco Chronicle,,2002-06-18,16582,The Craft +Kevin Thomas,none,0115963,Los Angeles Times,,2001-02-14,16582,The Craft +Roger Ebert,rotten,0115963,Chicago Sun-Times,,2000-01-01,16582,The Craft +Rita Kempley,none,0115963,Washington Post,,2000-01-01,16582,The Craft +Stephen Holden,none,0115963,New York Times,,2000-01-01,16582,The Craft +Susan Stark,rotten,0115963,Detroit News,,2000-01-01,16582,The Craft +Susan Wloszczyna,rotten,0115963,USA Today,If only The Craft were as fresh as its enchanting lead quartet.,2000-01-01,16582,The Craft +,fresh,0115963,Entertainment Weekly,,1996-05-03,16582,The Craft +,none,0116448,Variety,,2009-03-26,15334,The Great White Hype +Derek Adams,none,0116448,Time Out,,2006-06-24,15334,The Great White Hype +Peter Travers,none,0116448,Rolling Stone,,2001-05-12,15334,The Great White Hype +Jack Mathews,none,0116448,Los Angeles Times,,2001-02-14,15334,The Great White Hype +Susan Wloszczyna,rotten,0116448,USA Today,"As satire, Hype dares to play the race card but folds too soon.",2000-01-01,15334,The Great White Hype +,none,0116448,Washington Post,,2000-01-01,15334,The Great White Hype +James Berardinelli,fresh,0116448,ReelViews,,2000-01-01,15334,The Great White Hype +Janet Maslin,none,0116448,New York Times,,2000-01-01,15334,The Great White Hype +Roger Ebert,rotten,0116448,Chicago Sun-Times,,2000-01-01,15334,The Great White Hype +Susan Stark,fresh,0116448,Detroit News,,2000-01-01,15334,The Great White Hype +,fresh,0116448,Entertainment Weekly,,1996-05-03,15334,The Great White Hype +Lisa Schwarzbaum,fresh,0112701,Entertainment Weekly,,2011-09-07,10474,Cold Comfort Farm +,none,0112701,Time Out,,2006-06-24,10474,Cold Comfort Farm +Emanuel Levy,fresh,0112701,Variety,"Schelsinger's masterfully directed eccentric satire is based on Stella Gibbons' 1933 book which spoofs the serious, soul-searching, rural-set stories of writers like D.H. Lawrence and Mary Webb.",2006-06-02,10474,Cold Comfort Farm +Kevin Thomas,none,0112701,Los Angeles Times,,2001-02-14,10474,Cold Comfort Farm +Mike Clark,fresh,0112701,USA Today,Dickens meets the Beverly Hillbillies.,2000-01-01,10474,Cold Comfort Farm +Edward Guthmann,none,0112701,San Francisco Chronicle,,2000-01-01,10474,Cold Comfort Farm +James Berardinelli,fresh,0112701,ReelViews,,2000-01-01,10474,Cold Comfort Farm +Janet Maslin,none,0112701,New York Times,,2000-01-01,10474,Cold Comfort Farm +Roger Ebert,fresh,0112701,Chicago Sun-Times,,2000-01-01,10474,Cold Comfort Farm +,none,0112701,Houston Chronicle,,2000-01-01,10474,Cold Comfort Farm +Stanley Kauffmann,none,0112701,The New Republic,,2000-01-01,10474,Cold Comfort Farm +,none,0112701,Washington Post,,2000-01-01,10474,Cold Comfort Farm +Joe Baltake,none,0112701,Sacramento Bee,,2000-01-01,10474,Cold Comfort Farm +,fresh,0112701,Entertainment Weekly,,1996-05-10,10474,Cold Comfort Farm +Geoff Andrew,none,0113429,Time Out,,2006-06-24,19465,"Institute Benjamenta, or This Dream People Call Human Life" +Stephen Holden,none,0113429,New York Times,,2004-08-30,19465,"Institute Benjamenta, or This Dream People Call Human Life" +Kevin Thomas,none,0113429,Los Angeles Times,,2001-02-21,19465,"Institute Benjamenta, or This Dream People Call Human Life" +Peter Stack,fresh,0113429,San Francisco Chronicle,,2000-01-01,19465,"Institute Benjamenta, or This Dream People Call Human Life" +,none,0116508,Variety,,2009-03-26,13031,Heaven's Prisoners +Derek Adams,none,0116508,Time Out,,2006-06-24,13031,Heaven's Prisoners +Mick LaSalle,none,0116508,San Francisco Chronicle,,2002-06-18,13031,Heaven's Prisoners +Susan Stark,rotten,0116508,Detroit News,,2000-01-01,13031,Heaven's Prisoners +,none,0116508,Washington Post,,2000-01-01,13031,Heaven's Prisoners +James Berardinelli,rotten,0116508,ReelViews,,2000-01-01,13031,Heaven's Prisoners +Stephen Holden,none,0116508,New York Times,,2000-01-01,13031,Heaven's Prisoners +Mike Clark,rotten,0116508,USA Today,[A] bayou slog.,2000-01-01,13031,Heaven's Prisoners +Roger Ebert,rotten,0116508,Chicago Sun-Times,,2000-01-01,13031,Heaven's Prisoners +Joe Baltake,none,0116508,Sacramento Bee,,2000-01-01,13031,Heaven's Prisoners +,fresh,0116508,Entertainment Weekly,,1996-05-17,13031,Heaven's Prisoners +Todd McCarthy,fresh,0117500,Variety,"The yarn has its share of gaping holes and jaw-dropping improbabilities, but director Michael Bay sweeps them all aside with his never-take-a-breath pacing.",2009-03-26,12970,The Rock +Richard Corliss,fresh,0117500,TIME Magazine,"Slick, brutal and almost human, this is the team-spirit action movie Mission: Impossible should have been.",2008-09-19,12970,The Rock +Wally Hammond,fresh,0117500,Time Out,"Fake countdown and knowing reactionary tone, but the best SF car chase to date.",2006-06-24,12970,The Rock +Desson Thomson,rotten,0117500,Washington Post,"A violence-intoxicated, far-fetched, morally corrupt drama.",2002-06-11,12970,The Rock +Liam Lacey,rotten,0117500,Globe and Mail,"From a helicopter's point-of-view, The Rock is just typical big American dumb fun. It's only when you look underneath at the film's underlying assumptions that you want to recoil.",2002-04-12,12970,The Rock +Peter Travers,fresh,0117500,Rolling Stone,A popcorn-movie deluxe.,2001-05-12,12970,The Rock +Kenneth Turan,rotten,0117500,Los Angeles Times,"Slick and forceful, largely unconcerned with character, eager for any opportunity to pump up the volume both literally and metaphorically, The Rock is the kind of efficient entertainment that is hard to take pleasure in.",2001-02-14,12970,The Rock +James Berardinelli,fresh,0117500,ReelViews,Producers Jerry Bruckheimer and the late Don Simpson have a highly-successful resume that includes Top Gun and Crimson Tide. The Rock will add more luster to that reputation.,2000-01-01,12970,The Rock +Hal Hinson,rotten,0117500,Washington Post,The movie deteriorates into a long commercial for the home-game version of itself.,2000-01-01,12970,The Rock +Stanley Kauffmann,rotten,0117500,The New Republic,"When film more or less took over melodrama from the theater ninety years ago, it proudly provided real oceans instead of canvas waves rippled by stagehands; but the plots remained humbug ... The Rock is as ridiculous an example as one could want.",2000-01-01,12970,The Rock +Janet Maslin,fresh,0117500,New York Times,"Pure why-not bravado, pumped-up and staggeringly dishonest but exciting just the same.",2000-01-01,12970,The Rock +Joe Baltake,fresh,0117500,Sacramento Bee,It's as tough and hard as it sounds. It's also good fun.,2000-01-01,12970,The Rock +Susan Stark,fresh,0117500,Detroit News,"Excitement may be The Rock's selling point, but it has plenty more to offer than you bargained for.",2000-01-01,12970,The Rock +Peter Stack,fresh,0117500,San Francisco Chronicle,"Cage steals the show, adding a touch of wimpiness to the high-decibel bravado.",2000-01-01,12970,The Rock +Mike Clark,rotten,0117500,USA Today,[A] 2 1/4-hour exercise in overkill.,2000-01-01,12970,The Rock +Roger Ebert,fresh,0117500,Chicago Sun-Times,"A first-rate, slam-bang action thriller with a lot of style and no little humor.",2000-01-01,12970,The Rock +Owen Gleiberman,fresh,0117500,Entertainment Weekly,"Even in a movie that's all noise and bluster, Cage and Connery inject tasty bits of personality into their roles.",1996-06-07,12970,The Rock +Daniel M. Kimmel,rotten,0116405,Variety,...a distasteful affair that should embarrass all concerned...,2005-04-29,16813,Getting Away with Murder +Kevin Thomas,none,0116405,Los Angeles Times,,2001-02-13,16813,Getting Away with Murder +Janet Maslin,none,0116405,New York Times,,2000-01-01,16813,Getting Away with Murder +James Berardinelli,rotten,0116405,ReelViews,,2000-01-01,16813,Getting Away with Murder +,none,0116405,Houston Chronicle,,2000-01-01,16813,Getting Away with Murder +Roger Ebert,rotten,0116405,Chicago Sun-Times,,2000-01-01,16813,Getting Away with Murder +Mick LaSalle,none,0116405,San Francisco Chronicle,,2000-01-01,16813,Getting Away with Murder +Deborah Young,none,0109592,Variety,,2009-03-26,268624566,Dellamorte Dellamore +James Berardinelli,rotten,0109592,ReelViews,,2006-05-27,268624566,Dellamorte Dellamore +Stephen Holden,none,0109592,New York Times,,2006-05-27,268624566,Dellamorte Dellamore +,none,0109592,Los Angeles Times,,2001-02-14,268624566,Dellamorte Dellamore +Hal Hinson,none,0109592,Washington Post,,2000-01-01,268624566,Dellamorte Dellamore +Susan Stark,rotten,0109592,Detroit News,,2000-01-01,268624566,Dellamorte Dellamore +Mick LaSalle,none,0109592,San Francisco Chronicle,,2000-01-01,268624566,Dellamorte Dellamore +Lisa Schwarzbaum,fresh,0117998,Entertainment Weekly,,2011-09-07,12652,Twister +Richard Schickel,rotten,0117998,TIME Magazine,You know a movie is in trouble when a cow provides its only moment of authentic human interest.,2008-11-05,12652,Twister +Todd McCarthy,rotten,0117998,Variety,"Even more than with most of Michael Crichton's concoctions, this one conveys the overwhelming impression of a mechanical entertainment, a very high concept in which the characters and their problems seem like utterly arbitrary creations.",2008-10-18,12652,Twister +Geoff Andrew,rotten,0117998,Time Out,"Effects apart, this is dire: predictable, cliched, sloppily written, pitifully performed and surprisingly short of real shocks and suspense.",2006-06-24,12652,Twister +Mick LaSalle,fresh,0117998,San Francisco Chronicle,"It looks real, and Director Jan De Bont keeps the action coming so fast there's no time to question it.",2002-06-18,12652,Twister +Kenneth Turan,fresh,0117998,Los Angeles Times,"An expert in making audiences squirm and twist, at making us feel the rush of experience right along with the actors, De Bont choreographs action and suspense so beautifully he makes it seem like a snap.",2001-02-14,12652,Twister +Susan Stark,fresh,0117998,Detroit News,,2000-01-01,12652,Twister +Mike Clark,fresh,0117998,USA Today,A summer crowd-pleaser worthy of its wind.,2000-01-01,12652,Twister +Roger Ebert,rotten,0117998,Chicago Sun-Times,"The movie is wall-to-wall with special effects, and they're all convincing, although it's impossible for me to explain how Bill and Jo escape serious injury while staring right up into the Suck Zone of the Finger of God.",2000-01-01,12652,Twister +James Berardinelli,fresh,0117998,ReelViews,"It's a perfect motion picture roller coaster -- fun, fast, and furious... as long as you don't think too hard.",2000-01-01,12652,Twister +Janet Maslin,fresh,0117998,New York Times,"Science aside, it's not hard to feel that these excitable characters are a wee bit berserk. But the movie works as escapism even if you do know enough to come in out of the rain.",2000-01-01,12652,Twister +,fresh,0117998,Entertainment Weekly,,1996-05-10,12652,Twister +Susan Stark,fresh,0113568,Detroit News,,2008-10-18,12996,Kôkaku kidôtai +,rotten,0113568,Time Out,"Conjures up a dazzling, futuristic cityscape that, sadly, is not matched by the human landscapes at the heart of the story.",2006-06-24,12996,Kôkaku kidôtai +Laura Evenson,fresh,0113568,San Francisco Chronicle,Mamoru Oshii's direction deftly merges gritty realism with a dreamlike quality.,2000-01-01,12996,Kôkaku kidôtai +Roger Ebert,fresh,0113568,Chicago Sun-Times,"I enjoyed its visuals, its evocative soundtrack (including a suite for percussion and heavy breathing), and its ideas.",2000-01-01,12996,Kôkaku kidôtai +Owen Gleiberman,rotten,0117894,Entertainment Weekly,,2011-09-07,16864,Thinner +Leonard Klady,none,0117894,Variety,,2009-03-26,16864,Thinner +Derek Adams,none,0117894,Time Out,,2006-02-09,16864,Thinner +Lawrence Van Gelder,none,0117894,New York Times,,2004-08-30,16864,Thinner +,rotten,0117894,Globe and Mail,,2002-04-12,16864,Thinner +Mick LaSalle,none,0117894,San Francisco Chronicle,,2000-01-01,16864,Thinner +James Berardinelli,rotten,0117894,ReelViews,,2000-01-01,16864,Thinner +,none,0117894,Houston Chronicle,,2000-01-01,16864,Thinner +,rotten,0117894,Entertainment Weekly,,1996-10-25,16864,Thinner +Desmond Ryan,rotten,0117723,Philadelphia Inquirer,"The jokes come in sporadic volleys rather than the steady machine-gun pace of The Naked Gun and Airplane!, and, with a few exceptions, they are less truly aimed.",2013-06-14,11065,Spy Hard +John Petrakis,rotten,0117723,Chicago Tribune,"As funny as Nielsen can be, like all comic actors he still needs the quick-thinking jokes and zingy one-liners to be genuinely funny.",2013-06-04,11065,Spy Hard +Doug Thomas,rotten,0117723,Seattle Times,"Spy Hard just comes off as a long commercial. And yes, that means most of the best moments you've seen in the movie's trailer.",2013-06-04,11065,Spy Hard +Jay Boyar,fresh,0117723,Orlando Sentinel,"More of a cinematic joke book than a real movie, Spy Hard hits you with gags faster than Henny Youngman on speed. Even when individual bits misfire, the unrelenting barrage of silliness can break down your resistance.",2013-06-04,11065,Spy Hard +Owen Gleiberman,rotten,0117723,Entertainment Weekly,"Spy Hard is a loose send-up of the Bond series and other overly expensive action flicks, but after Hot Shots! Part Deux and National Lampoon's Loaded Weapon 1 who needs another action parody?",2011-09-07,11065,Spy Hard +Rita Kempley,rotten,0117723,Washington Post,"Never mind that the smutty, high-tech 007 capers already wink at the conventions of the bikini-clad, gizmo-strewn genre. If the martini is shaken, not stirred, why beat it to death with a swizzle stick?",2010-07-06,11065,Spy Hard +Variety Staff,rotten,0117723,Variety,"The picture that will test the durability of Leslie Nielsen's lowbrow franchise, Spy Hard sticks closely to the Naked Gun formula. Not only is the formula itself wearing thin, but the gags themselves feel recycled.",2009-03-26,11065,Spy Hard +Derek Adams,rotten,0117723,Time Out,Like Hot Shots! there's the same mistaken belief that simply tagging other films will be intrinsically funny...,2006-06-24,11065,Spy Hard +Mick LaSalle,rotten,0117723,San Francisco Chronicle,"Nielsen, with his expert deadpan and sense of comic timing, creates the illusion of humor -- for about 15 minutes.",2002-06-18,11065,Spy Hard +David Kronke,rotten,0117723,Los Angeles Times,This movie unfortunately wastes a perfectly promising idea -- satirizing James Bond films along with any other pop-culture celluloid phenomenon that crosses the filmmakers' minds.,2001-02-14,11065,Spy Hard +Susan Stark,rotten,0117723,Detroit News,,2000-01-01,11065,Spy Hard +James Berardinelli,rotten,0117723,ReelViews,A dreadfully unfunny comedy that takes Naked Gun-like sketches and rehashes them without a whit of style or energy.,2000-01-01,11065,Spy Hard +Stephen Holden,rotten,0117723,New York Times,"When Spy Hard abruptly ends after only 81 minutes, you sense that it has used up every last round of available ammunition. It was simply exhausted and couldn't move another inch.",2000-01-01,11065,Spy Hard +Andy Seiler,rotten,0117723,USA Today,You won't laugh hard at Spy Hard. And that's not because the jokes aren't funny. Most of them aren't even jokes.,2000-01-01,11065,Spy Hard +Derek Elley,none,0112586,Variety,,2012-02-23,770925964,Brothers in Trouble +Stephen Holden,none,0112586,New York Times,,2004-08-30,770925964,Brothers in Trouble +Lisa Alspector,none,0112586,Chicago Reader,,2001-12-03,770925964,Brothers in Trouble +Joe Baltake,none,0112586,Sacramento Bee,,2000-01-01,770925964,Brothers in Trouble +,none,0112691,Time Out,,2006-06-24,381422235,Wallace and Gromit in A Close Shave +,none,0040366,Variety,,2009-03-26,11817,Force of Evil +Bosley Crowther,fresh,0040366,New York Times,"For all its unpleasant nature, it must be said that this film is a dynamic crime-and-punishment drama, brilliantly and broadly realized.",2006-08-08,11817,Force of Evil +,none,0040366,Time Out,,2006-01-26,11817,Force of Evil +Don Druker,fresh,0040366,Chicago Reader,"A poetic, terse, beautifully exact, and highly personal re-creation of the American underworld, with an unpunctuated Joycean screenplay by Polonsky that is perhaps unique in the American cinema.",2000-01-01,11817,Force of Evil +Derek Elley,none,0117768,Variety,,2009-03-26,11939,The Stupids +Geoff Andrew,none,0117768,Time Out,,2006-06-24,11939,The Stupids +Rita Kempley,none,0117768,Washington Post,,2002-01-22,11939,The Stupids +Kevin Thomas,none,0117768,Los Angeles Times,,2001-02-14,11939,The Stupids +Edward Guthmann,none,0117768,San Francisco Chronicle,,2000-01-01,11939,The Stupids +,none,0117768,Houston Chronicle,,2000-01-01,11939,The Stupids +Lawrence Van Gelder,none,0117768,New York Times,,2000-01-01,11939,The Stupids +James Berardinelli,fresh,0117768,ReelViews,,2000-01-01,11939,The Stupids +Joe Baltake,none,0117768,Sacramento Bee,,2000-01-01,11939,The Stupids +,rotten,0117768,Entertainment Weekly,,1996-08-30,11939,The Stupids +Geoff Andrew,fresh,0115571,Time Out,"What it lacks in sophistication (everything), it partly makes up for in sheer gall.",2006-02-09,12510,The Arrival +Mick LaSalle,fresh,0115571,San Francisco Chronicle,"It's a strong, lean piece of writing that moves quickly. Nothing is wasted, and nothing happens the way you'd expect.",2002-06-18,12510,The Arrival +Susan Stark,rotten,0115571,Detroit News,,2000-01-01,12510,The Arrival +Stephen Holden,fresh,0115571,New York Times,A movie that shoehorns a blunt warning into its silly but entertaining story of a young radio astronomer's one-man battle against sinister extraterrestrials.,2000-01-01,12510,The Arrival +Roger Ebert,fresh,0115571,Chicago Sun-Times,The movie is as smart as ``Mission: Impossible'' is dumb.,2000-01-01,12510,The Arrival +James Berardinelli,fresh,0115571,ReelViews,"This is not a dumb movie; in fact, with its heavy reliance upon real science, it's startlingly credible.",2000-01-01,12510,The Arrival +Lisa Schwarzbaum,rotten,0115571,Entertainment Weekly,[Sheen] spends most of the movie in a kind of sweaty apoplexy that makes one worry for his health.,1996-05-31,12510,The Arrival +Jonathan Rosenbaum,fresh,0103926,Chicago Reader,"In part a hilarious satire about Canadian timidity, it also comes across periodically as a formalist gem about nothing at all.",2007-05-08,770681138,Careful +,fresh,0103926,Time Out,"Uniquely weird, subtly macabre, and utterly compelling.",2006-06-24,770681138,Careful +Stephen Holden,fresh,0103926,New York Times,"Careful is one long and amusing pun on German Expressionistic film imagery, Freudian psychology and quasi-Wagnerian storytelling, all carried to absurdist lengths.",2003-05-20,770681138,Careful +Desson Thomson,rotten,0103926,Washington Post,There's something wonderfully unique about the project but the reasons for doing it remain buried.,2000-01-01,770681138,Careful +Hal Hinson,fresh,0103926,Washington Post,"Careful, the hilariously bizarre new film from Canadian director Guy Maddin, is like some lost masterpiece from a time-warped alternative dimension -- a strange artifact that time forgot.",2000-01-01,770681138,Careful +Leonard Klady,none,0113849,Variety,,2009-03-26,10826,A Month by the Lake +Derek Adams,none,0113849,Time Out,,2006-06-24,10826,A Month by the Lake +Stephen Holden,none,0113849,New York Times,,2003-05-20,10826,A Month by the Lake +Jack Mathews,none,0113849,Los Angeles Times,,2002-08-15,10826,A Month by the Lake +Peter Stack,none,0113849,San Francisco Chronicle,,2002-06-18,10826,A Month by the Lake +,none,0113849,Globe and Mail,,2002-04-12,10826,A Month by the Lake +Mike Clark,fresh,0113849,USA Today,Vanessa Redgrave has never been more likable on screen than in her buoyantly athletic turn here.,2000-01-01,10826,A Month by the Lake +James Berardinelli,rotten,0113849,ReelViews,,2000-01-01,10826,A Month by the Lake +Hal Hinson,none,0113849,Washington Post,,2000-01-01,10826,A Month by the Lake +Roger Ebert,fresh,0113849,Chicago Sun-Times,,2000-01-01,10826,A Month by the Lake +Desson Thomson,none,0113849,Washington Post,,2000-01-01,10826,A Month by the Lake +Joe Baltake,none,0113849,Sacramento Bee,,2000-01-01,10826,A Month by the Lake +Susan Stark,rotten,0113849,Detroit News,,2000-01-01,10826,A Month by the Lake +Leonard Klady,none,0113188,Variety,,2009-03-26,339165985,Gold Diggers: The Secret of Bear Mountain +Stephen Holden,none,0113188,New York Times,,2003-05-20,339165985,Gold Diggers: The Secret of Bear Mountain +Kevin Thomas,none,0113188,Los Angeles Times,,2001-02-13,339165985,Gold Diggers: The Secret of Bear Mountain +Susan Wloszczyna,rotten,0113188,USA Today,"Dig if you must, but this is fool's gold.",2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +Peter Stack,none,0113188,San Francisco Chronicle,,2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +Susan Stark,fresh,0113188,Detroit News,,2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +Hal Hinson,none,0113188,Washington Post,,2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +Roger Ebert,rotten,0113188,Chicago Sun-Times,,2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +James Berardinelli,rotten,0113188,ReelViews,,2000-01-01,339165985,Gold Diggers: The Secret of Bear Mountain +,none,0042644,Variety,,2009-03-26,770693042,Kim +Geoff Andrew,none,0042644,Time Out,,2006-06-24,770693042,Kim +Bosley Crowther,none,0042644,New York Times,,2006-01-28,770693042,Kim +Godfrey Cheshire,none,0109381,Variety,,2009-04-09,770759223,Carmen Miranda: Bananas Is My Business +,none,0109381,Time Out,,2006-06-24,770759223,Carmen Miranda: Bananas Is My Business +Stephen Holden,none,0109381,New York Times,,2003-05-20,770759223,Carmen Miranda: Bananas Is My Business +Peter Stack,none,0109381,San Francisco Chronicle,,2000-01-01,770759223,Carmen Miranda: Bananas Is My Business +Dennis Harvey,none,0110480,Variety,,2009-03-26,18749,Maya Lin: A Strong Clear Vision +Paul Goldberger,none,0110480,New York Times,,2003-05-21,18749,Maya Lin: A Strong Clear Vision +,none,0110480,Los Angeles Times,,2001-02-14,18749,Maya Lin: A Strong Clear Vision +Mike Clark,fresh,0110480,USA Today,"No masterpiece, but a portrait worthy of the extraordinary woman it salutes.",2000-01-01,18749,Maya Lin: A Strong Clear Vision +Roger Ebert,fresh,0110480,Chicago Sun-Times,,2000-01-01,18749,Maya Lin: A Strong Clear Vision +Derek Adams,none,0108211,Time Out,,2006-02-09,18401,Stalingrad +Stephen Holden,none,0108211,New York Times,,2004-08-30,18401,Stalingrad +,none,0108211,Los Angeles Times,,2001-02-14,18401,Stalingrad +Joe Baltake,none,0108211,Sacramento Bee,,2000-01-01,18401,Stalingrad +,none,0108211,Washington Post,,2000-01-01,18401,Stalingrad +Peter Stack,none,0108211,San Francisco Chronicle,,2000-01-01,18401,Stalingrad +James Berardinelli,fresh,0108211,ReelViews,,1995-05-26,18401,Stalingrad +Geoff Andrew,none,0117765,Time Out,,2006-06-24,17196,Striptease +Mick LaSalle,none,0117765,San Francisco Chronicle,,2002-06-18,17196,Striptease +,rotten,0117765,Globe and Mail,,2002-04-12,17196,Striptease +Kenneth Turan,none,0117765,Los Angeles Times,,2001-02-14,17196,Striptease +,none,0117765,Washington Post,,2000-01-01,17196,Striptease +Joe Baltake,none,0117765,Sacramento Bee,,2000-01-01,17196,Striptease +Susan Wloszczyna,rotten,0117765,USA Today,Moore's body is in better shape than her acting.,2000-01-01,17196,Striptease +Roger Ebert,rotten,0117765,Chicago Sun-Times,,2000-01-01,17196,Striptease +Susan Stark,rotten,0117765,Detroit News,,2000-01-01,17196,Striptease +Janet Maslin,none,0117765,New York Times,,2000-01-01,17196,Striptease +Stanley Kauffmann,none,0117765,The New Republic,,2000-01-01,17196,Striptease +James Berardinelli,rotten,0117765,ReelViews,,2000-01-01,17196,Striptease +,rotten,0117765,Entertainment Weekly,,1996-06-28,17196,Striptease +Geoff Andrew,none,0116833,Time Out,,2006-06-24,155730314,The Last of the High Kings +Variety Staff,fresh,0088258,Variety,"For music biz insiders, This Is Spinal Tap is a vastly amusing satire of heavy metal bands.",2009-03-26,15894,This Is Spinal Tap +Richard Corliss,fresh,0088258,TIME Magazine,"For all its japes and jokes, the movie is really about exhaustion of the spirit: sitting in a bleak hotel suite at 4 a.m. with the bad taste of last night in the mouth and the feeling that tomorrow will not be a better day.",2008-08-19,15894,This Is Spinal Tap +Dave Kehr,rotten,0088258,Chicago Reader,"The material is consistently clever and funny, though ultimately the attitudes are too narrow to nourish a feature-length film.",2007-12-17,15894,This Is Spinal Tap +Geoff Andrew,fresh,0088258,Time Out,"Reiner's brilliantly inventive script and smart visuals avoid all the obvious pitfalls, making this one of the funniest ever films about the music business.",2006-02-09,15894,This Is Spinal Tap +Janet Maslin,fresh,0088258,New York Times,It stays so wickedly close to the subject that it is very nearly indistinguishable from the real thing.,2003-05-20,15894,This Is Spinal Tap +James Berardinelli,fresh,0088258,ReelViews,"The film is a composite of classic moments, all of which we sense could have happened to any of the classic heavy metal bands -- or at least to those whose members combined delusions of greatness with low I.Q.s.",2002-08-15,15894,This Is Spinal Tap +Jessica Winter,fresh,0088258,Village Voice,This Is Spinal Tap doesn't pull punches...,2001-08-16,15894,This Is Spinal Tap +Roger Ebert,fresh,0088258,Chicago Sun-Times,"The satire has a deft, wicked touch.",2000-01-01,15894,This Is Spinal Tap +Owen Gleiberman,rotten,0116669,Entertainment Weekly,,2011-09-07,11583,Jack +Todd McCarthy,none,0116669,Variety,,2009-03-26,11583,Jack +Geoff Andrew,none,0116669,Time Out,,2006-06-24,11583,Jack +Mick LaSalle,none,0116669,San Francisco Chronicle,,2002-06-18,11583,Jack +Kenneth Turan,none,0116669,Los Angeles Times,,2001-02-14,11583,Jack +James Berardinelli,fresh,0116669,ReelViews,,2000-01-01,11583,Jack +Roger Ebert,rotten,0116669,Chicago Sun-Times,,2000-01-01,11583,Jack +Joe Baltake,none,0116669,Sacramento Bee,,2000-01-01,11583,Jack +Susan Stark,rotten,0116669,Detroit News,,2000-01-01,11583,Jack +,rotten,0116669,USA Today,Someone deserves a timeout for letting this mawkish misfire get to the screen.,2000-01-01,11583,Jack +Janet Maslin,none,0116669,New York Times,,2000-01-01,11583,Jack +,none,0116669,Houston Chronicle,,2000-01-01,11583,Jack +,none,0116669,Washington Post,,2000-01-01,11583,Jack +,rotten,0116669,Entertainment Weekly,,1996-08-09,11583,Jack +Owen Gleiberman,fresh,0116594,Entertainment Weekly,,2011-09-07,15090,I Shot Andy Warhol +Todd McCarthy,none,0116594,Variety,,2009-03-26,15090,I Shot Andy Warhol +Geoff Andrew,none,0116594,Time Out,,2006-02-09,15090,I Shot Andy Warhol +Edward Guthmann,fresh,0116594,San Francisco Chronicle,,2002-06-18,15090,I Shot Andy Warhol +Peter Travers,none,0116594,Rolling Stone,,2001-05-12,15090,I Shot Andy Warhol +Kevin Thomas,none,0116594,Los Angeles Times,,2001-02-14,15090,I Shot Andy Warhol +Joe Baltake,none,0116594,Sacramento Bee,,2000-01-01,15090,I Shot Andy Warhol +,none,0116594,Washington Post,,2000-01-01,15090,I Shot Andy Warhol +Mike Clark,fresh,0116594,USA Today,"Though this terrifically cast movie may prove a tad too detached even for some members of its targeted audience, it covers remarkable ground in less than two hours.",2000-01-01,15090,I Shot Andy Warhol +Caryn James,none,0116594,New York Times,,2000-01-01,15090,I Shot Andy Warhol +Susan Stark,rotten,0116594,Detroit News,,2000-01-01,15090,I Shot Andy Warhol +Roger Ebert,fresh,0116594,Chicago Sun-Times,,2000-01-01,15090,I Shot Andy Warhol +Stanley Kauffmann,none,0116594,The New Republic,,2000-01-01,15090,I Shot Andy Warhol +James Berardinelli,fresh,0116594,ReelViews,,2000-01-01,15090,I Shot Andy Warhol +,fresh,0116594,Entertainment Weekly,,1996-05-17,15090,I Shot Andy Warhol +Derek Adams,none,0113211,Time Out,,2006-02-09,11869,The Grass Harp +Daniel M. Kimmel,fresh,0113211,Variety,Helmer Charles Matthau combines a sensitive screenplay adaptation of Truman Capote's autobiographical novel with a wonderful ensemble cast to create a jewel of a film.,2005-04-29,11869,The Grass Harp +Lawrence Van Gelder,none,0113211,New York Times,,2004-08-30,11869,The Grass Harp +,rotten,0113211,Globe and Mail,,2002-04-12,11869,The Grass Harp +Desson Thomson,none,0113211,Washington Post,,2002-01-22,11869,The Grass Harp +Kevin Thomas,none,0113211,Los Angeles Times,,2001-02-14,11869,The Grass Harp +,none,0113211,Houston Chronicle,,2000-01-01,11869,The Grass Harp +James Berardinelli,rotten,0113211,ReelViews,,2000-01-01,11869,The Grass Harp +Mike Clark,rotten,0113211,USA Today,"Star power isn't a problem in this episodic rendering of Truman Capote's novel. A scattershot story without focus is, which is why the film soon evaporates from the memory.",2000-01-01,11869,The Grass Harp +Susan Stark,fresh,0113211,Detroit News,,2000-01-01,11869,The Grass Harp +Peter Stack,none,0113211,San Francisco Chronicle,,2000-01-01,11869,The Grass Harp +V.A. Musetto,rotten,0450188,New York Post,"The Israeli documentary Stalags, by Ari Libsker, should be subtitled, How To Turn a Sexy Subject Into a Boring Film.",2008-04-09,770767442,La môme +Laura Kern,rotten,0450188,New York Times,"Stalags carries this line of inquiry forward, cramming an overwhelming amount of information and ideas into its 63 minutes -- not nearly enough time to explore satisfactorily all that it raises.",2008-04-09,770767442,La môme +Ronnie Scheib,rotten,0450188,Variety,"Unfortunately, Ari Libsker's hour-plus docu on this potentially mind-boggling topic meanders disconnectedly, as various experts, collectors and storytellers kick around anecdotes and theories that tend to cancel each other out.",2008-04-08,770767442,La môme +J. Hoberman,fresh,0450188,Village Voice,"However artless its presentation, Stalags imparts material that's difficult to shake off and impossible to dismiss.",2008-04-08,770767442,La môme +Pat Graham,none,0084898,Chicago Reader,,2011-04-04,770909108,Wend Kuuni +Dave Kehr,none,0084898,Chicago Reader,,2000-01-01,770909108,Wend Kuuni +,rotten,0063715,Time Out,Only Fellini (Toby Dammit) really manages to make much of his source.,2006-02-09,22562,Histoires extraordinaires +Vincent Canby,fresh,0063715,New York Times,"[Toby Dammit] is marvelous: a short movie but a major one. The Vadim is as overdecorated and shrill as a drag ball, but still quite fun, and the Malle, based on one of Poe's best stories, is simply tedious.",2005-05-09,22562,Histoires extraordinaires +Jay Boyar,fresh,0117951,Orlando Sentinel,Trainspotting's saving grace is that there's a heck of a lot of entertainment value in this particular form of shallowness.,2013-06-26,16743,Trainspotting +Steven Rea,fresh,0117951,Philadelphia Inquirer,"Trainspotting, buoyed by a great Brit Pop soundtrack and Brian Tufano's agile cinematography, captures the stoned-out, gut-churning experience of hardcore addiction with hallucinogenic acuity.",2013-06-26,16743,Trainspotting +Michael Wilmington,fresh,0117951,Chicago Tribune,"Trainspotting is a searing pop-art portrait of a lost generation blowing out its brains. As they rail, chuckle, shout and dive into darkness, you're trapped yourself between a bellylaugh and a scream.",2013-06-26,16743,Trainspotting +Richard Corliss,fresh,0117951,TIME Magazine,"The film is about joy -- in conniving and surviving, in connecting with audiences, in its own fizzy, jizzy style. And that's why, compared with it, most other films look zombified.",2013-06-26,16743,Trainspotting +Hal Hinson,fresh,0117951,Washington Post,"A cocktail of scuzzy charm, nerve and despair that seduces and repulses in nearly equal proportions. It packs a jolt, all right. But it leaves you with a brutal hangover, too.",2013-06-26,16743,Trainspotting +Owen Gleiberman,fresh,0117951,Entertainment Weekly,"It would be hard to imagine a movie about drugs, depravity, and all-around bad behavior more electrifying than Trainspotting.",2011-09-07,16743,Trainspotting +Derek Elley,fresh,0117951,Variety,"Scabrous, brutal and hip, Trainspotting is a Clockwork Orange for the '90s.",2010-07-07,16743,Trainspotting +,fresh,0117951,Time Out,"This may not have the weight of 'Great Art', but it crystallises youthful disaffection with the verve of the best and brightest pop culture. A sensation.",2006-02-09,16743,Trainspotting +Liam Lacey,fresh,0117951,Globe and Mail,"The experience of watching Trainspotting -- the electric, nasty and slick descent into the milieu of young Scottish junkies -- is a little like speeding through the digestive tract of some voracious beast.",2002-04-12,16743,Trainspotting +Peter Travers,fresh,0117951,Rolling Stone,"Trainspotting is a singular sensation, a visionary knockout spiked with insight, wild invention and outrageous wit.",2001-05-12,16743,Trainspotting +Kenneth Turan,fresh,0117951,Los Angeles Times,"Exuberant and pitiless, profane yet eloquent, flush with the ability to create laughter out of unspeakable situations, ""Trainspotting"" is a drop-dead look at a dead-end lifestyle that has all the strength of its considerable contradictions.",2001-02-14,16743,Trainspotting +Jonathan Rosenbaum,fresh,0117951,Chicago Reader,"Far from nihilistic, though certainly calculated to butt up against various puritanical norms, [the film is a] feel-good jaunt about young Scottish heroin addicts and their degradation and betrayals of one another.",2000-01-01,16743,Trainspotting +James Berardinelli,fresh,0117951,ReelViews,"This isn't an examination of the Scottish drug culture from the outside looking in, it's one from the inside looking out.",2000-01-01,16743,Trainspotting +Charles Taylor,fresh,0117951,Salon.com,"Hip, brutally honest and humane...",2000-01-01,16743,Trainspotting +Susan Stark,rotten,0117951,Detroit News,,2000-01-01,16743,Trainspotting +Roger Ebert,fresh,0117951,Chicago Sun-Times,"The movie has been attacked as pro-drug and defended as anti-drug, but actually it is simply pragmatic. It knows that addiction leads to an unmanageable, exhausting, intensely uncomfortable daily routine, and it knows that only two things make it bearable",2000-01-01,16743,Trainspotting +Janet Maslin,fresh,0117951,New York Times,"For better or worse, sometimes strictly for the sake of shock value, the stylish irreverence of ""Trainspotting"" mimics that drug high and delivers its own potent kick.",2000-01-01,16743,Trainspotting +Mick LaSalle,fresh,0117951,San Francisco Chronicle,"This is not dour social realism. It's a shot- from-a-cannon youth movie, with likable young people sticking needles in their arms in working-class Edinburgh.",2000-01-01,16743,Trainspotting +Joe Baltake,fresh,0117951,Sacramento Bee,"You stop cringing and start smiling, laughing even, and these kids, who seem like aliens at first, grow on you. They're weirdly likable.",2000-01-01,16743,Trainspotting +Stanley Kauffmann,rotten,0117951,The New Republic,"A few patches are subtitled, but the general effect is of watching an opera without having read the libretto.",2000-01-01,16743,Trainspotting +Lisa Alspector,rotten,0118523,Chicago Reader,"With its clotted script, art direction that's all splash and no style, and dialogue that's too nakedly calculated to facilitate identification), this tedious and confused movie points several characters in obvious directions.",2009-07-28,12284,'Til There Was You +Leonard Klady,rotten,0118523,Variety,"A tired piece of romantic cornball fare that harks back to a bygone era, the film is a badly conceived, poorly executed fairy tale guaranteed to make audiences squirm in their seats.",2009-03-26,12284,'Til There Was You +Jack Mathews,rotten,0118523,Los Angeles Times,"Tripplehorn and McDermott are likable enough in their roles, but Holzman's precious, overwritten script gives them few genuinely honest moments.",2001-02-14,12284,'Til There Was You +Roger Ebert,rotten,0118523,Chicago Sun-Times,"Here is the most tiresome and affected movie in many a moon, a 114-minute demonstration of the Idiot Plot, in which everything could be solved with a few well-chosen words that are never spoken.",2000-01-01,12284,'Til There Was You +Andy Seiler,rotten,0118523,USA Today,A fragmentary and amateurish fairy tale.,2000-01-01,12284,'Til There Was You +Susan Stark,rotten,0118523,Detroit News,,2000-01-01,12284,'Til There Was You +Ruthe Stein,rotten,0118523,San Francisco Chronicle,Tripplehorn and McDermott don't look as if they belong together and aren't strong enough actors to overcome their physical incompatibility. So there's no sense of urgency about them getting together.,2000-01-01,12284,'Til There Was You +James Berardinelli,rotten,0118523,ReelViews,"The payoff, such as it is, is distressingly anticlimactic, and results in frustration.",2000-01-01,12284,'Til There Was You +Janet Maslin,rotten,0118523,New York Times,Winnie Holzman's screenplay is uneven.,2000-01-01,12284,'Til There Was You +Bruce Fretts,rotten,0118523,Entertainment Weekly,The studio left this alleged romantic comedy sitting on the shelf for a year -- and it didn't improve with age.,1997-05-30,12284,'Til There Was You +Carol Buckland,fresh,0116629,CNN.com,Splendidly cheesy entertainment.,2008-03-05,11591,Independence Day +Lisa Schwarzbaum,fresh,0116629,Entertainment Weekly,"It's the first futuristic disaster movie that's as cute as a button. Which, when all the special effects blow over, is what we Americans like in a monster hit.",2008-03-05,11591,Independence Day +David Ansen,fresh,0116629,Newsweek,"If I were a 10-year-old boy, I'd probably think it was the coolest movie going.",2008-03-05,11591,Independence Day +Todd McCarthy,fresh,0116629,Variety,As unavoidably entertaining as it is hopelessly cornball.,2008-03-05,11591,Independence Day +Rita Kempley,rotten,0116629,Washington Post,Maybe the moviemakers' mission was to boldly go where everyone in Hollywood has gone before: the bank.,2008-03-05,11591,Independence Day +Jonathan Rosenbaum,fresh,0116629,Chicago Reader,"The earnestness, the effects, and the notion of a whole world forgetting its differences to defeat a common foe carry a certain charm.",2008-03-05,11591,Independence Day +,fresh,0116629,Time Out,"Everything feels anti-climactic after the fireworks, but the moral is clear: it's the end of the world as we know it. And we feel fine.",2006-02-09,11591,Independence Day +Mick LaSalle,fresh,0116629,San Francisco Chronicle,"The picture is ultimately fun, thanks mostly to the colorful characters and the mock-hero ic spirit that kicks in full-throttle after the world has almost been destroyed.",2002-06-18,11591,Independence Day +,rotten,0116629,Globe and Mail,,2002-04-12,11591,Independence Day +Kenneth Turan,fresh,0116629,Los Angeles Times,"So much about ID4 is so old it's inevitable that homesick audiences, eager for familiar scenarios, will embrace it as if it's nothing but new.",2001-02-14,11591,Independence Day +Caryn James,fresh,0116629,New York Times,"The film has a genial it's-only-a-movie attitude that sets it apart, quite emphatically, from other blockbuster action movies.",2000-01-01,11591,Independence Day +Kevin McManus,rotten,0116629,Washington Post,"As for the human characters, they give merely adequate back-seat support to the special effects that drive this big-budget thriller.",2000-01-01,11591,Independence Day +James Berardinelli,rotten,0116629,ReelViews,"Unfortunately, and perhaps not unexpectedly, it doesn't live up to the hype.",2000-01-01,11591,Independence Day +Scott Rosenberg,rotten,0116629,Salon.com,There's precious little reward in plumbing the world-historical implications of the screenplay.,2000-01-01,11591,Independence Day +Susan Stark,fresh,0116629,Detroit News,,2000-01-01,11591,Independence Day +Roger Ebert,rotten,0116629,Chicago Sun-Times,"The aliens, when we finally see them, are a serious disappointment; couldn't they think of anything more interesting than octopus men?",2000-01-01,11591,Independence Day +Mike Clark,fresh,0116629,USA Today,"Though the movie isn't too deep, it's certainly a rousing state-of-the-art cartoon capped by an aerial-combat climax that, to its credit, isn't anti-climactic.",2000-01-01,11591,Independence Day +Louis B. Parks,fresh,0116629,Houston Chronicle,"You know going in that Independence Day will have terrific effects and loads of action. But the filmmakers have also carefully crafted appealing characters and several good relationships, which they develop as the story unfolds.",2000-01-01,11591,Independence Day +David Rooney,none,0117737,Variety,,2009-03-26,13262,Stealing Beauty +,none,0117737,Washington Post,,2008-10-18,13262,Stealing Beauty +Desson Thomson,rotten,0117737,Washington Post,[A] hilariously inscrutable exercise in pseudo-profundity.,2007-12-07,13262,Stealing Beauty +Jonathan Rosenbaum,fresh,0117737,Chicago Reader,"A civilized, mellow, and generally graceful chamber piece.",2007-12-07,13262,Stealing Beauty +Geoff Andrew,fresh,0117737,Time Out,A welcome reminder of Bertolucci's directorial assurance.,2006-02-09,13262,Stealing Beauty +Mick LaSalle,rotten,0117737,San Francisco Chronicle,[Bertolucci] builds an homage to beauty around a sullen void.,2002-06-18,13262,Stealing Beauty +Peter Travers,fresh,0117737,Rolling Stone,"In contrasting the sexuality and rebellion of Lucy's generation with his own, Bertolucci clearly yearns to rekindle his creative spirit.",2001-05-12,13262,Stealing Beauty +Jack Mathews,fresh,0117737,Los Angeles Times,"Even a lesser Bertolucci is an event, and Stealing Beauty has its charms.",2001-02-14,13262,Stealing Beauty +Roger Ebert,rotten,0117737,Chicago Sun-Times,"The movie plays like the kind of line a rich older guy would lay on a teenage model, suppressing his own intelligence and irony in order to spread out before her the wonderful world he would like to give her as a gift.",2000-01-01,13262,Stealing Beauty +Hal Hinson,fresh,0117737,Washington Post,"It may not be epic in scale; in artistic terms, though, it's huge.",2000-01-01,13262,Stealing Beauty +James Berardinelli,rotten,0117737,ReelViews,"What do you call a character study with shallow, sketchily-drawn characters, but a gorgeous setting? A scenery study, perhaps. Or an atmosphere study.",2000-01-01,13262,Stealing Beauty +Janet Maslin,fresh,0117737,New York Times,"For all the film's missteps, there is cause to echo the uncritical compliment bestowed by the playwright (Jeremy Irons) upon the film's ingenue (Liv Tyler): 'I so enjoyed watching you.'",2000-01-01,13262,Stealing Beauty +Susan Stark,rotten,0117737,Detroit News,,2000-01-01,13262,Stealing Beauty +,fresh,0117737,Entertainment Weekly,,1996-06-14,13262,Stealing Beauty +Todd McCarthy,none,0116277,Variety,,2009-03-26,15191,The Fan +,none,0116277,Time Out,,2006-01-26,15191,The Fan +Mick LaSalle,none,0116277,San Francisco Chronicle,,2002-06-18,15191,The Fan +,rotten,0116277,Globe and Mail,,2002-04-12,15191,The Fan +Rita Kempley,none,0116277,Washington Post,,2002-01-22,15191,The Fan +Kenneth Turan,none,0116277,Los Angeles Times,,2001-02-14,15191,The Fan +Stanley Kauffmann,none,0116277,The New Republic,,2000-01-01,15191,The Fan +Susan Stark,fresh,0116277,Detroit News,,2000-01-01,15191,The Fan +James Berardinelli,rotten,0116277,ReelViews,,2000-01-01,15191,The Fan +,none,0116277,Houston Chronicle,,2000-01-01,15191,The Fan +Stephen Holden,none,0116277,New York Times,,2000-01-01,15191,The Fan +Joe Baltake,none,0116277,Sacramento Bee,,2000-01-01,15191,The Fan +,rotten,0116277,USA Today,An awful but watchable baseball movie until it degenerates into an all-out howler.,2000-01-01,15191,The Fan +,fresh,0116277,Entertainment Weekly,,1996-06-01,15191,The Fan +,none,0031455,Variety,,2009-03-26,18778,The Hunchback of Notre Dame +Derek Adams,none,0031455,Time Out,,2006-06-24,18778,The Hunchback of Notre Dame +Frank S. Nugent,none,0031455,New York Times,,2006-03-25,18778,The Hunchback of Notre Dame +Owen Gleiberman,fresh,0115798,Entertainment Weekly,,2011-09-07,10786,The Cable Guy +Jonathan Rosenbaum,fresh,0115798,Chicago Reader,It's a fairly interesting effort -- much more ambitious than most Carrey vehicles.,2009-07-28,10786,The Cable Guy +Richard Schickel,rotten,0115798,TIME Magazine,"Aiming, perhaps, for a neat double helix of black humor and prankishness, they've ended up with a pretty ugly granny knot.",2009-07-27,10786,The Cable Guy +Leonard Klady,rotten,0115798,Variety,"While some of its antic set pieces are genuinely funny, this fuzzy-focus outing is hopelessly disconnected and ultimately unsatisfying.",2009-03-26,10786,The Cable Guy +,rotten,0115798,Time Out,Stiller's film ranks as an honourable failure.,2006-06-24,10786,The Cable Guy +Peter Stack,rotten,0115798,San Francisco Chronicle,"Much of it plays like a personal boob tube with Carrey trapped inside, determined to act his way out in a freak show of mugging. He's a disturbing mixture of psychopath and lonely soul. Here, as always, a little Carrey goes a long way.",2002-06-18,10786,The Cable Guy +,rotten,0115798,Globe and Mail,,2002-04-12,10786,The Cable Guy +Peter Travers,rotten,0115798,Rolling Stone,"Carrey runs riot, and Stiller won't stop him.",2001-05-12,10786,The Cable Guy +Kenneth Turan,rotten,0115798,Los Angeles Times,A misguided attempt to extend [Carrey's] range by having him play someone who is demented and dangerous.,2001-02-14,10786,The Cable Guy +Roger Ebert,rotten,0115798,Chicago Sun-Times,"As it is, themovie goes in one direction and the cable guy goes in another, and by the end we aren't really looking forward to seeing Jim Carrey reappear on the screen.",2000-01-01,10786,The Cable Guy +Stephanie Zacharek,rotten,0115798,Salon.com,"Stiller doesn't know where he wants the movie to go, and Broderick has nothing to do but look incredulous as Carrey wreaks havoc on his personal life.",2000-01-01,10786,The Cable Guy +Mike Clark,rotten,0115798,USA Today,"Ben Stiller can't distill the darkness, slapstick and fantasy into a consistent directorial tone, but the leads' expert give-and-take make the movie far from unbearable.",2000-01-01,10786,The Cable Guy +Susan Stark,rotten,0115798,Detroit News,,2000-01-01,10786,The Cable Guy +James Berardinelli,rotten,0115798,ReelViews,"Basically, it's not a whole lot of fun. There's no one to identify with -- Carrey's Cable Guy is a stalker, and Matthew Broderick's Steven is bland to the point of near-invisibility.",2000-01-01,10786,The Cable Guy +Janet Maslin,rotten,0115798,New York Times,"Though this should have been an opportunity for Mr. Carrey to expand upon his runaway success and solidify long-term stardom, The Cable Guy instead offers the shocking sight of a volatile comic talent in free fall.",2000-01-01,10786,The Cable Guy +,fresh,0115798,Entertainment Weekly,,1996-06-14,10786,The Cable Guy +Lisa Schwarzbaum,rotten,0116778,Entertainment Weekly,,2011-09-07,13310,Kingpin +Joe Leydon,none,0116778,Variety,,2009-03-26,13310,Kingpin +Geoff Andrew,none,0116778,Time Out,,2006-06-24,13310,Kingpin +Mick LaSalle,none,0116778,San Francisco Chronicle,,2002-06-18,13310,Kingpin +Joe Baltake,none,0116778,Sacramento Bee,,2000-01-01,13310,Kingpin +Lawrence Van Gelder,none,0116778,New York Times,,2000-01-01,13310,Kingpin +James Berardinelli,rotten,0116778,ReelViews,,2000-01-01,13310,Kingpin +Mike Clark,fresh,0116778,USA Today,"With maybe 25 belly laughs, the brazenly crude Kingpin is often uproarious, but be forewarned that its creators apparently conceived it underneath a limbo bar. How looow can a funny guilty pleasure go?",2000-01-01,13310,Kingpin +Roger Ebert,fresh,0116778,Chicago Sun-Times,,2000-01-01,13310,Kingpin +Susan Stark,fresh,0116778,Detroit News,,2000-01-01,13310,Kingpin +,none,0116778,Washington Post,,2000-01-01,13310,Kingpin +,rotten,0116778,Entertainment Weekly,,1996-07-26,13310,Kingpin +Lisa Schwarzbaum,fresh,0116213,Entertainment Weekly,,2011-09-07,13738,Eraser +Susan Stark,rotten,0116213,Detroit News,,2008-10-18,13738,Eraser +,none,0116213,Washington Post,,2008-10-18,13738,Eraser +Richard Corliss,fresh,0116213,TIME Magazine,"Welcome back, big guy.",2008-08-24,13738,Eraser +Todd McCarthy,rotten,0116213,Variety,"The advanced weaponry and nifty scopes notwithstanding, most of the gunplay is pretty standard-issue, with most of the victims being anonymous targets present just to be picked off.",2008-08-24,13738,Eraser +,rotten,0116213,Time Out,"It's a movie constructed around three or four self-consciously 'cool' episodes, and passably entertaining as such, but there's also an awful lot of uncool contrivance, coincidence and contempt for the audience.",2006-01-26,13738,Eraser +Mick LaSalle,rotten,0116213,San Francisco Chronicle,"This is one of those movies where good guys don't miss, and bad guys can't shoot to save their lives.",2002-06-18,13738,Eraser +Rick Groen,fresh,0116213,Globe and Mail,The bang-for-the-buck ratio is high enough to appease even the thinnest wallet.,2002-04-12,13738,Eraser +Kenneth Turan,rotten,0116213,Los Angeles Times,"Arnold Schwarzenegger tries his hardest to look formidable, forbidding and stern in Eraser, but what he mostly looks is tired.",2001-02-14,13738,Eraser +Mike Clark,rotten,0116213,USA Today,"The middling result, diverting while it lasts but too silly to recommend, is merely this week's funhouse action pic.",2000-01-01,13738,Eraser +Janet Maslin,rotten,0116213,New York Times,"Even for escapism, this is on the crazy side.",2000-01-01,13738,Eraser +Roger Ebert,fresh,0116213,Chicago Sun-Times,"Good action fun, with spectacular stunts and special effects.",2000-01-01,13738,Eraser +James Berardinelli,rotten,0116213,ReelViews,The premise is moderately intriguing.,2000-01-01,13738,Eraser +,fresh,0116213,Entertainment Weekly,,1996-06-21,13738,Eraser +Stephen Holden,none,0113147,New York Times,,2003-05-20,771032005,The Gate of Heavenly Peace +Jonathan Rosenbaum,none,0113147,Chicago Reader,,2002-07-26,771032005,The Gate of Heavenly Peace +,none,0113147,Los Angeles Times,,2002-07-26,771032005,The Gate of Heavenly Peace +Owen Gleiberman,fresh,0117218,Entertainment Weekly,,2011-09-07,11123,The Nutty Professor +Richard Schickel,fresh,0117218,TIME Magazine,"[Murphy] is able to invest his Professor Klump with an endearing dignity, give his lounge lizard alter ego, Buddy Love, an alligator's bite and then go on from there to play Klump's grandma. Also his mother, father and brother.",2009-06-06,11123,The Nutty Professor +Variety Staff,fresh,0117218,Variety,Murphy's most assured work in some time.,2009-03-26,11123,The Nutty Professor +Kevin McManus,fresh,0117218,Washington Post,"This is good, seamless comedy.",2002-08-20,11123,The Nutty Professor +Edward Guthmann,fresh,0117218,San Francisco Chronicle,"This is a chance to see Murphy doing what he does best, and for that alone it's worth seeing.",2002-06-18,11123,The Nutty Professor +,rotten,0117218,Globe and Mail,The flick is sketch comedy spun out to feature length.,2002-04-12,11123,The Nutty Professor +Peter Travers,fresh,0117218,Rolling Stone,"Eddie Murphy is funny again. Sadly, he lacks the guts to follow through on the cathartic self-satire that gives the film its distinction.",2001-05-12,11123,The Nutty Professor +Kenneth Turan,fresh,0117218,Los Angeles Times,"Messy, raucous, crude and undisciplined though this remake of the 1963 Jerry Lewis vehicle is, it also creates more laughter (and poignancy) than any Eddie Murphy movie has in quite some time.",2001-02-14,11123,The Nutty Professor +Janet Maslin,fresh,0117218,New York Times,"Murphy proves himself a surprisingly strong actor here, playing Sherman with sweetness and poignancy, not to mention loads of funny weight-related humor.",2000-01-01,11123,The Nutty Professor +James Berardinelli,rotten,0117218,ReelViews,This movie is a little too interested in easy jokes to bother with having a heart.,2000-01-01,11123,The Nutty Professor +Roger Ebert,fresh,0117218,Chicago Sun-Times,"The movie succeeds in two different ways: It's sweet and good-hearted, and then again it's raucous slapstick and bathroom humor.",2000-01-01,11123,The Nutty Professor +Mike Clark,fresh,0117218,USA Today,"At long last again, an Eddie Murphy movie has its plug in the socket.",2000-01-01,11123,The Nutty Professor +Jonathan Rosenbaum,fresh,0117218,Chicago Reader,"Murphy outdoes himself by bringing pathos as well as sweetness to the character, arguably making him a viable update of Lewis's bucktoothed Julius Kelp.",2000-01-01,11123,The Nutty Professor +Rita Kempley,fresh,0117218,Washington Post,An uneven but hilarious remake.,2000-01-01,11123,The Nutty Professor +Susan Stark,fresh,0117218,Detroit News,"The Nutty Professor isn't much of a movie, but it's certainly a prime showcase for Eddie Murphy's enormous talent.",2000-01-01,11123,The Nutty Professor +,fresh,0117218,Entertainment Weekly,,1996-06-28,11123,The Nutty Professor +Eric Hansen,none,0113610,Variety,,2012-02-23,770795686,"The Last Klezmer: Leopold Kozlowski, His Life and Music" +Derek Adams,none,0093199,Time Out,,2006-06-24,770882534,"Hol volt, hol nem volt" +Janet Maslin,none,0093199,New York Times,,2004-08-30,770882534,"Hol volt, hol nem volt" +Jonathan Rosenbaum,none,0093199,Chicago Reader,,2000-01-01,770882534,"Hol volt, hol nem volt" +Desson Thomson,none,0093199,Washington Post,,2000-01-01,770882534,"Hol volt, hol nem volt" +Hal Hinson,none,0093199,Washington Post,,2000-01-01,770882534,"Hol volt, hol nem volt" +,none,0106810,Time Out,,2006-02-11,770711645,En compagnie d'Antonin Artaud +Emanuel Levy,fresh,0106810,Variety,Sami Frey gives an astonishingly intense perfromance in his portrait of the genius and madness of the famed French poet-intellectual.,2006-01-27,770711645,En compagnie d'Antonin Artaud +Stephen Holden,none,0106810,New York Times,,2004-08-30,770711645,En compagnie d'Antonin Artaud +,none,0106810,Los Angeles Times,,2001-02-13,770711645,En compagnie d'Antonin Artaud +Mick LaSalle,none,0106810,San Francisco Chronicle,,2000-01-01,770711645,En compagnie d'Antonin Artaud +Hal Hinson,none,0106810,Washington Post,,2000-01-01,770711645,En compagnie d'Antonin Artaud +James Berardinelli,rotten,0106810,ReelViews,,2000-01-01,770711645,En compagnie d'Antonin Artaud +A.H. Weiler,none,0072362,New York Times,,2005-05-09,15665,A Very Natural Thing +Dave Kehr,none,0072362,Chicago Reader,,2000-01-01,15665,A Very Natural Thing +Lisa Schwarzbaum,rotten,0116040,Entertainment Weekly,,2011-09-07,12375,Daylight +Nick Pinkerton,none,0116040,Village Voice,,2011-07-14,12375,Daylight +Todd McCarthy,none,0116040,Variety,,2009-03-27,12375,Daylight +,none,0116040,Time Out,,2006-01-26,12375,Daylight +Janet Maslin,none,0116040,New York Times,,2003-05-20,12375,Daylight +Jeff Strickler,none,0116040,Minneapolis Star Tribune,,2002-11-06,12375,Daylight +Edward Guthmann,none,0116040,San Francisco Chronicle,,2002-06-18,12375,Daylight +,rotten,0116040,Globe and Mail,,2002-04-12,12375,Daylight +Kenneth Turan,none,0116040,Los Angeles Times,,2001-02-14,12375,Daylight +Joe Baltake,none,0116040,Sacramento Bee,,2000-01-01,12375,Daylight +Roger Ebert,rotten,0116040,Chicago Sun-Times,,2000-01-01,12375,Daylight +Susan Stark,rotten,0116040,Detroit News,,2000-01-01,12375,Daylight +Mike Clark,rotten,0116040,USA Today,"Though the explosion that seals off New York and New Jersey will have even curious theater concession stand crews bolting their posts, the characterizations are strictly low-cal.",2000-01-01,12375,Daylight +James Berardinelli,rotten,0116040,ReelViews,,2000-01-01,12375,Daylight +,none,0116040,Washington Post,,2000-01-01,12375,Daylight +,rotten,0116040,Entertainment Weekly,,1996-12-06,12375,Daylight +Todd McCarthy,rotten,0116365,Variety,"Story was originally conceived as an episode of ""Tales From the Crypt,"" and that is perhaps what it should have remained, as the thinness of the conceit shows throughout, painfully so in the first half.",2009-03-26,14032,The Frighteners +Nigel Floyd,fresh,0116365,Time Out,"At times the relentless special effects and tangled plotting veer towards visual and narrative overkill, but the final tonal swerve is shocking and effective.",2006-01-26,14032,The Frighteners +Janet Maslin,rotten,0116365,New York Times,"The actors can't keep the film's mood from verging on hysteria as the story roams all over the map. ""The Frighteners"" has flitted everywhere, even to heaven and hell, before it's over.",2003-05-20,14032,The Frighteners +,fresh,0116365,Globe and Mail,,2002-04-12,14032,The Frighteners +Kenneth Turan,fresh,0116365,Los Angeles Times,"Fortunately director Jackson, at home with all kinds of excess, keeps everything spinning nicely, not even losing a step when the mood turns increasingly disturbing.",2001-02-14,14032,The Frighteners +Roger Ebert,rotten,0116365,Chicago Sun-Times,"Incredible, the amount of work that went into ``The Frighteners.'' And appalling.",2000-01-01,14032,The Frighteners +James Berardinelli,rotten,0116365,ReelViews,,2000-01-01,14032,The Frighteners +Mike Clark,rotten,0116365,USA Today,A mess with sporadic flashes of creativity.,2000-01-01,14032,The Frighteners +Susan Stark,rotten,0116365,Detroit News,,2000-01-01,14032,The Frighteners +Edward Guthmann,rotten,0116365,San Francisco Chronicle,An object lesson in what to avoid when making the transition from low-budget films to studio productions.,2000-01-01,14032,The Frighteners +Ken Tucker,fresh,0116365,Entertainment Weekly,The Frighteners is ... that rare horror film that actually gets better as it proceeds; this scare machine has a heart and a brain.,1996-07-19,14032,The Frighteners +Owen Gleiberman,fresh,0116493,Entertainment Weekly,,2011-09-07,11210,Harriet the Spy +Emanuel Levy,none,0116493,Variety,,2009-03-26,11210,Harriet the Spy +Derek Adams,none,0116493,Time Out,,2006-06-24,11210,Harriet the Spy +Stephen Holden,none,0116493,New York Times,,2003-05-20,11210,Harriet the Spy +,none,0116493,Washington Post,,2003-05-06,11210,Harriet the Spy +,rotten,0116493,Globe and Mail,,2002-04-12,11210,Harriet the Spy +Joe Baltake,none,0116493,Sacramento Bee,,2002-02-14,11210,Harriet the Spy +Susan Stark,rotten,0116493,Detroit News,,2002-02-14,11210,Harriet the Spy +,none,0116493,Washington Post,,2002-02-14,11210,Harriet the Spy +Desson Thomson,rotten,0116493,Washington Post,A very draggy affair because Harriet's exploits are treated like an episodic laundry list.,2002-02-09,11210,Harriet the Spy +Keith Simanton,rotten,0116493,Film.com,"There's dancing, and bubble blowing and bed bouncing that's entirely aimless and Harriet's neighborhood sleuthing becomes particularly pointless.",2000-01-01,11210,Harriet the Spy +Tom Keogh,rotten,0116493,Film.com,"The film's OK, a little thick with sensory overload, but it wasn't made for old guys like me.",2000-01-01,11210,Harriet the Spy +Rita Kempley,rotten,0116493,Washington Post,...a tedious adaptation...,2000-01-01,11210,Harriet the Spy +Stacy Levine,fresh,0116493,Film.com,"As the film progresses, the story becomes engaging.",2000-01-01,11210,Harriet the Spy +James Berardinelli,fresh,0116493,ReelViews,"Harriet the Spy is an intelligent, insightful look at the tribulations of being a creative, misunderstood misfit at age eleven.",2000-01-01,11210,Harriet the Spy +Sean Means,rotten,0116493,Film.com,"There's a certain amateurish quality about Harriet the Spy, but it's more the TV-trained grownups behind the camera...than the pint-sized thespians in front of it.",2000-01-01,11210,Harriet the Spy +Roger Ebert,rotten,0116493,Chicago Sun-Times,...the pacing is slow and there are scenes that seem amateurish...,2000-01-01,11210,Harriet the Spy +Jay Carr,fresh,0116493,Boston Globe,"Fresh and charming, it never plays down to kids.",2000-01-01,11210,Harriet the Spy +Peter Stack,rotten,0116493,San Francisco Chronicle,"Harriet the Spy has real character in some of its details, but it never feels like much more than a low-budget TV show.",2000-01-01,11210,Harriet the Spy +,fresh,0116493,Entertainment Weekly,,1996-07-10,11210,Harriet the Spy +Todd McCarthy,none,0117333,Variety,,2009-03-26,10465,Phenomenon +Derek Adams,none,0117333,Time Out,,2006-06-24,10465,Phenomenon +Peter Stack,none,0117333,San Francisco Chronicle,,2002-06-18,10465,Phenomenon +,rotten,0117333,Globe and Mail,,2002-04-12,10465,Phenomenon +Kenneth Turan,none,0117333,Los Angeles Times,,2001-02-14,10465,Phenomenon +Joe Baltake,none,0117333,Sacramento Bee,,2000-01-01,10465,Phenomenon +Janet Maslin,none,0117333,New York Times,,2000-01-01,10465,Phenomenon +Roger Ebert,fresh,0117333,Chicago Sun-Times,,2000-01-01,10465,Phenomenon +Susan Stark,rotten,0117333,Detroit News,,2000-01-01,10465,Phenomenon +,none,0117333,Washington Post,,2000-01-01,10465,Phenomenon +Susan Wloszczyna,rotten,0117333,USA Today,"Works best if you can switch off your brain. Those who can will reach weepy nirvana. Those who can't will find this sticky-sweet wallow a bit, well, dumb.",2000-01-01,10465,Phenomenon +James Berardinelli,rotten,0117333,ReelViews,,2000-01-01,10465,Phenomenon +,rotten,0117333,Entertainment Weekly,,1996-07-05,10465,Phenomenon +,none,0118113,Variety,,2012-02-23,15389,Walking and Talking +Lisa Schwarzbaum,fresh,0118113,Entertainment Weekly,,2011-09-07,15389,Walking and Talking +Todd McCarthy,none,0118113,Variety,,2009-03-26,15389,Walking and Talking +Andrew Sarris,none,0118113,New York Observer,,2007-04-27,15389,Walking and Talking +,none,0118113,Time Out,,2006-01-26,15389,Walking and Talking +Rita Kempley,none,0118113,Washington Post,,2002-01-22,15389,Walking and Talking +Kevin Thomas,none,0118113,Los Angeles Times,,2001-02-14,15389,Walking and Talking +Roger Ebert,fresh,0118113,Chicago Sun-Times,,2000-01-01,15389,Walking and Talking +Joe Baltake,none,0118113,Sacramento Bee,,2000-01-01,15389,Walking and Talking +Edward Guthmann,none,0118113,San Francisco Chronicle,,2000-01-01,15389,Walking and Talking +James Berardinelli,fresh,0118113,ReelViews,,2000-01-01,15389,Walking and Talking +Mike Clark,rotten,0118113,USA Today,Comes perilously close to becoming a gab-fest treadmill.,2000-01-01,15389,Walking and Talking +Janet Maslin,none,0118113,New York Times,,2000-01-01,15389,Walking and Talking +Stanley Kauffmann,none,0118113,The New Republic,,2000-01-01,15389,Walking and Talking +,fresh,0118113,Entertainment Weekly,,1996-07-17,15389,Walking and Talking +Lisa Schwarzbaum,rotten,0117628,Entertainment Weekly,,2011-09-07,13832,She's the One +Leonard Klady,fresh,0117628,Variety,"Burns manages to take on a laundry list of touchy issues in a relatively frank, unflinching manner. His characters retain their dignity and integrity without false dramatic redemption. It's a true adult saga.",2009-03-26,13832,She's the One +Derek Adams,rotten,0117628,Time Out,"A bland, so-so romantic comedy without the charm to see it through.",2006-02-09,13832,She's the One +Mick LaSalle,rotten,0117628,San Francisco Chronicle,"She's the One isn't slick, smooth or particularly good, and it offers only a perfunctory exploration of the human heart.",2002-06-18,13832,She's the One +Rick Groen,fresh,0117628,Globe and Mail,Edward Burns returns to the themes of family and love that he examined in The Brothers McMullen.,2002-04-12,13832,She's the One +Peter Travers,rotten,0117628,Rolling Stone,"Sadly, the 28-year-old Irish auteur from New York lost his footing while stepping up the Hollywood food chain. Slickness set in.",2001-05-12,13832,She's the One +Janet Maslin,fresh,0117628,New York Times,"Burns emphatically avoids sophomore slump with an inviting, ruefully funny film that lives up to his initial promise.",2000-01-01,13832,She's the One +Mike Clark,fresh,0117628,USA Today,"A funnier, more polished variation on actor/director Ed Burns' The Brothers McMullen.",2000-01-01,13832,She's the One +Roger Ebert,rotten,0117628,Chicago Sun-Times,"Although the movie disappointed me, it did not dishearten me about Edwards Burns as an actor or filmmaker.",2000-01-01,13832,She's the One +James Berardinelli,rotten,0117628,ReelViews,"The sophomore jinx, the bane of hot, young film makers, has struck again.",2000-01-01,13832,She's the One +Susan Stark,fresh,0117628,Detroit News,,2000-01-01,13832,She's the One +Jeff Millar,fresh,0117628,Houston Chronicle,"A quality, offbeat movie.",2000-01-01,13832,She's the One +Cynthia Joyce,fresh,0117628,Salon.com,Light but hilarious...,2000-01-01,13832,She's the One +,rotten,0117628,Entertainment Weekly,,1996-08-23,13832,She's the One +Lisa Schwarzbaum,rotten,0117913,Entertainment Weekly,,2011-09-07,98812198,A Time to Kill +Richard Schickel,fresh,0117913,TIME Magazine,A likable -- maybe even lovable -- movie.,2009-06-14,98812198,A Time to Kill +Todd McCarthy,fresh,0117913,Variety,"Although it has its share of implausibilities, A Time To Kill is generally the most satisfying of the John Grisham screen adaptations to date.",2008-10-08,98812198,A Time to Kill +Geoff Andrew,rotten,0117913,Time Out,"Justice may be blind, but rarely have courtroom dramas presumed quite so heavily on cultural myopia as this heinous version of John Grisham's first novel.",2006-02-09,98812198,A Time to Kill +Janet Maslin,fresh,0117913,New York Times,"If the film doesn't add up to a cogent legal argument, neither does it have trouble delivering 2 hours and 20 minutes' worth of sturdy, highly charged drama.",2003-05-20,98812198,A Time to Kill +Edward Guthmann,fresh,0117913,San Francisco Chronicle,"Untrained as an actor, with only three minor roles to his credit, McConaughey holds the screen against Samuel L. Jackson, Sandra Bullock and Kevin Spacey, and completely justifies the buzz surrounding his role...",2002-06-18,98812198,A Time to Kill +,rotten,0117913,Globe and Mail,,2002-04-12,98812198,A Time to Kill +Peter Travers,fresh,0117913,Rolling Stone,"McConaughey, 26, is dynamite in a performance of smarts, sexiness, scrappy humor and unmistakable star sizzle.",2001-06-06,98812198,A Time to Kill +Roger Ebert,fresh,0117913,Chicago Sun-Times,A skillfully constructed morality play that pushes all the right buttons and arrives at all the right conclusions.,2000-01-01,98812198,A Time to Kill +Anthony Puccinelli,rotten,0117913,Chicago Reader,"Like many artists today, Grisham and Schumacher exploit racial tension without understanding it.",2000-01-01,98812198,A Time to Kill +James Berardinelli,fresh,0117913,ReelViews,"Despite certain drawbacks, A Time to Kill is involving, energetic, and occasionally thought-provoking. All things considered, this film will make for a worthwhile trip to the cinema for all, not just those who have time to kill.",2000-01-01,98812198,A Time to Kill +Mike Clark,rotten,0117913,USA Today,A handsome but riotously cluttered melodrama with maybe 145 subplots.,2000-01-01,98812198,A Time to Kill +Susan Stark,fresh,0117913,Detroit News,,2000-01-01,98812198,A Time to Kill +,rotten,0117913,Entertainment Weekly,,1996-07-24,98812198,A Time to Kill +Lisa Schwarzbaum,fresh,0115530,Entertainment Weekly,,2011-09-07,15611,American Buffalo +Geoff Andrew,none,0115530,Time Out,,2006-06-24,15611,American Buffalo +Daniel M. Kimmel,fresh,0115530,Variety,"A three-character, one-set chamber piece, pic lacks the bravura moments of the film version of the playwright's Glengarry Glen Ross",2005-04-29,15611,American Buffalo +,fresh,0115530,Globe and Mail,,2002-04-12,15611,American Buffalo +,none,0115530,Los Angeles Times,,2001-02-14,15611,American Buffalo +James Berardinelli,fresh,0115530,ReelViews,,2000-01-01,15611,American Buffalo +Stanley Kauffmann,none,0115530,The New Republic,,2000-01-01,15611,American Buffalo +Roger Ebert,rotten,0115530,Chicago Sun-Times,,2000-01-01,15611,American Buffalo +,none,0115530,Houston Chronicle,,2000-01-01,15611,American Buffalo +Susan Stark,fresh,0115530,Detroit News,,2000-01-01,15611,American Buffalo +Joe Baltake,none,0115530,Sacramento Bee,,2000-01-01,15611,American Buffalo +Peter Stack,none,0115530,San Francisco Chronicle,,2000-01-01,15611,American Buffalo +Stephen Holden,none,0115530,New York Times,,2000-01-01,15611,American Buffalo +,fresh,0115530,Entertainment Weekly,,1996-09-13,15611,American Buffalo +Geoff Andrew,none,0114266,Time Out,,2006-02-09,573372719,Les rendez-vous de Paris +Stanley Kauffmann,none,0114266,The New Republic,,2000-01-01,573372719,Les rendez-vous de Paris +Jeff Millar,rotten,0114266,Houston Chronicle,"There are bits of the three-episode Rendezvous in Paris that are, if not like watching paint dry, like watching the painter spackle the picture-hook holes and edge around the windows.",2000-01-01,573372719,Les rendez-vous de Paris +James Berardinelli,fresh,0114266,ReelViews,"As with many of his other films, Rohmer proves that social intercourse can be as delightful as the sexual variety.",2000-01-01,573372719,Les rendez-vous de Paris +Mick LaSalle,fresh,0114266,San Francisco Chronicle,"Somehow Rohmer keeps it fresh, if only because, after more than 30 years of making the same movie, there can be no doubt he's sincere.",2000-01-01,573372719,Les rendez-vous de Paris +Laura Miller,rotten,0114266,Salon.com,"Rohmer proves that sometimes shriveled fruit yields the strongest juice, provided you squeeze hard enough.",2000-01-01,573372719,Les rendez-vous de Paris +Roger Ebert,fresh,0114266,Chicago Sun-Times,One of the best of his works.,2000-01-01,573372719,Les rendez-vous de Paris +Janet Maslin,fresh,0114266,New York Times,"Precise, simple and deeply serious beneath their breezy and seductive surface, these stories enchantingly explore love's little treacheries and the stubborn immutability of human nature.",2000-01-01,573372719,Les rendez-vous de Paris +Joe Baltake,none,0114266,Sacramento Bee,,2000-01-01,573372719,Les rendez-vous de Paris +Lisa Schwarzbaum,rotten,0134618,Entertainment Weekly,,2011-09-07,12982,"Mystery, Alaska" +Andrew Sarris,none,0134618,New York Observer,,2007-04-27,12982,"Mystery, Alaska" +,none,0134618,Atlanta Journal-Constitution,,2004-02-21,12982,"Mystery, Alaska" +,rotten,0134618,Globe and Mail,,2002-04-05,12982,"Mystery, Alaska" +Kenneth Turan,none,0134618,Los Angeles Times,,2001-02-14,12982,"Mystery, Alaska" +Joe Baltake,fresh,0134618,Sacramento Bee,"This is an attractive, talented, most companionable cast.",2000-01-01,12982,"Mystery, Alaska" +Lou Lumenick,fresh,0134618,New York Post,"Doesn't quite achieve its goal, but this overgrown little movie does offer solid laughs, engaging performances and a captivating setting.",2000-01-01,12982,"Mystery, Alaska" +David Hunter,rotten,0134618,Hollywood Reporter,A hybrid of sports movies and TV sitcoms with little originality and few surprises or memorably rough edges.,2000-01-01,12982,"Mystery, Alaska" +Susan Stark,rotten,0134618,Detroit News,"The Detroit Red Wings' season begins Saturday. Why enrich Disney's coffers for a shameless piece of cinematic junk like Mystery, Alaska when you can see the real thing?",2000-01-01,12982,"Mystery, Alaska" +Roger Ebert,fresh,0134618,At the Movies,"Mystery, Alaska is sweet, pleasant, low-key, inoffensive and unnecessary.",2000-01-01,12982,"Mystery, Alaska" +Sean Means,fresh,0134618,Film.com,Raucously funny.,2000-01-01,12982,"Mystery, Alaska" +Gene Seymour,fresh,0134618,Newsday,"Mystery, Alaska is fun to watch, even if you're not a hockey fan, thanks to an appealing cast and some exciting game scenes.",2000-01-01,12982,"Mystery, Alaska" +James Berardinelli,rotten,0134618,ReelViews,,2000-01-01,12982,"Mystery, Alaska" +Cody Clark,rotten,0134618,Mr. Showbiz,More hockey and less quirky drama might have saved this yawner.,2000-01-01,12982,"Mystery, Alaska" +Tom Keogh,fresh,0134618,Film.com,"Roach has to deal with some pure corn at the end, but he pulls it off and guides the actors to and through far better moments.",2000-01-01,12982,"Mystery, Alaska" +Stephen Holden,fresh,0134618,New York Times,Conveys some of the thrill and ferocity of ice hockey while skillfully folding together multiple personal dramas.,2000-01-01,12982,"Mystery, Alaska" +John Petrakis,rotten,0134618,Chicago Tribune,"There is no denying Kelley's ability to write a funny one-liner or pen a poignant speech, but this frustrating film has the potential to be much more than it is, especially with the collection of able actors on hand.",2000-01-01,12982,"Mystery, Alaska" +Jeff Millar,rotten,0134618,Houston Chronicle,Overpopulated with characters.,2000-01-01,12982,"Mystery, Alaska" +Jay Carr,rotten,0134618,Boston Globe,Kelley is obviously aware that to make the move from TV to films he must fill his scripts with greater depth and density.,2000-01-01,12982,"Mystery, Alaska" +Chris Colin,rotten,0134618,Salon.com,It contains nothing more than weather and a set of one-dimensional cut-outs.,2000-01-01,12982,"Mystery, Alaska" +Emanuel Levy,rotten,0116320,Variety,"Scripter Preston A. Whitmore II and helmer Kevin Hooks are obviously well-versed in film lore, for they have concocted a hodgepodge that recycles elements from several white-black team movies.",2009-03-26,16068,Fled +,rotten,0116320,Time Out,"Lots of physical energy, but little else.",2006-01-26,16068,Fled +Stephen Holden,rotten,0116320,New York Times,The situations are so ludicrous and the screenplay so barren of wit that the best it can come up with in the way of jokey humor is to have the characters compare their adventures to scenes in other movies.,2003-05-20,16068,Fled +Mick LaSalle,fresh,0116320,San Francisco Chronicle,"Baldwin, in particular, has an appealing bad-boy quality.",2002-06-18,16068,Fled +,rotten,0116320,Globe and Mail,,2002-04-12,16068,Fled +Hal Hinson,rotten,0116320,Washington Post,"On the whole, Baldwin seems pretty dim for a renowned cyber-anarchist. Also, he simply isn't in the same class of actor as Tony Curtis. Or Laurence Fishburne, who swaggers through this mess with his usual suave manliness.",2002-01-22,16068,Fled +Kevin Thomas,fresh,0116320,Los Angeles Times,"A successful summer diversion, the kind of film you start forgetting the moment it's over but is fun while you're watching it.",2001-02-14,16068,Fled +Susan Wloszczyna,rotten,0116320,USA Today,Fled? Flee.,2000-01-01,16068,Fled +James Berardinelli,rotten,0116320,ReelViews,There's nothing particularly deep or challenging about this movie.,2000-01-01,16068,Fled +Susan Stark,rotten,0116320,Detroit News,,2000-01-01,16068,Fled +Roger Ebert,rotten,0116320,Chicago Sun-Times,"Fled is a movie without a brain in its head, and it borrows cheerfully from lots of other movies, but at least it has the integrity to acknowledge its sources.",2000-01-01,16068,Fled +,rotten,0116320,Entertainment Weekly,,1996-07-19,16068,Fled +Desmond Ryan,rotten,0116756,Philadelphia Inquirer,"In his Hollywood debut, Shaq more or less played himself as a coveted college center in William Friedkin's excellent Blue Chips. Kazaam is a compelling argument for keeping him on the court and as far away from a movie set as possible.",2013-05-29,12291,Kazaam +John Petrakis,rotten,0116756,Chicago Tribune,Are you bored yet?,2013-05-29,12291,Kazaam +Jay Boyar,rotten,0116756,Orlando Sentinel,"I'd call the film innocuous, except that Max's gangster dad is apparently an Italian-American and the movie's main villain is an Arab. Do kids really need these stereotypes reinforced? There's also more violence here than you might expect.",2013-05-29,12291,Kazaam +Owen Gleiberman,rotten,0116756,Entertainment Weekly,"Kazaam never brings off the trick we most want to see: It fails to make the jolly, 7-foot-1 Shaq larger than life.",2011-09-07,12291,Kazaam +Godfrey Cheshire,rotten,0116756,Variety,"Too gritty, violent and downbeat for tykes, it's also a bit juvenile and fairy tale-like for teens and older auds.",2009-03-26,12291,Kazaam +Lawrence Van Gelder,rotten,0116756,New York Times,"As fairy tale, buddy comedy, family drama, thriller or rap revue, Kazaam is simply uninspired and unconvincing, and Mr. O'Neal, who can carry a basketball team, lacks the charisma to rescue this misguided effort.",2003-05-20,12291,Kazaam +Esther Iverem,rotten,0116756,Washington Post,"The movie's producers could use a genie of their own. Surely, if granted three wishes, they could have produced a better film.",2002-01-22,12291,Kazaam +Jack Mathews,rotten,0116756,Los Angeles Times,The gloomy psychology detracts from the film's magic elements.,2001-02-14,12291,Kazaam +Roger Ebert,rotten,0116756,Chicago Sun-Times,"As for Shaquille O'Neal, given his own three wishes the next time, he should go for a script, a director and an interesting character.",2000-01-01,12291,Kazaam +Mick LaSalle,rotten,0116756,San Francisco Chronicle,"One thing is for certain: When a genie movie doesn't come up with satisfying wishes, it's a sure sign it's not really interested in genies but in putting a seven-foot basketball player in a funny outfit.",2000-01-01,12291,Kazaam +James Berardinelli,rotten,0116756,ReelViews,"This is as witless as movies come -- an unamusing, moronic blend of horrible acting and inept screenwriting.",2000-01-01,12291,Kazaam +Susan Stark,rotten,0116756,Detroit News,,2000-01-01,12291,Kazaam +Susan Wloszczyna,rotten,0116756,USA Today,The story blares its lessons like a shameless after-school TV special.,2000-01-01,12291,Kazaam +Lisa Schwarzbaum,rotten,0116823,Entertainment Weekly,,2011-09-07,265864969,Larger Than Life +Todd McCarthy,none,0116823,Variety,,2009-03-26,265864969,Larger Than Life +Geoff Andrew,none,0116823,Time Out,,2006-06-24,265864969,Larger Than Life +Stephen Holden,none,0116823,New York Times,,2003-05-20,265864969,Larger Than Life +Rita Kempley,none,0116823,Washington Post,,2002-01-22,265864969,Larger Than Life +Jonathan Rosenbaum,rotten,0116823,Chicago Reader,,2000-01-01,265864969,Larger Than Life +Edward Guthmann,none,0116823,San Francisco Chronicle,,2000-01-01,265864969,Larger Than Life +James Berardinelli,rotten,0116823,ReelViews,,2000-01-01,265864969,Larger Than Life +,rotten,0116823,USA Today,"Manages to eke out only infrequent, peanut-size pleasures along its lumbering way.",2000-01-01,265864969,Larger Than Life +Susan Stark,rotten,0116823,Detroit News,,2000-01-01,265864969,Larger Than Life +Roger Ebert,rotten,0116823,Chicago Sun-Times,,2000-01-01,265864969,Larger Than Life +,rotten,0116823,Entertainment Weekly,,1996-11-01,265864969,Larger Than Life +,none,0112568,Time Out,,2006-02-09,770919052,A Boy Called Hate +David Kronke,none,0112568,Los Angeles Times,,2001-02-13,770919052,A Boy Called Hate +Lawrence Van Gelder,none,0112568,New York Times,,2000-01-01,770919052,A Boy Called Hate +Peter Stack,none,0112568,San Francisco Chronicle,,2000-01-01,770919052,A Boy Called Hate +Justin Chang,fresh,0118073,Variety,A considerably better second installment than one usually encounters.,2008-05-18,12342,A Very Brady Sequel +Mick LaSalle,fresh,0118073,San Francisco Chronicle,"As a satire of a sitcom that wasn't funny, it's often at its funniest when it's purposely stale.",2002-06-18,12342,A Very Brady Sequel +Kenneth Turan,none,0118073,Los Angeles Times,,2001-02-14,12342,A Very Brady Sequel +Roger Ebert,rotten,0118073,Chicago Sun-Times,"I didn't laugh much during A Very Brady Sequel, but I did smile a lot.",2000-01-01,12342,A Very Brady Sequel +Susan Wloszczyna,fresh,0118073,USA Today,Still delivers diverting comic fluff for the bland clan's fans.,2000-01-01,12342,A Very Brady Sequel +James Berardinelli,rotten,0118073,ReelViews,"No incarnation of the Brady Bunch, no matter how cleverly satirized, can use up an hour and a half's screen time without making the audience feel like they've overdosed.",2000-01-01,12342,A Very Brady Sequel +Desson Thomson,fresh,0118073,Washington Post,"A Very Brady Sequel isn't great, but it's enjoyable.",2000-01-01,12342,A Very Brady Sequel +Susan Stark,rotten,0118073,Detroit News,,2000-01-01,12342,A Very Brady Sequel +Janet Maslin,fresh,0118073,New York Times,The new film hints mischievously at the kind of dysfunction that would truly bring the Brady bunch up to date.,2000-01-01,12342,A Very Brady Sequel +,fresh,0118073,Entertainment Weekly,,1996-08-23,12342,A Very Brady Sequel +Derek Adams,none,0049521,Time Out,,2006-01-26,528393660,La mort en ce jardin +Vincent Canby,fresh,0049521,New York Times,"Death in the Garden is a kind of halfway house for the film genius, made when he had yet to receive the acclaim that would give him full control of his movies, but after he had been taken seriously enough by the money men.",2005-05-09,528393660,La mort en ce jardin +Dave Kehr,fresh,0049521,Chicago Reader,"No masterpiece, but a prime example of subversive cinema.",2000-01-01,528393660,La mort en ce jardin +Stephen Holden,none,0112746,New York Times,,2003-05-20,770785563,The Crude Oasis +Peter Rainer,none,0112746,Los Angeles Times,,2001-02-13,770785563,The Crude Oasis +Rita Kempley,none,0112746,Washington Post,,2000-01-01,770785563,The Crude Oasis +James Berardinelli,rotten,0112746,ReelViews,,2000-01-01,770785563,The Crude Oasis +Edward Guthmann,none,0112746,San Francisco Chronicle,,2000-01-01,770785563,The Crude Oasis +Roger Ebert,none,0061495,Chicago Sun-Times,,2012-05-18,19684,La collectionneuse +Tom Milne,fresh,0061495,Time Out,Wryly and delightfully witty.,2006-06-24,19684,La collectionneuse +Vincent Canby,rotten,0061495,New York Times,"It's as if the film were a kind of living notebook for what Rohmer was to do later, with greater ease and refinement.",2005-05-09,19684,La collectionneuse +Dave Kehr,fresh,0061495,Chicago Reader,"Rohmer's impossibly light, graceful way of posing profound moral questions hasn't yet wholly coalesced, though this 1966 film does have his soft, slow rhythm.",2000-01-01,19684,La collectionneuse +Dave Calhoun,fresh,0071691,Time Out,The conflict between logic and the unknowable is as fascinating and exciting for us as it clearly is for Herzog.,2013-07-03,19476,Jeder für sich und Gott gegen alle +Roger Ebert,fresh,0071691,Chicago Sun-Times,A lyrical film about the least lyrical of men.,2008-01-04,19476,Jeder für sich und Gott gegen alle +Geoff Andrew,none,0071691,Time Out,,2006-01-26,19476,Jeder für sich und Gott gegen alle +Richard Eder,fresh,0071691,New York Times,Every Man is a superb movie because Mr. Herzog has managed to treat the fable in stunning human and dramatic terms.,2005-05-09,19476,Jeder für sich und Gott gegen alle +Deborah Young,none,0112716,Variety,,2012-02-23,770726134,O Convento +,none,0112716,Time Out,,2006-06-24,770726134,O Convento +Stephen Holden,none,0112716,New York Times,,2004-09-07,770726134,O Convento +Kevin Thomas,none,0112716,Los Angeles Times,,2001-02-14,770726134,O Convento +Peter Stack,none,0112716,San Francisco Chronicle,,2000-01-01,770726134,O Convento +Joe Leydon,none,0115472,Variety,,2009-03-26,9870,The Adventures of Pinocchio +Geoff Andrew,none,0115472,Time Out,,2006-06-24,9870,The Adventures of Pinocchio +,none,0115472,Washington Post,,2000-01-01,9870,The Adventures of Pinocchio +Andy Seiler,fresh,0115472,USA Today,It's the woodsy children's movie Walt Disney didn't want to make: chockablock with mischievous mayhem and light on the sap.,2000-01-01,9870,The Adventures of Pinocchio +James Berardinelli,rotten,0115472,ReelViews,,2000-01-01,9870,The Adventures of Pinocchio +Lawrence Van Gelder,none,0115472,New York Times,,2000-01-01,9870,The Adventures of Pinocchio +Susan Stark,rotten,0115472,Detroit News,,2000-01-01,9870,The Adventures of Pinocchio +Roger Ebert,rotten,0115472,Chicago Sun-Times,,2000-01-01,9870,The Adventures of Pinocchio +Mick LaSalle,none,0115472,San Francisco Chronicle,,2000-01-01,9870,The Adventures of Pinocchio +Joe Baltake,none,0115472,Sacramento Bee,,2000-01-01,9870,The Adventures of Pinocchio +,rotten,0115472,Entertainment Weekly,,1996-07-26,9870,The Adventures of Pinocchio +Lisa Schwarzbaum,fresh,0116707,Entertainment Weekly,,2011-09-07,11905,Joe's Apartment +Joe Leydon,rotten,0116707,Variety,"Unfortunately, nothing that any of the humans contribute to Joe's Apartment is nearly as interesting as the musical numbers and comedy riffs of the cockroaches.",2008-05-12,11905,Joe's Apartment +Janet Maslin,rotten,0116707,New York Times,Some viewers will still want to reach for the Raid.,2003-05-20,11905,Joe's Apartment +Kevin Thomas,rotten,0116707,Los Angeles Times,"John Payson's Joe's Apartment may well have been a funny MTV short, but stretched to feature length it's got to be the most putrid picture since The Garbage Pail Kids Movie nearly a decade ago.",2001-02-14,11905,Joe's Apartment +James Berardinelli,rotten,0116707,ReelViews,"There's not enough story here for something half that length, so we're subjected to numerous pointless and irritating song-and-dance numbers designed to nudge the lame plot towards its conclusion.",2000-01-01,11905,Joe's Apartment +Susan Stark,rotten,0116707,Detroit News,,2000-01-01,11905,Joe's Apartment +Roger Ebert,rotten,0116707,Chicago Sun-Times,"The insects have obnoxious, piping little voices and sound like the Chipmunks had inhaled helium.",2000-01-01,11905,Joe's Apartment +Andy Seiler,rotten,0116707,USA Today,So much up-to- the-minute technology hasn't been used for so disastrous a product since the Hindenburg.,2000-01-01,11905,Joe's Apartment +,fresh,0116707,Entertainment Weekly,,1996-07-26,11905,Joe's Apartment +Owen Gleiberman,rotten,0116313,Entertainment Weekly,,2011-09-07,10391,The First Wives Club +Leonard Klady,none,0116313,Variety,,2009-03-26,10391,The First Wives Club +,none,0116313,Time Out,,2006-01-26,10391,The First Wives Club +Edward Guthmann,fresh,0116313,San Francisco Chronicle,,2002-06-18,10391,The First Wives Club +,rotten,0116313,Globe and Mail,,2002-04-12,10391,The First Wives Club +Peter Travers,none,0116313,Rolling Stone,,2001-05-12,10391,The First Wives Club +Kenneth Turan,none,0116313,Los Angeles Times,,2001-02-14,10391,The First Wives Club +Janet Maslin,none,0116313,New York Times,,2000-01-01,10391,The First Wives Club +Jonathan Rosenbaum,none,0116313,Chicago Reader,,2000-01-01,10391,The First Wives Club +James Berardinelli,rotten,0116313,ReelViews,,2000-01-01,10391,The First Wives Club +,none,0116313,Houston Chronicle,,2000-01-01,10391,The First Wives Club +Joe Baltake,none,0116313,Sacramento Bee,,2000-01-01,10391,The First Wives Club +,fresh,0116313,USA Today,"Diane Keaton is at her best here, Goldie Hawn has never been this good, and we know going in that Bette Midler is virtually tailored to a raucous farce about the sweet revenge of spurned spouses.",2000-01-01,10391,The First Wives Club +Stephanie Zacharek,none,0116313,Salon.com,,2000-01-01,10391,The First Wives Club +Roger Ebert,rotten,0116313,Chicago Sun-Times,,2000-01-01,10391,The First Wives Club +Susan Stark,rotten,0116313,Detroit News,,2000-01-01,10391,The First Wives Club +,none,0116313,Washington Post,,2000-01-01,10391,The First Wives Club +,rotten,0116313,Entertainment Weekly,,1996-09-20,10391,The First Wives Club +,none,0114550,Variety,,2009-03-26,14569,Stonewall +Derek Adams,none,0114550,Time Out,,2006-06-24,14569,Stonewall +,rotten,0114550,Globe and Mail,,2002-04-12,14569,Stonewall +Stephen Holden,none,0114550,New York Times,,2000-01-01,14569,Stonewall +Roger Ebert,rotten,0114550,Chicago Sun-Times,,2000-01-01,14569,Stonewall +,none,0114550,Washington Post,,2000-01-01,14569,Stonewall +Joe Baltake,none,0114550,Sacramento Bee,,2000-01-01,14569,Stonewall +Edward Guthmann,none,0114550,San Francisco Chronicle,,2000-01-01,14569,Stonewall +James Berardinelli,fresh,0114550,ReelViews,,2000-01-01,14569,Stonewall +Owen Gleiberman,fresh,0117438,Entertainment Weekly,"Gibson has always had a mesmerizing dark side (remember his vengefulness in Mad Max?), and when his rage catches fire, so does Ransom.",2011-09-07,15243,Ransom +Geoff Andrew,fresh,0117438,Time Out,"Howard pushes and probes this rich tension with expert casting, restless camerawork and a fractured editing style.",2006-02-09,15243,Ransom +Janet Maslin,fresh,0117438,New York Times,"Mr. Howard has made ''Ransom'' in the same clean, swift, logical style that sent his ''Apollo 13'' into orbit, resulting in a spellbinding crime tale that delivers surprises right down to the wire.",2003-05-20,15243,Ransom +,rotten,0117438,Globe and Mail,,2002-07-12,15243,Ransom +Edward Guthmann,rotten,0117438,San Francisco Chronicle,,2002-06-18,15243,Ransom +Peter Travers,none,0117438,Rolling Stone,,2001-05-12,15243,Ransom +Rita Kempley,fresh,0117438,Washington Post,A competent nail-biter that ably exploits a parent's worst nightmare.,2000-01-01,15243,Ransom +Susan Wloszczyna,fresh,0117438,USA Today,"This is a blueprint for mainstream moviegoing, but be forewarned that the finale is surprisingly down-and-dirty. In this case, though, the violence blisteringly redeems what has been a merely OK thriller.",2000-01-01,15243,Ransom +Susan Stark,rotten,0117438,Detroit News,,2000-01-01,15243,Ransom +Roger Ebert,fresh,0117438,Chicago Sun-Times,"Gibson gives an interesting performance, showing a man trying to think his way out of a crisis, and Sinise makes a good foil: Here are two smart men playing a game with deadly stakes.",2000-01-01,15243,Ransom +Charles Taylor,fresh,0117438,Salon.com,"""Ransom"" is dark and risky in a way that's become almost unthinkable for mainstream movies in the '90s.",2000-01-01,15243,Ransom +James Berardinelli,fresh,0117438,ReelViews,,2000-01-01,15243,Ransom +Joe Baltake,none,0117438,Sacramento Bee,,2000-01-01,15243,Ransom +Ruth Hessey,rotten,0962726,"MovieTime, ABC Radio National",So sweet you'll leave the cinema with diabetes.,2008-12-05,770676333,High School Musical 3: Senior Year +Anthony Lane,fresh,0962726,New Yorker,"Its winning formula is driven not by narrative but by what isn't there: no sex, no drugs, and no rock and roll-- unless you count the logjam of thundering power ballads.",2008-10-27,770676333,High School Musical 3: Senior Year +Tasha Robinson,fresh,0962726,Chicago Tribune,"Musical 3 is frustratingly shallow, but what it lacks in narrative ambition, it makes up for in dazzling choreography.",2008-10-24,770676333,High School Musical 3: Senior Year +Peter Howell,fresh,0962726,Toronto Star,It's a classic case of giving the people what they want.,2008-10-24,770676333,High School Musical 3: Senior Year +Moira MacDonald,rotten,0962726,Seattle Times,Everything works out! Everyone's hair looks great! Some of the kids end up at Juilliard! I hope real high school is like this.,2008-10-24,770676333,High School Musical 3: Senior Year +Peter Hartlaub,rotten,0962726,San Francisco Chronicle,"Efron is once again Travolta-esque, although he appears to be quickly outgrowing this material. Hudgens is still annoyingly bland both in facial expressions and voice.",2008-10-24,770676333,High School Musical 3: Senior Year +Stephanie Zacharek,fresh,0962726,Salon.com,"Since when shouldn't it be fun to spend 90 minutes or so watching good-looking young people, singing and dancing relatively well?",2008-10-24,770676333,High School Musical 3: Senior Year +Roger Moore,fresh,0962726,Orlando Sentinel,"If you aren't between the ages of six and 14 or don't have kids, you may have trouble getting into that Wildcat spirit. But don't be shocked if Senior Year takes you back, just a bit, and makes you wish every high school was a little like East High.",2008-10-24,770676333,High School Musical 3: Senior Year +Stephen Whitty,rotten,0962726,Newark Star-Ledger,Sorry. Started to doze off.,2008-10-24,770676333,High School Musical 3: Senior Year +Kyle Smith,rotten,0962726,New York Post,"The movie sounds as though it was recorded in a padded chamber instead of a bustling school, and it looks like it came from some alternate world, one that basks in the eternal sunshine of the spotless skin.",2008-10-24,770676333,High School Musical 3: Senior Year +Elizabeth Weitzman,fresh,0962726,New York Daily News,It's hard to complain about a pop culture phenomenon built on unabashed innocence.,2008-10-24,770676333,High School Musical 3: Senior Year +Mark Olsen,fresh,0962726,Los Angeles Times,"The HSM series has always been playful and high-spirited, with a refreshing emphasis on collective action and the importance of group effort over the individual, and there's nothing in High School Musical 3: Senior Year to upset the formula.",2008-10-24,770676333,High School Musical 3: Senior Year +Stephen Holden,fresh,0962726,New York Times,Mr. Efron's athletic grace is Astaire-like in its casual authority. Ms. Hudgens's blissful smiles melt the screen.,2008-10-24,770676333,High School Musical 3: Senior Year +Catherine Dawson March,fresh,0962726,Globe and Mail,Disney raised the stakes by turning its hit TV-movie franchise into a feature film -- and the bet has paid off.,2008-10-24,770676333,High School Musical 3: Senior Year +Adam Graham,fresh,0962726,Detroit News,"Go ahead, dance it out.",2008-10-24,770676333,High School Musical 3: Senior Year +Nancy Churnin,fresh,0962726,Dallas Morning News,"If you're a fan, you won't be disappointed.",2008-10-24,770676333,High School Musical 3: Senior Year +Ty Burr,rotten,0962726,Boston Globe,"For all its unforgivable blandness, High School Musical opens young audiences to the charms of this most transporting of movie genres.",2008-10-24,770676333,High School Musical 3: Senior Year +David Jenkins,rotten,0962726,Time Out,"At best, you'll be disappointed; at worst, you'll want to blow up a high school.",2008-10-24,770676333,High School Musical 3: Senior Year +,fresh,0962726,St. Louis Post-Dispatch,,2008-10-24,770676333,High School Musical 3: Senior Year +,rotten,0962726,Arizona Republic,,2008-10-24,770676333,High School Musical 3: Senior Year +Lawrence Van Gelder,none,0117332,New York Times,,2003-05-20,16119,Phat Beach +Richard Harrington,none,0117332,Washington Post,,2002-01-22,16119,Phat Beach +,none,0117332,Los Angeles Times,,2001-02-14,16119,Phat Beach +James Berardinelli,rotten,0117332,ReelViews,,2000-01-01,16119,Phat Beach +Joe Baltake,none,0117332,Sacramento Bee,,2000-01-01,16119,Phat Beach +Emanuel Levy,rotten,0116353,Variety,Joyce Carol Oates and her fans will be disappointed by this trivial and muddled screen version of her popular novel about female bonding and empowerment.,2008-02-06,13102,Foxfire +Jack Mathews,none,0116353,Los Angeles Times,,2001-02-14,13102,Foxfire +James Berardinelli,rotten,0116353,ReelViews,,2000-01-01,13102,Foxfire +Jonathan Rosenbaum,fresh,0116353,Chicago Reader,,2000-01-01,13102,Foxfire +,none,0116353,Houston Chronicle,,2000-01-01,13102,Foxfire +Stephen Holden,none,0116353,New York Times,,2000-01-01,13102,Foxfire +Susan Stark,rotten,0116353,Detroit News,,2000-01-01,13102,Foxfire +Owen Gleiberman,fresh,0115857,Entertainment Weekly,,2011-09-07,11494,Chain Reaction +Leonard Klady,none,0115857,Variety,,2009-03-26,11494,Chain Reaction +Dana Stevens,none,0115857,Slate,,2006-09-23,11494,Chain Reaction +Janet Maslin,none,0115857,New York Times,,2003-05-20,11494,Chain Reaction +,rotten,0115857,Globe and Mail,,2002-04-12,11494,Chain Reaction +Jack Mathews,none,0115857,Los Angeles Times,,2001-02-14,11494,Chain Reaction +James Berardinelli,rotten,0115857,ReelViews,Chain Reaction isn't dull -- the film is paced to keep audiences attentive -- but the lack of originality dampens its enjoyability.,2000-01-01,11494,Chain Reaction +Edward Guthmann,fresh,0115857,San Francisco Chronicle,"[Chain Reaction] has better acting, better writing, more spectacular chase sequences and more genuine drama than all of this summer's blockbusters.",2000-01-01,11494,Chain Reaction +Joe Baltake,none,0115857,Sacramento Bee,,2000-01-01,11494,Chain Reaction +Roger Ebert,rotten,0115857,Chicago Sun-Times,"It's not a bad film in individual moments and in the energy of itsperformances, but it doesn't make a whole lot of sense.",2000-01-01,11494,Chain Reaction +Mike Clark,rotten,0115857,USA Today,"The movie is so uninvolving that it inspires renewed respect for Broken Arrow, which was equally stupid but excitingly filmed.",2000-01-01,11494,Chain Reaction +Jeff Millar,rotten,0115857,Houston Chronicle,"The narrative is very complex, but what's on the screen is little more than generic, non-narrative-specific, guy-being-chased stuff.",2000-01-01,11494,Chain Reaction +Susan Stark,rotten,0115857,Detroit News,,2000-01-01,11494,Chain Reaction +Eric Brace,rotten,0115857,Washington Post,"Plodding and predictable, and a big disappointment.",2000-01-01,11494,Chain Reaction +,fresh,0115857,Entertainment Weekly,,1996-08-02,11494,Chain Reaction +Joe Leydon,none,0117008,Variety,,2008-12-01,12582,Matilda +Geoff Andrew,none,0117008,Time Out,,2006-02-09,12582,Matilda +Janet Maslin,none,0117008,New York Times,,2003-05-20,12582,Matilda +Joe Baltake,none,0117008,Sacramento Bee,,2000-01-01,12582,Matilda +,none,0117008,Houston Chronicle,,2000-01-01,12582,Matilda +Susan Stark,fresh,0117008,Detroit News,,2000-01-01,12582,Matilda +Susan Wloszczyna,fresh,0117008,USA Today,"With her sweet-sad face, Mara Wilson is a perfect Matilda.",2000-01-01,12582,Matilda +Charles Taylor,none,0117008,Salon.com,,2000-01-01,12582,Matilda +,none,0117008,Washington Post,,2000-01-01,12582,Matilda +Roger Ebert,fresh,0117008,Chicago Sun-Times,,2000-01-01,12582,Matilda +James Berardinelli,fresh,0117008,ReelViews,,2000-01-01,12582,Matilda +Edward Guthmann,none,0117008,San Francisco Chronicle,,2000-01-01,12582,Matilda +,fresh,0117008,Entertainment Weekly,,1996-08-02,12582,Matilda +Owen Gleiberman,rotten,0115986,Entertainment Weekly,"Even for teens hooked on the grandiloquence of death-metal masochism, the movie may seem closer to an endless Sunday in church.",2010-07-06,16817,The Crow: City of Angels +Joe Leydon,rotten,0115986,Variety,Stunningly awful.,2007-05-03,16817,The Crow: City of Angels +,rotten,0115986,Time Out,"Although the setting has moved from Detroit to LA, the stylised urban wasteland, morbid atmosphere and basic plot remain the same.",2006-02-09,16817,The Crow: City of Angels +Richard Harrington,fresh,0115986,Washington Post,"Fans of both O'Barr's source inspiration and Brandon Lee's initial embodiment may want to nit-pick, but this Crow has something to crow about.",2002-01-22,16817,The Crow: City of Angels +Jack Mathews,rotten,0115986,Los Angeles Times,"The city of overacting, the city of bad writing and the city of truly dreadful sequels.",2001-02-14,16817,The Crow: City of Angels +Keith Simanton,rotten,0115986,Film.com,"It verges on the misanthropic and necrophiliac; more in love with the absence of characters, their demise, than with flesh and blood.",2000-01-01,16817,The Crow: City of Angels +Peter Stack,rotten,0115986,San Francisco Chronicle,Comes across as a scattershot video with corny and contrived action scenes.,2000-01-01,16817,The Crow: City of Angels +James Berardinelli,rotten,0115986,ReelViews,Little more than a subpar remake of the first outing.,2000-01-01,16817,The Crow: City of Angels +Stephen Holden,rotten,0115986,New York Times,Utterly devoid of energy and shock value.,2000-01-01,16817,The Crow: City of Angels +Erin Richter,rotten,0116571,Entertainment Weekly,[A] predictable and sugarcoated (even criminally negligent) take on The Parent Trap.,2013-06-14,11894,House Arrest +Jeff Shannon,rotten,0116571,Seattle Times,"To the slim degree that it qualifies as a comedy, House Arrest is a comedy with rank amateur pathos, and it's totally out of touch with its own superficially treated emotions.",2013-06-14,11894,House Arrest +Steven Rea,rotten,0116571,Philadelphia Inquirer,A headache of a movie with a Parent Trap premise that quickly devolves into clamorous farce.,2013-05-29,11894,House Arrest +Gene Siskel,rotten,0116571,Chicago Tribune,"One of the year's worst movies... at least I hope so, or it's going to be a very bad year.",2013-05-29,11894,House Arrest +Joe Leydon,rotten,0116571,Variety,A tepid and repetitious comedy.,2009-03-26,11894,House Arrest +,rotten,0116571,Globe and Mail,,2003-03-16,11894,House Arrest +Rita Kempley,rotten,0116571,Washington Post,"There's little to commend this formulaic and misleading fantasy, which seems sadly aimed at an especially fragile audience -- kids from broken homes who all too often blame themselves.",2002-01-22,11894,House Arrest +Jack Mathews,rotten,0116571,Los Angeles Times,"The characters are so broadly overdrawn and the performances so over the top, it's a tossup as to which hell you'd least like to visit. Upstairs? Downstairs?",2001-02-14,11894,House Arrest +James Berardinelli,rotten,0116571,ReelViews,"A distressingly unfunny, unintelligent children's fantasy about what happens when kids ground their parents.",2000-01-01,11894,House Arrest +Susan Stark,rotten,0116571,Detroit News,,2000-01-01,11894,House Arrest +Peter Stack,rotten,0116571,San Francisco Chronicle,"House Arrest is an uneasy mix of too much and too little: too much vapid cuteness, too little real feeling.",2000-01-01,11894,House Arrest +Lawrence Van Gelder,rotten,0116571,New York Times,"As sitcoms go, House Arrest, opening today, is more sit than com.",2000-01-01,11894,House Arrest +Tim Purtell,fresh,0053459,Entertainment Weekly,One of those rare horror films that induces discomfort by showing practically nothing.,2013-10-06,770698712,Les yeux sans visage +Variety Staff,rotten,0053459,Variety,"It has some queasy scenes, but unclear progression and plodding direction give this an old-fashioned air.",2007-09-26,770698712,Les yeux sans visage +Jonathan Rosenbaum,fresh,0053459,Chicago Reader,As absurd and as beautiful as a fairy tale.,2007-09-26,770698712,Les yeux sans visage +Geoff Andrew,fresh,0053459,Time Out,A marvellous movie in the fullest sense.,2006-01-26,770698712,Les yeux sans visage +David Edelstein,fresh,0053459,Slate,Among the most disturbing horror films ever made.,2004-10-29,770698712,Les yeux sans visage +Wesley Morris,fresh,0053459,Boston Globe,"Outre as it is, never tires as hypnotic, touching, ghastly fun.",2004-02-20,770698712,Les yeux sans visage +Colin Covert,fresh,0053459,Minneapolis Star Tribune,It infects your dreams with dread and desperation.,2003-12-18,770698712,Les yeux sans visage +Roger Ebert,fresh,0053459,Chicago Sun-Times,Franju constructs an elegant visual work; here is a horror movie in which the shrieks are not by the characters but by the images.,2003-10-31,770698712,Les yeux sans visage +Kenneth Turan,fresh,0053459,Los Angeles Times,"Like a nightmare that never ends, this is a vision of madness, loneliness and, yes, horror that, once seen, demands to be viewed over and over again. It is that haunting, and that good.",2003-10-30,770698712,Les yeux sans visage +J. Hoberman,fresh,0053459,Village Voice,"A masterpiece of poetic horror and tactful, tactile brutality.",2003-10-28,770698712,Les yeux sans visage +Stephen Holden,fresh,0053459,New York Times,Sends a chill that extends from the cheekbones through the eye sockets to the back of the skull.,2003-05-20,770698712,Les yeux sans visage +Joe Leydon,rotten,0117826,Variety,"Adolescent boys might groove to the mix, but most other ticketbuyers will avoid this tawdry opus like the plague.",2008-05-19,14326,Bordello of Blood +Richard Harrington,rotten,0117826,Washington Post,"Triple the length of its cable television inspiration, Tales From the Crypt Presents Bordello of Blood is triple the gore, triple the naked women, but not, alas, triple the fun.",2002-01-22,14326,Bordello of Blood +Jack Mathews,fresh,0117826,Los Angeles Times,"What it lacks in irony and suspense, Gilbert Adler's Tales From the Crypt Presents Bordello of Blood makes up for in whimsy and cheeky self-assurance.",2001-02-21,14326,Bordello of Blood +Peter Stack,rotten,0117826,San Francisco Chronicle,"This gory vampire spoof is remarkably free of jolts, hardly registering as a fright film, with a series of weak special effects involving many globs of guts.",2000-01-01,14326,Bordello of Blood +,rotten,0117826,USA Today,This sickeningly puerile mess will be attractive only to teen boys who aren't too picky about special effects or scripts.,2000-01-01,14326,Bordello of Blood +Lawrence Van Gelder,rotten,0117826,New York Times,Vampires aren't the only things in Bordello of Blood that can't stand up to daylight. Neither can the plot.,2000-01-01,14326,Bordello of Blood +James Berardinelli,rotten,0117826,ReelViews,"... a macabre, jokey affair that could give Buffy the Vampire Slayer a run for its money as the silliest undead story of the decade.",2000-01-01,14326,Bordello of Blood +David Rooney,none,0108227,Variety,,2009-03-26,770919557,Xinghua san yue tian +Jonathan Rosenbaum,none,0108227,Chicago Reader,,2000-01-01,770919557,Xinghua san yue tian +Peter Stack,none,0108227,San Francisco Chronicle,,2000-01-01,770919557,Xinghua san yue tian +David Stratton,none,0111424,Variety,,2012-02-23,770919880,Tian guo ni zi +,none,0111424,Time Out,,2006-01-26,770919880,Tian guo ni zi +Caryn James,none,0111424,New York Times,,2004-08-30,770919880,Tian guo ni zi +Jonathan Rosenbaum,none,0111424,Chicago Reader,,2004-01-10,770919880,Tian guo ni zi +Kevin Thomas,none,0111424,Los Angeles Times,,2001-02-13,770919880,Tian guo ni zi +Stanley Kauffmann,none,0111424,The New Republic,,2000-01-01,770919880,Tian guo ni zi +Derek Elley,none,0113080,Variety,,2009-03-26,770672400,Flirt +,none,0113080,Time Out,,2006-07-15,770672400,Flirt +Stephen Holden,none,0113080,New York Times,,2003-06-02,770672400,Flirt +Jeff Strickler,none,0113080,Minneapolis Star Tribune,,2002-11-06,770672400,Flirt +Kevin Thomas,none,0113080,Los Angeles Times,,2001-02-14,770672400,Flirt +Mick LaSalle,none,0113080,San Francisco Chronicle,,2000-01-01,770672400,Flirt +Stanley Kauffmann,none,0113080,The New Republic,,2000-01-01,770672400,Flirt +Roger Ebert,rotten,0113080,Chicago Sun-Times,It is more amusing to talk about than to experience.,2000-01-01,770672400,Flirt +James Berardinelli,rotten,0113080,ReelViews,,2000-01-01,770672400,Flirt +Ken Eisner,none,0115680,Variety,,2009-03-26,770700341,The Big Squeeze +Janet Maslin,none,0115680,New York Times,,2004-08-30,770700341,The Big Squeeze +Jack Mathews,none,0115680,Los Angeles Times,,2001-02-14,770700341,The Big Squeeze +Mick LaSalle,none,0115680,San Francisco Chronicle,,2000-01-01,770700341,The Big Squeeze +Roger Ebert,rotten,0115680,Chicago Sun-Times,,2000-01-01,770700341,The Big Squeeze +Owen Gleiberman,rotten,0117718,Entertainment Weekly,,2011-09-07,10660,The Spitfire Grill +Leonard Klady,none,0117718,Variety,,2009-01-29,10660,The Spitfire Grill +David Ansen,none,0117718,Newsweek,,2007-11-01,10660,The Spitfire Grill +Derek Adams,none,0117718,Time Out,,2006-06-24,10660,The Spitfire Grill +Edward Guthmann,none,0117718,San Francisco Chronicle,,2002-06-18,10660,The Spitfire Grill +,rotten,0117718,Globe and Mail,,2002-04-12,10660,The Spitfire Grill +Kenneth Turan,none,0117718,Los Angeles Times,,2001-02-14,10660,The Spitfire Grill +Mike Clark,rotten,0117718,USA Today,"Original in some ways but the same old plate of fried green tomatoes in others, this Sundance Festival favorite might rate wider acclaim for its two leads if the overall tone weren't so bloodless and even dreary.",2000-01-01,10660,The Spitfire Grill +,none,0117718,Washington Post,,2000-01-01,10660,The Spitfire Grill +Susan Stark,rotten,0117718,Detroit News,,2000-01-01,10660,The Spitfire Grill +Janet Maslin,none,0117718,New York Times,,2000-01-01,10660,The Spitfire Grill +Roger Ebert,rotten,0117718,Chicago Sun-Times,,2000-01-01,10660,The Spitfire Grill +James Berardinelli,rotten,0117718,ReelViews,,2000-01-01,10660,The Spitfire Grill +Joe Baltake,none,0117718,Sacramento Bee,,2000-01-01,10660,The Spitfire Grill +,none,0117718,Houston Chronicle,,2000-01-01,10660,The Spitfire Grill +,rotten,0117718,Entertainment Weekly,,1996-08-23,10660,The Spitfire Grill +Owen Gleiberman,rotten,0116225,Entertainment Weekly,,2011-09-07,14018,Escape from L.A. +Geoff Andrew,none,0116225,Time Out,,2006-01-26,14018,Escape from L.A. +,none,0116225,Washington Post,,2003-05-08,14018,Escape from L.A. +Desson Thomson,fresh,0116225,Washington Post,Enjoyable in a playful way,2002-10-24,14018,Escape from L.A. +Jeff Millar,rotten,0116225,Houston Chronicle,The special effects vary from OK to lame to very lame.,2002-07-05,14018,Escape from L.A. +Peter Stack,fresh,0116225,San Francisco Chronicle,"Dark, percussive and perversely fun.",2002-06-18,14018,Escape from L.A. +Christopher Harris,rotten,0116225,Globe and Mail,"Escape from L.A. is too preposterous to be a good film. But in keeping with its title, it does provide a couple of hours of entertaining escapism.",2002-04-12,14018,Escape from L.A. +Kevin Thomas,fresh,0116225,Los Angeles Times,"Buscemi, Fonda, Robertson, Grier and many others get to make vivid impressions, but of course it's Russell who must carry this swiftly paced picture. As rugged as ever and attractively weathered, he does so with ease.",2001-02-14,14018,Escape from L.A. +James Berardinelli,fresh,0116225,ReelViews,A significant improvement over the first Snake Plisskin adventure.,2000-01-01,14018,Escape from L.A. +Stephen Holden,rotten,0116225,New York Times,"As amusing as some of its notions may be, none are developed into sustained running jokes.",2000-01-01,14018,Escape from L.A. +Susan Stark,fresh,0116225,Detroit News,John Carpenter's vision of a post-apocalyptic Los Angeles is a go-for-broke action extravaganza that satirizes the genre at the same time it's exploiting it.,2000-01-01,14018,Escape from L.A. +Mike Clark,fresh,0116225,USA Today,"Intermittently clever ideas are rarely executed to full effect, but the film moves reasonably well on its way to surround-sound pyrotechnics amid a climactic aerial attack.",2000-01-01,14018,Escape from L.A. +Jonathan Rosenbaum,fresh,0116225,Chicago Reader,A poetic pulp movie made with joy.,2000-01-01,14018,Escape from L.A. +Joe Baltake,rotten,0116225,Sacramento Bee,A hilariously unstable film and the latest apocalyptic vision to work on our nerves like a torturer extracting a confession -- or a dentist extracting a tooth.,2000-01-01,14018,Escape from L.A. +Esther Iverem,rotten,0116225,Washington Post,Tries but fails to be an action-hero flick or even a parody of one.,2000-01-01,14018,Escape from L.A. +Roger Ebert,fresh,0116225,Chicago Sun-Times,This is the kind of movie Independence Day could have been if it hadn't played it safe.,2000-01-01,14018,Escape from L.A. +,rotten,0116225,Entertainment Weekly,,1996-08-09,14018,Escape from L.A. +David Rooney,none,0112767,Variety,,2008-08-06,19120,Xich lo +,none,0112767,Time Out,,2006-06-24,19120,Xich lo +Janet Maslin,none,0112767,New York Times,,2003-05-20,19120,Xich lo +Edward Guthmann,none,0112767,San Francisco Chronicle,,2000-01-01,19120,Xich lo +Joe Baltake,none,0112767,Sacramento Bee,,2000-01-01,19120,Xich lo +Jonathan Rosenbaum,none,0112767,Chicago Reader,,2000-01-01,19120,Xich lo +Richard Schickel,fresh,0117918,TIME Magazine,"As he always does in comedy, Costner grants an irresistible gleam of gallantry to male mulishness.",2008-08-05,13203,Tin Cup +Desson Thomson,fresh,0117918,Washington Post,Tin Cup works for viewers of any handicap.,2008-08-05,13203,Tin Cup +Owen Gleiberman,fresh,0117918,Entertainment Weekly,"The climactic game, in which Roy, in a way that defies prediction, attempts to sink the shot of his life, is the most rousing sequence of the year, a celebration of what it really means to win.",2008-08-05,13203,Tin Cup +Todd McCarthy,fresh,0117918,Variety,"Amiable and constantly amusing rather than uproarious, this mangy tale of a ne'er-do-well's fitful assault on personal and professional respectability benefits greatly from Kevin Costner's ingratiatingly comic star turn.",2008-08-05,13203,Tin Cup +,fresh,0117918,Time Out,Costner hasn't been this charming and spontaneous for years.,2006-06-24,13203,Tin Cup +Peter Stack,fresh,0117918,San Francisco Chronicle,"Tin Cup, starring Kevin Costner as a likable loser, accomplishes the impossible, maybe the unimaginable -- it makes golf entertaining.",2002-06-18,13203,Tin Cup +,fresh,0117918,Globe and Mail,,2002-04-12,13203,Tin Cup +Kenneth Turan,rotten,0117918,Los Angeles Times,Dispiritingly conventional and obvious.,2001-02-14,13203,Tin Cup +Janet Maslin,fresh,0117918,New York Times,"This film's overriding message is as pleasing as its flippant, skillful banter.",2000-01-01,13203,Tin Cup +Jonathan Rosenbaum,rotten,0117918,Chicago Reader,Breaking down the golf trajectories into separate shots during the sports climax comes across as an expedient form of cheating--the very opposite of authenticity.,2000-01-01,13203,Tin Cup +James Berardinelli,fresh,0117918,ReelViews,"As sports movies go (regardless of the sport), this one turns in a respectable showing, injecting some intelligence and maturity into a story that easily could have succumbed to a flood of 'struggling underdog' cliches.",2000-01-01,13203,Tin Cup +,fresh,0117918,USA Today,[A] quirkily easygoing comedy.,2000-01-01,13203,Tin Cup +Susan Stark,rotten,0117918,Detroit News,,2000-01-01,13203,Tin Cup +Roger Ebert,fresh,0117918,Chicago Sun-Times,A formula sports comedy with a lot of non-formula human comedy.,2000-01-01,13203,Tin Cup +Jonathan Rosenbaum,fresh,0094924,Chicago Reader,"Streep's beauty and talent and director Fred Schepisi's intelligence are both shown to best advantage, without easy points or grandstanding.",2011-12-19,12281,Evil Angels +Sheila Benson,fresh,0094924,Los Angeles Times,Streep and Neill are the film's perfectly matched thoroughbreds. But the film is neither a double star turn nor the best kind of courtroom drama; it is a sort of epic mosaic of national character.,2011-12-19,12281,Evil Angels +,fresh,0094924,Time Out,Streep (the best thing she has done in ages) carries it along.,2006-01-26,12281,Evil Angels +Vincent Canby,fresh,0094924,New York Times,Streep ... plays Lindy Chamberlain with the kind of virtuosity that seems to redefine the possibilities of screen acting.,2004-08-30,12281,Evil Angels +Roger Ebert,fresh,0094924,Chicago Sun-Times,"Streep's performance is risky, and masterful.",2000-01-01,12281,Evil Angels +Rita Kempley,fresh,0094924,Washington Post,"Streep -- yes, with another perfect accent -- brings her customary skillfulness to the part. It's not a showy performance, but the heroine's internal struggle seems to come from the actress' pores.",2000-01-01,12281,Evil Angels +Gene Siskel,fresh,0068646,Chicago Tribune,"To permit us a glimpse at The Mob, with all of its ethnic insularity, is like giving a chronic gambler a chance to wander above the false mirrors that overlook every casino.",2013-01-18,12911,The Godfather +Andrew Sarris,fresh,0068646,Village Voice,Brando's triumph and fascination is less that of an actor of parts than of a star galaxy of myths.,2012-09-24,12911,The Godfather +F.X. Feeney,fresh,0068646,L.A. Weekly,Traces the arc of this doomed idealism with a beauty that is still fresh.,2011-02-23,12911,The Godfather +Michael Wilmington,fresh,0068646,Chicago Tribune,"Brando made Don Vito something we rarely see in movies: a tragicomic villain-hero, a vulnerable hood.",2011-02-23,12911,The Godfather +Jay Cocks,fresh,0068646,TIME Magazine,"In its blending of new depth with an old genre, it becomes that rarity, a mass entertainment that is also great movie art.",2011-02-23,12911,The Godfather +Ben Walters,fresh,0068646,Time Out,"As filmmaking and storytelling, 'The Godfather' remains a bravura piece of work, its set pieces, dialogue and performances entrenched cinematic icons.",2009-09-25,12911,The Godfather +Desson Thomson,fresh,0068646,Washington Post,There are volumes that could be written -- and have been -- about the movie's uniformly powerful performances; its precedent-setting editing by William Reynolds and Peter Zinner; Nino Rota's haunting score; and Dean Tavoularis's evocative set design.,2008-01-29,12911,The Godfather +A.D. Murphy,fresh,0068646,Variety,The biggest achievement here is the establishment of mood and time.,2008-01-29,12911,The Godfather +Dave Kehr,fresh,0068646,Chicago Reader,The ultimate family film.,2006-12-13,12911,The Godfather +Geoff Andrew,fresh,0068646,Time Out,"An everyday story of Mafia folk, incorporating a severed horse's head in the bed and a number of heartwarming family occasions, as well as pointers on how not to behave in your local trattoria.",2006-02-09,12911,The Godfather +Vincent Canby,fresh,0068646,New York Times,Francis Ford Coppola has made one of the most brutal and moving chronicles of American life ever designed within the limits of popular entertainment.,2003-05-20,12911,The Godfather +Susan Stark,fresh,0068646,Detroit News,,2002-01-12,12911,The Godfather +James Berardinelli,fresh,0068646,ReelViews,"We come to The Godfather like Kay Adams -- outsiders uncertain in our expectations - but it doesn't take long for us to be captivated by this intricate, violent world.",2000-01-01,12911,The Godfather +Joe Baltake,fresh,0068646,Sacramento Bee,"With The Godfather, Coppola got everything right, balancing art with commerce -- and turning a big-studio project into something deeply personal and resonant.",2000-01-01,12911,The Godfather +John Hartl,fresh,0068646,Film.com,"The years have been kind to this timeless Mafia epic, which seems particularly rich now that studio blockbusters no longer demonstrate this kind of care with character, atmosphere and storytelling.",2000-01-01,12911,The Godfather +Roger Ebert,fresh,0068646,Chicago Sun-Times,"The story by Mario Puzo and Francis Ford Coppola is a brilliant conjuring act, inviting us to consider the Mafia entirely on its own terms.",2000-01-01,12911,The Godfather +Mary Brennan,fresh,0068646,Film.com,"Corleone, the soft-spoken crimelord, is masterfully played by Brando in one of the most imitated performances of all time.",2000-01-01,12911,The Godfather +Edward Guthmann,fresh,0068646,San Francisco Chronicle,"In scene after scene ... Coppola crafted an enduring, undisputed masterpiece.",2000-01-01,12911,The Godfather +Lisa Schwarzbaum,rotten,0109255,Entertainment Weekly,,2011-09-07,160593799,Der bewegte Mann +Eric Hansen,none,0109255,Variety,,2009-03-26,160593799,Der bewegte Mann +,none,0109255,Time Out,,2006-02-09,160593799,Der bewegte Mann +,none,0109255,Los Angeles Times,,2001-02-27,160593799,Der bewegte Mann +Mick LaSalle,none,0109255,San Francisco Chronicle,,2000-01-01,160593799,Der bewegte Mann +Stephen Holden,none,0109255,New York Times,,2000-01-01,160593799,Der bewegte Mann +Susan Stark,fresh,0109255,Detroit News,,2000-01-01,160593799,Der bewegte Mann +Joe Baltake,none,0109255,Sacramento Bee,,2000-01-01,160593799,Der bewegte Mann +Stanley Kauffmann,none,0109255,The New Republic,,2000-01-01,160593799,Der bewegte Mann +,none,0109255,Washington Post,,2000-01-01,160593799,Der bewegte Mann +Roger Ebert,fresh,0109255,Chicago Sun-Times,,2000-01-01,160593799,Der bewegte Mann +James Berardinelli,rotten,0109255,ReelViews,,2000-01-01,160593799,Der bewegte Mann +Desmond Ryan,fresh,0104558,Philadelphia Inquirer,"If you're tired of burned-out coppers in Hollywood's blockbusters, try this offbeat hero from Hong Kong.",2013-08-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Kevin Thomas,fresh,0104558,Los Angeles Times,"To watch Jackie Chan, Hong Kong's king of kung fu comedy, in the fresh and exhilarating Super Cop is like watching Douglas Fairbanks Sr. or one of the silent era clowns in one of their biggest hits.",2013-08-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Michael Wilmington,fresh,0104558,Chicago Tribune,"Sly and Schwartzy, eat your hearts out. Chan's the man.",2013-08-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Lisa Schwarzbaum,fresh,0104558,Entertainment Weekly,"The most powerful starring role for a woman this summer? My vote goes to Michelle Khan in this garish, frenetic, and funny chopper from Rumble in the Bronx director Stanley Tong.",2012-08-15,147524239,Ging chat goo si 3: Chiu kup ging chat +Variety Staff,fresh,0104558,Variety,"All this is executed with a good deal of panache, if not originality, by stunt coordinator Stanley Tong.",2012-08-15,147524239,Ging chat goo si 3: Chiu kup ging chat +Rita Kempley,fresh,0104558,Washington Post,"With martial arts superstar Jackie Chan, older may be better.",2002-01-22,147524239,Ging chat goo si 3: Chiu kup ging chat +Mick LaSalle,fresh,0104558,San Francisco Chronicle,Supercop is a chance to get a full-strength blast of Chan.,2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Jonathan Rosenbaum,rotten,0104558,Chicago Reader,Supercop's biggest flaw is what its producers probably saw as its greatest strength: it's very American.,2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Keith Simanton,fresh,0104558,Film.com,"Jackie Chan makes his second leap at the American movie audience, following up Rumble in the Bronx with a far sharper mix of stunts, martial arts and Chan's own brand of breathtaking slapstick comedy.",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +James Berardinelli,fresh,0104558,ReelViews,"Supercop is a better movie than Rumble in the Bronx, in large part because it's funnier.",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Sean Means,fresh,0104558,Film.com,"Chan is fun to watch, no matter what silliness one has to put up with.",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +,fresh,0104558,USA Today,"It's kind of silly, but how many movies boast a leading man who isn't afraid to order 'roast cat and string beans' at a Chinese restaurant?",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Susan Stark,fresh,0104558,Detroit News,"A wild and free-wheeling action film, vastly superior to this year's Rumble in the Bronx in both plot and action.",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +John Hartl,fresh,0104558,Film.com,An astonishingly fluid and funny movie that makes most American action pictures seem lethargic.,2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Lawrence Van Gelder,fresh,0104558,New York Times,"Chan is joined in this outing by a female co-star, Michelle Khan, who seems every bit his equal when it comes to martial-arts prowess and foolhardy daredeviltry. Taken together, they're like watching two 007's, one 0014 or, as they say now, whatever.",2000-01-01,147524239,Ging chat goo si 3: Chiu kup ging chat +Owen Gleiberman,rotten,0116985,Entertainment Weekly,,2008-11-15,16360,Manny & Lo +Derek Adams,none,0116985,Time Out,,2006-06-24,16360,Manny & Lo +Desson Thomson,rotten,0116985,Washington Post,"Its thematic scope stays rather small, and the final third of the movie seems muted and flat.",2003-04-02,16360,Manny & Lo +Rick Groen,fresh,0116985,Globe and Mail,"A sweet little fable, a bit shy on substance but quite charming in the telling.",2002-12-23,16360,Manny & Lo +Kenneth Turan,fresh,0116985,Los Angeles Times,"An unapologetically small but wholly original movie, warm-hearted but not precious, and possessed of a gently wacky sensibility.",2001-02-14,16360,Manny & Lo +Mick LaSalle,fresh,0116985,San Francisco Chronicle,"Though employing no surreal devices and remaining within a realistic convention, Krueger takes the story of two young sisters on their own and somehow makes it seem unreal, strange, outside time.",2000-01-01,16360,Manny & Lo +Stanley Kauffmann,none,0116985,The New Republic,,2000-01-01,16360,Manny & Lo +James Berardinelli,fresh,0116985,ReelViews,"With its carefully-modulated combination of light comedy and drama, the film casts a gentle spell.",2000-01-01,16360,Manny & Lo +Joe Baltake,fresh,0116985,Sacramento Bee,"An odd, singular movie full of odd, singular moments.",2000-01-01,16360,Manny & Lo +Janet Maslin,fresh,0116985,New York Times,It's the kind of story that leaves viewers with a warm glow.,2000-01-01,16360,Manny & Lo +Roger Ebert,fresh,0116985,Chicago Sun-Times,"One of the pleasures of Manny & Lo is the way that it reveals its characters in sudden, unexpected, defining acts.",2000-01-01,16360,Manny & Lo +Jeff Millar,fresh,0116985,Houston Chronicle,"It is a slight enterprise, not always expert in its construction, but it is sweet without being cloying, and it is sentimental in beneficial ways.",2000-01-01,16360,Manny & Lo +Rita Kempley,rotten,0116985,Washington Post,The story settles into a fairly routine feminist fable.,2000-01-01,16360,Manny & Lo +David Fear,rotten,0452694,Time Out,"That the actors can pull off such Oprah-friendly, sci-fi-inflected sap and keep straight faces is the most fantastic thing about this loopy love story.",2011-11-18,770680255,The Time Traveler's Wife +Kathleen Murphy,rotten,0452694,MSN Movies,"The movie moves fast, as though to distract you from these shortcomings and the nearly total absence of logic.",2009-08-21,770680255,The Time Traveler's Wife +Richard Roeper,rotten,0452694,Richard Roeper.com,Buy the book.,2009-08-18,770680255,The Time Traveler's Wife +David Edelstein,fresh,0452694,New York Magazine,"I'm over the moon about this movie, which smooths out the psychological dissonances in Audrey Niffenegger's fine novel but is still an emotional workout.",2009-08-17,770680255,The Time Traveler's Wife +Ben Lyons,rotten,0452694,At the Movies,"Some fans of the book might enjoy seeing these two soul mates brought to life on the big screen, but for everyone else the interpretation seems forced and at times inconsistent.",2009-08-17,770680255,The Time Traveler's Wife +Ben Mankiewicz,rotten,0452694,At the Movies,I thought really very little in the film worked.,2009-08-17,770680255,The Time Traveler's Wife +Dana Stevens,rotten,0452694,Slate,"Long spans of time pass between lines of dialogue, many of which seem to have been inexpertly translated from a foreign language so that they almost make sense but not quite.",2009-08-14,770680255,The Time Traveler's Wife +Michael Phillips,rotten,0452694,Chicago Tribune,"The emotions and crises feel pre-sanded, smooth to the point of blandness. The transitional disappearances are routine.",2009-08-14,770680255,The Time Traveler's Wife +Joe Neumaier,rotten,0452694,New York Daily News,"It's hard to live in stolen moments, but trying to find a few enjoyable ones in The Time Traveler's Wife is nearly impossible.",2009-08-14,770680255,The Time Traveler's Wife +Betsy Sharkey,rotten,0452694,Los Angeles Times,"Yet where there should be heat, a cold wind blows.",2009-08-14,770680255,The Time Traveler's Wife +Kyle Smith,rotten,0452694,New York Post,"A Twilight Zone premise written like a Mariah Carey song, The Time Traveler's Wife is destined for a warm welcome on an obscure cable network. The Spinster Movie Station? The Lonely Hearts Channel?",2009-08-14,770680255,The Time Traveler's Wife +Stephen Whitty,rotten,0452694,Newark Star-Ledger,"The whole thing feels arbitrary. Henry and Clare's love is bedeviled not by anything they've done or have any control over, so the drama fails to build.",2009-08-14,770680255,The Time Traveler's Wife +Steven Rea,rotten,0452694,Philadelphia Inquirer,"A kooky, head-spinning romantic mess.",2009-08-14,770680255,The Time Traveler's Wife +Peter Travers,rotten,0452694,Rolling Stone,"I'd watch the vibrant Rachel McAdams and Eric Bana in anything, but The Time Traveler's Wife is pushing it.",2009-08-14,770680255,The Time Traveler's Wife +Rick Groen,rotten,0452694,Globe and Mail,"Romance is robbed of its gamble, stripped of its suspense, shorn of its mystery, and deprived of an ending that feels earned.",2009-08-14,770680255,The Time Traveler's Wife +Stephanie Zacharek,rotten,0452694,Salon.com,There's not much [McAdams] or Bana can do to rescue this dreary piece of romantic hooey.,2009-08-14,770680255,The Time Traveler's Wife +Mick LaSalle,fresh,0452694,San Francisco Chronicle,"It takes, as its subjects, the sadness and grandeur of life and the mystery of time, and it offers a full experience to those who find its wavelength.",2009-08-14,770680255,The Time Traveler's Wife +Moira MacDonald,rotten,0452694,Seattle Times,"Suspend your disbelief and you might find The Time Traveler's Wife a charming if mildly depressing fantasy. Or you might, as I did, travel elsewhere during it. Either way, at least it's a picturesque journey.",2009-08-14,770680255,The Time Traveler's Wife +Adam Graham,rotten,0452694,Detroit News,"The fact that Bana is a bit of a cold fish and real sparks never really ignite between he and McAdams, who is 10 years his junior, doesn't help matters.",2009-08-14,770680255,The Time Traveler's Wife +Peter Rainer,rotten,0452694,Christian Science Monitor,"I'll let you in on a little secret that film critics have known for years. A major studio production, released in August with top-list stars, is almost certain to be a gobbler.",2009-08-14,770680255,The Time Traveler's Wife +Derek Elley,none,0114474,Variety,,2009-03-26,770677590,Small Faces +Derek Adams,none,0114474,Time Out,,2006-06-24,770677590,Small Faces +,fresh,0114474,Globe and Mail,,2002-04-12,770677590,Small Faces +Desson Thomson,none,0114474,Washington Post,,2002-01-22,770677590,Small Faces +Jack Mathews,none,0114474,Los Angeles Times,,2001-02-14,770677590,Small Faces +,none,0114474,Houston Chronicle,,2000-01-01,770677590,Small Faces +Joe Baltake,none,0114474,Sacramento Bee,,2000-01-01,770677590,Small Faces +Stephen Holden,none,0114474,New York Times,,2000-01-01,770677590,Small Faces +Edward Guthmann,none,0114474,San Francisco Chronicle,,2000-01-01,770677590,Small Faces +James Berardinelli,fresh,0114474,ReelViews,,2000-01-01,770677590,Small Faces +Lisa Schwarzbaum,fresh,0115736,Entertainment Weekly,,2011-09-07,13080,Bound +Todd McCarthy,none,0115736,Variety,,2009-03-26,13080,Bound +,none,0115736,Time Out,,2006-02-09,13080,Bound +Kevin Thomas,none,0115736,Los Angeles Times,,2001-02-14,13080,Bound +Mike Clark,fresh,0115736,USA Today,"Some caper movies build suspense, while others tweak the genre with tongue lancing cheek. But this lesbian caper pic often pulls off both feats in the same scene, even simultaneously.",2000-01-01,13080,Bound +Mick LaSalle,none,0115736,San Francisco Chronicle,,2000-01-01,13080,Bound +James Berardinelli,fresh,0115736,ReelViews,,2000-01-01,13080,Bound +,none,0115736,Washington Post,,2000-01-01,13080,Bound +Roger Ebert,fresh,0115736,Chicago Sun-Times,,2000-01-01,13080,Bound +Susan Stark,fresh,0115736,Detroit News,,2000-01-01,13080,Bound +Joe Baltake,none,0115736,Sacramento Bee,,2000-01-01,13080,Bound +,fresh,0115736,Entertainment Weekly,,1996-10-04,13080,Bound +,none,0115836,Variety,,2008-08-06,12225,Carpool +Rita Kempley,none,0115836,Washington Post,,2002-01-22,12225,Carpool +Jack Mathews,none,0115836,Los Angeles Times,,2001-02-14,12225,Carpool +James Berardinelli,rotten,0115836,ReelViews,,2000-01-01,12225,Carpool +Joe Baltake,none,0115836,Sacramento Bee,,2000-01-01,12225,Carpool +Susan Stark,rotten,0115836,Detroit News,,2000-01-01,12225,Carpool +Janet Maslin,none,0115836,New York Times,,2000-01-01,12225,Carpool +,rotten,0115836,Entertainment Weekly,,1996-08-23,12225,Carpool +,none,0101692,Time Out,,2006-01-26,284488066,Death in Brunswick +,none,0101692,Chicago Reader,,2004-01-10,284488066,Death in Brunswick +Jack Kroll,fresh,0116745,Newsweek,"Altman loves to explode movie genres, and his script, co-written with Frank Barhydt, fuses the classic '30s screwball comedy and crime film.",2013-01-18,16146,Kansas City +Lisa Schwarzbaum,fresh,0116745,Entertainment Weekly,,2011-09-07,16146,Kansas City +Todd McCarthy,none,0116745,Variety,,2009-03-26,16146,Kansas City +Geoff Andrew,none,0116745,Time Out,,2006-06-24,16146,Kansas City +Peter Travers,none,0116745,Rolling Stone,,2001-05-12,16146,Kansas City +Kevin Thomas,fresh,0116745,Los Angeles Times,"It could never for an instant be mistaken for anything but a Robert Altman film, and that counts for a lot.",2001-02-14,16146,Kansas City +Mike Clark,fresh,0116745,USA Today,Jennifer Jason Leigh and Miranda Richardson are synergetic perfection as social opposites thrown together for 24 hours in a 1934 hot town.,2000-01-01,16146,Kansas City +James Berardinelli,rotten,0116745,ReelViews,"A sadly ordinary motion picture, and, in less sure hands, it might have been something of an unfortunate mess. Even with Altman at the helm, however, it manages to be singularly unremarkable.",2000-01-01,16146,Kansas City +Susan Stark,rotten,0116745,Detroit News,,2000-01-01,16146,Kansas City +Edward Guthmann,rotten,0116745,San Francisco Chronicle,Would someone throw a net over Jennifer Jason Leigh? She's at it again.,2000-01-01,16146,Kansas City +Roger Ebert,fresh,0116745,Chicago Sun-Times,"All of the characters act as if somebody might come along someday and make a movie about them. And Altman, who made the movie, gets his chance to sit in at last on one of those cutting sessions.",2000-01-01,16146,Kansas City +Joe Baltake,none,0116745,Sacramento Bee,,2000-01-01,16146,Kansas City +Stanley Kauffmann,none,0116745,The New Republic,,2000-01-01,16146,Kansas City +Jeff Millar,rotten,0116745,Houston Chronicle,"Let's just say that if you find it arbitrary and more an expression of Altman's feelings about class than the outcome of his story, then we are in agreement.",2000-01-01,16146,Kansas City +,none,0116745,Washington Post,,2000-01-01,16146,Kansas City +Stephen Holden,fresh,0116745,New York Times,[It] has its own brawling vitality.,2000-01-01,16146,Kansas City +,fresh,0116745,Entertainment Weekly,,1996-08-16,16146,Kansas City +John Hartl,rotten,0119214,Seattle Times,This is one of the summer's sorrier excuses for a major-studio release.,2013-06-14,11557,Gone Fishin' +Paul Tatara,rotten,0119214,CNN.com,I don't even know where to start.,2013-06-14,11557,Gone Fishin' +John Petrakis,fresh,0119214,Chicago Tribune,It is testimony to the superior acting skills of Joe Pesci and Danny Glover that Gone Fishin' registers more than a blip on the summer movie radar screen.,2013-05-22,11557,Gone Fishin' +Lisa Schwarzbaum,rotten,0119214,Entertainment Weekly,Big mistake.,2011-09-07,11557,Gone Fishin' +Daniel M. Kimmel,rotten,0119214,Variety,Film is so formulaic that virtually every plot point is telegraphed way in advance.,2005-04-27,11557,Gone Fishin' +Lawrence Van Gelder,rotten,0119214,New York Times,This is a film that misses the boat right from the start through an improper mixture of fools.,2003-05-20,11557,Gone Fishin' +,rotten,0119214,Globe and Mail,,2002-04-12,11557,Gone Fishin' +Gene Seymour,rotten,0119214,Los Angeles Times,"A mirthless, graceless slapstick comedy with little to recommend it except some Florida scenery -- which, come to think of it, isn't all that scenic.",2001-02-14,11557,Gone Fishin' +James Berardinelli,rotten,0119214,ReelViews,"The saddest thing about this unfunny, misguided motion picture is watching two performers I admire -- Joe Pesci and Danny Glover -- stumble their way through such obviously inferior material.",2000-01-01,11557,Gone Fishin' +Desson Thomson,rotten,0119214,Washington Post,Cut bait and avoid this trip.,2000-01-01,11557,Gone Fishin' +,none,0109066,Time Out,,2006-06-24,21130,Ai qing wan sui +,none,0109066,Los Angeles Times,,2001-02-14,21130,Ai qing wan sui +Stephen Holden,none,0109066,New York Times,,2000-01-01,21130,Ai qing wan sui +Edward Guthmann,none,0109066,San Francisco Chronicle,,2000-01-01,21130,Ai qing wan sui +,none,0119807,Variety,,2012-02-23,13562,Nothing to Lose +Lisa Schwarzbaum,fresh,0119807,Entertainment Weekly,,2011-09-07,13562,Nothing to Lose +Emanuel Levy,none,0119807,Variety,,2008-02-05,13562,Nothing to Lose +,none,0119807,Time Out,,2006-01-26,13562,Nothing to Lose +Amy Taubin,none,0119807,Village Voice,,2003-09-18,13562,Nothing to Lose +Jeff Strickler,none,0119807,Minneapolis Star Tribune,,2002-11-06,13562,Nothing to Lose +,rotten,0119807,Globe and Mail,,2002-04-12,13562,Nothing to Lose +Peter Travers,none,0119807,Rolling Stone,,2001-05-11,13562,Nothing to Lose +Mick LaSalle,none,0119807,San Francisco Chronicle,,2000-01-01,13562,Nothing to Lose +,none,0119807,Washington Post,,2000-01-01,13562,Nothing to Lose +Janet Maslin,none,0119807,New York Times,,2000-01-01,13562,Nothing to Lose +James Berardinelli,rotten,0119807,ReelViews,,2000-01-01,13562,Nothing to Lose +Laura Miller,none,0119807,Salon.com,,2000-01-01,13562,Nothing to Lose +,none,0119807,Houston Chronicle,,2000-01-01,13562,Nothing to Lose +Susan Wloszczyna,rotten,0119807,USA Today,A bumpy buddy romp that's mildly winning thanks to its stars.,2000-01-01,13562,Nothing to Lose +Roger Ebert,rotten,0119807,Chicago Sun-Times,,2000-01-01,13562,Nothing to Lose +,fresh,0119807,Entertainment Weekly,,1997-07-18,13562,Nothing to Lose +James Berardinelli,fresh,0106544,ReelViews,,2008-06-10,15720,Chao ji ji hua +Lisa Schwarzbaum,fresh,0116418,Entertainment Weekly,,2011-09-07,751377998,Girls Town +Emanuel Levy,fresh,0116418,Variety,"As a male writer-director, McKay proves to be extremely sensitive to the feeling and words of working-class women (Lili Taylor among them), determined to establish their self-worth as well as to fight against the social ills of the oppressive system",2006-08-09,751377998,Girls Town +,none,0116418,Time Out,,2006-06-24,751377998,Girls Town +,none,0116418,Washington Post,,2002-07-25,751377998,Girls Town +Desson Thomson,rotten,0116418,Washington Post,"Taylor, Harris and Grace come up with some watchable, genuine moments. But they're often too involved in themselves; the movie indulges them too much.",2002-07-24,751377998,Girls Town +Joe Baltake,fresh,0116418,Sacramento Bee,The film feels utterly real.,2000-01-01,751377998,Girls Town +Jeff Millar,fresh,0116418,Houston Chronicle,Features good work from its performers.,2000-01-01,751377998,Girls Town +Mick LaSalle,fresh,0116418,San Francisco Chronicle,The performances and the film's plausible handling of an unusual movie subject make Girls Town special.,2000-01-01,751377998,Girls Town +James Berardinelli,fresh,0116418,ReelViews,"Does an excellent job of uncovering the angst, pressure, and doubt associated with the late teenage years.",2000-01-01,751377998,Girls Town +Michael O'Sullivan,fresh,0116418,Washington Post,"Constructed without a traditional denouement, Girls Town will nevertheless satisfy viewers who want something that feels more like life than like art.",2000-01-01,751377998,Girls Town +Stephen Holden,fresh,0116418,New York Times,A welcome little gust of teen-age realism.,2000-01-01,751377998,Girls Town +Roger Ebert,fresh,0116418,Chicago Sun-Times,"I would like to see another movie in three or four years, about what has happened to these angry, gifted friends.",2000-01-01,751377998,Girls Town +,fresh,0116418,Entertainment Weekly,,1995-06-01,751377998,Girls Town +Emanuel Levy,rotten,0120004,Variety,"Though based on an original and respected novel, Hyams' horror thriller comes across as a pastiche of the genre's conventions as evident in major pictures of the past two decades, such as Jaws and the first two Alien films.",2006-12-23,13692,The Relic +Geoff Andrew,none,0120004,Time Out,,2006-02-09,13692,The Relic +Stephen Holden,none,0120004,New York Times,,2004-08-30,13692,The Relic +Richard Harrington,none,0120004,Washington Post,,2002-01-22,13692,The Relic +James Berardinelli,rotten,0120004,ReelViews,,2000-01-01,13692,The Relic +Susan Stark,fresh,0120004,Detroit News,,2000-01-01,13692,The Relic +Peter Stack,none,0120004,San Francisco Chronicle,,2000-01-01,13692,The Relic +,none,0120004,Houston Chronicle,,2000-01-01,13692,The Relic +Susan Wloszczyna,rotten,0120004,USA Today,Gore seekers need only to know the body count is high and the scares are cheap as director Peter Hyams shares his beast's repellent disregard for human life.,2000-01-01,13692,The Relic +Roger Ebert,fresh,0120004,Chicago Sun-Times,,2000-01-01,13692,The Relic +Joe Baltake,none,0120004,Sacramento Bee,,2000-01-01,13692,The Relic +Todd McCarthy,none,0116654,Variety,,2009-03-26,17260,The Island of Dr. Moreau +Geoff Andrew,none,0116654,Time Out,,2006-06-24,17260,The Island of Dr. Moreau +Peter Stack,rotten,0116654,San Francisco Chronicle,,2002-06-18,17260,The Island of Dr. Moreau +,none,0116654,Los Angeles Times,,2001-02-14,17260,The Island of Dr. Moreau +Mike Clark,rotten,0116654,USA Today,"The movie keeps switching focus without ever getting its bearings, and when Brando exits earlier than expected, there's little but mayhem to fall back on.",2000-01-01,17260,The Island of Dr. Moreau +James Berardinelli,rotten,0116654,ReelViews,,2000-01-01,17260,The Island of Dr. Moreau +Susan Stark,rotten,0116654,Detroit News,,2000-01-01,17260,The Island of Dr. Moreau +Janet Maslin,none,0116654,New York Times,,2000-01-01,17260,The Island of Dr. Moreau +,none,0116654,Houston Chronicle,,2000-01-01,17260,The Island of Dr. Moreau +Joe Baltake,none,0116654,Sacramento Bee,,2000-01-01,17260,The Island of Dr. Moreau +,rotten,0116654,Entertainment Weekly,,1996-08-23,17260,The Island of Dr. Moreau +Leonard Klady,none,0116311,Variety,,2008-08-06,11392,First Kid +Peter Stack,none,0116311,San Francisco Chronicle,,2000-01-01,11392,First Kid +Susan Wloszczyna,rotten,0116311,USA Today,Utterly conventional.,2000-01-01,11392,First Kid +Janet Maslin,none,0116311,New York Times,,2000-01-01,11392,First Kid +Joe Baltake,none,0116311,Sacramento Bee,,2000-01-01,11392,First Kid +,none,0116311,Washington Post,,2000-01-01,11392,First Kid +James Berardinelli,rotten,0116311,ReelViews,,2000-01-01,11392,First Kid +,none,0116311,Houston Chronicle,,2000-01-01,11392,First Kid +Ken Eisner,none,0117965,Variety,,2012-02-23,15018,The Trigger Effect +Lisa Schwarzbaum,fresh,0117965,Entertainment Weekly,,2011-09-07,15018,The Trigger Effect +Mick LaSalle,none,0117965,San Francisco Chronicle,,2000-01-01,15018,The Trigger Effect +Susan Stark,rotten,0117965,Detroit News,,2000-01-01,15018,The Trigger Effect +,none,0117965,Washington Post,,2000-01-01,15018,The Trigger Effect +Janet Maslin,none,0117965,New York Times,,2000-01-01,15018,The Trigger Effect +James Berardinelli,rotten,0117965,ReelViews,,2000-01-01,15018,The Trigger Effect +Joe Baltake,none,0117965,Sacramento Bee,,2000-01-01,15018,The Trigger Effect +,fresh,0117965,Entertainment Weekly,,1996-08-30,15018,The Trigger Effect +Owen Gleiberman,rotten,0101452,Entertainment Weekly,,2011-09-07,11035,Bill & Ted's Bogus Journey +Variety Staff,rotten,0101452,Variety,[The] filmmakers might have gotten more mileage if they'd rooted their adventure a bit more in reality.,2008-06-23,11035,Bill & Ted's Bogus Journey +,fresh,0101452,Time Out,"For those who appreciate dude-speak and bozo humor, this is a very funny film.",2006-02-09,11035,Bill & Ted's Bogus Journey +Roger Ebert,fresh,0101452,Chicago Sun-Times,"A riot of visual invention and weird humor that works on its chosen sub-moronic level, and on several others as well...",2004-10-23,11035,Bill & Ted's Bogus Journey +Janet Maslin,fresh,0101452,New York Times,"It's hard not to appreciate two guys who can invest a cry of ""Whoa!"" with such pure ecstasy and who think that Joan of Arc is Noah's wife.",2003-05-20,11035,Bill & Ted's Bogus Journey +Desson Thomson,fresh,0101452,Washington Post,Funnier and livelier than the original.,2000-01-01,11035,Bill & Ted's Bogus Journey +Hal Hinson,fresh,0101452,Washington Post,A masterpiece of stupid.,2000-01-01,11035,Bill & Ted's Bogus Journey +,rotten,0101452,Entertainment Weekly,,1991-07-19,11035,Bill & Ted's Bogus Journey +Bill Stamets,rotten,0245803,Chicago Reader,"The fight scenes are routine, the humor juvenile, and the Toronto locales rendered drab through muddy cinematography.",2007-05-03,11258,Bulletproof Monk +,fresh,0245803,Time Out,"Chow was never a martial arts star back home, but he's a good enough actor -- and an engaging enough personality -- to pass for one here.",2006-06-24,11258,Bulletproof Monk +David Edelstein,rotten,0245803,Slate,"They made a ton of junky movies in Hong Kong, but those were dazzlingly fluid and high-flying junky movies. This American retread has the same sort of hack plot but none of the bravura.",2003-04-22,11258,Bulletproof Monk +Richard Roeper,rotten,0245803,Ebert & Roeper,"[T]he thing about the martial arts sequences -- you've got the great Chow Yun-Fat, but this thing is directed MTV style: cut here, cut there, close-up. So we can't really tell if he's doing stunts or if it's all tricks of camerawork.",2003-04-21,11258,Bulletproof Monk +Mark Jenkins,rotten,0245803,Washington Post,One of those motley movies that borrows from just about everywhere.,2003-04-18,11258,Bulletproof Monk +Stephen Whitty,rotten,0245803,Newark Star-Ledger,Everything here is borrowed from other movies ...,2003-04-18,11258,Bulletproof Monk +Colin Covert,rotten,0245803,Minneapolis Star Tribune,Bulletproof Monk shoots blanks.,2003-04-18,11258,Bulletproof Monk +Bill Muller,rotten,0245803,Arizona Republic,"Model-turned-actress Jaime King changed her first name (from James) to star in Bulletproof Monk. Given her performance, she might have to enter the witness-protection program.",2003-04-18,11258,Bulletproof Monk +Hazel-Dawn Dumpert,rotten,0245803,L.A. Weekly,"It's a testament to Chow's star power that, even with an accent more than casually reminiscent of Elmer Fudd's, he comes off charming, handsome and cool in a movie as ridiculous as Bulletproof Monk.",2003-04-17,11258,Bulletproof Monk +Robert Denerstein,rotten,0245803,Denver Rocky Mountain News,"The movie mixes dull dialogue, martial arts wire work and half-baked approximations of Eastern philosophy, some shallow enough to make the average fortune cookie seem profound.",2003-04-16,11258,Bulletproof Monk +Charles Taylor,fresh,0245803,Salon.com,[A] lightweight but delightful martial-arts romp.,2003-04-16,11258,Bulletproof Monk +Stephen Hunter,rotten,0245803,Washington Post,A movie chockablock with too many elements.,2003-04-16,11258,Bulletproof Monk +Mike Clark,rotten,0245803,USA Today,"This is not a movie that sparks questions about the meaning of life. Well, maybe one: Dude, where's my Zen?",2003-04-16,11258,Bulletproof Monk +Peter Howell,rotten,0245803,Toronto Star,"Bulletproof Monk is such an overcooked and odoriferous turkey, the Butterball people ought to sue for defamation of character.",2003-04-16,11258,Bulletproof Monk +Ted Fry,fresh,0245803,Seattle Times,Cheesy fun.,2003-04-16,11258,Bulletproof Monk +Mick LaSalle,fresh,0245803,San Francisco Chronicle,Bulletproof Monk has more going for it than a promising title. It has a life and style that other buddy action movies lack.,2003-04-16,11258,Bulletproof Monk +David Hiltbrand,rotten,0245803,Philadelphia Inquirer,"This isn't really a movie, it's just one chase scene stacked on top of another and stitched together with the thinnest thread of plot.",2003-04-16,11258,Bulletproof Monk +Roger Moore,rotten,0245803,Orlando Sentinel,"If you like your chop-sockey with a healthy serving of cheese, corn and a few giggles, you won't be disappointed.",2003-04-16,11258,Bulletproof Monk +Lou Lumenick,rotten,0245803,New York Post,"A moronic knockoff of Jackie Chan's buddy/action comedies, directed without much imagination or aspiration by music-video veteran Paul Hunter.",2003-04-16,11258,Bulletproof Monk +James Berardinelli,rotten,0245803,ReelViews,"Outside of the moments of kinetic madness that represent the action sequences, this movie is an amalgamation of lame comedy, campy Eastern mysticism, and dumb plotting.",2003-04-16,11258,Bulletproof Monk +Lael Loewenstein,none,0120271,Variety,,2008-05-28,348569796,Talk of Angels +,none,0120271,Los Angeles Times,,2001-02-14,348569796,Talk of Angels +Elizabeth Weitzman,none,0120271,Village Voice,,2000-01-01,348569796,Talk of Angels +Stephen Holden,none,0120271,New York Times,,2000-01-01,348569796,Talk of Angels +Stephanie Zacharek,fresh,0430357,Salon.com,This somber action picture bravely defies expectations and gives us something wholly new.,2006-10-07,190816390,Miami Vice +Richard Roeper,fresh,0430357,Ebert & Roeper,"Mann is the master of nighttime digital photography, and he fills the screen with stunning images and some intricately choreographed shoot-out scenes that I just loved.",2006-08-07,190816390,Miami Vice +Geoff Pevere,fresh,0430357,Toronto Star,"Miami Vice isn't perfect, but it is perfectly mesmerizing.",2006-08-05,190816390,Miami Vice +Andrew Sarris,fresh,0430357,New York Observer,"I enjoyed Mr. Mann's new Miami Vice from its first ravishing frame to the last, but I can't say that very much of it made sense -- but then, neither do the daily headlines.",2006-08-03,190816390,Miami Vice +Geoff Andrew,fresh,0430357,Time Out,It's business as usual for Mann. Truly terrific.,2006-08-03,190816390,Miami Vice +,none,0430357,St. Louis Post-Dispatch,,2006-07-29,190816390,Miami Vice +Bruce Newman,fresh,0430357,San Jose Mercury News,"The movie isn't perfect, but it's good enough, and better than most. It should keep us occupied until the big screen version of The Apprentice comes along.",2006-07-28,190816390,Miami Vice +Mick LaSalle,rotten,0430357,San Francisco Chronicle,The truest thing to say about Miami Vice is that it's an OK picture with some superb things in it.,2006-07-28,190816390,Miami Vice +Peter Travers,fresh,0430357,Rolling Stone,"If you're looking for a crime story that sizzles with action, sex and the visceral jolt of life on the edge, Miami Vice is the one.",2006-07-28,190816390,Miami Vice +Carrie Rickey,rotten,0430357,Philadelphia Inquirer,"Miami Vice, the movie, is an atmospheric muddle, as gorgeous and unintelligible as raven-haired stunner Gong Li.",2006-07-28,190816390,Miami Vice +Roger Moore,fresh,0430357,Orlando Sentinel,It works as well as it ever did. It works because Mann makes it work.,2006-07-28,190816390,Miami Vice +Lisa Rose,rotten,0430357,Newark Star-Ledger,"It offers a good amount of crowd-pleasing action, but the story is convoluted and the heroes are scowling mannequins.",2006-07-28,190816390,Miami Vice +Kyle Smith,fresh,0430357,New York Post,"The antidote to M:i:III, Pirates II and every other circus of coagulated stunts is Miami Vice, my favorite Hollywood movie of the summer so far.",2006-07-28,190816390,Miami Vice +Jack Mathews,fresh,0430357,New York Daily News,"Miami Vice is the last of the predicted summer blockbusters, and it delivers a reasonable amount of popcorn excitement.",2006-07-28,190816390,Miami Vice +Rene Rodriguez,fresh,0430357,Miami Herald,"This is more of a thinking man's action flick -- a small, intense film made on a giant canvas that finds Mann experimenting with and pushing at the boundaries of mainstream filmmaking.",2006-07-28,190816390,Miami Vice +Amy Biancolli,fresh,0430357,Houston Chronicle,"It might be an empty vessel, but it zooms.",2006-07-28,190816390,Miami Vice +Liam Lacey,fresh,0430357,Globe and Mail,"Sensual and scary, the movie is so visually textured you feel as though you're brushing against the screen.",2006-07-28,190816390,Miami Vice +Terry Lawson,rotten,0430357,Detroit Free Press,"Perhaps had they been given a script, a purpose or a mission, Miami Vice the movie might have been something worthy of the talented Mann's attention.",2006-07-28,190816390,Miami Vice +Robert Denerstein,fresh,0430357,Denver Rocky Mountain News,"Miami Vice exudes the kind of gritty life we expect, so much so that you might argue that neither Crockett nor Tubbs deserves to be called a main character; Mann reserves that role for crime itself.",2006-07-28,190816390,Miami Vice +Lisa Kennedy,rotten,0430357,Denver Post,"The film, like its oddly rumbling sky, promises more than it ever delivers. Granted, it can look cool. But more often, as we wait for the lightning that never arrives, it frustrates.",2006-07-28,190816390,Miami Vice +Derek Adams,rotten,0113253,Time Out,Slicker than crude oil and just as unattractive.,2006-06-24,12962,Halloween: The Curse of Michael Myers +Daniel M. Kimmel,rotten,0113253,Variety,Run-of-the-mill horror item is notable only for final appearance of the late Donald Pleasance,2005-04-29,12962,Halloween: The Curse of Michael Myers +Stephen Holden,rotten,0113253,New York Times,"Although the series has obviously run out of steam, the ending leaves the door open for Michael's return. Really, it's about time the masks were removed once and for and all.",2004-08-30,12962,Halloween: The Curse of Michael Myers +Jack Mathews,rotten,0113253,Los Angeles Times,"'Enough of this Michael Meyers B.S.!,' says a disgruntled Haddonfielder, as news spreads of the returning native son. Dream on.",2001-02-14,12962,Halloween: The Curse of Michael Myers +James Berardinelli,rotten,0113253,ReelViews,"Needless to say, the gore level is high and the scare level low -- although not as low as the intelligence level.",2000-01-01,12962,Halloween: The Curse of Michael Myers +Mick LaSalle,rotten,0113253,San Francisco Chronicle,"This sixth installment, by far the worst in the series, is bland and deadening.",2000-01-01,12962,Halloween: The Curse of Michael Myers +Richard Harrington,rotten,0113253,Washington Post,"Unfortunately, while director Joe Chapelle and writer Daniel Farrands took advantage of a clearance sale at the Horror Cliche Emporium, they forgot to stop in at Plots R Us.",2000-01-01,12962,Halloween: The Curse of Michael Myers +Moira MacDonald,none,0117991,Seattle Times,,2008-10-18,10087,Twelfth Night +Todd McCarthy,rotten,0117991,Variety,"A handsome, agreeably performed rendition that fails to ignite much laughter or any real emotion.",2008-07-06,10087,Twelfth Night +Geoff Andrew,fresh,0117991,Time Out,"The direction is assured, and the cast is masterly.",2006-02-09,10087,Twelfth Night +Stephen Holden,fresh,0117991,New York Times,"A comic meditation on desire, disguise and inherent bisexuality.",2003-05-20,10087,Twelfth Night +Rick Groen,fresh,0117991,Globe and Mail,"An entertaining movie. No more, no less.",2002-04-12,10087,Twelfth Night +Kevin Thomas,rotten,0117991,Los Angeles Times,Only fitfully do the actors actually seem to become the characters they are playing.,2001-02-14,10087,Twelfth Night +Desson Thomson,fresh,0117991,Washington Post,"British director Nunn doesn't always take advantage of the play's comic possibilities. But he creates absorbing, original moments -- in the unlikeliest of places.",2000-01-01,10087,Twelfth Night +Susan Stark,fresh,0117991,Detroit News,,2000-01-01,10087,Twelfth Night +Mick LaSalle,fresh,0117991,San Francisco Chronicle,An innovative and imaginatively rendered version of Shakespeare's funniest play.,2000-01-01,10087,Twelfth Night +Roger Ebert,fresh,0117991,Chicago Sun-Times,"Bonham Carter, who has grown wonderfully as an actress, walks the thin line between love and comedy...",2000-01-01,10087,Twelfth Night +,rotten,0117991,USA Today,"Stage director Trevor Nunn hasn't exploited it in his film of the chaotic Bard farce, which delivers only fitfully on goodwill the play automatically beckons.",2000-01-01,10087,Twelfth Night +James Berardinelli,fresh,0117991,ReelViews,"Shakespeare aficionados will probably be pleased that so much of the written word has made it to the screen, but the two-plus hour running length is a bit burdensome.",2000-01-01,10087,Twelfth Night +Owen Gleiberman,fresh,0117093,Entertainment Weekly,,2011-09-07,15336,Mother Night +Emanuel Levy,none,0117093,Variety,,2009-03-27,15336,Mother Night +Derek Adams,none,0117093,Time Out,,2006-02-09,15336,Mother Night +Janet Maslin,none,0117093,New York Times,,2003-05-20,15336,Mother Night +Rita Kempley,none,0117093,Washington Post,,2002-01-22,15336,Mother Night +Peter Travers,none,0117093,Rolling Stone,,2001-05-12,15336,Mother Night +Jack Mathews,none,0117093,Los Angeles Times,,2001-02-14,15336,Mother Night +Roger Ebert,rotten,0117093,Chicago Sun-Times,,2000-01-01,15336,Mother Night +Edward Guthmann,none,0117093,San Francisco Chronicle,,2000-01-01,15336,Mother Night +James Berardinelli,rotten,0117093,ReelViews,,2000-01-01,15336,Mother Night +Susan Stark,rotten,0117093,Detroit News,,2000-01-01,15336,Mother Night +Joe Baltake,none,0117093,Sacramento Bee,,2000-01-01,15336,Mother Night +,none,0117093,Houston Chronicle,,2000-01-01,15336,Mother Night +Andy Seiler,fresh,0117093,USA Today,A serious drama that is also funny without crossing into burlesque.,2000-01-01,15336,Mother Night +,fresh,0117093,Entertainment Weekly,,1996-11-01,15336,Mother Night +Emanuel Levy,fresh,0111019,Variety,French helmer Andre Techine's most personal--and arguably best--film is one of the few foreign language pictures that was recognized by most critics groups in the U.S.,2006-12-20,20034,Les roseaux sauvages +Geoff Andrew,none,0111019,Time Out,,2006-01-26,20034,Les roseaux sauvages +Caryn James,none,0111019,New York Times,,2003-05-20,20034,Les roseaux sauvages +Kenneth Turan,none,0111019,Los Angeles Times,,2001-02-21,20034,Les roseaux sauvages +Roger Ebert,fresh,0111019,Chicago Sun-Times,"Some of the political undertones may go astray, but the emotional center of the film is touching and honest.",2000-01-01,20034,Les roseaux sauvages +Mick LaSalle,none,0111019,San Francisco Chronicle,,2000-01-01,20034,Les roseaux sauvages +James Berardinelli,fresh,0111019,ReelViews,,2000-01-01,20034,Les roseaux sauvages +Joe Baltake,none,0111019,Sacramento Bee,,2000-01-01,20034,Les roseaux sauvages +,none,0035896,Time Out,,2006-01-26,19024,For Whom the Bell Tolls +Bosley Crowther,none,0035896,New York Times,,2003-05-20,19024,For Whom the Bell Tolls +,fresh,0032904,TIME Magazine,"In short, The Philadelphia Story lifts the daily drudge into a charming never-never land, with complete footnotes excusing its existence. And besides, it's a good, entertaining show.",2009-04-23,22180,The Philadelphia Story +Mark Bourne,fresh,0032904,Film.com,"Every time Katharine Hepburn, Cary Grant, and Jimmy Stewart connect in a scene, we hear the happy ding! of quality champagne crystal.",2008-03-04,22180,The Philadelphia Story +Herb Golden,fresh,0032904,Variety,The smarties are going to relish Philadelphia Story a lot more than the two-bit trade...,2007-07-02,22180,The Philadelphia Story +Dave Kehr,fresh,0032904,Chicago Reader,George Cukor gives it the royal treatment with a splendid supporting cast...,2007-07-02,22180,The Philadelphia Story +Geoff Andrew,fresh,0032904,Time Out,"Cukor and Donald Ogden Stewart's evergreen version of Philip Barry's romantic farce, centreing on a socialite wedding threatened by scandal, is a delight from start to finish, with everyone involved working on peak form.",2006-02-09,22180,The Philadelphia Story +Bosley Crowther,fresh,0032904,New York Times,"It has been a long time since Hollywood has spent itself so extravagantly, and to such entertaining effect, upon a straight upper-crust fable, an unblushing apologia for plutocracy.",2003-05-20,22180,The Philadelphia Story +Mark Bourne,fresh,0045152,Film.com,"...this one's the Taj Mahal, Armstrong's footprint on the moon, the 2001 Arizona-New York World Series, the Clash's London Calling, and the perfect foamy head on an expertly poured Guinness.",2008-03-04,9924,Singin' in the Rain +Dave Kehr,fresh,0045152,Chicago Reader,One of the shining glories of the American musical.,2007-06-26,9924,Singin' in the Rain +Variety Staff,fresh,0045152,Variety,A fancy package of musical entertainment with wide appeal and bright grossing prospects.,2007-06-26,9924,Singin' in the Rain +Stephen Garrett,fresh,0045152,Time Out,"If you've never seen it and don't, you're bonkers.",2006-06-24,9924,Singin' in the Rain +Bosley Crowther,fresh,0045152,New York Times,"Compounded generously of music, dance, color, spectacle and a riotous abundance of Gene Kelly, Jean Hagen and Donald O'Connor on the screen, all elements in this rainbow program are carefuly contrived and guaranteed to...put you in a buttercup mood.",2003-05-20,9924,Singin' in the Rain +James Berardinelli,fresh,0045152,ReelViews,"Watching Singin' in the Rain is an exuberant, magical experience -- a journey deep into the heart of feel-good territory.",2003-03-06,9924,Singin' in the Rain +John Monaghan,fresh,0045152,Detroit Free Press,A rare musical whose story -- scripted by Betty Comden and Adolph Green -- is just as good as the songs.,2002-12-24,9924,Singin' in the Rain +Jane Sumner,fresh,0045152,Dallas Morning News,"Fifty years later, it's still a delight with everybody working at the top of his or her game.",2002-11-26,9924,Singin' in the Rain +Jessica Winter,fresh,0045152,Village Voice,The ultimate nostalgic source text is itself a pomo homage to a lost moment.,2002-11-12,9924,Singin' in the Rain +Roger Ebert,fresh,0045152,Chicago Sun-Times,"There is no movie musical more fun than Singin' in the Rain, and few that remain as fresh over the years.",2000-01-01,9924,Singin' in the Rain +James Berardinelli,fresh,0043278,ReelViews,Gene Kelly remains one of the best and brightest of the Golden Era musical stars and An American in Paris shows him in fine form.,2011-01-25,22098,An American in Paris +,fresh,0043278,TIME Magazine,A grand show -- a brilliant combination of Hollywood's opulence and technical wizardry with the kind of taste and creativeness that most high-budgeted musicals notoriously lack.,2009-02-18,22098,An American in Paris +Variety Staff,fresh,0043278,Variety,One of the most imaginative musical confections turned out by Hollywood in years.,2008-02-19,22098,An American in Paris +Don Druker,fresh,0043278,Chicago Reader,"While not nearly the musical it's cracked up to be, this 1951 film is absolutely required viewing for anyone who wants to see the studio system (MGM style) at its gaudiest, most Byzantine height.",2006-12-12,22098,An American in Paris +Geoff Andrew,fresh,0043278,Time Out,A musical both ludicrously overpraised (especially in Hollywood) and underrated.,2006-06-24,22098,An American in Paris +Bosley Crowther,fresh,0043278,New York Times,"...the picture takes on its glow of magic when Miss Caron is on the screen. When she isn't, it bumps along slowly as a patched-up, conventional musical show.",2003-05-20,22098,An American in Paris +Roger Ebert,fresh,0043278,Chicago Sun-Times,"The real reasons to see An American in Paris are for the Kelly dance sequences, the closing ballet, the Gershwin songs, the bright locations, and a few moments of the ineffable, always curiously sad charm of Oscar Levant.",2000-01-01,22098,An American in Paris +Keith Uhlich,fresh,0050419,Time Out New York,Sensation trumps cogitation-unsurprising in a Hollywood production-which doesn't negate the enduring allure of this beautiful bauble.,2012-06-26,17028,Funny Face +,none,0050419,Variety,,2009-03-26,17028,Funny Face +Mark Bourne,fresh,0050419,Film.com,"...can clunk like a tin can in the dryer. But hey, we're talking Audrey Hepburn and Fred Astaire, so that's some mighty elegant slack we're willing to cut here.",2009-02-02,17028,Funny Face +,none,0050419,Time Out,,2006-01-26,17028,Funny Face +Bosley Crowther,fresh,0050419,New York Times,Funny Face...teams Fred Astaire and Audrey Hepburn in a delightfully balmy romance.,2003-05-20,17028,Funny Face +Cath Clarke,fresh,0054698,Time Out,It's as ditsy and delightful as ever - with charm enough to forgive it plenty.,2011-01-18,16985,Breakfast at Tiffany's +Mark Bourne,fresh,0054698,Film.com,"...the final scene, a tender sequence that you can sop up with a sponge, but if you aren't moved by it you probably stick kittens with pins.",2009-02-02,16985,Breakfast at Tiffany's +Variety Staff,fresh,0054698,Variety,"Out of the elusive, but curiously intoxicating Truman Capote fiction, scenarist George Axelrod has developed a surprisingly moving film, touched up into a stunningly visual motion picture.",2008-05-22,16985,Breakfast at Tiffany's +Dave Kehr,fresh,0054698,Chicago Reader,"This story of a party girl in love with a gigolo allows [director Blake] Edwards to create a very handsome film, with impeccable Technicolor photography by Franz Planer.",2007-02-09,16985,Breakfast at Tiffany's +Geoff Andrew,fresh,0054698,Time Out,Taken as a shallow fairytale it has a certain charm.,2006-02-09,16985,Breakfast at Tiffany's +A.H. Weiler,fresh,0054698,New York Times,"A completely unbelievable but wholly captivating flight into fancy composed of unequal dollops of comedy, romance, poignancy, funny colloquialisms and Manhattan's swankiest East Side areas captured in the loveliest of colors.",2005-05-09,16985,Breakfast at Tiffany's +James Berardinelli,fresh,0054698,ReelViews,"For those who considers themselves romantics, or for anyone who just enjoys a simple love story from time-to-time, Breakfast at Tiffany's offers a few simple pleasures.",2000-01-01,16985,Breakfast at Tiffany's +Joshua Rothkopf,fresh,0052357,Time Out New York,Hitchcock's most tender story.,2011-06-01,22490,Vertigo +,rotten,0052357,TIME Magazine,"The old master, now a slave to television, has turned out another Hitchcock-and-bull story in which the mystery is not so much who done it as who cares.",2009-04-20,22490,Vertigo +Dave Kehr,fresh,0052357,Chicago Reader,"One of the landmarks--not merely of the movies, but of 20th-century art.",2009-04-20,22490,Vertigo +David Ansen,fresh,0052357,Newsweek,Why is this movie Hitchcock's masterpiece? Because no movie plunges us more deeply into the dizzying heart of erotic obsession.,2008-08-18,22490,Vertigo +Geoff Andrew,fresh,0052357,Time Out,Slow but totally compelling.,2006-01-26,22490,Vertigo +,fresh,0052357,Variety,"James Stewart, on camera almost constantly, comes through with a startlingly fine performance as the lawyer-cop who suffers from acrophobia.",2001-02-13,22490,Vertigo +Jeff Millar,fresh,0052357,Houston Chronicle,There is a glumness to the film that is notably missing from the director's other films of the period.,2000-01-01,22490,Vertigo +Robert Horton,fresh,0052357,Film.com,One of the things that still amazes me about this movie is the way its study of obsession is so single-minded.,2000-01-01,22490,Vertigo +Mike Clark,fresh,0052357,USA Today,"You watch this guy going slowly over the brink and realize, good grief, this is Jimmy Stewart.",2000-01-01,22490,Vertigo +Roger Ebert,fresh,0052357,Chicago Sun-Times,"It is about how Hitchcock used, feared and tried to control women.",2000-01-01,22490,Vertigo +James Berardinelli,fresh,0052357,ReelViews,"From a craft standpoint, Vertigo represents the director in peak form.",2000-01-01,22490,Vertigo +Janet Maslin,fresh,0052357,New York Times,"With less playfulness and much more overt libido than other Hitchcock classics, Vertigo was always anomalous.",2000-01-01,22490,Vertigo +Joe Baltake,fresh,0052357,Sacramento Bee,Vertigo is Hitchcock's stirring parable of love and death.,2000-01-01,22490,Vertigo +Desson Thomson,fresh,0052357,Washington Post,Do yourself an aesthetic favor: Take the plunge.,2000-01-01,22490,Vertigo +Bosley Crowther,fresh,0052357,New York Times,[A] fascinating mystery.,2000-01-01,22490,Vertigo +Peter Stack,fresh,0052357,San Francisco Chronicle,"In its dark heart, the film is a sorrowful contemplation of love and the veils that manipulate sexual passions.",2000-01-01,22490,Vertigo +Michael Sragow,fresh,0047396,New Yorker,"It's one of Alfred Hitchcock's inspired audience-participation films: watching it, you feel titillated, horrified, and, ultimately, purged.",2012-03-05,10046,Rear Window +Todd McCarthy,none,0047396,Variety,,2012-02-23,10046,Rear Window +Leah Rozen,none,0047396,The Wrap,,2011-10-07,10046,Rear Window +,fresh,0047396,TIME Magazine,Just possibly the second most entertaining picture (after The 39 Steps) ever made by Alfred Hitchcock.,2009-04-20,10046,Rear Window +Geoff Andrew,fresh,0047396,Time Out,"Of all Hitchcock's films, this is the one which most reveals the man.",2006-02-09,10046,Rear Window +Jeff Millar,fresh,0047396,Houston Chronicle,The deliciousness of watching the film as it's intended to be seen is that the big screen gives Rear Window back its claustrophobia.,2005-07-21,10046,Rear Window +Glenn Lovell,fresh,0047396,San Jose Mercury News,"Don't resist the urge -- steal a peek at it now, and be reminded why Hitchcock is still without equal in the clammy thrills department.",2004-05-28,10046,Rear Window +Lisa Schwarzbaum,fresh,0047396,Entertainment Weekly,Masterpiece of voyeurism.,2000-01-01,10046,Rear Window +Joe Baltake,fresh,0047396,Sacramento Bee,"Belatedly, I'm nominating a film from 1954 as the best picture of 2000.",2000-01-01,10046,Rear Window +James Berardinelli,fresh,0047396,ReelViews,One of the finest ever committed to celluloid!,2000-01-01,10046,Rear Window +Jonathan Rosenbaum,fresh,0047396,Chicago Reader,"In an impressive oeuvre, Rear Window is arguably the most exquisitely handcrafted feature, because Hitchcock mastered the spatial as well as behavioral coordinates of his chosen universe inch by inch.",2000-01-01,10046,Rear Window +Vincent Canby,fresh,0047396,New York Times,"Its appeal, which goes beyond that of other, equally masterly Hitchcock works, remains undiminished.",2000-01-01,10046,Rear Window +J. Hoberman,fresh,0047396,Village Voice,Restored to its original Technicolor grandeur!,2000-01-01,10046,Rear Window +Peter Rainer,fresh,0047396,New York Magazine,The clearest example of a Hitchcock movie that functions on dual levels: It's both mousetrap and abyss.,2000-01-01,10046,Rear Window +Mike Clark,fresh,0047396,USA Today,Masterpiece!,2000-01-01,10046,Rear Window +Charles Taylor,fresh,0047396,Salon.com,Surely one of Alfred Hitchcock's best entertainments.,2000-01-01,10046,Rear Window +Elizabeth Weitzman,fresh,0047396,Film.com,"Although it's an intensely intimate film, there's something special about taking your seat in the theater as though you're pulling up right next to L.B. Jefferies (James Stewart).",2000-01-01,10046,Rear Window +Richard T. Jameson,fresh,0047396,Mr. Showbiz,Rear Window is the epitome of Hollywood class.,2000-01-01,10046,Rear Window +Peter Stack,fresh,0047396,San Francisco Chronicle,"Since the 1954 Alfred Hitchcock classic is all about the voyeuristic instinct, the better the view, the more sensational the experience.",2000-01-01,10046,Rear Window +Roger Ebert,fresh,0047396,Chicago Sun-Times,"Rear Window lovingly invests in suspense all through the film, banking it in our memory, so that when the final payoff arrives, the whole film has been the thriller equivalent of foreplay.",2000-01-01,10046,Rear Window +,fresh,0025316,TIME Magazine,"Instead of attempting a journalistic study of bus-travel, regularly punctuated by comic touches, Director Frank Capra and Robert Riskin who adapted Samuel Hopkins Adams' story, fused the two.",2009-02-04,18256,It Happened One Night +Variety Staff,fresh,0025316,Variety,"One of those stories that without a particularly strong plot manages to come through in a big way, due to the acting, dialog, situations and direction.",2008-02-19,18256,It Happened One Night +Dave Kehr,fresh,0025316,Chicago Reader,"This is Capra at his best, very funny and very light, with a minimum of populist posturing.",2006-12-12,18256,It Happened One Night +Geoff Andrew,fresh,0025316,Time Out,"Capra's sense of humour is a little like that of Preston Sturges, though less caustic; and the film shows its stars at their best, Colbert as one of Hollywood's fresher comediennes, Gable as dumb-but-loveable hunk.",2006-02-09,18256,It Happened One Night +Mordaunt Hall,fresh,0025316,New York Times,"It Happened One Night is a good piece of fiction, which, with all its feverish stunts, is blessed with bright dialogue and a good quota of relatively restrained scenes.",2003-05-20,18256,It Happened One Night +James Berardinelli,fresh,0025316,ReelViews,"Its opposites-attract melding of screwball comedy and the road trip elements has become one of about a half-dozen standard love story formulas. Most years, there's at least one theatrical release that owes a debt to this film.",1934-02-22,18256,It Happened One Night +,none,0036855,Variety,,2008-05-20,18287,Gaslight +,none,0036855,Time Out,,2006-06-24,18287,Gaslight +Bosley Crowther,none,0036855,New York Times,,2006-03-25,18287,Gaslight +James Berardinelli,fresh,0036855,ReelViews,,2000-01-01,18287,Gaslight +,none,0025164,Variety,,2008-08-08,428576922,The Gay Divorcee +,none,0025164,Time Out,,2006-02-09,428576922,The Gay Divorcee +Andre Sennwald,none,0025164,New York Times,,2006-01-28,428576922,The Gay Divorcee +Don Druker,none,0025164,Chicago Reader,,2000-01-01,428576922,The Gay Divorcee +Dave Calhoun,fresh,0053125,Time Out,"Hitchcock breezes through a tongue-in-cheek, nightmarish plot with a lightness of touch that's equalled by a charming performance from Grant.",2009-06-19,18639,North by Northwest +,fresh,0053125,TIME Magazine,Smoothly troweled and thoroughly entertaining.,2009-04-23,18639,North by Northwest +Dave Kehr,fresh,0053125,Chicago Reader,"A great film, and certainly one of the most entertaining movies ever made, directed by Alfred Hitchcock at his peak.",2009-03-27,18639,North by Northwest +Variety Staff,fresh,0053125,Variety,"At times it seems Hitchcock is kidding his own penchant for the bizarre, but this sardonic attitude is so deftly handled it only enhances the thrills.",2009-03-26,18639,North by Northwest +,fresh,0053125,Time Out,"All in all, an improbable classic.",2006-01-26,18639,North by Northwest +A.H. Weiler,fresh,0053125,New York Times,"... a colorful and exciting route for spies, counterspies and lovers.",2003-05-20,18639,North by Northwest +James Berardinelli,fresh,0053125,ReelViews,"Of course, the hallmark of North by Northwest is the way in which Hitchcock develops tension.",2000-01-01,18639,North by Northwest +J. Hoberman,fresh,0053125,Village Voice,Hitchcock's ultimate wrong-man comedy.,2000-01-01,18639,North by Northwest +Richard Brody,fresh,0053604,New Yorker,"Wilder, a bilious and mercurial wit, here becomes a wide-screen master of time ...",2013-07-01,18339,The Apartment +Wally Hammond,fresh,0053604,Time Out,"Directed by Wilder with attention to detail and emotional reticence that belie its inherent darkness and melodramatic core, it's lifted considerably by the performances.",2012-06-08,18339,The Apartment +,fresh,0053604,TIME Magazine,"A comedy of men's-room humours and water-cooler politics that now and then among the belly laughs says something serious and sad about the struggle for success, about what it often does to a man, and about the horribly small world of big business.",2009-02-18,18339,The Apartment +James Berardinelli,fresh,0053604,ReelViews,"With tremendous performances by the two leads (Lemmon and Shirley MacLaine), this is yet another ""must see"" title to be found on Wilder's resume.",2008-06-10,18339,The Apartment +Variety Staff,fresh,0053604,Variety,"Most of the time, it's up to director Wilder to sustain a two-hour-plus film on treatment alone, a feat he manages to accomplish more often than not, and sometimes the results are amazing.",2007-08-15,18339,The Apartment +Joe Baltake,fresh,0053604,Passionate Moviegoer,'The Apartment': The Film That Defines Me,2007-02-13,18339,The Apartment +Jonathan Rosenbaum,rotten,0053604,Chicago Reader,"I wouldn't call this 1960 picture one of Billy Wilder's best comedies -- it's drab, sappy, and overlong at 125 minutes.",2006-12-13,18339,The Apartment +Joe Williams,fresh,0053604,St. Louis Post-Dispatch,,2005-07-07,18339,The Apartment +Ed Park,fresh,0053604,Village Voice,Elevates the workplace romance into a sublime erotics of officious addresses (the omnipresent Mister and Miss) and economic conundrum.,2002-12-25,18339,The Apartment +Roger Ebert,fresh,0053604,Chicago Sun-Times,"There is a melancholy gulf over the holidays between those who have someplace to go, and those who do not. The Apartment is so affecting partly because of that buried reason.",2001-08-01,18339,The Apartment +Bosley Crowther,fresh,0053604,New York Times,"A gleeful, tender and even sentimental film.",2000-01-01,18339,The Apartment +Joe Morgenstern,none,0053291,Wall Street Journal,,2011-11-26,18189,Some Like It Hot +,fresh,0053291,TIME Magazine,"Lemmon digs out most of the laughs in the script. As for Marilyn, she's been trimmer, slimmer and sexier in earlier pictures.",2011-05-20,18189,Some Like It Hot +Joshua Rothkopf,fresh,0053291,Time Out New York,The Great American Comedy (if you discount the Marx Brothers).,2009-09-30,18189,Some Like It Hot +Variety Staff,fresh,0053291,Variety,"Pictures like this, with a sense of humor that is as broad as it can be sophisticated, come along only infrequently.",2007-08-15,18189,Some Like It Hot +Dave Kehr,fresh,0053291,Chicago Reader,"In many ways, the ultimate Billy Wilder film -- replete with breathless pacing, transvestite humor, and unflinching cynicism.",2007-08-15,18189,Some Like It Hot +Derek Adams,fresh,0053291,Time Out,One of Wilder's funniest satires.,2006-06-24,18189,Some Like It Hot +A.H. Weiler,fresh,0053291,New York Times,"Some Like It Hot does cool off considerably now and again, but Mr. Wilder and his carefree clowns keep it crackling and funny most of the time.",2000-01-01,18189,Some Like It Hot +Roger Ebert,fresh,0053291,Chicago Sun-Times,"Wilder's 1959 comedy is one of the enduring treasures of the movies, a film of inspiration and meticulous craft.",2000-01-01,18189,Some Like It Hot +Chris Nashawaty,fresh,0056923,Entertainment Weekly,,2011-03-17,17945,Charade +A.O. Scott,none,0056923,New York Times,,2010-08-31,17945,Charade +,rotten,0056923,TIME Magazine,What's going on is sort of confused.,2009-02-04,17945,Charade +Dave Kehr,fresh,0056923,Chicago Reader,A terrifically entertaining comedy-thriller.,2009-02-04,17945,Charade +Robert B. Frederick,fresh,0056923,Variety,"Firsttime teaming of Cary Grant and Audrey Hepburn, a natural, gives the sophisticated romantic caper an international appeal, plus the selling points of adventure, suspense and suberb comedy.",2008-12-11,17945,Charade +,fresh,0056923,Time Out,"Donen's typically slick comedy thriller, ingeniously scripted by Peter Stone, is a mammoth audience teaser.",2006-02-09,17945,Charade +Bosley Crowther,rotten,0056923,New York Times,"I tell you, this light-hearted picture is full of such gruesome violence.",2005-05-09,17945,Charade +Charles Taylor,fresh,0056923,Salon.com,"Made when the studio system was on its last legs, Charade still feels fresh, quick-witted, nothing like the artificial, airless Hollywood pictures of its time.",2000-01-01,17945,Charade +David Denby,fresh,0034583,New Yorker,"Casablanca is the most sociable, the most companionable film ever made. Life as an endless party.",2013-02-19,10056,Casablanca +,rotten,0034583,TIME Magazine,Nothing short of an invasion could add much to Casablanca.,2009-02-17,10056,Casablanca +Variety Staff,fresh,0034583,Variety,Film should be a solid moneymaker everywhere.,2008-01-28,10056,Casablanca +Jonathan Rosenbaum,fresh,0034583,Chicago Reader,Part of what makes this wartime Hollywood drama (1942) about love and political commitment so fondly remembered is its evocation of a time when the sentiment of this country about certain things appeared to be unified.,2006-12-12,10056,Casablanca +,fresh,0034583,Time Out,"There are some great supporting performances, and much of the dialogue has become history.",2006-06-24,10056,Casablanca +Douglas Pratt,fresh,0034583,Hollywood Reporter,"Across seven decades, the Humphrey Bogart-Ingrid Bergman starrer has emerged as Americans' default favorite movie.",2003-08-13,10056,Casablanca +Bosley Crowther,fresh,0034583,New York Times,"Yes, indeed, the Warners here have a picture which makes the spine tingle and the heart take a leap.",2003-05-20,10056,Casablanca +James Berardinelli,fresh,0034583,ReelViews,The greatest pleasure anyone can derive from this movie comes through simply watching it.,2001-03-22,10056,Casablanca +Roger Ebert,fresh,0034583,Chicago Sun-Times,"Seeing the film over and over again, year after year, I find it never grows over-familiar. It plays like a favorite musical album; the more I know it, the more I like it.",2000-01-01,10056,Casablanca +Otis Ferguson,fresh,0033870,The New Republic,"The Maltese Falcon is the first crime melodrama with finish, speed and bang to come along in what seems ages.",2012-08-29,17027,The Maltese Falcon +,fresh,0033870,TIME Magazine,"Frighteningly good evidence that the British (Alfred Hitchcock, Carol Reed, et al.) have no monopoly on the technique of making mystery films.",2009-04-23,17027,The Maltese Falcon +James Berardinelli,fresh,0033870,ReelViews,"The Maltese Falcon is among the most important and influential movies to emerge from the Hollywood system -- as significant in some ways as its contemporary, Citizen Kane.",2008-06-10,17027,The Maltese Falcon +Variety Staff,fresh,0033870,Variety,This is one of the best examples of actionful and suspenseful melodramatic story telling in cinematic form.,2008-04-08,17027,The Maltese Falcon +Dave Kehr,fresh,0033870,Chicago Reader,Who can argue with Bogart's glower or Mary Astor in her ratty fur?,2007-10-16,17027,The Maltese Falcon +Derek Adams,fresh,0033870,Time Out,"Filmed almost entirely in interiors, it presents a claustrophobic world animated by betrayal, perversion and pain.",2006-06-24,17027,The Maltese Falcon +Bosley Crowther,fresh,0033870,New York Times,Mr. Huston gives promise of becoming one of the smartest directors in the field.,2003-05-20,17027,The Maltese Falcon +Roger Ebert,fresh,0033870,Chicago Sun-Times,"Among the movies we not only love but treasure, The Maltese Falcon stands as a great divide.",2001-06-06,17027,The Maltese Falcon +Stanley Kauffmann,fresh,0058385,The New Republic,"Despite all reservations expressed, I must make clear that his fantastically successful show has been converted into a generally entertaining film.",2013-02-06,9386,My Fair Lady +Gene Siskel,fresh,0058385,Chicago Tribune,"A marvelous restoration of the 30-year-old musical, precisely the kind of high-class popular entertainment that Hollywood can't seem to make these days.",2013-01-16,9386,My Fair Lady +Robert J. Landry,fresh,0058385,Variety,A stunningly effective screen entertainment.,2008-02-20,9386,My Fair Lady +Dave Kehr,fresh,0058385,Chicago Reader,"Lerner and Loewe's musical masterwork, reimagined for film by director George Cukor.",2006-12-13,9386,My Fair Lady +Geoff Andrew,rotten,0058385,Time Out,"Hepburn is clearly awkward as the Cockney Eliza in the first half, and in general the adaptation is a little too reverential to really come alive.",2006-06-24,9386,My Fair Lady +Bosley Crowther,fresh,0058385,New York Times,"All things considered, it is the brilliance of Miss Hepburn as the Cockney waif who is transformed by Prof. Henry Higgins into an elegant female facade that gives an extra touch of subtle magic and individuality to the film.",2003-05-20,9386,My Fair Lady +Roger Ebert,fresh,0058385,Chicago Sun-Times,The best stage musical of all time and one of the most loved romances.,2000-01-01,9386,My Fair Lady +James Berardinelli,fresh,0058385,ReelViews,"Few genres of films are as magical as musicals, and few musicals are as intelligent and lively as My Fair Lady.",2000-01-01,9386,My Fair Lady +John Hartl,fresh,0058385,Film.com,"Literate, funny, brilliantly cast, with a score of Lerner and Loewe songs that does not include one dud.",2000-01-01,9386,My Fair Lady +,fresh,0046250,TIME Magazine,The newcomer named Audrey Hepburn gives the popular old romantic nonsense a reality it has seldom had before.,2009-02-02,18129,Roman Holiday +James Berardinelli,fresh,0046250,ReelViews,"For lovers of romantic comedies through the ages, Roman Holiday remains a favorite.",2008-04-01,18129,Roman Holiday +Variety Staff,fresh,0046250,Variety,"[Wyler] times the chuckles with a never-flagging pace, puts heart into the laughs, endows the footage with some boff bits of business and points up some tender, poignant scenes in using the smart script and the cast to the utmost advantage.",2007-08-13,18129,Roman Holiday +Dave Kehr,rotten,0046250,Chicago Reader,"Wyler lays out all the elements with care and precision, but the romantic comedy never comes together -- it's charm by computer.",2007-08-13,18129,Roman Holiday +Geoff Andrew,fresh,0046250,Time Out,The movie remains a great tonic.,2006-06-24,18129,Roman Holiday +A.H. Weiler,fresh,0046250,New York Times,"Mr. Wyler and his associates have fashioned a natural, tender, and amusing yarn about the heiress to the throne of a mythical kingdom who is sick unto death of an unending schedule of speeches, greetings, and interviews attendant on her goodwill tour...",2003-05-20,18129,Roman Holiday +Ty Burr,fresh,0046250,Boston Globe,"The film itself is a classic of romantic wish fulfillment, exactly the sort of beautiful lie that Hollywood specialized in.",2003-01-24,18129,Roman Holiday +Dave Kehr,fresh,0037059,Chicago Reader,"One of the first films to integrate musical numbers into the plot, it explores, without condescension or simplemindedness, the feelings that drive the family members apart and then bring them back together again.",2008-12-15,17001,Meet Me in St. Louis +Variety Staff,fresh,0037059,Variety,"Garland achieves true stature with her deeply understanding performance, while her sisterly running-mate, Lucille Bremer, likewise makes excellent impact with a well-balanced performance.",2008-12-03,17001,Meet Me in St. Louis +David Jenkins,fresh,0037059,Time Out,One of the great musicals.,2006-06-24,17001,Meet Me in St. Louis +Douglas Pratt,fresh,0037059,Hollywood Reporter,The joys of the film linger with the music and encourage you to savor the true moments of family togetherness.,2004-04-16,17001,Meet Me in St. Louis +Bosley Crowther,fresh,0037059,New York Times,"In the words of one of the gentlemen, it is a ginger-peachy show.",2003-05-20,17001,Meet Me in St. Louis +Keith Staskiewicz,fresh,0032138,Entertainment Weekly,"In truth, any opportunity to see the film on the big screen is welcome.",2013-09-20,9867,The Wizard of Oz +Claudia Puig,fresh,0032138,USA Today,"The blend of old-fashioned, classic storytelling with cutting-edge technology is undeniably enthralling.",2013-09-19,9867,The Wizard of Oz +Stephanie Merry,fresh,0032138,Washington Post,The result is quite stunning and a lot less gimmicky than it could have been.,2013-09-19,9867,The Wizard of Oz +Peter Howell,fresh,0032138,Toronto Star,"Knowing that it was made without a single computer, and entirely by human ingenuity, makes it all the more worthy of marveling at, 75 years and an added dimension later.",2013-09-19,9867,The Wizard of Oz +Rafer Guzman,fresh,0032138,Newsday,"Any reason to show your children ""The Wizard of Oz"" on a big screen seems like a good one.",2013-09-18,9867,The Wizard of Oz +Alan Scherstuhl,fresh,0032138,Village Voice,"Even swollen to IMAX size, the movie is sharper than you've ever seen it, and the vaudevillian brilliance of the choreography (and Ray Bolger's straw-boned tumbling) is entirely undiminished.",2013-09-17,9867,The Wizard of Oz +Todd Gilchrist,fresh,0032138,The Wrap,"""The Wizard of Oz"" celebrates its 75th anniversary looking younger and more vital than ever, simultaneously advertising good old-fashioned storytelling and the most advanced technology available.",2013-09-17,9867,The Wizard of Oz +Lou Lumenick,fresh,0032138,New York Post,"It looks fantastic, sounds great, and the 3-D effects (reportedly labored over for 16 months by a thousand technicians) are both subtle and respectfully applied.",2013-09-15,9867,The Wizard of Oz +,fresh,0032138,TIME Magazine,"The whimsical gaiety, the lighthearted song & dance, the lavish Hollywood sets and costumes are as fresh and beguiling today as they were ten years ago when the picture was first released.",2012-10-09,9867,The Wizard of Oz +Todd McCarthy,fresh,0032138,Variety,"A work of almost staggering iconographic, mythological, creative and simple emotional meaning, at least for American audiences, this is one vintage film that fully lives up to its classic status.",2012-10-09,9867,The Wizard of Oz +Otis Ferguson,rotten,0032138,The New Republic,"The story of course has some lovely and wild ideas, but the picture doesn't know what to do with them, except to be painfully literal and elaborate about everything.",2012-10-09,9867,The Wizard of Oz +Edwin Schallert,fresh,0032138,Los Angeles Times,There is something new in the land of cinema at long last.,2011-08-26,9867,The Wizard of Oz +James Berardinelli,fresh,0032138,ReelViews,One of only a handful of films that nearly everyone is familiar with.,2008-06-10,9867,The Wizard of Oz +John C. Flinn Sr.,fresh,0032138,Variety,There's an audience for Oz wherever there's a projection machine and a screen.,2008-05-12,9867,The Wizard of Oz +Whittaker Chambers,fresh,0032138,TIME Magazine,"Lavish in sets, adult in humor, it is a Broadway spectacle translated into make-believe.",2008-05-12,9867,The Wizard of Oz +Dave Kehr,fresh,0032138,Chicago Reader,"I don't find the film light or joyful in the least -- an air of primal menace hangs about it, which may be why I love it.",2007-06-26,9867,The Wizard of Oz +Trevor Johnston,fresh,0032138,Time Out,"Oz simply lays bare primal emotions, exposes our childhood anxieties about abandonment and powerlessness and brings to light the tension between the repressive comforts of home and the liberating terrors of the unknown marking all our adult lives.",2006-01-26,9867,The Wizard of Oz +Douglas Pratt,fresh,0032138,Hollywood Reporter,Warner Home Video's DVD invites you to watch the movie a dozen more times on top of the many dozens of times you've already seen it.,2005-11-03,9867,The Wizard of Oz +Frank S. Nugent,fresh,0032138,New York Times,A delightful piece of wonder-working which had the youngsters' eyes shining and brought a quietly amused gleam to the wiser ones of the oldsters.,2003-05-20,9867,The Wizard of Oz +Roger Ebert,fresh,0032138,Chicago Sun-Times,"Its underlying story penetrates straight to the deepest insecurities of childhood, stirs them and then reassures them.",2000-01-01,9867,The Wizard of Oz +Kevin Thomas,fresh,0031381,Los Angeles Times,Gone With the Wind endures and deepens with the passing of time because Scarlett and Rhett are as modern as its open ending.,2013-02-24,9818,Gone with the Wind +John C. Flinn Sr.,fresh,0031381,Variety,"One of the truly great films, destined for record-breaking boxoffice business everywhere.",2008-02-19,9818,Gone with the Wind +Dave Kehr,fresh,0031381,Chicago Reader,"A critic-proof movie if there ever was one: it isn't all that good, but somehow it's great.",2006-12-12,9818,Gone with the Wind +Geoff Andrew,fresh,0031381,Time Out,"What more can one say about this much-loved, much discussed blockbuster?",2006-06-24,9818,Gone with the Wind +Douglas Pratt,fresh,0031381,Hollywood Reporter,The film that perhaps defines Hollywood.,2004-12-07,9818,Gone with the Wind +Frank S. Nugent,fresh,0031381,New York Times,"'It' has arrived at last, and we cannot get over the shock of not being disappointed; we had almost been looking forward to that.",2003-05-20,9818,Gone with the Wind +Tom Keogh,fresh,0031381,Film.com,"Everything old is new again with this re-release of Gone With the Wind, and it reminds us that the Golden Age of Hollywood was a beautiful time.",2000-01-01,9818,Gone with the Wind +Sean Means,fresh,0031381,Film.com,They just don't make 'em like that anymore.,2000-01-01,9818,Gone with the Wind +Richard Schickel,rotten,0031381,The Atlantic,"On the whole, I thought the picture was OK.",2000-01-01,9818,Gone with the Wind +Bob Graham,fresh,0031381,San Francisco Chronicle,"The first new Technicolor print in 37 years, digital sound and moments of digitally cleaned-up footage scattered throughout its three hours and 42 minutes all make for a gorgeous sight-and-sound experience.",2000-01-01,9818,Gone with the Wind +Roger Ebert,fresh,0031381,Chicago Sun-Times,"If you loved 'Scarlett,' you'll love its prequel!",2000-01-01,9818,Gone with the Wind +Andrew Sarris,fresh,0031381,The Atlantic,"Let us say simply that there is something in most of us that will always treasure Selznick's flair for old-fashioned, full-bodied narrative even as we pay lip service to the most anemic forms of cerebration in the modern cinema.",2000-01-01,9818,Gone with the Wind +Arthur Schlesinger,rotten,0031381,The Atlantic,It is a bore.,2000-01-01,9818,Gone with the Wind +Judith Crist,fresh,0031381,The Atlantic,Undoubtedly still the best and most durable piece of popular entertainment to have come off the Hollywood assembly lines.,2000-01-01,9818,Gone with the Wind +James Berardinelli,fresh,0031381,ReelViews,"Even though the habits of movie- goers have changed over the years, it's easy to see why this film provoked such an outpouring of praise and adulation during its initial release, and why its stature has grown with the passage of decades.",2000-01-01,9818,Gone with the Wind +Joe Baltake,fresh,0031381,Sacramento Bee,It's that rare film that has overshadowed its own hype.,2000-01-01,9818,Gone with the Wind +John Hartl,fresh,0031381,Film.com,"But once the story kicks in and Leigh and Gable slip into their characters, it's difficult not to be caught up in what is still one of the most vivid depictions of civil war (and its destructive aftermath) ever committed to film.",2000-01-01,9818,Gone with the Wind +Owen Gleiberman,fresh,0031381,Entertainment Weekly,To see Gone With the Wind on a big screen again is to weep for the fearlessness with which Hollywood once believed the sublime was possible.,2000-01-01,9818,Gone with the Wind +,none,0084370,Variety,,2009-03-26,10620,My Favorite Year +Derek Adams,none,0084370,Time Out,,2006-02-09,10620,My Favorite Year +Janet Maslin,none,0084370,New York Times,,2004-08-30,10620,My Favorite Year +Dave Kehr,none,0084370,Chicago Reader,,2000-01-01,10620,My Favorite Year +Don Druker,fresh,0043014,Chicago Reader,A tour de force for Swanson and one of Wilder's better efforts.,2007-08-14,17003,Sunset Blvd. +William Brogdon,fresh,0043014,Variety,"...They rate a nod for daring, as well as credit for an all-around filmmaking job that, disregarding the unpleasant subject matter, is a standout.",2007-06-28,17003,Sunset Blvd. +Geoff Andrew,fresh,0043014,Time Out,"One of Wilder's finest, and certainly the blackest of all Hollywood's scab-scratching accounts of itself.",2006-06-24,17003,Sunset Blvd. +Andrew Sarris,fresh,0043014,New York Observer,Still the best Hollywood movie ever made about Hollywood.,2005-09-29,17003,Sunset Blvd. +Michael Atkinson,fresh,0043014,Village Voice,"What's not recognized enough is the indelible, self-sickened performance of William Holden as Desmond's boy-toy/hired hack.",2003-07-29,17003,Sunset Blvd. +James Berardinelli,fresh,0043014,ReelViews,This is the greatest film about Hollywood ever put on celluloid by Hollywood.,2003-04-03,17003,Sunset Blvd. +Roger Ebert,fresh,0043014,Chicago Sun-Times,"Remains the best drama ever made about the movies because it sees through the illusions, even if Norma doesn't.",2000-01-01,17003,Sunset Blvd. +Thomas M. Pryor,fresh,0043014,New York Times,"While all the acting is memorable, one always thinks first and mostly of Miss Swanson, of her manifestation of consuming pride, her forlorn despair and a truly magnificent impersonation of Charlie Chaplin.",2000-01-01,17003,Sunset Blvd. +Edwin Schallert,fresh,0033467,Los Angeles Times,"It can be classified as, in a number of aspects, one of the most arresting pictures ever produced.",2013-01-18,10074,Citizen Kane +Richard Brody,fresh,0033467,New Yorker,"An ecstasy of light and shadow, of clashing textures and graphic forms, such as hadn't been seen since the silent era.",2012-09-03,10074,Citizen Kane +Ben Walters,fresh,0033467,Time Out,Many of the novel techniques Welles developed with cinematographer Gregg Toland were calculated to offer new angles on film space.,2009-10-30,10074,Citizen Kane +,fresh,0033467,TIME Magazine,It is a work of art created by grown people for grown people.,2009-04-21,10074,Citizen Kane +John C. Flinn Sr.,fresh,0033467,Variety,Welles has found the screen as effective for his unique showmanship as radio and the theatre.,2007-04-06,10074,Citizen Kane +Dave Kehr,fresh,0033467,Chicago Reader,It is still the best place I know of to start thinking about Welles -- or for that matter about movies in general.,2007-04-06,10074,Citizen Kane +Tom Milne,fresh,0033467,Time Out,A film that gets better with each renewed acquaintance.,2006-02-09,10074,Citizen Kane +Bosley Crowther,fresh,0033467,New York Times,"Citizen Kane is far and away the most surprising and cinematically exciting motion picture to be seen here in many a moon. As a matter of fact, it comes close to being the most sensational film ever made in Hollywood.",2003-05-20,10074,Citizen Kane +Roger Ebert,fresh,0033467,Chicago Sun-Times,More than a great movie; it is a gathering of all the lessons of the emerging era of sound.,2000-01-01,10074,Citizen Kane +James Berardinelli,fresh,0033467,ReelViews,"Motion picture archives and collections across the world would be poorer without copies of this film, which will forever be recognized as a defining example of American cinema.",2000-01-01,10074,Citizen Kane +Owen Gleiberman,fresh,0033467,Entertainment Weekly,"Fifty years after its release, Citizen Kane still seems richer, bolder, more spectacularly alive than any other film of the studio-system era. Regardless of how many times you've seen Orson Welles' 1941 masterpiece, it always feels like the first time.",1941-05-01,10074,Citizen Kane +Penelope Gilliatt,fresh,0062622,New Yorker,"Stanley Kubrick's 2001: A Space Odyssey is some sort of great film, and an unforgettable endeavor. Technically and imaginatively, what he put into it is staggering.",2013-01-14,9917,2001: A Space Odyssey +Jonathan Rosenbaum,fresh,0062622,Chicago Reader,"The film's projections of the cold war and antiquated product placements may look quaint now, but the poetry is as hard-edged and full of wonder as ever.",2007-05-08,9917,2001: A Space Odyssey +Dave Kehr,fresh,0062622,Chicago Reader,"It was a freshening attitude then, though its long-term effects haven't been all to the good.",2007-05-08,9917,2001: A Space Odyssey +Geoff Andrew,fresh,0062622,Time Out,"For all the essential coldness of Kubrick's vision, it demands attention as superior sci-fi, simply because it's more concerned with ideas than with Boy's Own-style pyrotechnics.",2006-06-24,9917,2001: A Space Odyssey +Michael Wilmington,fresh,0062622,Chicago Tribune,"It is an extraordinary, obsessive, beautiful work of art.",2002-07-20,9917,2001: A Space Odyssey +Glenn Lovell,fresh,0062622,San Jose Mercury News,"Yup, you guessed it -- a religious experience.",2001-11-21,9917,2001: A Space Odyssey +Stephen Hunter,rotten,0062622,Washington Post,"Now, seen in the actual 2001, it's less a visionary masterpiece than a crackpot Looney Tune, pretentious, abysmally slow, amateurishly acted and, above all, wrong.",2001-11-02,9917,2001: A Space Odyssey +Desson Thomson,fresh,0062622,Washington Post,[Retains] its artistic magnificence after more than 30 years.,2001-11-02,9917,2001: A Space Odyssey +Robert B. Frederick,rotten,0062622,Variety,"2001 compares with, but does not best, previous efforts at science fiction.",2001-02-13,9917,2001: A Space Odyssey +Roger Ebert,fresh,0062622,Chicago Sun-Times,"The film creates its effects essentially out of visuals and music. It is meditative. It does not cater to us, but wants to inspire us, enlarge us.",2000-01-01,9917,2001: A Space Odyssey +Renata Adler,fresh,0062622,New York Times,Somewhere between hypnotic and immensely boring.,2000-01-01,9917,2001: A Space Odyssey +James Berardinelli,fresh,0062622,ReelViews,"A cold, majestic motion picture, a movie that seeks to remind us of the vastness of space and our relatively insignificant place in it.",2000-01-01,9917,2001: A Space Odyssey +Scott Rosenberg,fresh,0062622,Salon.com,I assumed that this was what all movies ought to be: treasures for moral and aesthetic contemplation that did not provide all their answers on first contact.,2000-01-01,9917,2001: A Space Odyssey +Bosley Crowther,none,0039428,New York Times,,2006-01-28,770675648,Golden Earrings +,none,0039428,Chicago Reader,,2004-01-10,770675648,Golden Earrings +Robert Hatch,fresh,0042192,The New Republic,What makes the picture seem so good (what makes it eminently worth seeing) is the satirical touches in its detail and the performance of Bette Davis.,2013-01-23,17714,All About Eve +,fresh,0042192,TIME Magazine,"It crackles with smart, smarting dialogue.",2009-02-18,17714,All About Eve +Abel Green,fresh,0042192,Variety,The Zanuck production investiture is plush in every department.,2008-01-30,17714,All About Eve +Trevor Johnston,fresh,0042192,Time Out,[Features] more quotable dialogue in one movie than most screenwriters manage in a lifetime.,2007-08-16,17714,All About Eve +Dave Kehr,fresh,0042192,Chicago Reader,"The hoped-for tone of Restoration comedy never quite materializes, perhaps because Mankiewicz's cynicism is only skin-deep, but the film's tinny brilliance still pleases.",2006-12-12,17714,All About Eve +Douglas Pratt,fresh,0042192,Hollywood Reporter,Mankiewicz's flair for dialog is so perfected that all three actresses shoot fireworks whenever they open their mouths.,2003-06-14,17714,All About Eve +Bosley Crowther,fresh,0042192,New York Times,"A fine Darryl Zanuck production, excellent music and an air of ultra-class complete this superior satire. The legitimate theatre had better look to its laurels.",2003-05-20,17714,All About Eve +James Berardinelli,fresh,0042192,ReelViews,"A motion picture that, because of its priceless dialogue and unforgettable lead performance, will never lose its luster.",2003-02-20,17714,All About Eve +Edward Guthmann,fresh,0042192,San Francisco Chronicle,"Is there anyone alive who hasn't seen All About Eve -- anyone who doesn't love movies, that is?",2002-06-19,17714,All About Eve +Chris Vognar,fresh,0042192,Dallas Morning News,Mankiewicz's 1950 gem is a wickedly cynical cocktail of laughter and deceit in which everyone has an angle to play.,2002-05-03,17714,All About Eve +Joe Baltake,fresh,0042192,Sacramento Bee,"The presence of All About Eve, while a relief, is also a sad reminder of how in certain ways movies have regressed in the past 50 years.",2001-04-26,17714,All About Eve +Roger Ebert,fresh,0042192,Chicago Sun-Times,"[Bette Davis'] veteran actress Margo Channing in ""All About Eve"" (1950) was her greatest role.",2000-01-01,17714,All About Eve +Ben Mankiewicz,rotten,0430770,At the Movies,The classic 1939 film adaptation... worth seeing again and again. This is not.,2008-11-05,371357838,The Women +Ben Lyons,rotten,0430770,At the Movies,I love women in real life but at the movies I hated The Women.,2008-11-05,371357838,The Women +Anthony Lane,rotten,0430770,New Yorker,"The funniest thing about The Women is that Mick Jagger is one of the producers. There was a knowing laugh in the theatre as his name sprang up in the opening credits -- our last chance to laugh, as it turned out, for the next two hours.",2008-09-15,371357838,The Women +Richard Schickel,rotten,0430770,TIME Magazine,One of the worst movies I've ever seen.,2008-09-12,371357838,The Women +Philip Kennicott,rotten,0430770,Washington Post,"In the end, English just wants to make a nice chick flick with some sassy lines. Genuine nastiness has been eliminated, while not-very-funny banter is retained.",2008-09-12,371357838,The Women +Claudia Puig,rotten,0430770,USA Today,"Though aspects of the 1939 comedy seem silly and shrill now, they were at least consistently entertaining. Where the original was deliciously loopy and melodramatic fun, this one is watered-down, sappy and earnest.",2008-09-12,371357838,The Women +Linda Barnard,rotten,0430770,Toronto Star,"What was then snappy dialogue from meowing madams acting out a morality play on everything that stinks about haute society now flaccidly flaps, lost in translation from old world to new.",2008-09-12,371357838,The Women +John Hartl,rotten,0430770,Seattle Times,"While the actors do what they can, too many characters come off as concepts, not people.",2008-09-12,371357838,The Women +David Wiegand,rotten,0430770,San Francisco Chronicle,"Even those who never saw Cukor's movie will feel something is missing in English's version. Yes, some of what's missing is humor and snappy dialogue, but that could be forgiven, if only some of the characters were more believable.",2008-09-12,371357838,The Women +Mary Elizabeth Williams,rotten,0430770,Salon.com,"You go, girls. Preferably as far away as possible.",2008-09-12,371357838,The Women +James Berardinelli,rotten,0430770,ReelViews,"English has shown herself to be an adept, perceptive, and at times funny writer, but too little of that is on display here.",2008-09-12,371357838,The Women +Stephen Whitty,fresh,0430770,Newark Star-Ledger,"The tried-and-true characters still strike sparks. And even if the best parts are warmed over, the dish is still great.",2008-09-12,371357838,The Women +Lou Lumenick,rotten,0430770,New York Post,A total disaster.,2008-09-12,371357838,The Women +Rene Rodriguez,rotten,0430770,Miami Herald,It's not every movie that makes you wish Vin Diesel would run in and start blowing up stuff.,2008-09-12,371357838,The Women +Amy Biancolli,fresh,0430770,Houston Chronicle,"Fourteen years in the making, The Women marks a serviceable directorial debut for English.",2008-09-12,371357838,The Women +Rick Groen,rotten,0430770,Globe and Mail,"Of all the freedoms that women have rightly earned, aping the worst of male behaviour needn't rank high among them.",2008-09-12,371357838,The Women +Tom Long,rotten,0430770,Detroit News,Hopefully that audience won't be fooled by this cast's potential and the clever concept; the final product here is anything but fabulous.,2008-09-12,371357838,The Women +Lisa Kennedy,rotten,0430770,Denver Post,"In spite of the casting and honorable revamps, it feels more dated than the 1939 original did for its time period.",2008-09-12,371357838,The Women +A.O. Scott,rotten,0430770,New York Times,It hurts especially to watch Ms. Bening and Candice Bergen (who plays Mary's mother) lend their wit and dignity to a project that has so little of its own.,2008-09-12,371357838,The Women +Roger Ebert,fresh,0430770,Chicago Sun-Times,"What a pleasure this movie is, showcasing actresses I've admired for a long time, all at the top of their form.",2008-09-12,371357838,The Women +,fresh,0032976,TIME Magazine,"This time Hitchcock does it all his way, does a splendid job and has a splendid cast to do it with.",2009-02-17,17080,Rebecca +Variety Staff,fresh,0032976,Variety,One of the finest productional efforts of the past year.,2008-02-19,17080,Rebecca +Dave Kehr,fresh,0032976,Chicago Reader,"Through its first two-thirds it is as perfect a myth of adolescence as any of the Disney films, documenting the childlike, nameless heroine's initiation into the adult mysteries of sex, death, and identity.",2006-12-12,17080,Rebecca +Ben Walters,fresh,0032976,Time Out,"Hitchcock shows superb technical control and attends to his trademark motifs, from monstrous mother figures to the fetishisation of clothing.",2006-06-24,17080,Rebecca +Frank S. Nugent,fresh,0032976,New York Times,"An altogether brilliant film, haunting, suspenseful, handsome and handsomely played.",2003-05-20,17080,Rebecca +James Berardinelli,fresh,0032976,ReelViews,The result exhibits that the director is capable of a range few would credit him with.,1800-01-01,17080,Rebecca +Dave Kehr,fresh,0032484,Chicago Reader,"This film contains one of Hitchcock's most famous set pieces -- an assassination in the rain -- but otherwise remains a second-rate effort, as immensely enjoyable as it is.",2009-03-27,18812,Foreign Correspondent +Variety Staff,fresh,0032484,Variety,Story is essentially the old cops-and-robbers. But it has been set in a background of international political intrigue of the largest order.,2009-03-26,18812,Foreign Correspondent +Bosley Crowther,fresh,0032484,New York Times,"Into it Director Alfred Hitchcock, whose unmistakable stamp the picture bears, has packed about as much romantic action, melodramatic hullabaloo, comical diversion and illusion of momentous consequence as the liveliest imagination could conceive.",2006-01-28,18812,Foreign Correspondent +Geoff Andrew,fresh,0032484,Time Out,"Hitchcock's espionage thriller is a thoroughly enjoyable affair, complete with some of his most memorable set pieces.",2006-01-26,18812,Foreign Correspondent +Tom Huddlestone,rotten,0472198,Time Out,"As mainstream hip hop becomes ever more predictable, so do the biopics about its stars.",2009-02-12,770781790,Notorious +David Edelstein,fresh,0472198,New York Magazine,"Even if we miss the thinking that went into the creation of Wallace's B.I.G.-ger-than-life alter ego, the movie's performances are exultant.",2009-01-20,770781790,Notorious +David Denby,rotten,0472198,New Yorker,"The movie leaves us with the sense that, twelve years after Biggie Smalls's death, a lot of people are trying to extract whatever profit or pride they can from the chaotic life of a young man who was, as he well knew, a work in progress.",2009-01-20,770781790,Notorious +Ben Mankiewicz,fresh,0472198,At the Movies,"If Milk set the standard for biopics in 2008, then 2009 is off to a strong start with Notorious.",2009-01-20,770781790,Notorious +Ben Lyons,fresh,0472198,At the Movies,"For a hardcore fan of his music and his life, it rings true.",2009-01-20,770781790,Notorious +Claudia Puig,rotten,0472198,USA Today,"Notorious is like a piece of well-crafted bling. It looks good, and facets of it shine, but behind the gilded facade there's not much there.",2009-01-16,770781790,Notorious +Jason Anderson,fresh,0472198,Toronto Star,"This tale of triumph and tragedy within hip hop's elite is intelligent, gripping and far less sensationalistic than anyone could have expected.",2009-01-16,770781790,Notorious +Tom Keogh,fresh,0472198,Seattle Times,"The best thing about Notorious is its across-the-board, excellent cast, especially the soulful Woolard and Mackie's mesmerizing work as the complex Shakur.",2009-01-16,770781790,Notorious +Justin Berton,rotten,0472198,San Francisco Chronicle,"It must have been an act of great restraint for Sean Combs to resist titling this film, about Chris Wallace, his close friend turned rapper and cultural icon, The Notorious B.I.G. -- The Sean Combs Story.",2009-01-16,770781790,Notorious +Stephanie Zacharek,fresh,0472198,Salon.com,"Notorious is surprisingly and pleasantly unflashy, a straightforward picture that makes a distinction between classiness and bling.",2009-01-16,770781790,Notorious +Roger Moore,fresh,0472198,Orlando Sentinel,"George Tillman Jr.'s film may follow the well-worn path of many a musical biography. But spot-on casting, a light touch around the edges and affection for its subject makes this warts-and-all look at the big man with the big hits a winner.",2009-01-16,770781790,Notorious +Stephen Whitty,rotten,0472198,Newark Star-Ledger,"The script lets too much slide, and director George Tillman Jr. -- whose biggest films have been Soul Food and the Barbershop franchise -- abets it.",2009-01-16,770781790,Notorious +Kyle Smith,fresh,0472198,New York Post,"Closer to Scorsese than Scarface, Notorious gives a heartfelt yet clear-eyed sendoff to the late Brooklyn rapper Christopher Wallace, aka Biggie Smalls aka the Notorious B.I.G.",2009-01-16,770781790,Notorious +Elizabeth Weitzman,fresh,0472198,New York Daily News,It's unlikely there will be a better dramatization of the Biggie Smalls story than this one.,2009-01-16,770781790,Notorious +Rene Rodriguez,rotten,0472198,Miami Herald,"Notorious obviously loves its protagonist, but the movie can't get past its own starstruck awe.",2009-01-16,770781790,Notorious +Betsy Sharkey,fresh,0472198,Los Angeles Times,"Notorious has a fine time along the way, with Woolard channeling the rapper's sweetness and wit as comfortably as his pathos.",2009-01-16,770781790,Notorious +Joey Guerra,fresh,0472198,Houston Chronicle,A vivid biopic of the larger-than-life rap star that doesn't require you be a big fan of the genre.,2009-01-16,770781790,Notorious +Rick Groen,rotten,0472198,Globe and Mail,"This flick smoothes out the roughest edges, drains off the rawness and blandly retraces the narrative arc of every musical biopic since The Jazz Singer.",2009-01-16,770781790,Notorious +Adam Graham,rotten,0472198,Detroit News,"Notorious is a game of dress-up, the Greatest Hits version of Biggie's life. But in the end, it fails to present a convincing argument of why we should care.",2009-01-16,770781790,Notorious +Lisa Kennedy,rotten,0472198,Denver Post,"Notorious, directed by George Tillman Jr. with a sentimental touch, seems torn.",2009-01-16,770781790,Notorious +Bosley Crowther,fresh,0038109,New York Times,"Not to be speechless about it, David O. Selznick has a rare film in Spellbound.",2000-01-01,19391,Spellbound +,none,0050105,Variety,,2008-10-18,21785,An Affair to Remember +Bosley Crowther,rotten,0050105,New York Times,Mr. McCarey's direction is unpropitiously and unaccountably slow.,2006-03-25,21785,An Affair to Remember +Geoff Andrew,none,0050105,Time Out,,2006-02-09,21785,An Affair to Remember +Delmore Schwartz,rotten,0048728,The New Republic,"It is a significant dud, and Grace Kelly's role has the virtue of making clearer the quality which excited so much attention in previous roles.",2013-01-23,17005,To Catch a Thief +,none,0048728,Variety,,2009-03-26,17005,To Catch a Thief +Geoff Andrew,none,0048728,Time Out,,2006-02-09,17005,To Catch a Thief +Bosley Crowther,fresh,0048728,New York Times,"To Catch a Thief does nothing but give out a good, exciting time. If you'll settle for that at a movie, you should give it your custom right now.",2003-05-20,17005,To Catch a Thief +Don Druker,fresh,0048728,Chicago Reader,"Alfred Hitchcock's fluffy 1955 exercise in light comedy, minimal mystery, and good-natured eroticism (the fireworks scene is a classic).",2000-01-01,17005,To Catch a Thief +Richard Corliss,rotten,0101862,TIME Magazine,"Neither the '90s nor the husband-wife team of Nancy Meyers and Charles Shyer (they wrote the new version, she co-produced, he directed) can match the original film's grace or wit.",2011-05-23,10963,Father of the Bride +Variety Staff,fresh,0101862,Variety,"Best stuff here comes strsight from Martin, such as his frenzied antics in the in-laws' house or his ridiculous Tom Jones imitation in front of a mirror in a too-tight tuxedo.",2009-03-26,10963,Father of the Bride +,rotten,0101862,Time Out,"Some sequences and dialogue are lifted directly from the original, but in the wider context, this merely serves to underline the remake's comparative lack of tenderness and subtlety.",2006-01-26,10963,Father of the Bride +Janet Maslin,fresh,0101862,New York Times,"The material has been successfully refurbished with new jokes and new attitudes, but the earlier film's most memorable moments have been preserved.",2003-05-20,10963,Father of the Bride +Hal Hinson,fresh,0101862,Washington Post,[A] slight but delightfully sweet-natured new comedy starring Steve Martin.,2000-01-01,10963,Father of the Bride +Roger Ebert,fresh,0101862,Chicago Sun-Times,"This is a movie with heart, and there are little moments in it when Martin is deeply moved by the fact that this perfect creature he brought into the world is now going to start a family of her own.",2000-01-01,10963,Father of the Bride +Desson Thomson,rotten,0101862,Washington Post,"After a provocative setup, this Touchstone Pictures offering pads innocuously down the aisle, a remake that doesn't touch the Spencer Tracy classic of the same name.",2000-01-01,10963,Father of the Bride +Owen Gleiberman,fresh,0101862,Entertainment Weekly,"This feel-good finale might feel even better, though, if it had any true connection to the pat, amiable, and rather dawdling farce that preceded it.",1991-01-01,10963,Father of the Bride +,none,0045537,Variety,,2008-07-22,166847530,The Band Wagon +,none,0045537,Time Out,,2006-01-26,166847530,The Band Wagon +Roger Ebert,none,0045537,Chicago Sun-Times,,2006-01-20,166847530,The Band Wagon +,none,0045537,Hollywood Reporter,,2005-04-21,166847530,The Band Wagon +Bosley Crowther,none,0045537,New York Times,,2003-05-20,166847530,The Band Wagon +Dave Kehr,fresh,0045537,Chicago Reader,"The musical becomes a frenetic meditation on pop art versus high art, coming down hard on the side of the former.",2000-01-01,166847530,The Band Wagon +Whittaker Chambers,fresh,0031725,TIME Magazine,"This one is neither crude clowning nor crude prejudice, but a literate and knowingly directed satire which lands many a shrewd crack about phony Five Year Plans, collective farms, Communist jargon and pseudo-scientific gab.",2013-01-15,18487,Ninotchka +Joshua Rothkopf,fresh,0031725,Time Out New York,"Ninotchka is delicate flirtation and political satire made into a perfect whole, and a reminder of skills that studio writers have largely lost.",2012-12-27,18487,Ninotchka +Variety Staff,fresh,0031725,Variety,Selection of Ernst Lubitsch to pilot Garbo in her first light performance in pictures proves a bull's-eye.,2009-02-03,18487,Ninotchka +Dave Kehr,fresh,0031725,Chicago Reader,"The satire may be mostly a matter of easy contrasts, but the lovers inhabit a world of elegance and poise that is uniquely and movingly Lubitsch's.",2009-02-03,18487,Ninotchka +,fresh,0031725,Time Out,"It's still consistently amusing, and Garbo throws herself into the fray with engaging vigour.",2006-01-26,18487,Ninotchka +Frank S. Nugent,fresh,0031725,New York Times,One of the sprightliest comedies of the year.,2003-05-20,18487,Ninotchka +Variety Staff,fresh,0050658,Variety,The production holds enchantment and delight in substantial quantity.,2009-02-03,18403,Love in the Afternoon +Don Druker,fresh,0050658,Chicago Reader,"As Andrew Sarris says, not without its cruelties, but not without its beauties as well.",2007-08-15,18403,Love in the Afternoon +Geoff Andrew,rotten,0050658,Time Out,An over-long and only spasmodically amusing romantic comedy...,2006-06-24,18403,Love in the Afternoon +Andrew Sarris,fresh,0050658,New York Observer,It's the closest Wilder ever came to Ernst Lubitsch.,2005-09-29,18403,Love in the Afternoon +Bosley Crowther,fresh,0050658,New York Times,This film was produced by Mr. Wilder for Allied Artists -- in black-and-white. It is a hit.,2000-01-01,18403,Love in the Afternoon +Abel Green,fresh,0051658,Variety,The performances are well nigh faultless.,2009-03-26,9930,Gigi +,rotten,0051658,TIME Magazine,"Gigi is dressed to kill, but if all the French finery impresses the customers, it also smothers the story.",2009-02-18,9930,Gigi +Dave Kehr,fresh,0051658,Chicago Reader,"It's easy to drift away from the story and become absorbed in Minnelli's impossibly delicate textures, but there is a little something here for everybody.",2006-12-13,9930,Gigi +,rotten,0051658,Time Out,"It's like a meal consisting of cheesecake, and one quickly longs for something solid and vulgar to weigh things down.",2006-06-24,9930,Gigi +Bosley Crowther,fresh,0051658,New York Times,A charming entertainment.,2003-05-20,9930,Gigi +,none,0052126,Variety,,2008-07-22,561279885,The Reluctant Debutante +A.H. Weiler,none,0052126,New York Times,,2006-03-25,561279885,The Reluctant Debutante +,fresh,0029843,TIME Magazine,"If prankish Fairbanks was a man's Robin Hood, handsome, romantic Flynn performs for everybody else.",2009-04-24,10177,The Adventures of Robin Hood +Variety Staff,fresh,0029843,Variety,"It is cinematic pageantry at its best, a highly imaginative telling of folklore in all the hues of Technicolor.",2008-06-10,10177,The Adventures of Robin Hood +Don Druker,fresh,0029843,Chicago Reader,Movies like this are beyond criticism.,2007-10-16,10177,The Adventures of Robin Hood +,fresh,0029843,Time Out,One of the few great adventure movies that you can pretend you are treating the kids to when you are really treating yourself.,2006-02-09,10177,The Adventures of Robin Hood +Roger Ebert,fresh,0029843,Chicago Sun-Times,"In these cynical days when swashbucklers cannot be presented without an ironic subtext, this great 1938 film exists in an eternal summer of bravery and romance.",2003-10-01,10177,The Adventures of Robin Hood +Gary Dowell,fresh,0029843,Dallas Morning News,"Sumptuous and highly energetic, The Adventures of Robin Hood is grand with a capital 'G' on every level.",2003-08-21,10177,The Adventures of Robin Hood +Elliott Stein,fresh,0029843,Village Voice,"Movie pageantry at its best, done in the grand manner of silent spectacles, brimming over with the sort of primitive energy that drew people to the movies in the first place.",2003-08-19,10177,The Adventures of Robin Hood +Frank S. Nugent,fresh,0029843,New York Times,"Few storybooks have been more brilliantly brought to life, page for page, chapter for chapter, derring-do for derring-do.",2003-05-20,10177,The Adventures of Robin Hood +Lisa Schwarzbaum,fresh,0120746,Entertainment Weekly,,2011-09-07,22489,The Mask of Zorro +Todd McCarthy,fresh,0120746,Variety,The Mask of Zorro stands as a pointed riposte to those who say they don't make 'em like that anymore.,2009-03-26,22489,The Mask of Zorro +Mick LaSalle,rotten,0120746,San Francisco Chronicle,"The story is not important. The clash of swords, the leaps, the tumbles -- it's all very nice. But after 136 minutes, it becomes a bit much.",2002-06-18,22489,The Mask of Zorro +,fresh,0120746,Globe and Mail,,2002-04-12,22489,The Mask of Zorro +Peter Travers,rotten,0120746,Rolling Stone,"Banderas and Hopkins prove that there's life in the Z-boy yet, but by leaving in the dull patches, the filmmakers may find audiences catching zzzzzs in ways they never intended.",2001-05-11,22489,The Mask of Zorro +Kenneth Turan,fresh,0120746,Los Angeles Times,"A lively, old-fashioned adventure yarn with just a twist of modern attitude, it's the kind of pleasant entertainment that allows the paying customers to have as much fun as the people on screen.",2001-02-14,22489,The Mask of Zorro +Charles Taylor,fresh,0120746,Salon.com,One of the most glorious and rousing adventure movies Hollywood has ever produced.,2000-01-01,22489,The Mask of Zorro +Janet Maslin,fresh,0120746,New York Times,"With a wealth of charismatic Zorros (two), a smashing heroine and a dauntless love of adventure, this is hot-weather escapism so earnestly retrograde that it seems new.",2000-01-01,22489,The Mask of Zorro +,fresh,0120746,USA Today,,2000-01-01,22489,The Mask of Zorro +Susan Stark,fresh,0120746,Detroit News,,2000-01-01,22489,The Mask of Zorro +James Berardinelli,fresh,0120746,ReelViews,"Offers just what one might reasonably expect from a Zorro movie: a great deal of excitement and adventure, all brought to the screen by using a somewhat irreverent tone that keeps the mood light without trivializing the characters.",2000-01-01,22489,The Mask of Zorro +Roger Ebert,fresh,0120746,Chicago Sun-Times,The Mask of Zorro has something you don't often see in modern action pictures: a sense of honor.,2000-01-01,22489,The Mask of Zorro +David Denby,rotten,0120746,New York Magazine,"Banderas, with his flashing eyes, makes a good mock-Hidalgo, but the movie would be a lot more amusing if it weren't such kid stuff.",2000-01-01,22489,The Mask of Zorro +,fresh,0120746,Entertainment Weekly,,1998-07-17,22489,The Mask of Zorro +Dave Calhoun,fresh,0037008,Time Out,,2012-02-23,18066,Laura +J. Hoberman,none,0037008,Village Voice,,2011-12-28,18066,Laura +Keith Uhlich,fresh,0037008,Time Out New York,"Few movies make you feel dirtier, and so perversely grateful for the pleasure.",2011-12-20,18066,Laura +,fresh,0037008,TIME Magazine,A highly polished and debonair whodunit.,2009-04-20,18066,Laura +Dave Kehr,fresh,0037008,Chicago Reader,"Less a crime film than a study in levels of obsession, Laura is one of those classic works that leave their subject matter behind and live on the strength of their seductive style.",2007-10-23,18066,Laura +Michael Atkinson,fresh,0037008,Village Voice,A hypnotic and deathlessly interpretable experience.,2007-10-23,18066,Laura +Variety Staff,fresh,0037008,Variety,Gene Tierney makes an appealing figure as the art executive and Vincent Price is convincing as a weak-willed ne'er-do-well.,2007-10-23,18066,Laura +,fresh,0037008,Time Out,"The plot is deliberately perfunctory, the people deliciously perverse, and the mise-en-scene radical.",2006-06-24,18066,Laura +Thomas M. Pryor,fresh,0037008,New York Times,The picture on the whole is close to being a top-drawer mystery.,2003-05-20,18066,Laura +Roger Ebert,fresh,0037008,Chicago Sun-Times,"The materials of a B-grade crime potboiler are redeemed by Waldo Lydecker, walking through every scene as if afraid to step in something.",2002-01-26,18066,Laura +,none,0039420,Variety,,2008-10-18,18135,The Ghost and Mrs. Muir +,none,0039420,Time Out,,2006-02-09,18135,The Ghost and Mrs. Muir +,none,0029162,Variety,,2009-03-26,17127,Lost Horizon +Geoff Andrew,none,0029162,Time Out,,2006-02-09,17127,Lost Horizon +Frank S. Nugent,none,0029162,New York Times,,2003-05-20,17127,Lost Horizon +,fresh,0027125,TIME Magazine,"Finally, thanks more to Fred Astaire than any other single influence, the character of musicomedy in the cinema has now completely changed.",2009-04-24,18352,Top Hat +Variety Staff,fresh,0027125,Variety,"This one can't miss and the reasons are three -- Fred Astaire, Irving Berlin's 11 songs and sufficient comedy between numbers to hold the film together.",2008-01-11,18352,Top Hat +Don Druker,fresh,0027125,Chicago Reader,This 1935 musical finds Fred Astaire and Ginger Rogers at the top of their form.,2008-01-11,18352,Top Hat +Tom Milne,fresh,0027125,Time Out,The third Astaire-Rogers movie and one of the best.,2006-02-09,18352,Top Hat +Roger Ebert,fresh,0027125,Chicago Sun-Times,"Because we are bound by gravity and the limitations of our bodies, because we live in a world where the news is often bad and the prospects disturbing, there is a need for another world somewhere, a world where Fred Astaire and Ginger Rogers live.",2006-01-20,18352,Top Hat +Douglas Pratt,fresh,0027125,Hollywood Reporter,"The plot is involving, especially as it builds to its seemingly impossible-to-solve finale.",2005-09-07,18352,Top Hat +Joe Williams,fresh,0027125,St. Louis Post-Dispatch,,2005-07-07,18352,Top Hat +Andre Sennwald,fresh,0027125,New York Times,All the minor players are such skilled comedians that they are able to extract merriment from this none too original comedy of errors.,2003-05-20,18352,Top Hat +,fresh,0035446,TIME Magazine,"To Be is a very funny comedy, salted to taste with melodrama and satire.",2008-08-20,770670964,To Be or Not to Be +Variety Staff,fresh,0035446,Variety,Lubitsch's guidance provides a tense dramatic pace with events developed deftly and logically throughout.,2008-08-20,770670964,To Be or Not to Be +,fresh,0035446,Time Out,It's certainly one of the finest comedies ever to come out of Paramount.,2006-06-24,770670964,To Be or Not to Be +Bosley Crowther,rotten,0035446,New York Times,To say it is callous and macabre is understating the case.,2003-05-20,770670964,To Be or Not to Be +Dave Kehr,fresh,0035446,Chicago Reader,"One of the most profound, emotionally complex comedies ever made, covering a range of tones from satire to slapstick to shocking black humor.",2000-01-01,770670964,To Be or Not to Be +Charles Taylor,fresh,0035446,Salon.com,Terribly funny.,2000-01-01,770670964,To Be or Not to Be +,fresh,0028010,TIME Magazine,"My Man Godfrey emerges with that evasive quality that is not skillful playing, writing or direction, but something that mysteriously adds itself to these things, and makes a tip-top picture.",2009-04-24,22628,My Man Godfrey +Hazel-Dawn Dumpert,fresh,0028010,Village Voice,[A] screwball masterpiece.,2009-02-06,22628,My Man Godfrey +Roger Ebert,fresh,0028010,Chicago Sun-Times,"God, but this film is beautiful.",2009-02-06,22628,My Man Godfrey +Dave Kehr,fresh,0028010,Chicago Reader,"Gregory La Cava's improvisational style received its highest critical acclaim for this 1936 film, a marginally Marxist exercise in class confusion during the Depression.",2009-02-06,22628,My Man Godfrey +Variety Staff,fresh,0028010,Variety,William Powell and Carole Lombard are pleasantly teamed in this splendidly produced comedy.,2008-10-18,22628,My Man Godfrey +,fresh,0028010,Time Out,"The film has lost some of its allure over the years, but it's still streets and streets ahead of the addled whimsy favoured by latter-day Hollywood.",2006-02-09,22628,My Man Godfrey +Frank S. Nugent,fresh,0028010,New York Times,There may be a sober moment or two in the picture; there may be a few lines of the script that do not pack a laugh. Somehow we cannot remember them.,2003-05-20,22628,My Man Godfrey +Variety Staff,fresh,0049261,Variety,"An excellent film which registers strongly on all levels, whether it's in its breathtaking panoramic shots of the dusty Texas plains; the personal, dramatic impact of the story itself, or the resounding message it has to impart.",2007-11-13,9501,Giant +Dave Kehr,fresh,0049261,Chicago Reader,"Much of it is awful, but it's almost impossible not to be taken in by the narrative sprawl.",2007-11-13,9501,Giant +Geoff Andrew,fresh,0049261,Time Out,"Stevens' sprawling epic of Texan life, taken from Edna Ferber's novel, strives so hard for Serious Statements that it ends up as a long yawn.",2006-06-24,9501,Giant +Douglas Pratt,fresh,0049261,Hollywood Reporter,"A real movie is big, grand, magnificent and regales you with all the power that movies can wield upon a viewer's imagination and spirit. George Stevens' 1956 production, Giant, is a real movie.",2003-06-14,9501,Giant +Bosley Crowther,fresh,0049261,New York Times,"Giant, for all its complexity, is a strong contender for the year's top-film award.",2003-05-20,9501,Giant +Kevin Thomas,fresh,0049261,Los Angeles Times,"At 202 minutes, it's just too long, yet it has the pull of nostalgia (if you're of a certain age) and sustains its emotional impact as a portrait of a durable marriage.",2001-02-13,9501,Giant +James Berardinelli,fresh,0049261,ReelViews,"Although Giant may not be a classic in the purest sense of the word, it's a fine example of a virtually-extinct genre.",2000-01-01,9501,Giant +A.O. Scott,none,0048028,New York Times,,2011-01-11,10480,East of Eden +,none,0048028,Variety,,2008-07-22,10480,East of Eden +Dave Kehr,fresh,0048028,Chicago Reader,"John Steinbeck's painful biblical allegory -- Genesis replayed in Monterey, California, circa 1917 -- is more palatable on the screen, thanks to the down-to-earth performances of James Dean as Cal/Cain and Richard Davalos as Aron/Abel.",2007-11-01,10480,East of Eden +Geoff Andrew,fresh,0048028,Time Out,"It's a film of great performances, atmospheric photography, and a sure sense of period and place.",2006-01-26,10480,East of Eden +Kenneth Turan,fresh,0048028,Los Angeles Times,"Not only one of Kazan's richest films and Dean's first significant role, it is also arguably the actor's best performance.",2005-12-06,10480,East of Eden +Bosley Crowther,rotten,0048028,New York Times,"In short, there is energy and intensity but little clarity and emotion in this film. It is like a great, green iceberg: mammoth and imposing but very cold.",2003-05-20,10480,East of Eden +Don Druker,fresh,0025878,Chicago Reader,One of the most popular comedies ever made.,2012-02-10,18690,The Thin Man +Variety Staff,fresh,0025878,Variety,"The Thin Man was an entertaining novel, and now it's an entertaining picture.",2010-07-07,18690,The Thin Man +Tom Milne,fresh,0025878,Time Out,"What enchants, really, is the relationship between Nick and Nora as they live an eternal cocktail hour, bewailing hangovers that only another little drink will cure, in a marvellous blend of marital familiarity and constant courtship.",2006-02-09,18690,The Thin Man +Mordaunt Hall,fresh,0025878,New York Times,An excellent combination of comedy and excitement.,2003-05-20,18690,The Thin Man +Roger Ebert,fresh,0025878,Chicago Sun-Times,"The Thin Man was one of the most popular films of 1934, inspired five sequels, and was nominated for four Oscars (best picture, actor, direction and screenplay). Yet it was made as an inexpensive B-picture.",2003-01-06,18690,The Thin Man +Joshua Rothkopf,fresh,0032599,Time Out,,2011-11-17,19344,His Girl Friday +A.O. Scott,none,0032599,New York Times,,2011-03-08,19344,His Girl Friday +Joshua Rothkopf,fresh,0032599,Time Out New York,One is tempted to throw away any semblance of persuasion and simply demand that you go see this movie.,2009-12-16,19344,His Girl Friday +Nick Pinkerton,fresh,0032599,Village Voice,"The movie bears reviewing because there's always something new in the confetti of one-liners, while its depiction of the Fourth Estate remains relevant.",2009-12-15,19344,His Girl Friday +Dave Kehr,fresh,0032599,Chicago Reader,Cary Grant's performance is truly virtuoso -- stunning technique applied to the most challenging material.,2008-04-02,19344,His Girl Friday +Variety Staff,fresh,0032599,Variety,"Casting is excellent, with Cary Grant and Rosalind Russell in the top roles.",2008-04-02,19344,His Girl Friday +Geoff Andrew,fresh,0032599,Time Out,"Perhaps the funniest, certainly the fastest talkie comedy ever made.",2006-02-09,19344,His Girl Friday +Frank S. Nugent,fresh,0032599,New York Times,"It takes you by the scruff of the neck in the first reel and it shakes you madly, bellowing hoarsely the. while, for the remaining six or seven. Before it's over you don't know whether you have been laughing or having your ears boxed.",2003-05-20,19344,His Girl Friday +,none,0327437,Time Out,,2006-06-24,11425,Around the World in 80 Days +,none,0327437,Houston Chronicle,,2005-07-21,11425,Around the World in 80 Days +Lisa Schwarzbaum,fresh,0327437,Entertainment Weekly,Amiably dorky redo.,2004-06-30,11425,Around the World in 80 Days +Richard Roeper,rotten,0327437,Ebert & Roeper,It was exactly what I expected and that's something I didn't really want to see.,2004-06-21,11425,Around the World in 80 Days +Stephanie Zacharek,rotten,0327437,Salon.com,Around the World in 80 Days is never as delightful and silly as it needs to be.,2004-06-19,11425,Around the World in 80 Days +Desson Thomson,rotten,0327437,Washington Post,The gags are physical but rarely funny.,2004-06-18,11425,Around the World in 80 Days +Jonathan Rosenbaum,none,0327437,Chicago Reader,,2004-06-18,11425,Around the World in 80 Days +Chuck Wilson,fresh,0327437,L.A. Weekly,"Despite the rush to get everyone from place to place, director Frank Coraci luxuriates in colorful visual detail and gives the locals their due.",2004-06-17,11425,Around the World in 80 Days +,none,0327437,St. Louis Post-Dispatch,,2004-06-17,11425,Around the World in 80 Days +Stephen Hunter,rotten,0327437,Washington Post,"Has that cheesy, chintzy mid-Florida feel that we all know and love, despite its $110 million budget.",2004-06-16,11425,Around the World in 80 Days +Todd McCarthy,fresh,0327437,Variety,"This second bigscreen version of Jules Verne's 1873 novel takes plenty of liberties with the material and never generates much genuine excitement, but provides an agreeable ride without overloading it with contemporary filmmaking mannerisms.",2004-06-16,11425,Around the World in 80 Days +Mike Clark,rotten,0327437,USA Today,Plays like a listless '60s overseas co-production.,2004-06-16,11425,Around the World in 80 Days +Malene Arpe,rotten,0327437,Toronto Star,Jules Verne is rotating in his grave worrying about his other works ripe for plucking from the public domain.,2004-06-16,11425,Around the World in 80 Days +Erik Lundegaard,fresh,0327437,Seattle Times,Properly silly and slapsticky.,2004-06-16,11425,Around the World in 80 Days +Mick LaSalle,fresh,0327437,San Francisco Chronicle,An energetic and enormously good-natured family movie.,2004-06-16,11425,Around the World in 80 Days +Joe Baltake,fresh,0327437,Sacramento Bee,Wonderful family escapist entertainment.,2004-06-16,11425,Around the World in 80 Days +James Berardinelli,rotten,0327437,ReelViews,Offers only snooze-worthy action scenes.,2004-06-16,11425,Around the World in 80 Days +Roger Moore,rotten,0327437,Orlando Sentinel,Feel[s] like a future ride at the Magic Kingdom.,2004-06-16,11425,Around the World in 80 Days +Lisa Rose,fresh,0327437,Newark Star-Ledger,A journey worth taking.,2004-06-16,11425,Around the World in 80 Days +Lou Lumenick,rotten,0327437,New York Post,This $110-million fiasco is the sort of movie that gives family entertainment a bad name.,2004-06-16,11425,Around the World in 80 Days +Rich Cohen,fresh,0038650,Salon.com,"It's a Wonderful Life is about hunger. It's about greed. It's about the many ways a good man is stymied. Finally, it's about George Bailey, whose decency prevents him even from killing himself.",2012-12-04,18062,It's a Wonderful Life +Manny Farber,rotten,0038650,The New Republic,"Capra is an old-time movie craftsman, the master of every trick in the bag, and in many ways he is more at home with the medium than any other Hollywood director. But all of his details give the impression of contrived effect.",2012-08-31,18062,It's a Wonderful Life +,fresh,0038650,TIME Magazine,It's a Wonderful Life is a pretty wonderful movie.,2008-12-05,18062,It's a Wonderful Life +Dave Kehr,fresh,0038650,Chicago Reader,The epiphany of movie sentiment and a transcendent experience.,2007-06-26,18062,It's a Wonderful Life +Bert Briller,fresh,0038650,Variety,"The April-air wholesomeness and humanism of this natural bring back vividly the reminder that, essentially, the screen best offers unselfconscious, forthright entertainment.",2007-06-26,18062,It's a Wonderful Life +Geoff Andrew,fresh,0038650,Time Out,"Regardless of whether or not you believe in angels, it's a wonderful movie.",2006-06-24,18062,It's a Wonderful Life +Bosley Crowther,fresh,0038650,New York Times,"As the hero, Mr. Stewart does a warmly appealing job, indicating that he has grown in spiritual stature as well as in talent during the years he was in the war. And Donna Reed is remarkably poised and gracious as his adoring sweet-heart and wife.",2003-05-20,18062,It's a Wonderful Life +James Berardinelli,fresh,0038650,ReelViews,"Combine the characters, the story, the message, and the acting, and it's easy to see why It's a Wonderful Life isn't just a holiday favorite, but a great movie by almost any standards.",2000-01-01,18062,It's a Wonderful Life +Roger Ebert,fresh,0038650,Chicago Sun-Times,"What is remarkable about It's a Wonderful Life is how well it holds up over the years; it's one of those ageless movies, like Casablanca or The Third Man, that improves with age.",2000-01-01,18062,It's a Wonderful Life +Kevin Crust,fresh,0031679,Los Angeles Times,"Mr. Smith captures ground-level political machinations in an utterly fascinating way. The question raised by the title makes for an interesting, if possibly disheartening, debate.",2007-02-01,335716411,Mr. Smith Goes to Washington +Tim Grierson,fresh,0031679,L.A. Weekly,"For all its rah-rah David-vs.-Goliath populism, Can Mr. Smith understands that even an uncorrupted outsider like Smith must master the art of campaign gamesmanship to be successful.",2007-02-01,335716411,Mr. Smith Goes to Washington +Bill Stamets,rotten,0031679,Chicago Sun-Times,"Can Mr. Smith Get to Washington Anymore? is an amusing case study in youthful enthusiasm for the electoral process, but this modest documentary skips the weighty issues posed by its namesake, the Frank Capra 1939 drama.",2006-12-22,335716411,Mr. Smith Goes to Washington +Jonathan Rosenbaum,fresh,0031679,Chicago Reader,"[Director Frank] Popper sticks close to the fierce campaigner and his young, mostly inexperienced staffers, capturing all the energy, idealism, dour humor, and unreasoning hope of a Cinderella candidacy.",2006-12-22,335716411,Mr. Smith Goes to Washington +Michael Wilmington,fresh,0031679,Chicago Tribune,"The movie is breezy, fun and keeps comin' at ya. Politics needs more of this and less of what went on in Ohio.",2006-12-21,335716411,Mr. Smith Goes to Washington +Janice Page,fresh,0031679,Boston Globe,"A rousing, sometimes funny, frequently depressing documentary.",2006-11-03,335716411,Mr. Smith Goes to Washington +,none,0031679,St. Louis Post-Dispatch,,2006-09-23,335716411,Mr. Smith Goes to Washington +Eddie Cockrell,fresh,0031679,Variety,"Although the outcome is public record, pic is undeniably gripping as it reveals a distressing degree of voter complacency.",2006-09-23,335716411,Mr. Smith Goes to Washington +Ann Hornaday,fresh,0031679,Washington Post,"Director Frank Popper has made a lively, engaging nail-biter of a film that recalls The War Room in its candor, intimacy and breathless pace.",2006-09-21,335716411,Mr. Smith Goes to Washington +Richard Brody,fresh,0029947,New Yorker,The enduring fascination of this 1938 screwball comedy is due to much more than its uproarious gags.,2013-09-23,18219,Bringing Up Baby +Joshua Rothkopf,fresh,0029947,Time Out New York,A perfect example of why directors (and even us brilliant professional critics) can often be completely in the dark about what works.,2011-06-15,18219,Bringing Up Baby +Variety Staff,fresh,0029947,Variety,"There is little rhyme or reason to most of the action, but it's all highly palatable.",2008-04-02,18219,Bringing Up Baby +Dave Kehr,fresh,0029947,Chicago Reader,"Though it's almost impossible, try to sit back sometime and enjoy this 1938 Howard Hawks masterpiece not only for its gags, but for the grace of its construction, the assurance of its style, and the richness of its themes.",2007-06-26,18219,Bringing Up Baby +Geoff Andrew,fresh,0029947,Time Out,One of the finest screwball comedies ever.,2006-02-09,18219,Bringing Up Baby +Douglas Pratt,fresh,0029947,Hollywood Reporter,"The speedy, 102-minute film is a total delight, and the performances are so invigorating that it can withstand many multiple viewings without losing its sparks.",2005-05-05,18219,Bringing Up Baby +Frank S. Nugent,rotten,0029947,New York Times,"If you've never been to the movies, Bringing Up Baby will be all new to you -- a zany-ridden product of the goofy farce school. But who hasn't been to the movies?",2003-05-20,18219,Bringing Up Baby +Variety Staff,fresh,0034012,Variety,George Stevens' direction and the excellence of the stars' playing make the film.,2007-11-13,17772,Penny Serenade +,fresh,0034012,Time Out,This is a classic 'women's picture' in every sense.,2006-06-24,17772,Penny Serenade +Bosley Crowther,fresh,0034012,New York Times,"If you are prone to easy weeping, you might even take along a washtub.",2006-03-25,17772,Penny Serenade +Dave Kehr,fresh,0034012,Chicago Reader,"If you have any tolerance for soap opera, this is one of the classics.",2000-01-01,17772,Penny Serenade +,fresh,0036094,Variety,"Gallant trouping by Barbara Stanwyck, colorful background provided by Stromberg, and speedy direction by William Wellman, carry picture through for good entertainment for general audiences.",2009-03-26,21587,Lady of Burlesque +Thomas M. Pryor,rotten,0036094,New York Times,Nothing more than a mystery melodrama with a backstage setting. Not a good mystery exercise either.,2006-08-08,21587,Lady of Burlesque +Geoff Andrew,rotten,0036094,Time Out,"Although a stream of hard-boiled wisecracks keeps things amusing, the plot gets tied up in the usual dreary whodunit business of providing motives for all and sundry.",2006-02-09,21587,Lady of Burlesque +Dave Kehr,fresh,0036094,Chicago Reader,"It isn't without some zip, though you have to wonder why the producers bothered when the censors demanded that the dancers be shown only from the neck up.",2000-01-01,21587,Lady of Burlesque +,none,0025586,Variety,,2009-03-26,21928,Of Human Bondage +Mordaunt Hall,none,0025586,New York Times,,2006-03-25,21928,Of Human Bondage +,none,0038300,Variety,,2009-03-26,262552544,Angel on My Shoulder +Bosley Crowther,none,0038300,New York Times,,2006-03-25,262552544,Angel on My Shoulder +,none,0027893,Variety,,2009-03-26,22712,Little Lord Fauntleroy +Frank S. Nugent,none,0027893,New York Times,,2006-03-25,22712,Little Lord Fauntleroy +John Stanley,fresh,0041509,San Francisco Chronicle,,2011-10-19,17363,The Inspector General +Bosley Crowther,none,0041509,New York Times,,2006-03-25,17363,The Inspector General +Dave Kehr,none,0041509,Chicago Reader,,2004-01-10,17363,The Inspector General +Brian Lowry,none,0039152,Variety,,2009-03-26,22299,Angel and the Badman +,none,0039152,New York Times,,2006-08-08,22299,Angel and the Badman +,none,0039152,Chicago Reader,,2005-02-16,22299,Angel and the Badman +Joshua Rothkopf,fresh,0026029,Time Out,,2011-11-16,17244,The 39 Steps +J. Hoberman,fresh,0026029,Village Voice,"In Hitchcock's hands, however, this well-known espionage adventure provided the basis for a new sort of thriller and a new sort of comedy.",2008-09-04,17244,The 39 Steps +Joshua Rothkopf,fresh,0026029,Time Out New York,"At 35, with more than a dozen features already under his belt, the director triumphed with this dazzling mixture of spycraft, banter, expository nonsense and manic chases along the Scottish Highlands.",2008-09-04,17244,The 39 Steps +Variety Staff,fresh,0026029,Variety,"It's melodrama and at times far-fetched and improbable, but the story twists and spins artfully from one high-powered sequence to another while the entertainment holds like steel cable from start to finish.",2008-08-18,17244,The 39 Steps +Dave Kehr,fresh,0026029,Chicago Reader,"As an artist, Alfred Hitchcock surpassed this early achievement many times in his career, but for sheer entertainment value it still stands in the forefront of his work.",2007-07-09,17244,The 39 Steps +Geoff Andrew,fresh,0026029,Time Out,Great fun.,2006-06-24,17244,The 39 Steps +Andre Sennwald,fresh,0026029,New York Times,If you can imagine Anatole France writing a detective story you will have some notion of the artistry that Hitchcock brings to this screen version of John Buchan's novel.,2000-01-01,17244,The 39 Steps +Amos Barshad,fresh,0063350,New York Magazine,"If [Romero's] original vision of the undead looks dulled by today's standards, his embedded political commentary on racism feels just as sharp.",2013-10-07,50375489,Night of the Living Dead +Variety Staff,fresh,0063350,Variety,Although pic's basic premise is repellent -- recently dead bodies are resurrected and begin killing human beings in order to eat their flesh -- it is in execution that the film distastefully excels.,2008-10-03,50375489,Night of the Living Dead +Elliott Stein,fresh,0063350,Village Voice,"George Romero's remarkably assured debut, made on a shoestring, about a group of people barricaded inside a farmhouse while an army of flesh-eating zombies roams the countryside, deflates all genre cliches.",2007-09-19,50375489,Night of the Living Dead +Dave Kehr,fresh,0063350,Chicago Reader,"Over its short, furious course, the picture violates so many strong taboos -- cannibalism, incest, necrophilia -- that it leaves audiences giddy and hysterical.",2007-09-19,50375489,Night of the Living Dead +Roger Ebert,fresh,0063350,Chicago Sun-Times,I felt real terror in that neighborhood theater last Saturday afternoon. I saw kids who had no resources they could draw upon to protect themselves from the dread and fear they felt.,2007-09-19,50375489,Night of the Living Dead +,fresh,0063350,Time Out,"Chuckle, if you can, during the first few minutes; because after that laughter catches in the throat as the clammy hand of terror tightens its grip.",2006-01-26,50375489,Night of the Living Dead +Vincent Canby,rotten,0063350,New York Times,"The dialogue and background music sound hollow, as if they had been recorded in an empty swimming pool, and the wobbly camera seems to have a fetishist's interest in hands.",2003-05-20,50375489,Night of the Living Dead +David Fear,fresh,0043265,Time Out New York,"Five minutes in, and cowriter-director John Huston has already set the stage for something besides your typical '50s jungle-bwana boogie.",2011-02-09,18021,The African Queen +William Brogdon,fresh,0043265,Variety,It is a picture with an unassuming warmth and naturalness...,2007-06-28,18021,The African Queen +Don Druker,fresh,0043265,Chicago Reader,"The direction is often questionable, but the screenplay (by James Agee, John Collier, Huston, and Peter Viertel from C.S. Forester's novel) is a model of tight construction.",2007-06-28,18021,The African Queen +Geoff Andrew,fresh,0043265,Time Out,Impossible to deny this film's entertainment value...,2006-06-24,18021,The African Queen +Bosley Crowther,fresh,0043265,New York Times,"And so Mr. Huston merits credit for putting this fantastic tale on a level of sly, polite kidding and generally keeping it there, while going about the happy business of engineering excitement and visual thrills.",2003-05-20,18021,The African Queen +,none,0046414,Variety,,2009-03-26,22697,Beat the Devil +,none,0046414,New York Times,,2006-08-08,22697,Beat the Devil +,none,0046414,Time Out,,2006-01-26,22697,Beat the Devil +Roger Ebert,fresh,0046414,Chicago Sun-Times,"If Beat the Devil puzzled audiences on its first release, it has charmed them since.",2001-02-13,22697,Beat the Devil +Dave Kehr,rotten,0046414,Chicago Reader,"he film ranges from the diffident to the grotesque, with Huston selecting his lenses to make the performers look as freakish as possible.",2000-01-01,22697,Beat the Devil +,fresh,0051459,TIME Magazine,"A formaldehyded tabby that sits static while layer after layer of its skin is peeled off, life after life of its nine lives unsentimentally destroyed.",2008-10-01,21695,Cat on a Hot Tin Roof +Variety Staff,fresh,0051459,Variety,"An intense, important motion picture.",2008-04-08,21695,Cat on a Hot Tin Roof +Dave Kehr,fresh,0051459,Chicago Reader,"Burl Ives and Judith Anderson are highly entertaining as the nightmare parents, Big Daddy and Big Mama, and Jack Carson has one of his last good roles as Newman's competitive older brother.",2008-04-08,21695,Cat on a Hot Tin Roof +Geoff Andrew,fresh,0051459,Time Out,"As so often with adaptations of Williams, it frequently errs on the side of overstatement and pretension, but still remains immensely enjoyable as a piece of cod-Freudian codswallop.",2006-06-24,21695,Cat on a Hot Tin Roof +Bosley Crowther,fresh,0051459,New York Times,What a pack of trashy people these accomplished actors perform!,2003-05-20,21695,Cat on a Hot Tin Roof +,fresh,0047162,TIME Magazine,This picture tries to please everybody. It won't.,2011-03-23,22725,The Last Time I Saw Paris +Variety Staff,fresh,0047162,Variety,An engrossing romantic drama that tells a good story with fine performances and an overall honesty of dramatic purpose.,2008-04-08,22725,The Last Time I Saw Paris +Bosley Crowther,rotten,0047162,New York Times,What is to be said of such a picture? The story is trite. The motivations are thin. The writing is glossy and pedestrian. The acting is pretty much forced.,2006-03-25,22725,The Last Time I Saw Paris +,fresh,0047162,Time Out,An enjoyable (if heavy-handed) melodrama.,2006-02-09,22725,The Last Time I Saw Paris +,none,0033891,Variety,,2008-09-09,20170,Meet John Doe +Derek Adams,none,0033891,Time Out,,2006-06-24,20170,Meet John Doe +Bosley Crowther,none,0033891,New York Times,,2006-03-25,20170,Meet John Doe +Joshua Rothkopf,fresh,0058946,Time Out New York,Essential viewing.,2012-07-03,133039722,La battaglia di Algeri +Chris Nashawaty,fresh,0058946,Entertainment Weekly,Both a how-to manual for guerrilla terrorism and a cautionary tale about how to fight it. It's also quite possibly the finest war film ever made.,2011-08-04,133039722,La battaglia di Algeri +Variety Staff,fresh,0058946,Variety,It's a dedicated effort with importance as a 'document.',2008-10-18,133039722,La battaglia di Algeri +Dave Calhoun,fresh,0058946,Time Out,Superb and unrivalled.,2006-01-26,133039722,La battaglia di Algeri +Roger Ebert,fresh,0058946,Chicago Sun-Times,What lessons a modern viewer can gain from the film depends on who is watching and what they want to see.,2004-10-23,133039722,La battaglia di Algeri +Paul Clinton (CNN.com),fresh,0058946,CNN.com,It's as fresh and suspenseful as anything before or since.,2004-10-19,133039722,La battaglia di Algeri +Peter Rainer,fresh,0058946,New York Magazine,The most electrifyingly timely movie playing in New York was made in 1965.,2004-08-07,133039722,La battaglia di Algeri +Marta Barber,fresh,0058946,Miami Herald,"An extraordinary movie that ruffled many feathers when it first came out. Almost 40 years later, it retains the poignancy it delivered back then.",2004-05-21,133039722,La battaglia di Algeri +Chris Vognar,fresh,0058946,Dallas Morning News,An epic of intimate objectivity.,2004-05-13,133039722,La battaglia di Algeri +Robert Denerstein,fresh,0058946,Denver Rocky Mountain News,"Remains a signficant achievement, a testament to film's powers to put you in the middle of a historical event and make it feel real.",2004-03-26,133039722,La battaglia di Algeri +Terry Lawson,fresh,0058946,Detroit Free Press,"Pontecorvo essentially established the cinematic language that we recognize in recent dramas based on actual events, from Bloody Sunday to Black Hawk Down.",2004-03-26,133039722,La battaglia di Algeri +Colin Covert,fresh,0058946,Minneapolis Star Tribune,Gripping and technically dazzling documentary-style drama.,2004-03-25,133039722,La battaglia di Algeri +Steven Rea,fresh,0058946,Philadelphia Inquirer,Magnificent moviemaking.,2004-03-04,133039722,La battaglia di Algeri +Ty Burr,fresh,0058946,Boston Globe,"The chafing, mutually uncomprehending collision of Western occupiers and Muslim occupied has never been captured with such dispassionate, thrilling clarity.",2004-02-27,133039722,La battaglia di Algeri +John Hartl,fresh,0058946,Seattle Times,"Few movies have done such an eloquent, evenhanded job of defining the conflict between colonialists and natives determined to free themselves from foreign rule.",2004-02-13,133039722,La battaglia di Algeri +Walter V. Addiego,fresh,0058946,San Francisco Chronicle,The director's real achievement is not in making a piece of agitprop but in using these fundamental tools of cinema in such an extraordinarily affecting way.,2004-02-13,133039722,La battaglia di Algeri +Ann Hornaday,fresh,0058946,Washington Post,The greatness of The Battle of Algiers lies in its ability to embrace moral ambiguity without succumbing to it.,2004-01-09,133039722,La battaglia di Algeri +Kenneth Turan,fresh,0058946,Los Angeles Times,"The 'smell of truth' that Pontecorvo said he was after in this film has never left it, and likely never will.",2004-01-08,133039722,La battaglia di Algeri +Ella Taylor,fresh,0058946,L.A. Weekly,A classic of politically engaged filmmaking.,2004-01-08,133039722,La battaglia di Algeri +Owen Gleiberman,fresh,0058946,Entertainment Weekly,"You won't soon forget the face of Brahim Haggiag, who plays the revolutionary leader Ali as if he were channeling the misery of colonialism into a solitary stare of accusatory outrage.",2004-01-08,133039722,La battaglia di Algeri +,none,0022879,Variety,,2009-03-26,20945,A Farewell to Arms +Mordaunt Hall,none,0022879,New York Times,,2006-01-28,20945,A Farewell to Arms +,none,0022879,Time Out,,2006-01-26,20945,A Farewell to Arms +Don Druker,none,0022879,Chicago Reader,,2000-01-01,20945,A Farewell to Arms +Dave Kehr,fresh,0043879,Chicago Reader,One of the loveliest of Nick Ray's movies.,2007-10-23,343019230,On Dangerous Ground +Derek Adams,none,0048491,Time Out,,2006-06-24,10891,Picnic +Stephen Holden,none,0048491,New York Times,,2005-02-01,10891,Picnic +,none,0048491,Los Angeles Times,,2002-06-12,10891,Picnic +Roger Ebert,rotten,0048491,Chicago Sun-Times,"Clunky and awkward, with inane dialogue, it's a movie to show how attitudes have changed.",2000-01-01,10891,Picnic +Mick LaSalle,none,0048491,San Francisco Chronicle,,2000-01-01,10891,Picnic +Derek Adams,none,0113730,Time Out,,2006-02-09,22172,Madagascar Skin +Stephen Holden,none,0113730,New York Times,,2003-05-20,22172,Madagascar Skin +Kevin Thomas,none,0113730,Los Angeles Times,,2001-02-14,22172,Madagascar Skin +James Berardinelli,rotten,0113730,ReelViews,,2000-01-01,22172,Madagascar Skin +,fresh,0117357,Globe and Mail,,2002-04-12,770727181,The Pompatus of Love +Lawrence Van Gelder,none,0117357,New York Times,,2000-01-01,770727181,The Pompatus of Love +,none,0117357,Houston Chronicle,,2000-01-01,770727181,The Pompatus of Love +Roger Ebert,rotten,0117357,Chicago Sun-Times,,2000-01-01,770727181,The Pompatus of Love +Mick LaSalle,none,0117357,San Francisco Chronicle,,2000-01-01,770727181,The Pompatus of Love +Lisa Schwarzbaum,fresh,0116329,Entertainment Weekly,,2011-09-07,12447,Fly Away Home +Todd McCarthy,none,0116329,Variety,,2008-11-27,12447,Fly Away Home +,none,0116329,Time Out,,2006-01-26,12447,Fly Away Home +Peter Stack,fresh,0116329,San Francisco Chronicle,,2002-06-18,12447,Fly Away Home +,fresh,0116329,Globe and Mail,,2002-04-12,12447,Fly Away Home +Kenneth Turan,none,0116329,Los Angeles Times,,2001-02-14,12447,Fly Away Home +Roger Ebert,fresh,0116329,Chicago Sun-Times,,2000-01-01,12447,Fly Away Home +Charles Taylor,none,0116329,Salon.com,,2000-01-01,12447,Fly Away Home +Joe Baltake,none,0116329,Sacramento Bee,,2000-01-01,12447,Fly Away Home +Susan Stark,fresh,0116329,Detroit News,,2000-01-01,12447,Fly Away Home +Janet Maslin,none,0116329,New York Times,,2000-01-01,12447,Fly Away Home +James Berardinelli,fresh,0116329,ReelViews,,2000-01-01,12447,Fly Away Home +,none,0116329,Houston Chronicle,,2000-01-01,12447,Fly Away Home +,none,0116329,Washington Post,,2000-01-01,12447,Fly Away Home +Susan Wloszczyna,fresh,0116329,USA Today,"From bumbling infants to majestic adults, a flock hasn't been this charismatic onscreen since Hitchcock went bird-watching.",2000-01-01,12447,Fly Away Home +,fresh,0116329,Entertainment Weekly,,1996-09-13,12447,Fly Away Home +Lisa Schwarzbaum,rotten,0118742,Entertainment Weekly,,2011-09-07,14453,Bliss +Todd McCarthy,none,0118742,Variety,,2009-03-26,14453,Bliss +,rotten,0118742,Globe and Mail,,2002-04-12,14453,Bliss +Kevin Thomas,none,0118742,Los Angeles Times,,2001-02-14,14453,Bliss +Ruthe Stein,none,0118742,San Francisco Chronicle,,2000-01-01,14453,Bliss +Roger Ebert,fresh,0118742,Chicago Sun-Times,,2000-01-01,14453,Bliss +,rotten,0118742,USA Today,Writer/director Lance Young is so relentlessly solemn ... that some viewers may giggle.,2000-01-01,14453,Bliss +Stephen Holden,none,0118742,New York Times,,2000-01-01,14453,Bliss +,rotten,0118742,Entertainment Weekly,,1997-06-06,14453,Bliss +David Rooney,none,0116442,Variety,,2009-03-31,14405,Grace of My Heart +Derek Adams,none,0116442,Time Out,,2006-02-09,14405,Grace of My Heart +,rotten,0116442,Globe and Mail,,2002-04-12,14405,Grace of My Heart +Peter Travers,none,0116442,Rolling Stone,,2001-05-12,14405,Grace of My Heart +Jack Mathews,none,0116442,Los Angeles Times,,2001-02-14,14405,Grace of My Heart +Janet Maslin,none,0116442,New York Times,,2000-01-01,14405,Grace of My Heart +Joe Baltake,none,0116442,Sacramento Bee,,2000-01-01,14405,Grace of My Heart +Roger Ebert,rotten,0116442,Chicago Sun-Times,,2000-01-01,14405,Grace of My Heart +,none,0116442,Washington Post,,2000-01-01,14405,Grace of My Heart +James Berardinelli,rotten,0116442,ReelViews,,2000-01-01,14405,Grace of My Heart +Edward Guthmann,none,0116442,San Francisco Chronicle,,2000-01-01,14405,Grace of My Heart +Susan Stark,rotten,0116442,Detroit News,,2000-01-01,14405,Grace of My Heart +,fresh,0114354,Globe and Mail,,2002-04-12,770678780,Schlafes Bruder +,none,0114354,Los Angeles Times,,2001-02-14,770678780,Schlafes Bruder +Peter Stack,none,0114354,San Francisco Chronicle,,2000-01-01,770678780,Schlafes Bruder +Joe Baltake,none,0114354,Sacramento Bee,,2000-01-01,770678780,Schlafes Bruder +James Berardinelli,fresh,0114354,ReelViews,,2000-01-01,770678780,Schlafes Bruder +,none,0114354,Washington Post,,2000-01-01,770678780,Schlafes Bruder +,none,0114354,Houston Chronicle,,2000-01-01,770678780,Schlafes Bruder +Janet Maslin,none,0114354,New York Times,,2000-01-01,770678780,Schlafes Bruder +Lisa Schwarzbaum,rotten,0117011,Entertainment Weekly,,2011-09-07,15020,Maximum Risk +Leonard Klady,fresh,0117011,Variety,It's a visceral delight that refuses to be deterred by niceties of plot or character consistency and prefers sweat to emotion.,2008-07-08,15020,Maximum Risk +Derek Adams,rotten,0117011,Time Out,"A standard Van Damme pic, competently assembled but with little of the manic edge found in director Lam's Hong Kong movies.",2006-06-24,15020,Maximum Risk +Susan Stark,rotten,0117011,Detroit News,,2002-02-07,15020,Maximum Risk +Richard Harrington,rotten,0117011,Washington Post,There are so many car crashes in Maximum Risk that Van Damme ends up playing second fiddle to an ever-expanding salvage operation.,2002-01-22,15020,Maximum Risk +Kevin Thomas,fresh,0117011,Los Angeles Times,Lam not only handles the bravura action set pieces with ease but also a capable international cast as colorful and varied as the film's many locales.,2001-02-14,15020,Maximum Risk +Sean Means,rotten,0117011,Film.com,The chases are chaotic and cliched.,2000-01-01,15020,Maximum Risk +Bruce Westbrook,rotten,0117011,Houston Chronicle,"Action flicks should be fun, and this one is a bloody bore.",2000-01-01,15020,Maximum Risk +James Berardinelli,rotten,0117011,ReelViews,"The generic nature of the plot and action sequences, not to mention the presence of Jean-Claude Van Damme, made everything seem all-too-familiar.",2000-01-01,15020,Maximum Risk +Lawrence Van Gelder,fresh,0117011,New York Times,"From start to finish, Maximum Risk presents spectacular stunts choreographed and coordinated by Charles Picerni and some hair-raising, stomach-churning automotive chases attributed to Remy Julienne, the French master of the art.",2000-01-01,15020,Maximum Risk +Peter Stack,rotten,0117011,San Francisco Chronicle,"It just simmers down, becoming an embarrassing exercise in the pointless and predictable.",2000-01-01,15020,Maximum Risk +,rotten,0117011,Entertainment Weekly,,1996-09-13,15020,Maximum Risk +Richard Schickel,rotten,0117039,TIME Magazine,"There are pain and honor in [Neeson's] performance, and they constantly rise up to redeem a film that is less probing, less thoughtful than its director's claims and aspirations for it.",2010-03-28,13209,Michael Collins +Todd McCarthy,fresh,0117039,Variety,"Intelligent, enormously accomplished and seriously problematic, Neil Jordan's ambitious account of the activities of arguably the central figure in Ireland's painful, bloody fight for independence from the British Empire has a great deal to offer...",2009-01-23,13209,Michael Collins +Geoff Andrew,fresh,0117039,Time Out,"This is Jordan's most ambitious and satisfying movie -- a thriller with a real sense of scale, pace, menace and moral import.",2006-06-24,13209,Michael Collins +Janet Maslin,fresh,0117039,New York Times,"Played with great magnetism and triumphant bluster by Liam Neeson, the film's Michael Collins easily lives up to his nickname.",2003-05-20,13209,Michael Collins +Peter Stack,rotten,0117039,San Francisco Chronicle,"Handsome, but curiously cold, considering the emotional heat of Anglo-Irish matters. Fortunately, Liam Neeson commands almost every frame.",2002-06-18,13209,Michael Collins +Kenneth Turan,fresh,0117039,Los Angeles Times,"Jordan always had 6-foot-4 Liam Neeson in mind to play the man they called ""the Big Fellow,"" and it's more than size that makes Neeson fit the part of a leader known for his ""cloudburst temperament.""",2001-02-14,13209,Michael Collins +Roger Ebert,fresh,0117039,Chicago Sun-Times,"Collins, who died at 31, was arguably the key figure in the struggles that led to the separation of Ireland and Britain. He was also, on the basis of this film, a man able to use violence without becoming intoxicated by it.",2000-01-01,13209,Michael Collins +James Berardinelli,fresh,0117039,ReelViews,"While Michael Collins does distort elements of history, most of the changes and compressions are dramatically effective.",2000-01-01,13209,Michael Collins +Susan Stark,fresh,0117039,Detroit News,,2000-01-01,13209,Michael Collins +,fresh,0117039,Entertainment Weekly,,1996-10-11,13209,Michael Collins +Godfrey Cheshire,none,0117473,Variety,,2008-10-27,16004,The Rich Man's Wife +Lawrence Van Gelder,none,0117473,New York Times,,2004-08-30,16004,The Rich Man's Wife +Jeff Strickler,none,0117473,Minneapolis Star Tribune,,2002-11-06,16004,The Rich Man's Wife +Kenneth Turan,none,0117473,Los Angeles Times,,2001-02-14,16004,The Rich Man's Wife +James Berardinelli,rotten,0117473,ReelViews,,2000-01-01,16004,The Rich Man's Wife +Susan Stark,rotten,0117473,Detroit News,,2000-01-01,16004,The Rich Man's Wife +,none,0117473,Houston Chronicle,,2000-01-01,16004,The Rich Man's Wife +Joe Baltake,none,0117473,Sacramento Bee,,2000-01-01,16004,The Rich Man's Wife +Roger Ebert,rotten,0117473,Chicago Sun-Times,,2000-01-01,16004,The Rich Man's Wife +Edward Guthmann,none,0117473,San Francisco Chronicle,,2000-01-01,16004,The Rich Man's Wife +,rotten,0117473,Entertainment Weekly,,1996-09-13,16004,The Rich Man's Wife +Emanuel Levy,rotten,0116635,Variety,"Actor Matthew Broderick feature directorial debut is a stagnantly flawed, listless account of Richard Feyman, the brilliant American-Jewish scientist; it doesn't help that Patricia Arquette is miscast as his wife.",2006-12-12,12272,Infinity +Stephen Holden,none,0116635,New York Times,,2003-05-20,12272,Infinity +,rotten,0116635,Globe and Mail,,2002-04-12,12272,Infinity +Jack Mathews,none,0116635,Los Angeles Times,,2001-02-14,12272,Infinity +James Berardinelli,fresh,0116635,ReelViews,,2000-01-01,12272,Infinity +,none,0116635,Houston Chronicle,,2000-01-01,12272,Infinity +,none,0116635,Washington Post,,2000-01-01,12272,Infinity +Peter Stack,none,0116635,San Francisco Chronicle,,2000-01-01,12272,Infinity +Roger Ebert,fresh,0116635,Chicago Sun-Times,,2000-01-01,12272,Infinity +Joe Baltake,none,0116635,Sacramento Bee,,2000-01-01,12272,Infinity +Joe Morgenstern,none,0115678,Wall Street Journal,,2012-03-24,13183,Big Night +Lisa Schwarzbaum,fresh,0115678,Entertainment Weekly,,2011-09-07,13183,Big Night +Roger Moore,fresh,0115678,Orlando Sentinel,,2009-05-13,13183,Big Night +Todd McCarthy,none,0115678,Variety,,2008-08-13,13183,Big Night +David Ansen,none,0115678,Newsweek,,2008-03-31,13183,Big Night +,none,0115678,Time Out,,2006-06-24,13183,Big Night +Janet Maslin,none,0115678,New York Times,,2003-05-20,13183,Big Night +Desson Thomson,fresh,0115678,Washington Post,"A charming, delicate repast prepared by Stanley Tucci and Campbell Scott.",2003-04-07,13183,Big Night +Jeff Strickler,none,0115678,Minneapolis Star Tribune,,2002-11-06,13183,Big Night +Peter Stack,fresh,0115678,San Francisco Chronicle,A small movie -- and that's its subtle charm.,2002-06-18,13183,Big Night +Peter Travers,fresh,0115678,Rolling Stone,"A feast of a film done on a low budget with a menu featuring top-grade acting, writing and direction.",2001-05-12,13183,Big Night +Kenneth Turan,fresh,0115678,Los Angeles Times,"As delicately and deliciously prepared as the dishes it features, Big Night is a lyric to the love of food, family and persuasive acting.",2001-02-14,13183,Big Night +Roger Ebert,fresh,0115678,Chicago Sun-Times,"By the end of the movie, we have been through an emotional and a sensual wringer, in a film of great wisdom and delight.",2000-01-01,13183,Big Night +Joe Baltake,none,0115678,Sacramento Bee,,2000-01-01,13183,Big Night +Rita Kempley,fresh,0115678,Washington Post,A scrumptious tale of great food and grand passions.,2000-01-01,13183,Big Night +Jeff Millar,fresh,0115678,Houston Chronicle,"It will paste a big, sloppy smile on your face from its opening moment. Good luck at dislodging it.",2000-01-01,13183,Big Night +James Berardinelli,fresh,0115678,ReelViews,"When it comes to seeing Big Night, two words say it all: Bon appetite!",2000-01-01,13183,Big Night +Mike Clark,fresh,0115678,USA Today,Stanley Tucci's surprise cinematic brainchild fills you up with its audacious originality.,2000-01-01,13183,Big Night +,fresh,0115678,Entertainment Weekly,,1996-09-20,13183,Big Night +David Stratton,none,0116830,Variety,,2009-04-07,13839,Last Man Standing +Geoff Andrew,none,0116830,Time Out,,2006-06-24,13839,Last Man Standing +,rotten,0116830,Globe and Mail,,2002-04-12,13839,Last Man Standing +Susan Stark,rotten,0116830,Detroit News,,2002-04-11,13839,Last Man Standing +Joe Baltake,none,0116830,Sacramento Bee,,2002-04-11,13839,Last Man Standing +Peter Travers,none,0116830,Rolling Stone,,2001-05-12,13839,Last Man Standing +Kevin Thomas,none,0116830,Los Angeles Times,,2001-02-14,13839,Last Man Standing +,none,0116830,Washington Post,,2000-01-01,13839,Last Man Standing +James Berardinelli,rotten,0116830,ReelViews,,2000-01-01,13839,Last Man Standing +Roger Ebert,rotten,0116830,Chicago Sun-Times,,2000-01-01,13839,Last Man Standing +,none,0116830,Houston Chronicle,,2000-01-01,13839,Last Man Standing +Janet Maslin,none,0116830,New York Times,,2000-01-01,13839,Last Man Standing +Mick LaSalle,fresh,0116830,San Francisco Chronicle,,2000-01-01,13839,Last Man Standing +,rotten,0116830,Entertainment Weekly,,1996-09-20,13839,Last Man Standing +Todd McCarthy,none,0115847,Variety,,2009-04-29,15770,Caught +Janet Maslin,none,0115847,New York Times,,2003-05-20,15770,Caught +Roger Ebert,fresh,0115847,Chicago Sun-Times,,2000-01-01,15770,Caught +Joe Baltake,none,0115847,Sacramento Bee,,2000-01-01,15770,Caught +Edward Guthmann,none,0115847,San Francisco Chronicle,,2000-01-01,15770,Caught +James Berardinelli,fresh,0115847,ReelViews,,2000-01-01,15770,Caught +,rotten,0115847,Entertainment Weekly,,1996-09-27,15770,Caught +Lisa Schwarzbaum,fresh,0117603,Entertainment Weekly,,2011-09-07,13295,Set It Off +Emanuel Levy,fresh,0117603,Variety,"Influenced by Thelma & Louise and Waiting to Exhale, this well-crafted Girls N the Hood has social conscience and soul; Queen Latifah gives a career-making performance that should made her a big Hollywood star",2007-01-12,13295,Set It Off +Derek Adams,none,0117603,Time Out,,2006-02-09,13295,Set It Off +Stephen Holden,none,0117603,New York Times,,2003-05-20,13295,Set It Off +Esther Iverem,none,0117603,Washington Post,,2002-01-22,13295,Set It Off +Peter Travers,none,0117603,Rolling Stone,,2001-05-12,13295,Set It Off +Kenneth Turan,none,0117603,Los Angeles Times,,2001-02-14,13295,Set It Off +James Berardinelli,fresh,0117603,ReelViews,,2000-01-01,13295,Set It Off +Peter Stack,none,0117603,San Francisco Chronicle,,2000-01-01,13295,Set It Off +Roger Ebert,fresh,0117603,Chicago Sun-Times,,2000-01-01,13295,Set It Off +Joe Baltake,none,0117603,Sacramento Bee,,2000-01-01,13295,Set It Off +,rotten,0117603,USA Today,"Overlong, overdone and overwrought, the narratively challenged Set It Off gets off on exploitation shock and social-conscience schlock in equal measure.",2000-01-01,13295,Set It Off +Susan Stark,fresh,0117603,Detroit News,,2000-01-01,13295,Set It Off +,fresh,0117603,Entertainment Weekly,,1996-11-06,13295,Set It Off +Owen Gleiberman,rotten,0115438,Entertainment Weekly,,2011-09-07,13366,2 Days in the Valley +Todd McCarthy,fresh,0115438,Variety,"To the director's credit, the actors all seem responsive to his touch, giving performances that are lively and flavorsome, if not deep or unlike anything each of them has done before.",2008-04-16,13366,2 Days in the Valley +Jonathan Rosenbaum,rotten,0115438,Chicago Reader,"Herzfeld has a tolerable eye for filling a 'Scope frame but a tin ear when it comes to creating dialogue; these are all characters we've met before, and most even seem bored with themselves.",2008-04-16,13366,2 Days in the Valley +,fresh,0115438,Time Out,"Smoothly constructed, for such a busy piece of work, and Hatcher's ascent to stardom continues.",2006-06-24,13366,2 Days in the Valley +Stephen Holden,fresh,0115438,New York Times,"A sleek, amusingly nasty screen debut by a film maker whose television credits include an Amy Fisher docudrama.",2003-05-20,13366,2 Days in the Valley +Mick LaSalle,fresh,0115438,San Francisco Chronicle,"Funny, pathetic, sad, absurdist -- writer-director John Herzfeld plays it any number of ways, and makes them all work.",2002-06-18,13366,2 Days in the Valley +,fresh,0115438,Globe and Mail,,2002-04-12,13366,2 Days in the Valley +Jack Mathews,fresh,0115438,Los Angeles Times,"There are too many characters, but some are a lot of fun. The tone shifts, from graphic murder to wig-flipping farce, are too extreme, but much of it works.",2001-02-14,13366,2 Days in the Valley +Roger Ebert,fresh,0115438,Chicago Sun-Times,"The plot underlies even the most inexplicable scenes and eventually links even the most widely separated characters, but what makes the movie fun is the dialogue and the behavior.",2000-01-01,13366,2 Days in the Valley +James Berardinelli,fresh,0115438,ReelViews,"It's pure entertainment -- nothing too serious, nothing too deep -- with an artistic sensibility.",2000-01-01,13366,2 Days in the Valley +Susan Stark,rotten,0115438,Detroit News,,2000-01-01,13366,2 Days in the Valley +,none,0115438,Washington Post,,2000-01-01,13366,2 Days in the Valley +Jeff Millar,fresh,0115438,Houston Chronicle,This produces some rather nasty-funny surprises.,2000-01-01,13366,2 Days in the Valley +,rotten,0115438,Entertainment Weekly,,1996-09-27,13366,2 Days in the Valley +Todd McCarthy,none,0115994,Variety,,2009-03-26,14778,Curdled +,none,0115994,Time Out,,2006-02-09,14778,Curdled +Lawrence Van Gelder,none,0115994,New York Times,,2003-05-20,14778,Curdled +,rotten,0115994,Globe and Mail,,2002-04-12,14778,Curdled +Roger Ebert,rotten,0115994,Chicago Sun-Times,,2000-01-01,14778,Curdled +Mick LaSalle,none,0115994,San Francisco Chronicle,,2000-01-01,14778,Curdled +,none,0115994,Houston Chronicle,,2000-01-01,14778,Curdled +,none,0115994,Washington Post,,2000-01-01,14778,Curdled +Lisa Schwarzbaum,fresh,0115580,Entertainment Weekly,,2011-09-07,11259,The Associate +Joe Leydon,none,0115580,Variety,,2009-03-26,11259,The Associate +Geoff Andrew,none,0115580,Time Out,,2006-02-09,11259,The Associate +Stephen Holden,none,0115580,New York Times,,2003-05-20,11259,The Associate +Jeff Strickler,none,0115580,Minneapolis Star Tribune,,2002-11-06,11259,The Associate +Peter Stack,fresh,0115580,San Francisco Chronicle,,2002-06-18,11259,The Associate +,rotten,0115580,Globe and Mail,,2002-04-12,11259,The Associate +Jack Mathews,none,0115580,Los Angeles Times,,2001-02-14,11259,The Associate +James Berardinelli,rotten,0115580,ReelViews,,2000-01-01,11259,The Associate +Joe Baltake,none,0115580,Sacramento Bee,,2000-01-01,11259,The Associate +Roger Ebert,rotten,0115580,Chicago Sun-Times,,2000-01-01,11259,The Associate +Susan Stark,fresh,0115580,Detroit News,,2000-01-01,11259,The Associate +,rotten,0115580,USA Today,"If you were expecting Mrs. Doubtfire in reverse, invest your interest elsewhere.",2000-01-01,11259,The Associate +,fresh,0115580,Entertainment Weekly,,1996-10-25,11259,The Associate +Owen Gleiberman,fresh,0116167,Entertainment Weekly,,2011-09-07,770737647,Ed's Next Move +Leonard Klady,none,0116167,Variety,,2009-03-26,770737647,Ed's Next Move +Janet Maslin,none,0116167,New York Times,,2003-05-20,770737647,Ed's Next Move +Jeff Strickler,none,0116167,Minneapolis Star Tribune,,2002-11-06,770737647,Ed's Next Move +Kenneth Turan,none,0116167,Los Angeles Times,,2001-02-14,770737647,Ed's Next Move +Joe Baltake,none,0116167,Sacramento Bee,,2000-01-01,770737647,Ed's Next Move +Roger Ebert,fresh,0116167,Chicago Sun-Times,,2000-01-01,770737647,Ed's Next Move +Mick LaSalle,none,0116167,San Francisco Chronicle,,2000-01-01,770737647,Ed's Next Move +,fresh,0116167,Entertainment Weekly,,1996-09-01,770737647,Ed's Next Move +Lisa Schwarzbaum,rotten,0116259,Entertainment Weekly,,2011-09-07,16220,Extreme Measures +Leonard Klady,none,0116259,Variety,,2008-10-18,16220,Extreme Measures +,none,0116259,Time Out,,2006-01-26,16220,Extreme Measures +Janet Maslin,none,0116259,New York Times,,2003-05-20,16220,Extreme Measures +Peter Stack,none,0116259,San Francisco Chronicle,,2002-06-18,16220,Extreme Measures +,rotten,0116259,Globe and Mail,,2002-04-12,16220,Extreme Measures +Peter Travers,none,0116259,Rolling Stone,,2001-05-12,16220,Extreme Measures +Kenneth Turan,none,0116259,Los Angeles Times,,2001-02-14,16220,Extreme Measures +Susan Stark,rotten,0116259,Detroit News,,2000-01-01,16220,Extreme Measures +Mike Clark,rotten,0116259,USA Today,Is it excusable to kill a few indigents here and there experimenting for a miracle cure? Measures' painfully protracted Hour 2 turns into a melodramatic debate about ethics.,2000-01-01,16220,Extreme Measures +Roger Ebert,fresh,0116259,Chicago Sun-Times,,2000-01-01,16220,Extreme Measures +James Berardinelli,fresh,0116259,ReelViews,,2000-01-01,16220,Extreme Measures +,none,0116259,Houston Chronicle,,2000-01-01,16220,Extreme Measures +Joe Baltake,none,0116259,Sacramento Bee,,2000-01-01,16220,Extreme Measures +,none,0116259,Washington Post,,2000-01-01,16220,Extreme Measures +,rotten,0116259,Entertainment Weekly,,1996-09-27,16220,Extreme Measures +,fresh,0116421,Time Out,"Although this slick Seagal action pic won't convert die-hard detractors, aficionados will note that he's both gained weight and lightened up.",2006-06-24,13943,The Glimmer Man +Lawrence Van Gelder,none,0116421,New York Times,,2004-08-30,13943,The Glimmer Man +Richard Harrington,rotten,0116421,Washington Post,"The plot of The Glimmer Man involves not only the Family Man but Our Evil Secret Government, the Russian Mafia and Rich Powerful Politicians -- the three stooges of action cinema in the '90s.",2002-01-22,13943,The Glimmer Man +Jack Mathews,rotten,0116421,Los Angeles Times,"Most of the action scenes occur in the dark and are so heavily edited, it's hard to know whose limbs and faces are being splintered by Cole.",2001-02-14,13943,The Glimmer Man +Susan Wloszczyna,rotten,0116421,USA Today,It's repetitive mayhem as usual.,2000-01-01,13943,The Glimmer Man +John Hartl,rotten,0116421,Film.com,Just as foolish and formulaic as it sounds.,2000-01-01,13943,The Glimmer Man +Joe Baltake,none,0116421,Sacramento Bee,,2000-01-01,13943,The Glimmer Man +James Berardinelli,rotten,0116421,ReelViews,"All-in-all, what we have here is 'classic' Seagal. And that means, for anyone who isn't an admitted fan, an uninspired outing.",2000-01-01,13943,The Glimmer Man +Sean Means,rotten,0116421,Film.com,A brutish action movie that is as improbable as it is annoying.,2000-01-01,13943,The Glimmer Man +Jeff Millar,rotten,0116421,Houston Chronicle,"Subtract the gruesomeness, the language and some nekkid stuff, and the film is indistinguishable from an episode of a TV cop show.",2000-01-01,13943,The Glimmer Man +Mary Brennan,rotten,0116421,Film.com,"It's ugly and unpleasant but you may find it intensely compelling, much like a visit to the oral surgeon.",2000-01-01,13943,The Glimmer Man +Susan Stark,rotten,0116421,Detroit News,,2000-01-01,13943,The Glimmer Man +Leonard Klady,none,0116000,Variety,,2009-03-27,11946,D3: The Mighty Ducks +Lawrence Van Gelder,none,0116000,New York Times,,2003-05-20,11946,D3: The Mighty Ducks +Peter Stack,none,0116000,San Francisco Chronicle,,2002-06-18,11946,D3: The Mighty Ducks +,rotten,0116000,Globe and Mail,,2002-04-12,11946,D3: The Mighty Ducks +Andy Seiler,rotten,0116000,USA Today,Nothing to quack about there.,2000-01-01,11946,D3: The Mighty Ducks +,none,0116000,Houston Chronicle,,2000-01-01,11946,D3: The Mighty Ducks +Susan Stark,rotten,0116000,Detroit News,,2000-01-01,11946,D3: The Mighty Ducks +Roger Ebert,rotten,0116000,Chicago Sun-Times,,2000-01-01,11946,D3: The Mighty Ducks +Joe Baltake,none,0116000,Sacramento Bee,,2000-01-01,11946,D3: The Mighty Ducks +Owen Gleiberman,rotten,0115862,Entertainment Weekly,,2011-09-07,14151,The Chamber +Emanuel Levy,rotten,0115862,Variety,"Lacking the surface glitz, attention-grabbing plot and star power of John Grisham's previous adaptations, Folley's film will also suffer due to comparisons with the similarly-themed and better Tim Robbins' Dead Man Walking, released last year.",2006-03-08,14151,The Chamber +,none,0115862,Time Out,,2006-02-09,14151,The Chamber +Janet Maslin,none,0115862,New York Times,,2004-08-30,14151,The Chamber +Jeff Strickler,none,0115862,Minneapolis Star Tribune,,2002-11-06,14151,The Chamber +Mick LaSalle,rotten,0115862,San Francisco Chronicle,,2002-06-18,14151,The Chamber +Kenneth Turan,none,0115862,Los Angeles Times,,2001-02-14,14151,The Chamber +,rotten,0115862,USA Today,There isn't a whole lot to the movie.,2000-01-01,14151,The Chamber +Susan Stark,rotten,0115862,Detroit News,,2000-01-01,14151,The Chamber +Roger Ebert,rotten,0115862,Chicago Sun-Times,,2000-01-01,14151,The Chamber +,none,0115862,Washington Post,,2000-01-01,14151,The Chamber +James Berardinelli,rotten,0115862,ReelViews,,2000-01-01,14151,The Chamber +Joe Baltake,none,0115862,Sacramento Bee,,2000-01-01,14151,The Chamber +,rotten,0115862,Entertainment Weekly,,1996-10-11,14151,The Chamber +,fresh,0072653,Time Out,"The traditional ingredients of homely moralising, sentimentality and raucous slapstick are used sparingly, the dialogue is fairly bright, some visual gags are neatly executed.",2006-06-24,9480,The Apple Dumpling Gang +Richard Eder,rotten,0072653,New York Times,Walt Disney started by making movies in which animated drawings played the parts of people or animals who stood for people. Later he turned to making movies in which people or animals play the parts of animated drawings.,2005-05-09,9480,The Apple Dumpling Gang +Roger Ebert,rotten,0072653,Chicago Sun-Times,"Everytime I see one of these antiseptic Disney films, I'm reminded of the thrills and genuine artistry that went into the studio's films during its golden age in the 1940s and 1950s.",2004-10-23,9480,The Apple Dumpling Gang +Bosley Crowther,none,0047977,New York Times,,2006-03-25,770674602,"Davy Crockett, King of the Wild Frontier" +,fresh,0072951,Time Out,"A Disney adventure with quite a lot going for it, even if it does end up spreading itself too wide for the sakes of the entire family.",2006-01-26,9521,Escape to Witch Mountain +Vincent Canby,rotten,0072951,New York Times,A Walt Disney production for children who will watch absolutely anything that moves.,2005-05-09,9521,Escape to Witch Mountain +Roger Ebert,fresh,0072951,Chicago Sun-Times,"A scifi thriller that's fun, that's cheerfully implausible, that's scary but not too scary, and it works.",2004-10-23,9521,Escape to Witch Mountain +,fresh,0072951,Chicago Reader,,2000-01-01,9521,Escape to Witch Mountain +,rotten,0064603,TIME Magazine,The Love Bug is surely the first film in which the actors...are so meticulously insipid that a car can handily steal the show.,2009-03-09,9478,The Love Bug +Variety Staff,fresh,0064603,Variety,"For sheer inventiveness of situation and the charm that such an idea projects, The Love Bug rates as one of the better entries of the Disney organization.",2008-05-05,9478,The Love Bug +Geoff Andrew,fresh,0064603,Time Out,'Herbie' and his plucky stunt drivers steal the show in this agreeable family entertainment.,2006-06-24,9478,The Love Bug +Vincent Canby,rotten,0064603,New York Times,"Such a vulnerable movie that if it were a little less sappy, one might feel compelled to protect it, as if it were someone under 7 or over 65 -- that portion of the public for which it is intended.",2005-05-09,9478,The Love Bug +Dave Kehr,rotten,0064603,Chicago Reader,What this autopopathism means in terms of American culture is a subject I neither understand nor wish to.,2003-05-07,9478,The Love Bug +,none,0071607,Variety,,2009-03-26,9661,Herbie Rides Again +Derek Adams,none,0071607,Time Out,,2006-02-09,9661,Herbie Rides Again +Vincent Canby,none,0071607,New York Times,,2005-05-09,9661,Herbie Rides Again +,none,0050798,Variety,,2009-03-26,9440,Old Yeller +,fresh,0050798,TIME Magazine,It comes from Disney's thoroughly proved mother lode: movies for the kids that adults will stay to enjoy themselves.,2009-03-09,9440,Old Yeller +Bosley Crowther,fresh,0050798,New York Times,"Sentimental, yes, but also sturdy as a hickory stick.",2006-03-25,9440,Old Yeller +Lisa Alspector,rotten,0120783,Chicago Reader,This 1998 romantic comedy mostly bores with its cumbersome exposition and close-ups of trivial objects scattered throughout lackluster montage sequences.,2011-05-27,12593,The Parent Trap +Joe Leydon,fresh,0120783,Variety,"New pic is slick, sentimental and exceptionally well cast, with enough cross-generational appeal to suggest strong commercial potential.",2010-07-06,12593,The Parent Trap +Wally Hammond,fresh,0120783,Time Out,"The light comedy is sweetly timed, the direction smart and assured, and the visuals bright, colourful, unobtrusive and faultless.",2006-06-24,12593,The Parent Trap +,rotten,0120783,Globe and Mail,,2002-04-12,12593,The Parent Trap +Susan Stark,fresh,0120783,Detroit News,,2000-01-01,12593,The Parent Trap +,rotten,0120783,USA Today,,2000-01-01,12593,The Parent Trap +Roger Ebert,fresh,0120783,Chicago Sun-Times,Movies like this remember how much fun escapism can be.,2000-01-01,12593,The Parent Trap +Janet Maslin,fresh,0120783,New York Times,"The lavish, super-cute new version of The Parent Trap is a remake of the 1961 Hayley Mills hit, which was seriously adorable in its own right",2000-01-01,12593,The Parent Trap +James Berardinelli,rotten,0120783,ReelViews,It never fails to amaze me that something as essentially light and pointless as Disney's remake of The Parent Trap can clock in at over two hours in length.,2000-01-01,12593,The Parent Trap +Ruthe Stein,fresh,0120783,San Francisco Chronicle,"Richardson and Quaid, who is beginning to resemble Harrison Ford in his rumpled mode, have great chemistry. It's a shame it takes so long for the movie to bring them together to demonstrate it.",2000-01-01,12593,The Parent Trap +Lisa Schwarzbaum,fresh,0120783,Entertainment Weekly,"Responsibility for making this Trap tender rests heaviest on the bird-size shoulders of auburn-haired, freckle-faced Lohan, now 11, who won the unenviable job of making us forget about Hayley Mills -- at least temporarily.",1998-07-29,12593,The Parent Trap +,fresh,0054195,TIME Magazine,Pollyanna emerges on the wide screen as the best live-actor movie Disney has ever made: a Niagara of drivel and a masterpiece of smarm.,2009-03-09,9441,Pollyanna +Variety Staff,fresh,0054195,Variety,"Hayley Mills' work more than compensates for the film's lack of tautness and, at certain points, what seems to be an uncertain sense of direction.",2008-05-20,9441,Pollyanna +Brian Lowry,fresh,0107131,Variety,A sprightly little entertainment that should enthrall tots without straining the patience of their parents.,2008-05-12,9431,Homeward Bound: The Incredible Journey +Jeff Menell,fresh,0107131,Hollywood Reporter,[A] delightful remake.,2008-05-12,9431,Homeward Bound: The Incredible Journey +Wally Hammond,fresh,0107131,Time Out,Totally uncorrupting.,2006-02-09,9431,Homeward Bound: The Incredible Journey +Janet Maslin,fresh,0107131,New York Times,"This film is clever even with its human actors, dispensing with the first film's animal-loving hermits and playing up the importance of a cute, newly typical American family.",2003-05-20,9431,Homeward Bound: The Incredible Journey +Desson Thomson,fresh,0107131,Washington Post,Even the most televisionally overstimulated will likely enjoy this boy-and-his-dog movie -- which also happens to be a girl-and-her-cat movie too.,2000-01-01,9431,Homeward Bound: The Incredible Journey +Roger Ebert,fresh,0107131,Chicago Sun-Times,"It has a certain craftsmanship and an undeniable charm, and if you find yourself watching it with a child you may end up liking it almost as much.",2000-01-01,9431,Homeward Bound: The Incredible Journey +Megan Rosenfeld,fresh,0107131,Washington Post,Matters are accomplished by director Duwayne Dunham with fairly professional skill.,2000-01-01,9431,Homeward Bound: The Incredible Journey +James Berardinelli,rotten,0107131,ReelViews,"As an episode of The Wonderful World of Disney, it would be fine, but as a major motion picture, it's disappointing.",2000-01-01,9431,Homeward Bound: The Incredible Journey +Ty Burr,fresh,0107131,Entertainment Weekly,"having suffered with my human through the dim-witted Beethoven and the dreadful Bingo, I found Homeward Bound to be a breath of animal-oriented realism, voice-overs or no.",1993-02-03,9431,Homeward Bound: The Incredible Journey +Richard Roeper,rotten,0393735,Ebert & Roeper,We've seen it a million times.,2006-03-16,93101407,The Shaggy Dog +,none,0393735,St. Louis Post-Dispatch,,2006-03-11,93101407,The Shaggy Dog +Rob Nelson,rotten,0393735,Village Voice,Disney's tried-and-true slapstick material (est. 1959) is here given a heinously unimaginative interpretation by five screenwriters and a director who manages to squander the gifts of an absurdly overqualified supporting cast.,2006-03-10,93101407,The Shaggy Dog +Jennie Punter,rotten,0393735,Globe and Mail,The unruly pack of subplots make The Shaggy Dog much more convoluted than it needs to be.,2006-03-10,93101407,The Shaggy Dog +Claudia Puig,fresh,0393735,USA Today,"The Shaggy Dog may not make you howl, but it does offer a few bona fide belly laughs, which is more than the last few Tim Allen movies could boast.",2006-03-10,93101407,The Shaggy Dog +Susan Walker,fresh,0393735,Toronto Star,"This is a classic family fun fare, likely destined for sequelhood.",2006-03-10,93101407,The Shaggy Dog +Tom Keogh,fresh,0393735,Seattle Times,"Director Brian Robbins keeps the special effects and animatronics to a minimum, relying more often than not on real (albeit trained) dogs. That extra bit of authenticity is refreshing.",2006-03-10,93101407,The Shaggy Dog +Ruthe Stein,fresh,0393735,San Francisco Chronicle,"The Shaggy Dog is as good as family entertainment gets, meaning it will tickle kids while throwing the occasional bone to parents to keep them from growling.",2006-03-10,93101407,The Shaggy Dog +Roger Moore,fresh,0393735,Orlando Sentinel,This is a Dog with heart.,2006-03-10,93101407,The Shaggy Dog +Stephen Whitty,rotten,0393735,Newark Star-Ledger,"If, in the end, this Allen film is an old dog that can't learn any new tricks, it's still enough of a safe, bland entertainment to keep some undiscriminating parents happy.",2006-03-10,93101407,The Shaggy Dog +Lou Lumenick,rotten,0393735,New York Post,To paraphrase the over used song employed in Disney's latest dismal recycling of The Shaggy Dog -- who let this dog out?,2006-03-10,93101407,The Shaggy Dog +Jami Bernard,rotten,0393735,New York Daily News,Watching a pack of dogs sniff Tim Allen's butt -- repeatedly -- is probably someone's idea of a good time at the movies. Not mine.,2006-03-10,93101407,The Shaggy Dog +Peter Debruge,rotten,0393735,Miami Herald,This is precisely the type of moviegoing experience engineered for those who still get a laugh when the Baha Men hit Who Let the Dogs Out? accompanies a doggie mayhem montage.,2006-03-10,93101407,The Shaggy Dog +Amy Biancolli,rotten,0393735,Houston Chronicle,Shaggy Dog is a subpar remake of a subpar movie that can only spawn subpar remakes.,2006-03-10,93101407,The Shaggy Dog +Tom Long,fresh,0393735,Detroit News,"The Shaggy Dog is just what it wants to be -- wholesome, slapstick, family fun with nice animal rights and 'don't mess with mother nature' messages running beneath the surface.",2006-03-10,93101407,The Shaggy Dog +Terry Lawson,rotten,0393735,Detroit Free Press,"More assembled than groomed, The Shaggy Dog should do enough tricks and act cute enough to amuse an audience that wants only to have its belly tickled.",2006-03-10,93101407,The Shaggy Dog +Robert Denerstein,rotten,0393735,Denver Rocky Mountain News,"No one's going to argue with a movie that underscores the importance of paying attention to kids, but for me at least, the sight of [Tim] Allen running around on all fours failed to unleash howls of laughter.",2006-03-10,93101407,The Shaggy Dog +Michael Wilmington,rotten,0393735,Chicago Tribune,"It's a typical hit picture remake, which is never a good sign.",2006-03-10,93101407,The Shaggy Dog +David Germain,rotten,0393735,Associated Press,The Shaggy Dog is a well-dispositioned but forgettable mutt without any new tricks.,2006-03-10,93101407,The Shaggy Dog +Louise Kennedy,fresh,0393735,Boston Globe,It's a pleasant surprise to find a movie that genuinely pitches itself at a child's level while also giving parents some real laughs.,2006-03-10,93101407,The Shaggy Dog +,rotten,0054357,TIME Magazine,"The Swiss Family Robinson, like most of Walt Disney's screen versions of the children's classics, is good Disney and bad culture.",2009-03-09,9418,Swiss Family Robinson +Howard Thompson,fresh,0054357,New York Times,"It's hard to imagine how the picture could be better as a rousing, humorous and gentle-hearted tale of family love amid primitive isolation and dangers.",2005-05-10,9418,Swiss Family Robinson +Joe Leydon,none,0120317,Variety,,2008-11-24,12308,That Darn Cat +Stephen Holden,none,0120317,New York Times,,2003-05-20,12308,That Darn Cat +Jeff Strickler,none,0120317,Minneapolis Star Tribune,,2002-11-06,12308,That Darn Cat +,rotten,0120317,Globe and Mail,,2002-04-12,12308,That Darn Cat +Jane Horwitz,none,0120317,Washington Post,,2002-01-22,12308,That Darn Cat +Kevin Thomas,none,0120317,Los Angeles Times,,2001-02-14,12308,That Darn Cat +Susan Wloszczyna,rotten,0120317,USA Today,"The script trips all over itself to be hip and flip before it takes a desperate dip into utter conventionality: dull car chases, explosions, inept slapstick.",2000-01-01,12308,That Darn Cat +Joe Baltake,none,0120317,Sacramento Bee,,2000-01-01,12308,That Darn Cat +Susan Stark,rotten,0120317,Detroit News,,2000-01-01,12308,That Darn Cat +James Berardinelli,rotten,0120317,ReelViews,,2000-01-01,12308,That Darn Cat +Peter Stack,none,0120317,San Francisco Chronicle,,2000-01-01,12308,That Darn Cat +Variety Staff,fresh,0046672,Variety,"Walt Disney's production of 20000 Leagues under the Sea is very special kind of picture, combining photographic ingenuity, imaginative story telling and fiscal daring.",2007-06-06,9435,20000 Leagues Under the Sea +Dave Kehr,fresh,0046672,Chicago Reader,Grandly entertaining.,2007-06-06,9435,20000 Leagues Under the Sea +Geoff Andrew,fresh,0046672,Time Out,"This is one of the great movie adventures, fully deserving its canonisation in Disney World.",2006-06-24,9435,20000 Leagues Under the Sea +Bosley Crowther,fresh,0046672,New York Times,"As fabulous and fantastic as anything he has ever done in cartoons is Walt Disney's 'live action' movie made from Jules Verne's 20,000 Leagues Under the Sea.",2006-03-25,9435,20000 Leagues Under the Sea +Glenn Abel,fresh,0046672,Hollywood Reporter,"The talky 20,000 Leagues probably won't thrill kids fresh from The Matrix, but they may be interested to know that the Verne film was the effects marvel of its day.",2003-06-14,9435,20000 Leagues Under the Sea +Leonard Klady,fresh,0106611,Variety,"The offbeat, fact-based saga is enlivened by the perfect balance of humor, emotion and insight and should be one of the true sleepers among fall box office releases.",2007-03-21,10237,Cool Runnings +,rotten,0106611,Time Out,Travelogue shots of happy Jamaicans dancing in the sun give way to patronising comedy.,2006-02-09,10237,Cool Runnings +Janet Maslin,fresh,0106611,New York Times,"A cute, buoyant sports fantasy, jolted along by a reggae soundtrack and playfully acted by an appealing cast.",2003-05-21,10237,Cool Runnings +James Berardinelli,rotten,0106611,ReelViews,Entirely mediocre and forgettable,2000-01-01,10237,Cool Runnings +Desson Thomson,rotten,0106611,Washington Post,The ghost of Stepin Fetchit is hovering in the tropical ether.,2000-01-01,10237,Cool Runnings +Roger Ebert,fresh,0106611,Chicago Sun-Times,"If you like underdog movies, you might like this one. Especially if you haven't seen very many.",2000-01-01,10237,Cool Runnings +Richard Harrington,fresh,0106611,Washington Post,"A wholesome, engaging, frequently hilarious, ultimately inspirational film.",2000-01-01,10237,Cool Runnings +,none,0043286,Variety,,2009-03-26,196030536,Angels in the Outfield +Bosley Crowther,none,0043286,New York Times,,2006-03-25,196030536,Angels in the Outfield +,fresh,0042332,TIME Magazine,Cinderella is beguiling proof that Walt Disney still knows his way around fairyland.,2009-11-03,9371,Cinderella +Variety Staff,fresh,0042332,Variety,"The musical numbers woven into the fantasy are generally solid, with at least two or three likely hit tunes standing out in the half-dozen songs.",2008-10-27,9371,Cinderella +Jonathan Rosenbaum,fresh,0042332,Chicago Reader,"This 1950 effort shows Disney at the tail end of his best period, when his backgrounds were still luminous with depth and detail and his incidental characters still had range and bite.",2008-09-03,9371,Cinderella +Bosley Crowther,fresh,0042332,New York Times,"Considering the army of craftsmen who work on a Disney cartoon film, it is hard to give individual credits, for the memorable qualities.",2008-05-06,9371,Cinderella +,fresh,0042332,Time Out,"As usual, everything is slightly glossy, soppy and hearty, yet not a string is left untwanged.",2006-11-02,9371,Cinderella +Roger Ebert,fresh,0042332,Chicago Sun-Times,"When those little mice bust a gut trying to drag that key up hundreds of stairs in order to free Cinderella, I don't care how many Kubrick pictures you've seen, it's still exciting.",2000-01-01,9371,Cinderella +,rotten,0038166,TIME Magazine,"That rare event, a Disney failure.",2009-11-16,9533,The Three Caballeros +Variety Staff,fresh,0038166,Variety,"It's a gay, colorful, resplendent conceit.",2008-09-07,9533,The Three Caballeros +Bosley Crowther,fresh,0038166,New York Times,"A brilliant hodgepodge of Mr. Disney's illustrative art-a literal spinwheel of image, color and music which tumbles at you with explosive surprise.",2006-03-25,9533,The Three Caballeros +Dave Kehr,fresh,0038166,Chicago Reader,"No other Disney feature achieved this level of exuberant abstraction, or displayed the same sheer pleasure in the magic of the animator's art.",2000-01-01,9533,The Three Caballeros +Dave Kehr,rotten,0057546,Chicago Reader,"There is still some life in the characterizations, though the animation is turning stiff and flat.",2009-11-03,9393,The Sword in the Stone +Variety Staff,fresh,0057546,Variety,The feature-length cartoon demonstrates anew the magic of the Disney animators and imagination in character creation.,2009-03-26,9393,The Sword in the Stone +Derek Adams,fresh,0057546,Time Out,A beautifully animated Disney feature.,2006-06-24,9393,The Sword in the Stone +Glenn Collins,fresh,0057546,New York Times,"The humor sparkles with real, knowing sophistication -- meaning for all ages -- and some of the characters on the fifth-century landscape of Old England are Disney pips.",2003-05-21,9393,The Sword in the Stone +,none,0102798,Variety,,2012-02-23,10372,Robin Hood: Prince of Thieves +Owen Gleiberman,fresh,0102798,Entertainment Weekly,,2011-09-07,10372,Robin Hood: Prince of Thieves +,none,0102798,Variety,,2009-03-26,10372,Robin Hood: Prince of Thieves +Geoff Andrew,none,0102798,Time Out,,2006-06-24,10372,Robin Hood: Prince of Thieves +Vincent Canby,none,0102798,New York Times,,2003-05-20,10372,Robin Hood: Prince of Thieves +Desson Thomson,none,0102798,Washington Post,,2000-01-01,10372,Robin Hood: Prince of Thieves +Hal Hinson,none,0102798,Washington Post,,2000-01-01,10372,Robin Hood: Prince of Thieves +Roger Ebert,rotten,0102798,Chicago Sun-Times,,2000-01-01,10372,Robin Hood: Prince of Thieves +,fresh,0102798,Entertainment Weekly,,1991-06-14,10372,Robin Hood: Prince of Thieves +,fresh,0058331,TIME Magazine,"The sets are luxuriant, the songs lilting, the scenario witty but impeccably sentimental, and the supporting cast only a pinfeather short of perfection.",2009-04-24,9909,Mary Poppins +Dave Kehr,fresh,0058331,Chicago Reader,The grace of the effects makes it some kind of classic.,2008-03-03,9909,Mary Poppins +Variety Staff,fresh,0058331,Variety,"Julie Andrews' first appearance on the screen is a signal triumph and she performs as easily as she sings, displaying a fresh type of beauty nicely adaptable to the color cameras.",2008-03-03,9909,Mary Poppins +,fresh,0058331,Time Out,"Compared to even 'sophisticated' juvenile fodder, the sheer exuberance of Disney's adaptation of PL Travers' children's classic should tickle the most jaded fancy.",2006-06-24,9909,Mary Poppins +Joe Morgenstern,none,0033563,Wall Street Journal,,2012-06-16,9384,Dumbo +,fresh,0033563,TIME Magazine,"Although Dumbo offers no startling innovations in animated cartooning, it is probably Disney's best all-round picture to date.",2009-11-03,9384,Dumbo +Dave Kehr,fresh,0033563,Chicago Reader,"It's one of Disney's most charming and perfectly proportioned films, uninflated by the cultural pretensions Uncle Walt was fond of slipping in.",2008-09-02,9384,Dumbo +Variety Staff,fresh,0033563,Variety,"There's a pleasant little story, plenty of pathos mixed with the large doses of humor, a number of appealing new animal characters, lots of good music, and the usual Disney skillfulness in technique.",2008-08-28,9384,Dumbo +Stephen Garrett,fresh,0033563,Time Out,One of the best of Disney's animated features.,2006-01-26,9384,Dumbo +Bosley Crowther,fresh,0033563,New York Times,A film you will never forget.,2003-05-20,9384,Dumbo +Variety Staff,fresh,0076538,Variety,An enchanting and humane fable.,2007-11-14,9433,Pete's Dragon +,rotten,0076538,Time Out,"The dragon itself grunts, grins and goofs around, but isn't half as appealing as its creators obviously hoped. More character and better animation would have helped.",2006-06-24,9433,Pete's Dragon +Janet Maslin,fresh,0076538,New York Times,You don't often see children's musicals as ambitious as this one any more.,2005-05-09,9433,Pete's Dragon +Dave Kehr,rotten,0066817,Chicago Reader,"It's more sophisticated than the usual run of Disney product, but it lacks the inventiveness that could endow it with genuine charm.",2009-11-03,9406,Bedknobs and Broomsticks +Jay Cocks,rotten,0066817,TIME Magazine,"The fantasy is earthbound, the score by Richard and Robert Sherman (who also wrote music and lyrics for Mary Poppins) is forgettable, the special effects lackadaisical.",2009-11-03,9406,Bedknobs and Broomsticks +Variety Staff,fresh,0066817,Variety,It is when the film [based on the book by Mary Norton] dives deeply into the realms of fantasy that it is most enjoyable.,2009-03-26,9406,Bedknobs and Broomsticks +,rotten,0066817,Time Out,"Must all films for kids be so shoddy, though? The music is appalling.",2006-01-26,9406,Bedknobs and Broomsticks +Vincent Canby,rotten,0066817,New York Times,"I suspect the movie will be something of a long, uninterrupted sit for the very children for whom it's intended, and an even longer one for those parents and guardians (both adults and teen-age) who will probably accompany them.",2005-05-09,9406,Bedknobs and Broomsticks +Roger Ebert,rotten,0066817,Chicago Sun-Times,"The Disney organization is worst when it makes ""family entertainment"" and best when it sticks to pure, simple, charming fantasy.",2004-10-23,9406,Bedknobs and Broomsticks +Dave Kehr,rotten,0043274,Chicago Reader,What's really disappointing is the undistinguished animation: the film looks and plays more like the Disney shorts than the Disney features.,2009-11-03,9769,Alice in Wonderland +Variety Staff,fresh,0043274,Variety,"Walt Disney has gone a long way towards tightening the leisurely, haphazard adventure of Alice in the wonderland of her imagination.",2008-05-20,9769,Alice in Wonderland +Bosley Crowther,fresh,0043274,New York Times,"If you are not too particular about the images of Carroll and Tenniel, if you are high on Disney whimsey and if you'll take a somewhat slow, uneven pace, you should find this picture entertaining.",2006-03-25,9769,Alice in Wonderland +Dave Kehr,fresh,0082406,Chicago Reader,"Against all odds, a tear or two is effectively jerked, and there was enough skill on display to encourage some hope for the new generation of Disney animators, who made their debut here.",2008-09-03,9426,The Fox and the Hound +,rotten,0082406,Time Out,One of the more homely Disney animated features.,2006-01-26,9426,The Fox and the Hound +Roger Ebert,fresh,0082406,Chicago Sun-Times,"The bottom line, I suppose, is: Will kids like this movie? And the answer is, sure, I think so.",2004-10-23,9426,The Fox and the Hound +Vincent Canby,fresh,0082406,New York Times,"This is a pretty, relentlessly cheery, old-fashioned sort of Disney cartoon feature, chock-full of bouncy songs of an upbeatness that is stickier than Krazy-Glue and played by animals more anthropomorphic than the humans that occasionally appear.",2004-08-30,9426,The Fox and the Hound +Joe Leydon,none,0116361,Variety,,2009-03-26,13661,Freeway +,fresh,0116361,Time Out,"There's not much edification in store, and [director] Bright cruises over some bumpy plot holes, but the teen's perspective does put a black comic spotlight on wider social hypocrisies.",2006-01-26,13661,Freeway +Lawrence Van Gelder,rotten,0116361,New York Times,Freeway glints here and there with dark humor amounting to a knowing wink that undercuts the cautionary tale at its heart and the seriousness of its graphic sociology.,2003-05-20,13661,Freeway +Robert Denerstein,none,0116361,Denver Rocky Mountain News,,2002-08-09,13661,Freeway +Liam Lacey,fresh,0116361,Globe and Mail,"Cynical, stylish and witty.",2002-07-12,13661,Freeway +Mick LaSalle,fresh,0116361,San Francisco Chronicle,Rude in the way the truth is rude -- only funnier.,2002-06-18,13661,Freeway +Kevin Thomas,rotten,0116361,Los Angeles Times,"It's too drawn-out, too talky and, at the most crucial moment, needlessly implausible, to sustain its humor and large dose of violence.",2001-02-14,13661,Freeway +Charles Taylor,fresh,0116361,Salon.com,"Alive with the luscious turn-ons of sex and danger, Freeway is the most impressive debut film I've seen all year.",2000-01-01,13661,Freeway +Joe Baltake,fresh,0116361,Sacramento Bee,"A wild, audacious drive-in attraction that takes the 'high' from 'highbrow' and the 'low' from 'lowdown' and shakes them up.",2000-01-01,13661,Freeway +James Berardinelli,fresh,0116361,ReelViews,Both grimly funny and thought-provoking.,2000-01-01,13661,Freeway +Roger Ebert,fresh,0116361,Chicago Sun-Times,"Like it or hate it (or both), you have to admire its skill, and the over-the-top virtuosity of Reese Witherspoon and Kiefer Sutherland.",2000-01-01,13661,Freeway +,rotten,0059742,TIME Magazine,"In dialogue, song and story, Music still contains too much sugar, too little spice.",2009-02-20,9583,The Sound of Music +Dave Kehr,rotten,0059742,Chicago Reader,Every audience sniffle and tear has been taken into account.,2006-12-13,9583,The Sound of Music +Geoff Andrew,fresh,0059742,Time Out,"Call me a drongo, but this really is quite watchable (yes, I've seen it more than once).",2006-02-09,9583,The Sound of Music +Bosley Crowther,rotten,0059742,New York Times,"The septet of blond and beaming youngsters who have to act like so many Shirley Temples and Freddie Bartholomews when they were young do as well as could be expected with their assortedly artificial roles, but the adults are fairly horrendous.",2003-05-20,9583,The Sound of Music +Michael Wilmington,fresh,0059742,Chicago Tribune,"The movie has almost everything: music, romance, kids, spectacular scenery, religion, sentiment, comedy high and low, and, at the end, intrigue and adventure.",2001-11-04,9583,The Sound of Music +Whitney Willaims,fresh,0059742,Variety,"A warmly pulsating, captivating drama.",2001-02-13,9583,The Sound of Music +Jay Boyar,fresh,0095016,Orlando Sentinel,"Die Hard is an action picture with a capital A. In fact, you might as well go ahead and capitalize the whole darn word.",2013-07-09,16351,Die Hard +Kevin Thomas,rotten,0095016,Los Angeles Times,"As a grand flourish of cinematic technique, it is awesome; as a human drama, it is disgusting and silly, a mindless depiction of carnage on an epic scale.",2013-07-09,16351,Die Hard +Dave Kehr,fresh,0095016,Chicago Tribune,"McTiernan, who directed last summer's Predator, composes the action cleanly and logically, making good use of Jackson DeGovia's elaborate post-modernist set-the building becomes something of a character in itself.",2013-07-09,16351,Die Hard +Richard Schickel,rotten,0095016,TIME Magazine,"In the first half of Director John McTiernan's movie, Willis wears an undershirt. In the second half he gets rid of it. And that's pretty much it for his performance.",2008-12-05,16351,Die Hard +Variety Staff,fresh,0095016,Variety,"Die Hard is as high tech, rock hard and souped up as an action film can be.",2007-11-27,16351,Die Hard +Jonathan Rosenbaum,fresh,0095016,Chicago Reader,A serviceable if rather overextended and overblown adventure thriller.,2007-11-27,16351,Die Hard +,fresh,0095016,Time Out,A hi-tech thriller with a human heart.,2006-01-26,16351,Die Hard +Caryn James,fresh,0095016,New York Times,"The scenes move with such relentless energy and smashing special-effects extravagance that Die Hard turns out to be everything action-genre fans, and Bruce Willis's relieved investors, might have hoped for.",2003-05-20,16351,Die Hard +James Berardinelli,fresh,0095016,ReelViews,"For what it is, this is the top model -- flash, bang, and witty one-liners all included.",2000-01-01,16351,Die Hard +Desson Thomson,fresh,0095016,Washington Post,"It's good, dumb fun.",2000-01-01,16351,Die Hard +Hal Hinson,rotten,0095016,Washington Post,"It gets your heart pounding, then makes you hate yourself for it.",2000-01-01,16351,Die Hard +Roger Ebert,rotten,0095016,Chicago Sun-Times,Inappropriate and wrongheaded interruptions reveal the fragile nature of the plot and prevent it from working.,2000-01-01,16351,Die Hard +,none,0104692,Variety,,2009-03-26,14427,The Lawnmower Man +Geoff Andrew,none,0104692,Time Out,,2006-06-24,14427,The Lawnmower Man +Vincent Canby,none,0104692,New York Times,,2004-08-30,14427,The Lawnmower Man +Richard Harrington,none,0104692,Washington Post,,2000-01-01,14427,The Lawnmower Man +Lisa Schwarzbaum,fresh,0118044,Entertainment Weekly,,2011-09-07,14862,Unhook the Stars +Emanuel Levy,fresh,0118044,Variety,"Nick Cassavetes' first feature celebrates the acting grandeur of his mom Gena Rowlands, casting her in the lead role as a older woman who would rather stick to her independent lifestyle than be dependent on her kids; I wish the script were better.",2006-09-01,14862,Unhook the Stars +Geoff Andrew,none,0118044,Time Out,,2006-06-24,14862,Unhook the Stars +Stephen Holden,none,0118044,New York Times,,2003-05-20,14862,Unhook the Stars +Rita Kempley,none,0118044,Washington Post,,2002-01-22,14862,Unhook the Stars +Peter Travers,none,0118044,Rolling Stone,,2001-05-12,14862,Unhook the Stars +Kevin Thomas,none,0118044,Los Angeles Times,,2001-02-14,14862,Unhook the Stars +Ruthe Stein,none,0118044,San Francisco Chronicle,,2000-01-01,14862,Unhook the Stars +Roger Ebert,fresh,0118044,Chicago Sun-Times,,2000-01-01,14862,Unhook the Stars +James Berardinelli,fresh,0118044,ReelViews,,2000-01-01,14862,Unhook the Stars +,none,0118044,Houston Chronicle,,2000-01-01,14862,Unhook the Stars +,fresh,0118044,USA Today,The movie is likable and sympathetic but probably too muted to compel much damn-the -torpedoing to the multiplex.,2000-01-01,14862,Unhook the Stars +Susan Stark,rotten,0118044,Detroit News,,2000-01-01,14862,Unhook the Stars +,fresh,0118044,Entertainment Weekly,,1996-11-01,14862,Unhook the Stars +Joe Leydon,none,0114597,Variety,,2009-03-26,770854316,Synthetic Pleasures +Laura Evenson,none,0114597,San Francisco Chronicle,,2002-06-18,770854316,Synthetic Pleasures +,none,0114597,Los Angeles Times,,2001-02-14,770854316,Synthetic Pleasures +Stephen Holden,none,0114597,New York Times,,2000-01-01,770854316,Synthetic Pleasures +James Berardinelli,rotten,0114597,ReelViews,,2000-01-01,770854316,Synthetic Pleasures +,none,0114597,Washington Post,,2000-01-01,770854316,Synthetic Pleasures +Roger Ebert,rotten,0114597,Chicago Sun-Times,,2000-01-01,770854316,Synthetic Pleasures +Michael Sragow,fresh,0028231,New Yorker,One of the weirdest movies Alfred Hitchcock ever made.,2012-09-17,20758,Secret Agent +,none,0028231,Variety,,2009-03-26,20758,Secret Agent +B.R. Crisler,none,0028231,New York Times,,2006-08-08,20758,Secret Agent +Derek Adams,none,0028231,Time Out,,2006-06-24,20758,Secret Agent +,none,0117589,Variety,,2012-02-23,13881,Secrets & Lies +Owen Gleiberman,fresh,0117589,Entertainment Weekly,,2011-09-07,13881,Secrets & Lies +Derek Elley,none,0117589,Variety,,2008-10-17,13881,Secrets & Lies +Derek Adams,none,0117589,Time Out,,2006-02-09,13881,Secrets & Lies +Janet Maslin,none,0117589,New York Times,,2003-05-20,13881,Secrets & Lies +Jeff Strickler,none,0117589,Minneapolis Star Tribune,,2002-11-06,13881,Secrets & Lies +Edward Guthmann,none,0117589,San Francisco Chronicle,,2002-06-18,13881,Secrets & Lies +Kenneth Turan,fresh,0117589,Los Angeles Times,,2001-02-14,13881,Secrets & Lies +,none,0117589,Washington Post,,2000-01-01,13881,Secrets & Lies +James Berardinelli,fresh,0117589,ReelViews,,2000-01-01,13881,Secrets & Lies +Stanley Kauffmann,none,0117589,The New Republic,,2000-01-01,13881,Secrets & Lies +Susan Stark,fresh,0117589,Detroit News,,2000-01-01,13881,Secrets & Lies +Roger Ebert,fresh,0117589,Chicago Sun-Times,,2000-01-01,13881,Secrets & Lies +Jonathan Rosenbaum,fresh,0117589,Chicago Reader,,2000-01-01,13881,Secrets & Lies +Joe Baltake,none,0117589,Sacramento Bee,,2000-01-01,13881,Secrets & Lies +Mike Clark,fresh,0117589,USA Today,"Leigh's best work yet is indisputably screen art, but it's a flesh-and-blood 'people' movie, too.",2000-01-01,13881,Secrets & Lies +,fresh,0117589,Entertainment Weekly,,1996-02-28,13881,Secrets & Lies +Owen Gleiberman,fresh,0117887,Entertainment Weekly,,2011-09-07,10233,That Thing You Do! +Jonathan Rosenbaum,fresh,0117887,Chicago Reader,"Though Hanks keeps the satirical and critical aspects of this look at show biz fairly light, there's a lot of conviction and savvy behind the steadiness of his gaze.",2007-12-17,10233,That Thing You Do! +Desson Thomson,fresh,0117887,Washington Post,"First-time writer/director Tom Hanks stays about a half-beat ahead of the cliches with rim shots of boyish enthusiasm and deft comedy. The movie's also buoyed by the title song, whose Beatles sound is infectious enough to merit a real hit.",2007-12-17,10233,That Thing You Do! +Emanuel Levy,fresh,0117887,Variety,"A sweet, likeable tale of the quick rise to fame and then demise of a small town band. Set in 1964, Hanks' film offers a sanitized, Gump-ish look at a mythical period when boys were boys and girls were girls, with no references to the sex-drug subculture",2007-01-03,10233,That Thing You Do! +Geoff Andrew,fresh,0117887,Time Out,"Sweet nothing, then, but what would you expect of a rock movie devoted to the drummer?",2006-06-24,10233,That Thing You Do! +Janet Maslin,fresh,0117887,New York Times,"Mr. Hanks's debut feature, written and directed with delightful good cheer, is rock-and-roll nostalgia presented as pure fizz.",2003-05-20,10233,That Thing You Do! +Richard Harrington,fresh,0117887,Washington Post,"Though Hanks doesn't serve up much context, he's solid with details, and the Wonders' performances ring truer than most.",2001-11-16,10233,That Thing You Do! +Peter Travers,fresh,0117887,Rolling Stone,"...a brightly entertaining blend of humor and heartbreak about four fresh-faced guys in a band from Erie, Pa.",2001-05-12,10233,That Thing You Do! +Kenneth Turan,fresh,0117887,Los Angeles Times,"Leaving audiences feeling good is very much, and very successfully, on its mind.",2001-02-14,10233,That Thing You Do! +Richard Corliss,rotten,0117887,TIME Magazine,"...a movie that, like many a pop tune, has a cute idea but a simpleminded lyric.",2000-01-01,10233,That Thing You Do! +Roger Ebert,fresh,0117887,Chicago Sun-Times,"Without hauling in a lot of deep meanings, it remembers with great warmth a time and a place.",2000-01-01,10233,That Thing You Do! +Joe Baltake,fresh,0117887,Sacramento Bee,Hanks' film is about how all good things come to an end. The important thing is to enjoy it all while it lasts.,2000-01-01,10233,That Thing You Do! +Susan Stark,fresh,0117887,Detroit News,...a larky but observant comedy.,2000-01-01,10233,That Thing You Do! +Mike Clark,fresh,0117887,USA Today,"Hanks has good ""Thing"" going.",2000-01-01,10233,That Thing You Do! +Tom Keogh,fresh,0117887,Film.com,Hanks evokes astonishingly precise memories of the time.,2000-01-01,10233,That Thing You Do! +Jeff Millar,fresh,0117887,Houston Chronicle,"In the end, the movie simply clicks. It is a class act all the way.",2000-01-01,10233,That Thing You Do! +Mick LaSalle,fresh,0117887,San Francisco Chronicle,"It's a pleasant little film with a big profile, thanks to Tom Hanks, who wrote and directed and gave himself a plum role as the band's hard-nosed manager.",2000-01-01,10233,That Thing You Do! +James Berardinelli,fresh,0117887,ReelViews,That Thing You Do! is a credible first effort.,2000-01-01,10233,That Thing You Do! +,fresh,0117887,Entertainment Weekly,,1996-10-04,10233,That Thing You Do! +Lisa Schwarzbaum,rotten,0117924,Entertainment Weekly,,2011-09-07,12801,To Gillian on Her 37th Birthday +Emanuel Levy,rotten,0117924,Variety,"A bargian basement Ghost, a hybrid of the earnest nature of an inspirational play and the sleek calculation of a Lifetime TV movie.",2006-12-31,12801,To Gillian on Her 37th Birthday +Janet Maslin,none,0117924,New York Times,,2003-05-20,12801,To Gillian on Her 37th Birthday +Mick LaSalle,none,0117924,San Francisco Chronicle,,2002-06-18,12801,To Gillian on Her 37th Birthday +,rotten,0117924,Globe and Mail,,2002-04-12,12801,To Gillian on Her 37th Birthday +Rita Kempley,none,0117924,Washington Post,,2002-01-22,12801,To Gillian on Her 37th Birthday +Jack Mathews,none,0117924,Los Angeles Times,,2001-02-14,12801,To Gillian on Her 37th Birthday +Susan Stark,rotten,0117924,Detroit News,,2000-01-01,12801,To Gillian on Her 37th Birthday +,none,0117924,Houston Chronicle,,2000-01-01,12801,To Gillian on Her 37th Birthday +Joe Baltake,none,0117924,Sacramento Bee,,2000-01-01,12801,To Gillian on Her 37th Birthday +,rotten,0117924,USA Today,"The film is cursed with clumsy staginess, exposing its roots as a play.",2000-01-01,12801,To Gillian on Her 37th Birthday +Roger Ebert,rotten,0117924,Chicago Sun-Times,,2000-01-01,12801,To Gillian on Her 37th Birthday +James Berardinelli,rotten,0117924,ReelViews,,2000-01-01,12801,To Gillian on Her 37th Birthday +,rotten,0117924,Entertainment Weekly,,1996-10-18,12801,To Gillian on Her 37th Birthday +Owen Gleiberman,fresh,0117791,Entertainment Weekly,,2011-09-07,196029205,Surviving Picasso +Geoff Andrew,none,0117791,Time Out,,2006-02-09,196029205,Surviving Picasso +Daniel M. Kimmel,fresh,0117791,Variety,...a stunning debut by Natascha McElhone...,2005-04-29,196029205,Surviving Picasso +Jeff Strickler,none,0117791,Minneapolis Star Tribune,,2002-11-06,196029205,Surviving Picasso +,rotten,0117791,Globe and Mail,,2002-04-12,196029205,Surviving Picasso +Rita Kempley,none,0117791,Washington Post,,2002-01-22,196029205,Surviving Picasso +Peter Travers,none,0117791,Rolling Stone,,2001-05-12,196029205,Surviving Picasso +Kenneth Turan,none,0117791,Los Angeles Times,,2001-02-14,196029205,Surviving Picasso +Susan Stark,rotten,0117791,Detroit News,,2000-01-01,196029205,Surviving Picasso +Roger Ebert,rotten,0117791,Chicago Sun-Times,,2000-01-01,196029205,Surviving Picasso +,none,0117791,Houston Chronicle,,2000-01-01,196029205,Surviving Picasso +Stanley Kauffmann,none,0117791,The New Republic,,2000-01-01,196029205,Surviving Picasso +Joe Baltake,none,0117791,Sacramento Bee,,2000-01-01,196029205,Surviving Picasso +Janet Maslin,none,0117791,New York Times,,2000-01-01,196029205,Surviving Picasso +Edward Guthmann,none,0117791,San Francisco Chronicle,,2000-01-01,196029205,Surviving Picasso +James Berardinelli,rotten,0117791,ReelViews,,2000-01-01,196029205,Surviving Picasso +,fresh,0117791,Entertainment Weekly,,1996-09-04,196029205,Surviving Picasso +Leonard Klady,none,0116928,Variety,,2009-03-26,14742,Love Is All There Is +,none,0116928,Chicago Reader,,2004-01-10,14742,Love Is All There Is +Lawrence Van Gelder,none,0116928,New York Times,,2003-05-20,14742,Love Is All There Is +Kevin Thomas,none,0116928,Los Angeles Times,,2001-02-14,14742,Love Is All There Is +Lisa Schwarzbaum,fresh,0115640,Entertainment Weekly,,2011-09-07,13369,Beautiful Thing +Derek Elley,none,0115640,Variety,,2008-07-25,13369,Beautiful Thing +,none,0115640,Time Out,,2006-01-26,13369,Beautiful Thing +Stephen Holden,none,0115640,New York Times,,2003-05-20,13369,Beautiful Thing +Kevin Thomas,fresh,0115640,Los Angeles Times,"Because the film is so effective for its first two-thirds and because it has its heart in the right place throughout, audiences may be willing to forgive its final third.",2001-02-14,13369,Beautiful Thing +Jeff Millar,rotten,0115640,Houston Chronicle,"If Beautiful Thing were any more sensitive, it would faint.",2000-01-01,13369,Beautiful Thing +Robert Horton,fresh,0115640,Film.com,"Reminds me of some of Jonathan Demme's early movies, where ordinary people are celebrated for their eccentricities but not condescended to.",2000-01-01,13369,Beautiful Thing +James Berardinelli,fresh,0115640,ReelViews,"Represents a keen, personal look at the difficulties of growing up gay in a heterosexual world.",2000-01-01,13369,Beautiful Thing +John Hartl,fresh,0115640,Film.com,"Beautiful Thing isn't particularly deep, nor is it a great piece of filmmaking, but it's so sweet-natured and well-acted that it's hard to resist.",2000-01-01,13369,Beautiful Thing +Roger Ebert,fresh,0115640,Chicago Sun-Times,The boys' lives contain few surprises ... but from the other characters there is one astonishment after another.,2000-01-01,13369,Beautiful Thing +Peter Stack,fresh,0115640,San Francisco Chronicle,"In portraying romance, the film transcends its homosexual themes, while at the same time celebrating them.",2000-01-01,13369,Beautiful Thing +,fresh,0115640,Entertainment Weekly,,1996-10-11,13369,Beautiful Thing +Jonathan Rosenbaum,rotten,0116908,Chicago Reader,"Frankly, if I had to see either Harlin-Davis movie again, I'd opt for the klutzy unpleasantness of Cutthroat Island over the efficient if equally stupid unpleasantness of this 1996 release.",2011-10-25,13322,The Long Kiss Goodnight +David Ansen,fresh,0116908,Newsweek,The Long Kiss Goodnight is the fall's best summer movie.,2011-02-16,13322,The Long Kiss Goodnight +Richard Corliss,fresh,0116908,TIME Magazine,"Like the heroine, the movie has two personalities that smartly coexist.",2011-02-16,13322,The Long Kiss Goodnight +Desson Thomson,rotten,0116908,Washington Post,"There's an excessive amount of excess -- a mind-numbing plurality of firearm battles, vehicular explosions and brutally frank sexual talk.",2011-02-16,13322,The Long Kiss Goodnight +Todd McCarthy,fresh,0116908,Variety,"""The Long Kiss Goodnight"" has a jokey good time with its outlandish pyrotechnics and offbeat character interplay.",2009-03-27,13322,The Long Kiss Goodnight +Geoff Andrew,rotten,0116908,Time Out,"The only saving graces are Davis's stripped-down, mean-as-a-wildcat portrayal of the Uzi-toting Charly, and Jackson's engagingly ineffectual turn.",2006-06-24,13322,The Long Kiss Goodnight +Janet Maslin,fresh,0116908,New York Times,"Mr. Black's screenplay is mean-spirited, but it earns its keep with sharp, sarcastic dialogue and ingenious ways of setting up this story.",2004-08-30,13322,The Long Kiss Goodnight +Peter Stack,rotten,0116908,San Francisco Chronicle,"With square-jawed grimaces and big guns, Geena Davis could be a convincing two-fisted bullet-spraying action hero -- if only she had a convincing movie in which to be one.",2002-06-18,13322,The Long Kiss Goodnight +Peter Travers,fresh,0116908,Rolling Stone,Here's the supersexy and action-charged Hollywood take on France's La Femme Nikita that Bridget Fonda couldn't pull off in her Girl Scoutish Point of No Return.,2001-05-12,13322,The Long Kiss Goodnight +Rita Kempley,rotten,0116908,Washington Post,[A] quip-filled but mean-spirited slugfest.,2000-01-01,13322,The Long Kiss Goodnight +James Berardinelli,rotten,0116908,ReelViews,"When the smoke finally clears for the final credits, we may have had a tolerably good time, but there's no lingering satisfaction.",2000-01-01,13322,The Long Kiss Goodnight +Susan Stark,rotten,0116908,Detroit News,,2000-01-01,13322,The Long Kiss Goodnight +Mike Clark,rotten,0116908,USA Today,"Is somebody kidding here? Given the movie's dialogue, the answer is probably yes, but jocular one-liners really grate on the ear amid wall-to-wall nastiness.",2000-01-01,13322,The Long Kiss Goodnight +Roger Ebert,rotten,0116908,Chicago Sun-Times,"I liked it in the same way I might like an arcade game: It holds your attention until you run out of quarters, and then you wander away without giving it another thought.",2000-01-01,13322,The Long Kiss Goodnight +Ken Tucker,rotten,0116908,Entertainment Weekly,Harlin and Davis don't seem to realize that the results aren't refreshingly revisionist - they're eye-avertingly embarrassing.,1996-10-11,13322,The Long Kiss Goodnight +Lisa Schwarzbaum,rotten,0116409,Entertainment Weekly,,2011-09-07,13070,The Ghost and the Darkness +Leonard Klady,none,0116409,Variety,,2009-03-17,13070,The Ghost and the Darkness +,none,0116409,Time Out,,2006-02-09,13070,The Ghost and the Darkness +Janet Maslin,none,0116409,New York Times,,2004-08-30,13070,The Ghost and the Darkness +Jeff Strickler,none,0116409,Minneapolis Star Tribune,,2002-11-06,13070,The Ghost and the Darkness +,none,0116409,Washington Post,,2002-07-02,13070,The Ghost and the Darkness +Susan Stark,rotten,0116409,Detroit News,,2002-07-02,13070,The Ghost and the Darkness +Mick LaSalle,rotten,0116409,San Francisco Chronicle,"The picture is too lightweight, too posturing and too self-important to go in an introspective direction.",2002-06-18,13070,The Ghost and the Darkness +Liam Lacey,rotten,0116409,Globe and Mail,Ranges in quality from adolescent boys' adventure stories to Heart of Darkness.,2002-04-12,13070,The Ghost and the Darkness +Peter Travers,fresh,0116409,Rolling Stone,"When the movie sticks to fact, the result is a hypnotic spectacle.",2001-05-12,13070,The Ghost and the Darkness +Kenneth Turan,rotten,0116409,Los Angeles Times,Can't transcend a too-familiar script.,2001-02-14,13070,The Ghost and the Darkness +James Berardinelli,rotten,0116409,ReelViews,"The camerawork is frenetic and confusing, and the big confrontations are as likely to provoke unintentional laughter as edge-of-the-seat excitement.",2000-01-01,13070,The Ghost and the Darkness +,rotten,0116409,USA Today,"Despite mumbo jumbo about the lions being supernatural demons unleashed by the imperialistic white man, it's nothing more than Jaws with claws.",2000-01-01,13070,The Ghost and the Darkness +Joe Baltake,fresh,0116409,Sacramento Bee,Rousing entertainment.,2000-01-01,13070,The Ghost and the Darkness +Roger Ebert,rotten,0116409,Chicago Sun-Times,It lacks even the usual charm of being so bad it's funny. It's just bad.,2000-01-01,13070,The Ghost and the Darkness +,rotten,0116409,Entertainment Weekly,,1996-10-11,13070,The Ghost and the Darkness +,none,0116913,Variety,,2012-02-23,12733,Looking for Richard +Lisa Schwarzbaum,fresh,0116913,Entertainment Weekly,,2011-09-07,12733,Looking for Richard +Jonathan Rosenbaum,rotten,0116913,Chicago Reader,"This runs 118 minutes, but it felt like six or seven hours.",2008-07-03,12733,Looking for Richard +Godfrey Cheshire,fresh,0116913,Variety,High-spirited and infectiously energetic.,2008-06-11,12733,Looking for Richard +Geoff Andrew,fresh,0116913,Time Out,"Pacino's first film as writer/director is a marvellously intelligent, witty and imaginative exploration of the problems faced by anyone wishing to act in Shakespeare or translate the plays to film.",2006-02-09,12733,Looking for Richard +Suzanne O'Connor,fresh,0116913,New York Times,"There are actors' rehearsals and performances, and Mr. Pacino interviews experts, conducts man-on-the-street polls and stages collegial arguments with his cronies. Thus emerges the intricate story of Richard's ambition.",2003-05-21,12733,Looking for Richard +Mick LaSalle,rotten,0116913,San Francisco Chronicle,The last half-hour drags.,2002-06-18,12733,Looking for Richard +Lloyd Rose,fresh,0116913,Washington Post,"An astute, funny, loving and occasionally even beautiful documentary about actors preparing to do a play.",2002-01-22,12733,Looking for Richard +Peter Travers,fresh,0116913,Rolling Stone,Pacino makes looking for Richard a great adventure and outrageous fun.,2001-05-12,12733,Looking for Richard +Kenneth Turan,rotten,0116913,Los Angeles Times,"While there's no harm in attempting to make Shakespeare more accessible, it's hard to imagine this film exciting anyone except Pacino's fans and those who are fatally charmed by celebrity actors.",2001-02-14,12733,Looking for Richard +Roger Ebert,fresh,0116913,Chicago Sun-Times,"Having chosen to be actors, they know they cannot respect their craft without embracing its greatest writer. Having chosen to be readers and viewers, we cannot do less, and this film is a delightful inspiration.",2000-01-01,12733,Looking for Richard +Mike Clark,rotten,0116913,USA Today,It's ironic that the movie is done in by what you'd expect to be the high point: the performance segments that dominate the final third.,2000-01-01,12733,Looking for Richard +Susan Stark,fresh,0116913,Detroit News,,2000-01-01,12733,Looking for Richard +James Berardinelli,fresh,0116913,ReelViews,"Looking for Richard is unlike any previous adaptation of the Bard's work, and that's reason enough to give it a shot.",2000-01-01,12733,Looking for Richard +,fresh,0116913,Entertainment Weekly,,1996-10-11,12733,Looking for Richard +Owen Gleiberman,fresh,0117958,Entertainment Weekly,,2011-09-07,16479,Trees Lounge +Todd McCarthy,none,0117958,Variety,,2009-03-26,16479,Trees Lounge +Geoff Andrew,none,0117958,Time Out,,2006-02-09,16479,Trees Lounge +Stephen Holden,none,0117958,New York Times,,2003-05-20,16479,Trees Lounge +Desson Thomson,none,0117958,Washington Post,,2002-01-22,16479,Trees Lounge +Jack Mathews,none,0117958,Los Angeles Times,,2001-02-14,16479,Trees Lounge +James Berardinelli,rotten,0117958,ReelViews,,2000-01-01,16479,Trees Lounge +Susan Stark,fresh,0117958,Detroit News,,2000-01-01,16479,Trees Lounge +Mick LaSalle,none,0117958,San Francisco Chronicle,,2000-01-01,16479,Trees Lounge +Joe Baltake,none,0117958,Sacramento Bee,,2000-01-01,16479,Trees Lounge +Roger Ebert,fresh,0117958,Chicago Sun-Times,,2000-01-01,16479,Trees Lounge +,fresh,0117958,Entertainment Weekly,,1996-10-11,16479,Trees Lounge +Todd McCarthy,none,0117202,Variety,,2009-03-26,14267,Normal Life +,none,0117202,Time Out,,2006-01-26,14267,Normal Life +Stephen Holden,none,0117202,New York Times,,2003-05-20,14267,Normal Life +Peter Travers,none,0117202,Rolling Stone,,2001-05-12,14267,Normal Life +James Berardinelli,fresh,0117202,ReelViews,,2000-01-01,14267,Normal Life +Edward Guthmann,none,0117202,San Francisco Chronicle,,2000-01-01,14267,Normal Life +Roger Ebert,fresh,0117202,Chicago Sun-Times,,2000-01-01,14267,Normal Life +Lisa Schwarzbaum,fresh,0116404,Entertainment Weekly,,2011-09-07,14585,Get on the Bus +,none,0116404,Houston Chronicle,,2008-10-18,14585,Get on the Bus +Susan Stark,rotten,0116404,Detroit News,,2008-10-18,14585,Get on the Bus +,none,0116404,Washington Post,,2008-10-18,14585,Get on the Bus +Todd McCarthy,fresh,0116404,Variety,A vital regeneration of a filmmaker's talent as well as a bracing and often very funny dramatization of urgent sociopolitical themes...,2008-09-24,14585,Get on the Bus +Geoff Andrew,rotten,0116404,Time Out,"Though Lee's deft expertise keeps things pacy and (mostly) plausible, the material can't avoid a certain predictability and, in the end, a preachy sentimentality.",2006-02-09,14585,Get on the Bus +Janet Maslin,fresh,0116404,New York Times,"While the film assembles a full array of black male stereotypes and conines them to what is essentially a talky one-set play, Mr. Lee stylistically jump-starts this small, earnest film in every way he can.",2003-05-20,14585,Get on the Bus +Mick LaSalle,fresh,0116404,San Francisco Chronicle,"It's two hours of men sitting on a bus talking, but the talk is alive. Lee keeps the scenes short, so that nothing ever resolves completely.",2002-06-18,14585,Get on the Bus +,fresh,0116404,Globe and Mail,,2002-04-12,14585,Get on the Bus +Kenneth Turan,fresh,0116404,Los Angeles Times,"It's successful at holding our interest -- at making us care, and believe.",2001-02-14,14585,Get on the Bus +Roger Ebert,fresh,0116404,Chicago Sun-Times,"If the movie's central sadness is that we identify with our own group and suspect outsiders, the movie's message is that we have been given brains to learn to empathize.",2000-01-01,14585,Get on the Bus +James Berardinelli,fresh,0116404,ReelViews,"An involving, intimate portrait of a group of men gathered for a common purpose.",2000-01-01,14585,Get on the Bus +Mike Clark,fresh,0116404,USA Today,"If the movie finally doesn't know when to quit, its flaws are those of enthusiasm and heart.",2000-01-01,14585,Get on the Bus +,fresh,0116404,Entertainment Weekly,,1996-10-16,14585,Get on the Bus +Lisa Schwarzbaum,rotten,0120107,Entertainment Weekly,,2011-09-07,144477409,Shadow Conspiracy +Lisa Alspector,rotten,0120107,Chicago Reader,"Bland, interminable chase scenes take up so much of the story -- the hackneyed plot doesn't need much exposition -- that the sheer repetitiveness begins to amaze you.",2009-07-28,144477409,Shadow Conspiracy +Charlotte O'Sullivan,rotten,0120107,Time Out,"Sadly, Sheen doesn't even look profound. Like a zombie who's spent too much time in the gym, he blunders heavily from one stunt to the next, his pursed lips conveying nothing more than pique.",2006-06-24,144477409,Shadow Conspiracy +Daniel M. Kimmel,rotten,0120107,Variety,The climactic assassination attempt... is so ridiculous there's only one real danger: that the president (and the audience) will laugh to death.,2005-04-29,144477409,Shadow Conspiracy +Stephen Holden,rotten,0120107,New York Times,The film is so contemptuous of its audience it doesn't even bother to present a surface resemblance to reality.,2003-05-20,144477409,Shadow Conspiracy +Desson Thomson,rotten,0120107,Washington Post,"When Charlie Sheen and Donald Sutherland appear in any movie, you should be wary. Their contracts seem to demand nothing but corny formula.",2002-01-22,144477409,Shadow Conspiracy +Roger Ebert,rotten,0120107,Chicago Sun-Times,"There isn't a brain in its empty little head, or in its assembly-line story, which is about how Charlie Sheen pauses occasionally between ludicrous action scenes, some of them ripped off from better films.",2000-01-01,144477409,Shadow Conspiracy +Mick LaSalle,rotten,0120107,San Francisco Chronicle,"The plot, as it eventually unfolds, is so absurd and leads to such a silly climax that much of the audience's good will is burned away.",2000-01-01,144477409,Shadow Conspiracy +Susan Stark,rotten,0120107,Detroit News,,2000-01-01,144477409,Shadow Conspiracy +James Berardinelli,rotten,0120107,ReelViews,"Here, we have stereotyped villains involved in a generic, high- level conspiracy, and a couple of equally-bland heroes on the run.",2000-01-01,144477409,Shadow Conspiracy +Mike Clark,rotten,0120107,USA Today,"Some political junkies have an inordinate yen for movies that hop-skip around familiar Washington, D.C., locales and inside the bowels of a sinister White House. Members of this club may get some ephemeral amusement out of Shadow Conspiracy.",2000-01-01,144477409,Shadow Conspiracy +Lisa Schwarzbaum,fresh,0116722,Entertainment Weekly,"It's worth seeing Jude, a stark adaptation of Thomas Hardy's Jude the Obscure, just for the extraordinary performance of Christopher Eccleston as Jude Fawley.",2011-09-07,14712,Jude +Derek Elley,fresh,0116722,Variety,"Young English actress Kate Winslet adds luster and energy to Jude, a bold and generally successful attempt to adapt Thomas Hardy's final novel, Jude the Obscure, to the bigscreen.",2008-06-10,14712,Jude +Desson Thomson,rotten,0116722,Washington Post,"Without the benefit of Hardy's prose, the point of the movie is lost in the grim, grayish ether.",2006-08-19,14712,Jude +Geoff Andrew,rotten,0116722,Time Out,"Ambitious, sensitive, but ultimately uninvolving.",2006-06-24,14712,Jude +Lawrence Van Gelder,fresh,0116722,New York Times,Jude remains a handsome if gravely flawed film.,2003-05-20,14712,Jude +Kevin Thomas,fresh,0116722,Los Angeles Times,"The dark, steel engraving look that cinematographer Eduardo Serra has given Jude endows it with a somber magnificence.",2001-02-14,14712,Jude +Peter Stack,fresh,0116722,San Francisco Chronicle,"Jude is knockout Hardy, filled with stormy visual poetry and accompanied by a gorgeous yet simple score.",2000-01-01,14712,Jude +,rotten,0116722,USA Today,The problem here isn't grimness but a failure to make grimness wrench the heart.,2000-01-01,14712,Jude +Susan Stark,fresh,0116722,Detroit News,,2000-01-01,14712,Jude +Roger Ebert,fresh,0116722,Chicago Sun-Times,"Winterbottom is angry, clear-headed, and with a sure visual sense.",2000-01-01,14712,Jude +James Berardinelli,fresh,0116722,ReelViews,This is a film of tremendous scope and emotional depth that uncovers the soul of a novel and brings it to life on the screen.,2000-01-01,14712,Jude +Lloyd Rose,rotten,0116722,Washington Post,"Watching the wan Christopher Eccleston as Jude and Kate Winslet as his cousin and lover Sue Bridehead, an audience might well wonder what all the fuss was about.",2000-01-01,14712,Jude +Brendan Kelly,none,0116242,Variety,,2012-02-23,151436302,Everyone Says I Love You +Joe Morgenstern,none,0116242,Wall Street Journal,,2010-09-25,151436302,Everyone Says I Love You +,fresh,0116242,Time Out,"A charming, sweet-natured divertissement.",2006-01-26,151436302,Everyone Says I Love You +Ruthe Stein,rotten,0116242,San Francisco Chronicle,Listening to the others sounding like a spouse in the shower makes one wonder: How bad could Barrymore be that she had to be dubbed?,2002-06-18,151436302,Everyone Says I Love You +,rotten,0116242,Globe and Mail,,2002-04-12,151436302,Everyone Says I Love You +Kenneth Turan,rotten,0116242,Los Angeles Times,"Much of the film's story is half-hearted, its jokes hit or miss, and what starts out feeling genial ends up unavoidably thin.",2001-02-14,151436302,Everyone Says I Love You +Mike Clark,fresh,0116242,USA Today,"If it doesn't quite mandate a viewer song burst, this sweet conceit ought to glue a grin on your face until its crucial next-to-last scene hits a clunker note.",2000-01-01,151436302,Everyone Says I Love You +Charles Taylor,rotten,0116242,Salon.com,"For a picture that's almost a complete misfire, it's painless to sit through.",2000-01-01,151436302,Everyone Says I Love You +Janet Maslin,fresh,0116242,New York Times,"It's a world of both serene privilege and surreal possibility, and it offers a delightful and witty compendium of the film maker's favorite things.",2000-01-01,151436302,Everyone Says I Love You +Roger Ebert,fresh,0116242,Chicago Sun-Times,It would take a heart of stone to resist this movie.,2000-01-01,151436302,Everyone Says I Love You +James Berardinelli,fresh,0116242,ReelViews,It's difficult not to be impressed by what Allen has achieved with this film: successfully reviving the musical comedy in such a thoroughly delightful fashion.,2000-01-01,151436302,Everyone Says I Love You +Lisa Schwarzbaum,fresh,0116242,Entertainment Weekly,"Styled as a romantic confection, Everyone Says I Love You is, in fact, steeped in an unacknowledged middle-aged sadness that leaks from the writer-director and saps the energies of his cast.",1996-12-06,151436302,Everyone Says I Love You +Alex Patterson,none,0115600,Variety,,2009-03-26,19948,Azúcar amarga +Stephen Holden,none,0115600,New York Times,,2003-05-20,19948,Azúcar amarga +Kevin Thomas,none,0115600,Los Angeles Times,,2001-02-14,19948,Azúcar amarga +Edward Guthmann,none,0115600,San Francisco Chronicle,,2000-01-01,19948,Azúcar amarga +Owen Gleiberman,fresh,0117802,Entertainment Weekly,,2011-09-07,14550,Swingers +Richard Corliss,fresh,0117802,TIME Magazine,"Four guys hang out, kid one another, get into scuffles and flash their gonadal searchlight for available women. Yikes, haven't there been enough variations on the multiple-buddy movie? Actually, no.",2009-10-04,14550,Swingers +Todd McCarthy,fresh,0117802,Variety,A winningly confident snapshot of the nightlives of a bunch of young showbiz wannabes in a very upto-the-minute Hollywood.,2008-06-16,14550,Swingers +Geoff Andrew,fresh,0117802,Time Out,"Ninety minutes spent learning how not to pick up girls. This is what the movies were made for, isn't it?",2006-06-24,14550,Swingers +Janet Maslin,fresh,0117802,New York Times,Mr. Favreau wrote this screenplay with his real friends in mind. And the cast's camaraderie is appealingly clear.,2003-05-20,14550,Swingers +Kenneth Turan,fresh,0117802,Los Angeles Times,"A guy film that gives you something to latch onto, that makes male bonding both believable and appealing.",2001-02-14,14550,Swingers +Mick LaSalle,fresh,0117802,San Francisco Chronicle,"It's no masterpiece, but it's real.",2000-01-01,14550,Swingers +Roger Ebert,fresh,0117802,Chicago Sun-Times,"The movie is sweet, funny, observant and goofy with a small ""g,"" which means you don't get paid, but at least you don't have to wear the suit.",2000-01-01,14550,Swingers +Andy Seiler,fresh,0117802,USA Today,"Swingers is uneven, amateurish and borderline misogynistic. But it's also very funny, and it never loses its cool.",2000-01-01,14550,Swingers +James Berardinelli,rotten,0117802,ReelViews,"This kind of story -- a staple of low-budget features -- is getting awfully stale, and the injection of humor can't completely invigorate the proceedings.",2000-01-01,14550,Swingers +Susan Stark,rotten,0117802,Detroit News,,2000-01-01,14550,Swingers +,fresh,0117802,Entertainment Weekly,,1996-10-18,14550,Swingers +Owen Gleiberman,rotten,0117665,Entertainment Weekly,,2011-09-07,13511,Sleepers +Richard Schickel,fresh,0117665,TIME Magazine,"It is all legally preposterous. But Levinson is a slick craftsman, his actors are insinuatingly real, and cinematographer Michael Ballhaus casts a disarmingly believable light on these proceedings.",2009-08-14,13511,Sleepers +David Stratton,fresh,0117665,Variety,"If audiences aren't bothered by this disturbing subtext, there's a lot to enjoy in this impeccably structured, handsomely produced saga.",2008-06-24,13511,Sleepers +Derek Adams,rotten,0117665,Time Out,Levinson has done nothing to sift the half-truths from the melodrama...,2006-02-09,13511,Sleepers +Peter Stack,fresh,0117665,San Francisco Chronicle,"At times the images are agonizing to behold, men in their most desperate, hateful depths preying on children. The film, exceptional on many counts, ultimately is sad in a hopeless, haunting way.",2002-06-18,13511,Sleepers +Peter Travers,fresh,0117665,Rolling Stone,Idealized? You bet. That's why the loss of this world must be avenged with the same broad strokes that you'd expect from the Count of Monte Cristo.,2001-05-12,13511,Sleepers +Kenneth Turan,fresh,0117665,Los Angeles Times,"In craft terms alone, Sleepers is considerably better than average filmmaking, but it's difficult to take this film as seriously as it takes itself.",2001-02-14,13511,Sleepers +Roger Ebert,fresh,0117665,Chicago Sun-Times,"As entertainment, the movie functions successfully. But I don't believe the story is true -- not true to the facts, and not true to the morality it pretends to be about.",2000-01-01,13511,Sleepers +James Berardinelli,fresh,0117665,ReelViews,"Despite protests from the Catholic Church (which whines about any movie that portrays priests as anything less-than-pure), Sleepers, which represents two and one-half hours of gripping entertainment, is well worth the price of admission.",2000-01-01,13511,Sleepers +,fresh,0117665,USA Today,Engrosses if it doesn't fully convince.,2000-01-01,13511,Sleepers +,rotten,0117665,Entertainment Weekly,,1996-10-18,13511,Sleepers +Lisa Schwarzbaum,rotten,0117781,Entertainment Weekly,,2011-09-07,770670986,The Sunchaser +Todd McCarthy,none,0117781,Variety,,2009-03-26,770670986,The Sunchaser +Geoff Andrew,none,0117781,Time Out,,2006-06-24,770670986,The Sunchaser +Stephen Holden,none,0117781,New York Times,,2004-08-30,770670986,The Sunchaser +,none,0117781,Los Angeles Times,,2001-02-14,770670986,The Sunchaser +,rotten,0117781,Entertainment Weekly,,1996-05-29,770670986,The Sunchaser +Desmond Ryan,fresh,0097576,Philadelphia Inquirer,"Not surprisingly, Ford has most of the action here. But Connery -- in what is often a test of a true actor -- shows how much you can do with an essentially passive part.",2013-07-31,23531,Indiana Jones and the Last Crusade +Dave Kehr,fresh,0097576,Chicago Tribune,"Fans of Steven Spielberg and George Lucas' Indiana Jones series may rest assured that the latest installment, Indiana Jones and the Last Crusade, is fully up to, as well as virtually indistinguishable from, its predecessors.",2013-07-31,23531,Indiana Jones and the Last Crusade +Jay Boyar,fresh,0097576,Orlando Sentinel,"Though Last Crusade lacks the novelty of Raiders (and, by the way, the flat-out breathless pacing of Temple of Doom), it's an entertaining capper to the trilogy.",2013-07-31,23531,Indiana Jones and the Last Crusade +Gene Siskel,rotten,0097576,Chicago Tribune,"This is not so much a bad film as a machine-like one lacking the same energy as the original, which it most resembles.",2013-07-31,23531,Indiana Jones and the Last Crusade +Sheila Benson,rotten,0097576,Los Angeles Times,"Even if he's considerably more battered than his nearest competitor, Indiana quits at the top of the heap. It's just that the heap isn't what it was eight years ago. It's been almost flattered to death.",2013-07-31,23531,Indiana Jones and the Last Crusade +James Berardinelli,fresh,0097576,ReelViews,Captures some of the sense of fun that infused the first movie while using the addition of Sean Connery to up the comedic ante and provide a father/son dynamic.,2008-06-10,23531,Indiana Jones and the Last Crusade +Joseph McBride,fresh,0097576,Variety,What was conceived as a child's dream of a Saturday matinee serial has evolved into a moving excursion into religious myth.,2008-05-05,23531,Indiana Jones and the Last Crusade +Jonathan Rosenbaum,rotten,0097576,Chicago Reader,"The fast pace and force-fed wisecracks are as seamless as ever, but rarely has audience laughter sounded as hollow.",2008-05-05,23531,Indiana Jones and the Last Crusade +Geoff Andrew,fresh,0097576,Time Out,"Jeffrey Boam's script dabbles with themes of neglect and reconciliation, but there's nothing ponderous about the duo's near death scrapes and light-hearted tussels over the same blonde Fraulein.",2006-06-24,23531,Indiana Jones and the Last Crusade +Caryn James,fresh,0097576,New York Times,"Of the three Jones films, The Last Crusade may well become the sentimental favorite, the Indiana to end them all.",2003-05-20,23531,Indiana Jones and the Last Crusade +Desson Thomson,fresh,0097576,Washington Post,You want Adventure? Thrills? How about Rats?,2000-01-01,23531,Indiana Jones and the Last Crusade +Hal Hinson,rotten,0097576,Washington Post,"The final section, in which Indy must claim the Grail and save his father's life, is imbued with a turgid, pop-mystical tone.",2000-01-01,23531,Indiana Jones and the Last Crusade +Roger Ebert,fresh,0097576,Chicago Sun-Times,"As I watched it, I felt a real delight, because recent Hollywood escapist movies have become too jaded and cynical, and they have lost the feeling that you can stumble over astounding adventures just by going on a hike with your Scout troop.",2000-01-01,23531,Indiana Jones and the Last Crusade +Amy Simmons,rotten,0358135,Time Out,"Offers attractive, inoffensive characters and a smattering of broad laughs, but it fails to use its potential to explore weightier themes such as John's mid-life crisis.",2006-06-24,10228,Shall We Dance +Rex Reed,rotten,0358135,New York Observer,"Under the clunky direction of Peter Chelsom, while forced to mouth inane dialogue by Audrey Wells ... a swell bunch of troupers get mangled in a monsoon of cliches.",2004-10-21,10228,Shall We Dance +Charles Taylor,rotten,0358135,Salon.com,"There are so many appealing performers in Shall We Dance? that it's a crime the director, Peter Chelsom, and the screenwriter, Audrey Wells, haven't given them more to do.",2004-10-19,10228,Shall We Dance +Jen Chaney,rotten,0358135,Washington Post,Occasionally charming but ultimately forgettable bit of fox-trot fluff.,2004-10-15,10228,Shall We Dance +Stephen Hunter,fresh,0358135,Washington Post,"Takes a small, exquisite Japanese movie and turns it into a big, stupid American movie. Still, it must be said that as glossy and overproduced as the thing is, it's a good Big Stupid American movie.",2004-10-15,10228,Shall We Dance +Claudia Puig,rotten,0358135,USA Today,"Turns a sweet, lilting story into a clunky, cliched and tedious movie sitcom.",2004-10-15,10228,Shall We Dance +Peter Howell,fresh,0358135,Toronto Star,"The original remains the standard, and it's a far deeper work, but this paint-by-numbers project manages to get by on its good humour and undeniably entertaining ensemble cast.",2004-10-15,10228,Shall We Dance +Brangien Davis,rotten,0358135,Seattle Times,This mildly entertaining bauble will disappear from your memory even before you've dislodged the last popcorn husks from your back teeth.,2004-10-15,10228,Shall We Dance +Ruthe Stein,rotten,0358135,San Francisco Chronicle,"Where the original soared, the new version hugs the ground. It's like the difference between Fred Astaire's dancing and Richard Gere's.",2004-10-15,10228,Shall We Dance +Peter Travers,rotten,0358135,Rolling Stone,"Miscast, misguided and woefully misbegotten, this clumsy American remake of the deftly delicate 1996 sleeper hit from Japan is too blah to bludgeon.",2004-10-15,10228,Shall We Dance +Joe Baltake,fresh,0358135,Sacramento Bee,"A treat on two counts. First and foremost, it is a wildly entertaining and companionable film. Second, it is blessedly unpretentious.",2004-10-15,10228,Shall We Dance +Jay Boyar,fresh,0358135,Orlando Sentinel,"The central idea -- that losing yourself in a small, private world can help you to better engage the larger world -- isn't lost in translation.",2004-10-15,10228,Shall We Dance +Stephen Whitty,fresh,0358135,Newark Star-Ledger,"A pleasant, uncomplicated, adult night out -- an event nearly as rare as a new romantic Hollywood musical.",2004-10-15,10228,Shall We Dance +Lou Lumenick,rotten,0358135,New York Post,"There isn't even any exciting dancing here, and what hoofing there is has been heavily edited, usually with the dancers' feet cropped off.",2004-10-15,10228,Shall We Dance +Jack Mathews,rotten,0358135,New York Daily News,A comedy with two left feet.,2004-10-15,10228,Shall We Dance +Kevin Thomas,fresh,0358135,Los Angeles Times,"A sleek Hollywood crowd-pleaser, more movie than art film, but its makers have wisely stuck not only to the spirit but often even to the letter of the original.",2004-10-15,10228,Shall We Dance +Eric Harrison,fresh,0358135,Houston Chronicle,"A funny, well-acted adult tale about the difficulty of holding onto happiness.",2004-10-15,10228,Shall We Dance +Rick Groen,rotten,0358135,Globe and Mail,"Sayonara sushi, hello turkey.",2004-10-15,10228,Shall We Dance +Tom Long,fresh,0358135,Detroit News,"Invigorating, hopeful, funny and perfectly consciously corny at times.",2004-10-15,10228,Shall We Dance +Terry Lawson,rotten,0358135,Detroit Free Press,"Asks us to return to the days of yesteryear, when we would accept Cary Grant as a country bumpkin and Marilyn Monroe as an ugly duckling. These days, that's asking too much.",2004-10-15,10228,Shall We Dance +Variety Staff,fresh,0028757,Variety,"Astaire and his vet terp aide, Hermes Pan, have devised four corking dance routines which director George Stevens has expertly envisioned and mounted.",2009-03-26,770673162,A Damsel in Distress +Tom Milne,fresh,0028757,Time Out,"Nicely directed but a bit on the twee side with its Wodehouse plot and mock Englishisms, the result would be questionable but for a rich Gershwin score.",2006-01-26,770673162,A Damsel in Distress +Dave Kehr,fresh,0028757,Chicago Reader,"Burns and Allen were imported to balance her lack of humor; their presence is certainly welcome, and their work with Astaire is surprisingly effective.",2000-01-01,770673162,A Damsel in Distress +,fresh,0039286,Variety,"Producer Dore Schary, in association with Adrian Scott, has pulled no punches.",2008-04-08,19885,Crossfire +Dave Kehr,fresh,0039286,Chicago Reader,"While the film remains a respectable thriller, only Ryan's crafty, quietly deranged performance lifts it out of the ordinary.",2008-04-08,19885,Crossfire +,fresh,0039286,Time Out,This ultra-low-budget thriller did what all great B movies do: it broached a subject that 'respectable' movies wouldn't touch.,2006-06-24,19885,Crossfire +Bosley Crowther,fresh,0039286,New York Times,A thematically articulate film.,2003-05-20,19885,Crossfire +,none,0037101,Variety,,2008-06-24,20058,"Murder, My Sweet" +Bosley Crowther,none,0037101,New York Times,,2006-03-25,20058,"Murder, My Sweet" +,none,0037101,Time Out,,2006-01-26,20058,"Murder, My Sweet" +Don Druker,none,0037101,Chicago Reader,,2000-01-01,20058,"Murder, My Sweet" +,none,0044863,Variety,,2009-03-26,770672378,Macao +Dave Kehr,rotten,0044863,Chicago Reader,Sternberg's personality survives; what's missing is the soul that might have turned the artifice and self-parody into poetry.,2007-10-23,770672378,Macao +Geoff Andrew,fresh,0044863,Time Out,"What is so enjoyable, apart from Harry Wild's shimmering camerawork, is the tongue-in-cheek tone of the script and performances, best evidenced in the sparkling banter and innuendo between Mitchum and Russell.",2006-06-24,770672378,Macao +Bosley Crowther,rotten,0044863,New York Times,"All the other ingredients, including Miss Russell's famed physique, are pretty much the same as have been tumbled into previous cheesecakes with Jane and Bob.",2006-03-25,770672378,Macao +Stephen Holden,none,0109823,New York Times,,2004-08-30,12023,For the Moment +,none,0109823,Globe and Mail,,2002-04-12,12023,For the Moment +Kevin Thomas,none,0109823,Los Angeles Times,,2001-02-14,12023,For the Moment +James Berardinelli,fresh,0109823,ReelViews,,2000-01-01,12023,For the Moment +Jonathan Rosenbaum,none,0109823,Chicago Reader,,2000-01-01,12023,For the Moment +,none,0067992,Variety,,2008-08-14,9897,Willy Wonka & the Chocolate Factory +,fresh,0067992,Time Out,"Great fun, with Wilder for once giving an impeccably controlled performance as the factory's bizarre owner.",2006-01-26,9897,Willy Wonka & the Chocolate Factory +Howard Thompson,none,0067992,New York Times,,2005-05-10,9897,Willy Wonka & the Chocolate Factory +,fresh,0055018,TIME Magazine,"If the picture is journeyman James, it is also pitapatational entertainment, the most sophisticated scare show since Diabolique.",2010-10-19,16976,The Innocents +Variety Staff,fresh,0055018,Variety,"Based on Henry James' story Turn of the Screw this catches an eerie, spine-chilling mood right at the start and never lets up on its grim, evil theme.",2008-09-10,16976,The Innocents +Dave Kehr,rotten,0055018,Chicago Reader,Too much Freud and too little thought.,2007-09-24,16976,The Innocents +Michael Atkinson,fresh,0055018,Village Voice,"Is it the finest, smartest, most visually savvy horror film ever made by a big studio?",2007-09-24,16976,The Innocents +Ben Walters,fresh,0055018,Time Out,"Jack Clayton's 1961 chiller lives up to the story's title, incrementally tightening the nerves through suggestive technical artistry in a way that few contemporary ghost stories manage.",2006-06-24,16976,The Innocents +Bosley Crowther,fresh,0055018,New York Times,Sends some formidable chills down the spine.,2005-05-09,16976,The Innocents +Gene Siskel,fresh,0070707,Chicago Tribune,"These days, comedy beggars can't be choosers. Woody Allen is about all we've got. And Woody, please stay healthy.",2013-01-18,10640,Sleeper +Dave Kehr,fresh,0070707,Chicago Reader,As a stand-up routine it's a scream.,2007-06-04,10640,Sleeper +Derek Adams,fresh,0070707,Time Out,"Plenty of one-liners, and it has the best banana-skin joke in film history.",2006-02-09,10640,Sleeper +Derek Elley,fresh,0070707,Variety,"The film is loaded with throwaway literacy and broad slapstick, and while it fumbles the end, the parade of verbal and visual amusement is pleasant as long as it lasts.",2005-05-20,10640,Sleeper +Roger Ebert,fresh,0070707,Chicago Sun-Times,"Sleeper is the closest Allen has come to classic slapstick-and-chase comedy, and he's good at it.",2004-10-23,10640,Sleeper +Vincent Canby,fresh,0070707,New York Times,Sleeper is terrific.,2003-05-20,10640,Sleeper +Dave Kehr,fresh,0066808,Chicago Reader,"It is a funny picture - not too consistently, and certainly not too coherently, but when it hits, it hits.",2010-03-18,11054,Bananas +Variety Staff,rotten,0066808,Variety,"Bananas is chockfull of sight gags, one-liners and swiftly executed unnecessary excursions into vulgarity whose humor for the most part can't make up for content.",2008-09-04,11054,Bananas +Geoff Andrew,fresh,0066808,Time Out,Wonderfully incoherent.,2006-01-26,11054,Bananas +Vincent Canby,fresh,0066808,New York Times,"Allen's view of the world is fraught with everything except pathos, and it's a view I happen to find very funny.",2005-05-09,11054,Bananas +Desmond Ryan,fresh,0095159,Philadelphia Inquirer,"Perhaps the most unusual aspect of what is surely the year's most original and daring comedy is that John Cleese is not the funniest performer in it. Believe it or not, that honor goes to none other than the usually somber Kevin Kline.",2013-07-30,12985,A Fish Called Wanda +Jay Boyar,rotten,0095159,Orlando Sentinel,"Somehow, the movie manages to do the impossible: It makes John Cleese less than hilarious.",2013-07-30,12985,A Fish Called Wanda +Sheila Benson,fresh,0095159,Los Angeles Times,"Low comedy at high speed, it pretends to be a caper movie about a smooth London jewel heist and its infinitely complex aftermath. Actually, it's a smart farce about ingrained cultural differences.",2013-07-30,12985,A Fish Called Wanda +Dave Kehr,fresh,0095159,Chicago Tribune,"The movie's basic joke holds that the overbearing, unselfconscious Americans will do anything and say anything (and usually as loudly as possible), while the timorous British are nearly too polite to breathe.",2013-07-30,12985,A Fish Called Wanda +Richard Schickel,fresh,0095159,TIME Magazine,"Wanda defies gravity, in both senses of the word, and redefines a great comic tradition.",2009-04-27,12985,A Fish Called Wanda +Jonathan Rosenbaum,fresh,0095159,Chicago Reader,"Like many of the best English comedies, much of the humor here is based on character, good-natured high spirits, and fairly uninhibited vulgarity.",2009-04-27,12985,A Fish Called Wanda +Variety Staff,fresh,0095159,Variety,"Though it is less tasteless, irreverent and satirical than the Python pics, film still is wacky and occasionally outrageous in its own, distinctly British way.",2008-10-18,12985,A Fish Called Wanda +Stephen Garrett,fresh,0095159,Time Out,"There's nothing deep, nothing ground-breaking, but it's a never-dull, tightly scripted yarn with some very funny gags.",2006-01-26,12985,A Fish Called Wanda +Vincent Canby,rotten,0095159,New York Times,It's not easy to describe the movie's accumulating dimness or to understand what went wrong.,2003-05-20,12985,A Fish Called Wanda +Desson Thomson,fresh,0095159,Washington Post,It'll keep you amused enough to sit still and even remember it fondly. But it seems a light day's fishing for Messers Cleese and Palin.,2000-01-01,12985,A Fish Called Wanda +Rita Kempley,fresh,0095159,Washington Post,"It's a deliciously dishy comedy, but like sushi an acquired taste.",2000-01-01,12985,A Fish Called Wanda +Roger Ebert,fresh,0095159,Chicago Sun-Times,The funniest movie I have seen in a long time.,2000-01-01,12985,A Fish Called Wanda +James Berardinelli,fresh,0095159,ReelViews,"When it comes to comedians, everyone has their favorite. Mine is John Cleese.",2000-01-01,12985,A Fish Called Wanda +J. R. Jones,rotten,0079470,Chicago Reader,I've always considered it the group's nadir; it seems toothlessly silly.,2009-09-11,12858,Life of Brian +Variety Staff,fresh,0079470,Variety,Just as wacky and imaginative as their earlier film outings.,2008-07-31,12858,Life of Brian +,fresh,0079470,Time Out,Python successfully lampoon religious attitudes rather than religion itself.,2006-02-09,12858,Life of Brian +Vincent Canby,fresh,0079470,New York Times,Bad taste of this order is rare but not yet dead.,2005-05-09,12858,Life of Brian +Anthony Lane,fresh,0079470,New Yorker,"The Pythons are enlightened jesters, whose scorn is reserved for those who persist in walking in darkness.",2004-08-01,12858,Life of Brian +Roger Ebert,fresh,0079470,Chicago Sun-Times,"Funny, in that peculiar British way where jokes are told sideways, with the obvious point and then the delayed zinger.",2004-06-18,12858,Life of Brian +Ann Hornaday,fresh,0079470,Washington Post,"Still holds up beautifully, as both pointed satire and silly, stakes-free comedy.",2004-05-28,12858,Life of Brian +Robert Denerstein,fresh,0079470,Denver Rocky Mountain News,"I can't say Life of Brian stands as a comic masterpiece, but it's an indelible part of impolite cinema history, and some of its asides remain priceless.",2004-05-27,12858,Life of Brian +Chris Vognar,fresh,0079470,Dallas Morning News,A king-size cult comedy hit.,2004-05-22,12858,Life of Brian +Terry Lawson,fresh,0079470,Detroit Free Press,"Still has its rude, rowdy sting -- and it still speaks more truth about religion than nearly all serious movies on the subject.",2004-05-21,12858,Life of Brian +Ty Burr,fresh,0079470,Boston Globe,The greatest work of religious skepticism ever put on the screen.,2004-05-07,12858,Life of Brian +Kenneth Turan,fresh,0079470,Los Angeles Times,"The more things change, the more we have to laugh if we are to have a prayer of remaining sane, and the Pythons are the best possible step in that direction.",2004-04-29,12858,Life of Brian +Robert Abele,fresh,0079470,L.A. Weekly,"After all these years, the pungency of this satire about the perils of mass miscommunication hasn't dissipated.",2004-04-29,12858,Life of Brian +J. Hoberman,fresh,0079470,Village Voice,It's a hearty burlesque.,2004-04-27,12858,Life of Brian +James Berardinelli,fresh,0079470,ReelViews,There is little doubt that The Life of Brian represents some of the most daring and cutting edge comedy of the 1970s.,2003-10-09,12858,Life of Brian +Variety Staff,fresh,0084865,Variety,"Victor/Victoria is a sparkling, ultra-sophisticated entertainment from Blake Edwards.",2008-08-27,10346,Victor Victoria +,fresh,0084865,Time Out,Don't miss this one. It sends sparks.,2006-01-26,10346,Victor Victoria +Roger Ebert,fresh,0084865,Chicago Sun-Times,"Not only a funny movie, but, unexpectedly, a warm and friendly one.",2004-10-23,10346,Victor Victoria +Vincent Canby,fresh,0084865,New York Times,"Victor/Victoria is so good, so exhilarating, that the only depressing thing about it is the suspicion that Mr. Edwards is going to have a terrible time trying to top it.",2003-05-20,10346,Victor Victoria +Dave Kehr,fresh,0084865,Chicago Reader,"Blake Edwards's 1982 sex comedy has the most beautiful range of tones of any American film of its period: it is a work of dry wit, high slapstick, black despair, romantic warmth, and penetrating intelligence.",2000-01-01,10346,Victor Victoria +Jonathan Rosenbaum,fresh,0056218,Chicago Reader,"powerful experience, alternately corrosive with dark parodic humor, suspenseful, moving, and terrifying.",2008-05-07,12484,The Manchurian Candidate +Variety Staff,fresh,0056218,Variety,"Every once in a rare while a film comes along that works in all departments, with story, production and performance so well blended that the end effect is one of nearly complete satisfaction. Such is The Manchurian Candidate.",2008-05-07,12484,The Manchurian Candidate +,fresh,0056218,Time Out,A masterpiece.,2006-06-24,12484,The Manchurian Candidate +Bosley Crowther,rotten,0056218,New York Times,"The Manchurian Candidate pops up with a rash supposition that could serve to scare some viewers half to death -- that is, if they should be dupes enough to believe it, which we solemnly trust they won't.",2003-05-20,12484,The Manchurian Candidate +Hal Hinson,fresh,0056218,Washington Post,"Has an excoriating, destabilizing wit that seems as knowingly sophisticated today as it must have then.",2000-01-01,12484,The Manchurian Candidate +Roger Ebert,fresh,0056218,Chicago Sun-Times,Not a moment of The Manchurian Candidate lacks edge and tension and a cynical spin.,2000-01-01,12484,The Manchurian Candidate +Desson Thomson,fresh,0056218,Washington Post,"Its story of Cold War intrigue, murky East-West dealings, assassination, brainwashing -- and the idea of a glorified cue-card reader playing president -- resonates today like never before.",2000-01-01,12484,The Manchurian Candidate +Variety Staff,fresh,0059243,Variety,Lemmon plays it dirty throughout and for huge effect. Curtis underplays for equally comic effect. Wood comes through on a par with the two male stars.,2008-05-06,17017,The Great Race +Dave Kehr,fresh,0059243,Chicago Reader,"It's highly inventive, self-conscious camp, made in 1965, well before the genre wore itself out in superciliousness.",2000-01-01,17017,The Great Race +Penelope Gilliatt,fresh,0061418,New Yorker,"Bonnie and Clyde don't really know that killing kills. The film does -- unlike the run of movies about violence now, which mostly know that killing sells.",2013-01-14,13095,Bonnie and Clyde +Pauline Kael,fresh,0061418,New Yorker,Bonnie and Clyde is the most excitingly American American movie since The Manchurian Candidate. The audience is alive to it.,2012-08-30,13095,Bonnie and Clyde +Nick Pinkerton,fresh,0061418,Village Voice,"Considered New Hollywood's moment of arrival, tipping square critic Bosley Crowther into retirement (The New York Times, they were a-changin').",2008-11-12,13095,Bonnie and Clyde +,rotten,0061418,TIME Magazine,"Like Bonnie and Clyde themselves, the film rides off in all directions and ends up full of holes.",2008-08-22,13095,Bonnie and Clyde +Dave Kehr,fresh,0061418,Chicago Reader,"It's by far the least controlled of Penn's films... but the pieces work wonderfully well, propelled by what was then a very original acting style.",2007-07-02,13095,Bonnie and Clyde +Dave Kaufman,rotten,0061418,Variety,"This inconsistency of direction is the most obvious fault of Bonnie and Clyde, which has some good ingredients, although they are not meshed together well.",2007-07-02,13095,Bonnie and Clyde +,fresh,0061418,Time Out,"With its weird landscape of dusty, derelict towns and verdant highways, stunningly shot by Burnett Guffey in muted tones of green and gold, it has the true quality of folk legend.",2006-02-09,13095,Bonnie and Clyde +Bosley Crowther,rotten,0061418,New York Times,"It is a cheap piece of bald-faced slapstick comedy that treats the hideous depredations of that sleazy, moronic pair as though they were as full of fun and frolic as the jazz-age cutups in Thoroughly Modern Millie.",2003-05-20,13095,Bonnie and Clyde +James Berardinelli,fresh,0061418,ReelViews,"It should readily be apparent that there is something special about the production, with its brash, vivid style, indelible performances by movie icons, and bold mixture of violence and comedy, romance and tragedy.",2003-05-01,13095,Bonnie and Clyde +Roger Ebert,fresh,0061418,Chicago Sun-Times,"When I saw it, I had been a film critic for less than six months, and it was the first masterpiece I had seen on the job. I felt an exhilaration beyond describing.",2000-01-01,13095,Bonnie and Clyde +,none,0052027,Variety,,2009-03-26,18682,The Old Man and the Sea +Bosley Crowther,none,0052027,New York Times,,2006-03-25,18682,The Old Man and the Sea +,none,0052027,Time Out,,2006-01-26,18682,The Old Man and the Sea +,fresh,0046912,TIME Magazine,The fun of Dial M lies in its duel of wits...,2008-08-24,10246,Dial M for Murder +B. Kite,fresh,0046912,Village Voice,Dial M is less a filmed play than a highly cinematic investigation of theatricality.,2008-01-02,10246,Dial M for Murder +Variety Staff,rotten,0046912,Variety,"Dial M remains more of a filmed play than a motion picture, unfortunately revealed as a conversation piece about murder which talks up much more suspense than it actually delivers.",2008-01-02,10246,Dial M for Murder +Dave Kehr,fresh,0046912,Chicago Reader,"The screenplay tends to constrain rather than liberate Hitchcock's thematic thrust, but there is much of technical value in his geometric survey of the scene and the elaborate strategies employed to transfer audience sympathy among the main characters.",2008-01-02,10246,Dial M for Murder +Geoff Andrew,rotten,0046912,Time Out,"It all moves along in a rather efficient if lifeless fashion, with only John Williams shining as a canny police detective.",2007-01-04,10246,Dial M for Murder +Bosley Crowther,fresh,0046912,New York Times,"[Hitchcock] tried once before, in Rope, to build up a whole continuous drama in one set. He wasn't as successful in that venture. Dial M has all the space it needs.",2000-01-01,10246,Dial M for Murder +J. Hoberman,fresh,0046912,Village Voice,Was by far the most visually compelling of studio stereoscopic movies.,2000-01-01,10246,Dial M for Murder +Pauline Kael,fresh,0092890,New Yorker,"The dancing here brings out the sensual dreaminess of the songs. Dirty Dancing -- what a great title! -- is such a bubbleheaded, retro vision of growing up in the sixties (or any other time) that you go out of the theatre giggling happily.",2013-05-06,12228,Dirty Dancing +Richard Schickel,fresh,0092890,TIME Magazine,"If the ending of Eleanor Bergstein's script is too neat and inspirational, the rough energy of the film's song and dance does carry one along, past the whispered doubts of better judgment.",2013-03-25,12228,Dirty Dancing +Jay Boyar,fresh,0092890,Orlando Sentinel,"Although the plot is sometimes implausible, the movie's music, dancing and romantic spirit carry a lot of it. In addition, Dirty Dancing has the virtues of a female main character (a bit unusual in a coming-of-age movie) and an interesting setting.",2013-03-25,12228,Dirty Dancing +Sheila Benson,fresh,0092890,Los Angeles Times,"Smart and funny, touching and unabashedly sensual.",2013-03-25,12228,Dirty Dancing +Dave Kehr,fresh,0092890,Chicago Tribune,"This is a shapely film, considered and concise. And if its rhetorical slickness eventually covers up its emotional core, that slickness has a pleasure of its own.",2013-03-25,12228,Dirty Dancing +Jonathan Rosenbaum,fresh,0092890,Chicago Reader,"While the music on the soundtrack is predictably overloud, the period detail is refreshingly soft-pedaled.",2008-02-12,12228,Dirty Dancing +Desson Thomson,rotten,0092890,Washington Post,"The dance finale between Gray and Swayze, although an obvious crowd-pleaser, is performed to a contemporary song clearly intended for the charts, which blows the period feel right off the dance floor.",2008-02-12,12228,Dirty Dancing +Variety Staff,fresh,0092890,Variety,"Good production values, some nice dance sequences and a likable performance by Grey make the film more than watchable.",2008-02-12,12228,Dirty Dancing +Anna Smith,fresh,0092890,Time Out,"The film's easy charm, infectious soundtrack and tidy choreography should still win over new fans as well as old.",2006-01-26,12228,Dirty Dancing +Vincent Canby,fresh,0092890,New York Times,Dirty Dancing works best when it's most direct and unpretentious.,2003-05-20,12228,Dirty Dancing +Roger Ebert,rotten,0092890,Chicago Sun-Times,"The movie plays like one long, sad, compromise; it places packaging ahead of ambition.",2000-01-01,12228,Dirty Dancing +Joe Baltake,fresh,0092890,Sacramento Bee,Turned out to be one of those films that had something for everyone.,2000-01-01,12228,Dirty Dancing +Terrence Rafferty,rotten,0105236,New Yorker,"The film, for all its mayhem and fury, is too distant to be truly disturbing; it treats everything with an impatient, born-too-late shrug.",2013-06-26,14978,Reservoir Dogs +Jay Boyar,fresh,0105236,Orlando Sentinel,"A brash, brutal crime-caper film, Reservoir Dogs has enough raw energy for 10 motion pictures and more than enough rough stuff to traumatize the sensitive. But not only does Dogs have teeth, it has brains.",2013-06-26,14978,Reservoir Dogs +Kenneth Turan,fresh,0105236,Los Angeles Times,"Tarantino's palpable enthusiasm, his unapologetic passion for what he's created, reinvigorates this venerable plot and, mayhem aside, makes it involving for longer than you might suspect.",2013-06-26,14978,Reservoir Dogs +Gene Siskel,rotten,0105236,Chicago Tribune,A much-acclaimed revisionist gangster film that I found to have more style than substance.,2013-06-26,14978,Reservoir Dogs +Owen Gleiberman,fresh,0105236,Entertainment Weekly,"Tarantino, in Reservoir Dogs, has made a nihilist comedy about how human nature will always undercut the best-laid plans.",2011-09-07,14978,Reservoir Dogs +Peter Travers,fresh,0105236,Rolling Stone,,2007-08-14,14978,Reservoir Dogs +Todd McCarthy,fresh,0105236,Variety,"Undeniably impressive pic grabs the viewer by the lapels and shakes hard, but it also is about nothing other than a bunch of macho guys and how big their guns are.",2007-03-13,14978,Reservoir Dogs +Jonathan Rosenbaum,fresh,0105236,Chicago Reader,"It's unclear whether this macho thriller does anything to improve the state of the world or our understanding of it, but it certainly sets off enough rockets to hold and shake us for every one of its 99 minutes.",2007-03-13,14978,Reservoir Dogs +Rick Groen,fresh,0105236,Globe and Mail,It's dynamite on a short fuse.,2007-03-13,14978,Reservoir Dogs +Ty Burr,fresh,0105236,Entertainment Weekly,"You may not like the terms Tarantino sets, but you have to admit he succeeds on them.",2007-02-27,14978,Reservoir Dogs +Wally Hammond,fresh,0105236,Time Out,A tour de force.,2006-02-09,14978,Reservoir Dogs +Vincent Canby,fresh,0105236,New York Times,"A small, modestly budgeted crime movie of sometimes dazzling cinematic pyrotechnics and over-the- top dramatic energy.",2003-05-20,14978,Reservoir Dogs +Duane Byrge,fresh,0105236,Hollywood Reporter,Those who survive it emerge in a shell-shocked euphoria -- so good and so blunt is the writing.,2002-10-15,14978,Reservoir Dogs +Roger Ebert,rotten,0105236,Chicago Sun-Times,"The movie feels like it's going to be terrific, but Tarantino's script doesn't have much curiosity about these guys.",2000-01-01,14978,Reservoir Dogs +John Hartl,fresh,0105236,Film.com,"It's extremely well-acted, written with flair and directed by a 29-year-old first-timer, Quentin Tarantino, who always knows where to put the camera, when to cut to a flashback and how to draw the best work from his brilliant cast.",2000-01-01,14978,Reservoir Dogs +James Berardinelli,fresh,0105236,ReelViews,"The writing is crisp and clean, providing line after line of snappy dialogue designed to leave the viewer alternately pondering and laughing aloud.",2000-01-01,14978,Reservoir Dogs +Desson Thomson,fresh,0105236,Washington Post,"A nod to such noir crime classics as Stanley Kubrick's ""The Killing,"" the movie's more than savvy sensationalism. Suspense, horror and humor are expertly interwoven.",2000-01-01,14978,Reservoir Dogs +Hal Hinson,fresh,0105236,Washington Post,"It's brutal, it's funny and you won't forget it.",2000-01-01,14978,Reservoir Dogs +Sheila Benson,fresh,0091763,Los Angeles Times,This is movie-making with a zealot's fervor.,2013-02-19,16450,Platoon +Gene Siskel,fresh,0091763,Chicago Tribune,"Platoon is filled with one fine performance after another, and one can only wish that every person who saw the cartoonish war fantasy that was Rambo would buy a ticket to Platoon and bear witness to something closer to the truth.",2013-02-19,16450,Platoon +Richard Corliss,fresh,0091763,TIME Magazine,Platoon is different. It matters.,2010-02-24,16450,Platoon +Todd McCarthy,rotten,0091763,Variety,"The artistic veneer Stone applies, along with the simpy narration provided for Sheen in the way of letters to his grandmother, detract significantly from the work's immediacy.",2009-02-20,16450,Platoon +Pat Graham,rotten,0091763,Chicago Reader,"For all the purported naturalism, the film seems resolutely schematic, and the attitudes shaping the drama are far from open-ended.",2007-02-05,16450,Platoon +Derek Adams,fresh,0091763,Time Out,"Stone's eye-blistering images possess an awesome power, which sets the senses reeling and leaves the mind disturbed.",2006-06-24,16450,Platoon +Vincent Canby,fresh,0091763,New York Times,Possibly the best work of any kind about the Vietnam War since Michael Herr's vigorous and hallucinatory book 'Dispatches.,2003-05-20,16450,Platoon +James Berardinelli,fresh,0091763,ReelViews,"Platoon is one of those movies that, once seen, will never be forgotten, and, at least for those who were not in Vietnam, will forever alter the way in which the war is considered.",2003-02-06,16450,Platoon +Pauline Kael,rotten,0091763,New Yorker,"I know that Platoon is being acclaimed for its realism, and I expect to be chastened for being a woman finding fault with a war film. But I've probably seen as much combat as most of the men saying, 'This is how war is.'",2002-03-12,16450,Platoon +Paul Attanasio,fresh,0091763,Washington Post,"The movie is beautifully written (by Stone), constructed with strong, clean lines, immaculately paced and regularly surprising.",2000-01-01,16450,Platoon +Roger Ebert,fresh,0091763,Chicago Sun-Times,"A film that says...that before you can make any vast, sweeping statements about Vietnam, you have to begin by understanding the bottom line, which is that a lot of people went over there and got killed, dead, and that is what the war meant for them.",2000-01-01,16450,Platoon +Rita Kempley,fresh,0091763,Washington Post,Platoon is like the Wall -- a dark and unforgettable memorial to the dead of Vietnam and an awesome requiem to the eternity of war.,2000-01-01,16450,Platoon +Michael Wilmington,fresh,0091763,Chicago Tribune,...it's still the standard against which all other movies about the Vietnam War are judged.,2000-01-01,16450,Platoon +,none,0098627,Variety,,2009-03-26,12649,Weekend at Bernie's +,none,0098627,Time Out,,2006-06-24,12649,Weekend at Bernie's +Stephen Holden,none,0098627,New York Times,,2003-05-20,12649,Weekend at Bernie's +Peter Travers,none,0098627,Rolling Stone,,2001-05-12,12649,Weekend at Bernie's +Roger Ebert,rotten,0098627,Chicago Sun-Times,,2000-01-01,12649,Weekend at Bernie's +Hal Hinson,none,0098627,Washington Post,,2000-01-01,12649,Weekend at Bernie's +Dave Kehr,rotten,0103772,Chicago Tribune,"Verhoeven does not explore the dark side, but merely exploits it, and that makes all the difference in the world.",2013-03-25,16318,Basic Instinct +Richard Schickel,rotten,0103772,TIME Magazine,"[The film has] a smug faith in the ability of its own speed, smartness and luxe to wow the yokels.",2013-03-25,16318,Basic Instinct +John Hartl,rotten,0103772,Seattle Times,"Slick, clever and entertainingly overheated while you're watching it, Basic Instinct starts to evaporate the second you leave the theater.",2013-03-25,16318,Basic Instinct +Jay Boyar,fresh,0103772,Orlando Sentinel,"The harsh, politically incorrect truth about Basic Instinct is that it's a tantalizing, suspensefully correct thriller.",2013-03-25,16318,Basic Instinct +Kenneth Turan,rotten,0103772,Los Angeles Times,"Basic Instinct is a reminder of the difference between exhilaration and exhaustion, between tension and hysteria, between eroticism and exhibitionism. The line may be fine, but it is real enough to separate the great thrillers from the also-rans.",2013-03-25,16318,Basic Instinct +Carrie Rickey,rotten,0103772,Philadelphia Inquirer,"Call me a prude, but it's not sexy watching an erotic thriller in which every time a couple does it, one of them gets it with an ice pick. I don't care how many firmly toned tummies and tushes are bared.",2013-03-25,16318,Basic Instinct +Terrence Rafferty,rotten,0103772,New Yorker,"A vicious, grindingly manipulative urban mystery that uses a thick atmosphere of S&M kinkiness to distract the audience from the story's thinness and inanity.",2013-03-25,16318,Basic Instinct +Owen Gleiberman,fresh,0103772,Entertainment Weekly,"Sharon Stone, in her first major-league role, comes on like a postfeminist Grace Kelly. She turns her haughty, slightly blank, cheerleader sexiness into something vampish and ominous -- an all-American beauty mask.",2011-09-07,16318,Basic Instinct +James Berardinelli,rotten,0103772,ReelViews,"The film's problems begin with its story, which is constructed with relentless manipulation in mind. It never plays fair with the audience.",2008-06-10,16318,Basic Instinct +Jonathan Rosenbaum,fresh,0103772,Chicago Reader,"Despite (or maybe because of) his obligatory nods to Hitchcock, this is slick and entertaining enough to work as thriller porn, even with two contradictory denouements to its mystery.",2008-02-08,16318,Basic Instinct +Variety Staff,fresh,0103772,Variety,"This erotically charged thriller about the search for an ice-pick murderer in San Francisco rivets attention through its sleek style, attractive cast doing and thinking kinky things, and story, which is as weirdly implausible as it is intensely visceral.",2008-02-08,16318,Basic Instinct +Stephen Garrett,fresh,0103772,Time Out,"Douglas and Stone are superb, and George Dzundza (as sidekick Gus) delivers another classic hard-boiled cameo.",2006-01-26,16318,Basic Instinct +Janet Maslin,fresh,0103772,New York Times,"Basic Instinct transfers Mr. Verhoeven's flair for action-oriented material to the realm of Hitchcockian intrigue, and the results are viscerally effective even when they don't make sense.",2003-05-20,16318,Basic Instinct +Peter Travers,fresh,0103772,Rolling Stone,"Verhoeven's cinematic wet dream delivers the goods, especially when Sharon Stone struts on with enough come-on carnality to singe the screen.",2001-05-12,16318,Basic Instinct +Desson Thomson,rotten,0103772,Washington Post,"A predictable, surprisingly uninvolving affair.",2000-01-01,16318,Basic Instinct +Rita Kempley,rotten,0103772,Washington Post,These actors seem driven less by real emotions than Eveready bunny batteries.,2000-01-01,16318,Basic Instinct +Roger Ebert,rotten,0103772,Chicago Sun-Times,The film is like a crossword puzzle. It keeps your interest until you solve it. Then it's just a worthless scrap with the spaces filled in.,2000-01-01,16318,Basic Instinct +Owen Gleiberman,fresh,0101761,Entertainment Weekly,,2011-09-07,16699,The Doors +Richard Schickel,rotten,0101761,TIME Magazine,"The film really proves only that Jim was a bad drunk and a worse friend, and that in no way was his life exemplary.",2008-11-21,16699,The Doors +Variety Staff,rotten,0101761,Variety,"Kilmer is convincing in the lead role, although he never allows the viewer to share any emotions.",2007-12-03,16699,The Doors +Jonathan Rosenbaum,rotten,0101761,Chicago Reader,The movie does a pretty good job with period ambience. But it's a long haul waiting for the hero to keel over.,2007-12-03,16699,The Doors +Stephen Garrett,fresh,0101761,Time Out,"Stone sometimes loads the narrative with too much sub-Freudian baggage about Morrison's childhood, but the music, the excess and the excitement come across well.",2006-01-26,16699,The Doors +Caryn James,rotten,0101761,New York Times,"It is made by a Morrison groupie for other groupies, a film that leaves the rest of us locked outside wondering what the fuss is about.",2003-05-20,16699,The Doors +Peter Travers,fresh,0101761,Rolling Stone,I can't recall a film that evokes the myth of the Sixties more potently.,2001-05-12,16699,The Doors +Joe Brown,rotten,0101761,Washington Post,"You get a buzz, all right, but you're left woozy and hung over, and probably won't remember much of what you've seen.",2000-01-01,16699,The Doors +Hal Hinson,rotten,0101761,Washington Post,"The film is an absurdity -- muddled, self-serious, alienating, a stone drag.",2000-01-01,16699,The Doors +Roger Ebert,rotten,0101761,Chicago Sun-Times,"Watching the movie is like being stuck in a bar with an obnoxious drunk, when you're not drinking.",2000-01-01,16699,The Doors +,fresh,0101761,Entertainment Weekly,,1991-03-01,16699,The Doors +Jonathan Rosenbaum,fresh,0104036,Chicago Reader,This thriller gives you an entertaining run for your money and some offbeat frissons along the way.,2012-02-13,15264,The Crying Game +Owen Gleiberman,fresh,0104036,Entertainment Weekly,"After luring us into what appears to be a classic they-gazed-at-each-other-across-an-empty-bar romantic setup, Jordan undermines our expectations so thoroughly that it's as if we've rediscovered our innocence as moviegoers.",2011-09-07,15264,The Crying Game +Todd McCarthy,fresh,0104036,Variety,"An astonishingly good and daring film that richly develops several intertwined thematic lines, The Crying Game takes giant risks that are stunningly rewarded.",2008-10-18,15264,The Crying Game +Geoff Andrew,fresh,0104036,Time Out,"Tthe film does work, raises a plethora of questions concerning loyalty, violence and the nature of desire, and is in some respects a summation of the various themes that have emerged from Jordan's work.",2006-02-09,15264,The Crying Game +Vincent Canby,fresh,0104036,New York Times,The physical production is as lush as the film's romantic longings.,2003-05-20,15264,The Crying Game +Peter Travers,fresh,0104036,Rolling Stone,,2001-05-12,15264,The Crying Game +Hal Hinson,fresh,0104036,Washington Post,The Crying Game ventures into such exquisitely unique territory that you feel giddy from the pleasure of being allowed to travel along.,2000-01-01,15264,The Crying Game +Roger Ebert,fresh,0104036,Chicago Sun-Times,"Reasons remain to watch this movie: the development of Fergus and the fine performances, most notably Whitaker and Richardson, who plays her character with just the right number of screws loose.",2000-01-01,15264,The Crying Game +James Berardinelli,fresh,0104036,ReelViews,"If you're waiting for something explosive to happen, that may be the case, but if you're absorbing the meticulous and subtle character interaction, the pacing is perfect.",2000-01-01,15264,The Crying Game +James Berardinelli,fresh,0104348,ReelViews,"For anyone who loves sharp dialogue, compelling characters, and a stinging social rebuke, Glengarry Glen Ross is not to be missed.",2008-06-10,12913,Glengarry Glen Ross +Todd McCarthy,fresh,0104348,Variety,"Mamet reveals his exceptional talent for writing almost poetic working-class vernacular, scores his major implicit thematic thrusts against the nature of the way business-at-large is conducted.",2008-06-09,12913,Glengarry Glen Ross +,fresh,0104348,Time Out,"David Mamet's play about the wheelings and dealings of real-estate salesmen gets dedicated playing from a splendid cast, but gains nothing by the transfer from stage to screen.",2006-06-24,12913,Glengarry Glen Ross +Peter Travers,fresh,0104348,Rolling Stone,,2001-05-12,12913,Glengarry Glen Ross +Desson Thomson,rotten,0104348,Washington Post,"Though the performances are satisfying in a projected way, they're nullified by an uninspired atmosphere around them. Despite the colorful and witty utterances of its characters, ""Glengarry"" feels artificial and rarefied.",2000-01-01,12913,Glengarry Glen Ross +Rita Kempley,fresh,0104348,Washington Post,Foley is as adept at managing this intensely psychodramatic material as he is handling an ensemble cast with the combined power of a runaway locomotive.,2000-01-01,12913,Glengarry Glen Ross +Roger Ebert,fresh,0104348,Chicago Sun-Times,"You can see the joy with which these actors get their teeth into these great lines, after living through movies in which flat dialogue serves only to advance the story.",2000-01-01,12913,Glengarry Glen Ross +,fresh,0104348,Entertainment Weekly,"The performers achieve a true ensemble rhythm; at times, the entire office seems like a single, shouting organism.",1992-09-29,12913,Glengarry Glen Ross +James Berardinelli,fresh,0084707,ReelViews,,2009-04-30,13354,Sophie's Choice +Variety Staff,rotten,0084707,Variety,Astoundingly tedious.,2007-06-26,13354,Sophie's Choice +Dave Kehr,rotten,0084707,Chicago Reader,"The picture is completely devoid of cinematic interest, adopting instead a tiresome theatrical aesthetic in which showy monologues are filmed in interminable, usually ill-chosen long takes.",2007-06-26,13354,Sophie's Choice +Derek Adams,rotten,0084707,Time Out,"By the end, the accumulated weight and lethargy of the production fails to invest Sophie's fate with the significance Styron achieves.",2006-06-24,13354,Sophie's Choice +Roger Ebert,fresh,0084707,Chicago Sun-Times,So perfectly cast and well-imagined that it just takes over and happens to you. It's quite an experience.,2004-10-23,13354,Sophie's Choice +Janet Maslin,fresh,0084707,New York Times,"Though it's far from a flawless movie, Sophie's Choice is a unified and deeply affecting one. Thanks in large part to Miss Streep's bravura performance, it's a film that casts a powerful, uninterrupted spell.",2004-08-30,13354,Sophie's Choice +Gene Siskel,fresh,0083866,Chicago Tribune,It is the kind of film that young people are going to want to see again immediately after they've seen it.,2013-08-04,10489,E.T.: The Extra-Terrestrial +Stanley Kauffmann,fresh,0083866,The New Republic,"An appealing film this new one is, with some charm, some glee in the childrens' triumphs, some share in their friendship with E.T.",2011-02-15,10489,E.T.: The Extra-Terrestrial +Don McKellar,rotten,0083866,Village Voice,"More than the work of any other filmmaker, Spielberg's output seems uniquely designed to induce in me this queasy false-memory syndrome.",2007-06-04,10489,E.T.: The Extra-Terrestrial +James Berardinelli,fresh,0083866,ReelViews,"On inherent merit, the movie would not warrant such a highly publicized re-release, but this is one of those films that transcends what's on the screen.",2007-06-04,10489,E.T.: The Extra-Terrestrial +Liam Lacey,fresh,0083866,Globe and Mail,A contemporary classic.,2007-06-04,10489,E.T.: The Extra-Terrestrial +Dave Kehr,fresh,0083866,Chicago Reader,"Though marred by Spielberg's usual carelessness with narrative points, the film alternates sweetness and sarcasm with enough rhetorical sophistication to be fairly irresistible.",2007-06-04,10489,E.T.: The Extra-Terrestrial +,fresh,0083866,Time Out,"Although conclusively demonstrating Spielberg's preeminence as the popular artist of his time, E.T. finally seems a less impressive film than Close Encounters.",2006-01-26,10489,E.T.: The Extra-Terrestrial +Moira MacDonald,fresh,0083866,Seattle Times,What E.T. does so well is to capture that moment in life when childhood seems to be slipping away.,2003-12-31,10489,E.T.: The Extra-Terrestrial +Vincent Canby,fresh,0083866,New York Times,[It] may become a children's classic of the space age.,2002-10-24,10489,E.T.: The Extra-Terrestrial +Kenneth Turan,fresh,0083866,Los Angeles Times,A film that connects so beautifully to our sense of wonder and joy.,2002-07-09,10489,E.T.: The Extra-Terrestrial +Mick LaSalle,fresh,0083866,San Francisco Chronicle,"Viewers returning to it, as well as those discovering it, will find it an enduring children's film -- but one whose impact has diminished with the passage of time.",2002-03-24,10489,E.T.: The Extra-Terrestrial +Carrie Rickey,fresh,0083866,Philadelphia Inquirer,"If we approach with sympathy and curiosity, we will be rewarded with same. And our souls, not to mention our bicycles, will soar to the heavens.",2002-03-24,10489,E.T.: The Extra-Terrestrial +Peter Travers,fresh,0083866,Rolling Stone,The tenderness of the piece is still intact.,2002-03-24,10489,E.T.: The Extra-Terrestrial +Desson Thomson,fresh,0083866,Washington Post,A sophisticatedly sappy masterpiece.,2002-03-24,10489,E.T.: The Extra-Terrestrial +Susan Stark,fresh,0083866,Detroit News,,2002-03-23,10489,E.T.: The Extra-Terrestrial +Anthony Lane,fresh,0083866,New Yorker,"We have yet to recover from his revelation: that there is nothing more real than sitting in your own back yard -- waiting for the unreal to come down, take a handful of candy, and fly you to the moon.",2002-03-23,10489,E.T.: The Extra-Terrestrial +Lou Lumenick,fresh,0083866,New York Post,A masterpiece that deserves to be seen and appreciated on a big screen.,2002-03-22,10489,E.T.: The Extra-Terrestrial +Owen Gleiberman,fresh,0083866,Entertainment Weekly,"A sublime modern fairy tale, a movie that, if anything, looks subtler, darker, and more intimate now than it did when originally released.",2002-03-22,10489,E.T.: The Extra-Terrestrial +David Hunter,fresh,0083866,Hollywood Reporter,Steven Spielberg's masterful film has lost none of its power to sweep the viewer away in the most 'excellent' late-20th century boy's adventure one could hope for.,2002-03-22,10489,E.T.: The Extra-Terrestrial +Michael Wilmington,fresh,0083866,Chicago Tribune,A magical film.,2002-03-22,10489,E.T.: The Extra-Terrestrial +Variety Staff,rotten,0099371,Variety,Days of Thunder zigzags between exploiting Cruise's likable grin and charming vulnerability and portraying him as an emotional loser. It's an uncertain and unsatisfying mix.,2008-05-07,10704,Days of Thunder +Owen Gleiberman,fresh,0099371,Entertainment Weekly,There are plenty of soulless movies around. What's special about Days of Thunder is that it works overtime trying to convince you it's not one of them.,2008-05-07,10704,Days of Thunder +Jonathan Rosenbaum,rotten,0099371,Chicago Reader,"In 1990 the people who brought you Top Gun -- Tom Cruise, director Tony Scott, and producers Don Simpson and Jerry Bruckheimer -- figured out a way to take more of your money, and it involved stock-car racing.",2008-05-07,10704,Days of Thunder +,rotten,0099371,Time Out,"A flashy, pre-packaged racing picture featuring stock cars and stock situations.",2006-01-26,10704,Days of Thunder +Janet Maslin,rotten,0099371,New York Times,It's one thing to market a film solely on the strength of its star. It's quite another to go ahead and make the film that way.,2003-05-20,10704,Days of Thunder +Peter Travers,fresh,0099371,Rolling Stone,Producers Don Simpson and Jerry Bruckheimer have raised formula films to a science.,2001-05-12,10704,Days of Thunder +Desson Thomson,fresh,0099371,Washington Post,"Exactly what it promises to be: Not Much -- but at dizzying speed, stripped down and free of wind-resistant subtlety. There's a certain integrity to that. A certain deafening integrity.",2000-01-01,10704,Days of Thunder +Hal Hinson,fresh,0099371,Washington Post,"The flash is still there, but Towne has added a layer of substance underneath, and in generous enough helpings that you can let the picture vamp you, ravage you, without hating yourself afterward.",2000-01-01,10704,Days of Thunder +Roger Ebert,fresh,0099371,Chicago Sun-Times,An entertainment of great skill but predictable construction.,2000-01-01,10704,Days of Thunder +Elizabeth Weitzman,fresh,0092099,New York Daily News,"There are elements that hold up - especially Cruise's blinding charisma. The aerial scenes are still thrilling, and perfectly suited to a giant screen. Everything else? Well, that depends on how nostalgic you're feeling.",2013-02-07,11271,Top Gun +Gene Siskel,fresh,0092099,Chicago Tribune,The aerial sequences in Top Gun are as thrilling -- while remaining coherent -- as any ever put on film.,2013-02-06,11271,Top Gun +Chris Nashawaty,fresh,0092099,Entertainment Weekly,"Whether you love Top Gun or hate it -- or hate yourself for loving it -- the fact is that when it became the top-grossing film of 1986, Hollywood in its infinite wisdom took all of the worst lessons from its success and overlooked what made it so... fun.",2011-08-25,11271,Top Gun +,rotten,0092099,TIME Magazine,"Top Gun is about the training of the Navy's best fighter pilots and their blooding in cold war incidents, and the only thing Director Tony Scott has not brought up to date is the story.",2011-03-08,11271,Top Gun +Dave Kehr,rotten,0092099,Chicago Reader,"Every moment is hyped for maximum visual and visceral impact, but Scott doesn't display the slightest bit of interest (or belief) in the actual characters and situations.",2011-03-08,11271,Top Gun +Variety Staff,fresh,0092099,Variety,"Set in the world of naval fighter pilots, pic has strong visuals and pretty young people in stylish clothes and a non-stop soundtrack.",2010-07-07,11271,Top Gun +,fresh,0092099,Time Out,"The story is risible, the direction routine, the underlying ethic highly questionable; but the flying stirs the blood like speed.",2006-06-24,11271,Top Gun +Walter Goodman,rotten,0092099,New York Times,"Once 'Top Gun... gets back to earth, the master of the skies is as clunky as a big land-bound bird.",2003-05-21,11271,Top Gun +Roger Ebert,rotten,0092099,Chicago Sun-Times,The dogfights are absolutely the best since Clint Eastwood's electrifying aerial scenes in Firefox. But look out for the scenes where the people talk to one another.,2000-01-01,11271,Top Gun +Stephen Holden,none,0115531,New York Times,,2000-01-01,16777,American Strays +Dave Kehr,fresh,0048545,Chicago Reader,"An unmissable film, made with a delirious compassion.",2007-10-23,11006,Rebel Without a Cause +Robert J. Landry,fresh,0048545,Variety,"Here is a fairly exciting, suspenseful and provocative, if also occasionally far-fetched, melodrama of unhappy youth on another delinquency kick.",2007-10-23,11006,Rebel Without a Cause +Geoff Andrew,fresh,0048545,Time Out,"Dean's finest film, hardly surprisingly in that Ray was one of the great '50s directors.",2006-02-09,11006,Rebel Without a Cause +Roger Ebert,fresh,0048545,Chicago Sun-Times,"Like its hero, Rebel Without a Cause desperately wants to say something and doesn't know what it is. If it did know, it would lose its fascination.",2006-01-20,11006,Rebel Without a Cause +Bosley Crowther,fresh,0048545,New York Times,There are some excruciating flashes of accuracy and truth in this film.,2003-05-20,11006,Rebel Without a Cause +Peter Stack,fresh,0048545,San Francisco Chronicle,An indelible vision of a pretty 1950s America with a searing crack in it.,2000-01-01,11006,Rebel Without a Cause +Dave Kehr,fresh,0044081,Chicago Reader,"...if the hothouse style was ever justified, this is the occasion.",2007-06-28,10198,A Streetcar Named Desire +Geoff Andrew,fresh,0044081,Time Out,...Kazan achieves a sort of theatrical intensity in which the sweaty realism sometimes clashes awkwardly with the stylisation that heightens the dialogue into a kind of poetry.,2006-02-09,10198,A Streetcar Named Desire +Bosley Crowther,fresh,0044081,New York Times,Inner torments are seldom projected with such sensitivity and clarity on the screen.,2003-05-20,10198,A Streetcar Named Desire +,fresh,0044081,Variety,"The camera has done greater justice to the Williams play, catching the nuances and reflected tragedy with an intimacy that is so vital in a story of this type.",2001-02-13,10198,A Streetcar Named Desire +Lloyd Rose,fresh,0044081,Washington Post,Brando's performance as Stanley is one of those rare screen legends that are all they're cracked up to be.,2000-01-01,10198,A Streetcar Named Desire +Roger Ebert,fresh,0044081,Chicago Sun-Times,"Despite the overwhelming power of Brando's performance, Streetcar is one of the great ensemble pieces in the movies.",2000-01-01,10198,A Streetcar Named Desire +Lisa Schwarzbaum,rotten,0217630,Entertainment Weekly,,2011-09-07,12004,Loser +Dennis Harvey,none,0217630,Variety,,2008-06-06,12004,Loser +Geoff Andrew,none,0217630,Time Out,,2006-06-24,12004,Loser +Jeff Strickler,none,0217630,Minneapolis Star Tribune,,2003-12-13,12004,Loser +,rotten,0217630,Globe and Mail,,2002-03-22,12004,Loser +Joel Siegel,rotten,0217630,Good Morning America,,2001-04-24,12004,Loser +,rotten,0217630,Entertainment Weekly,,2000-07-21,12004,Loser +Kevin Maynard,rotten,0217630,Mr. Showbiz,Nothing's helped by a hasty ending.,2000-01-01,12004,Loser +Peter Rainer,none,0217630,New York Magazine,,2000-01-01,12004,Loser +,rotten,0217630,Houston Chronicle,Loser lives down to its title.,2000-01-01,12004,Loser +Mark Caro,rotten,0217630,Chicago Tribune,"Loser boasts one of the all-time worst codas, with those overused, American Graffiti-inspired on-screen notes moralistically telling you the rotten things that ultimately happened to the rotten people.",2000-01-01,12004,Loser +Joe Baltake,fresh,0217630,Sacramento Bee,It's funny.,2000-01-01,12004,Loser +Susan Stark,fresh,0217630,Detroit News,"Biggs, Suvari turn on their winning charm.",2000-01-01,12004,Loser +Tom Keogh,rotten,0217630,Film.com,Biggs is a total dud.,2000-01-01,12004,Loser +Jay Carr,fresh,0217630,Boston Globe,It's enjoyable.,2000-01-01,12004,Loser +Robert Denerstein,rotten,0217630,Denver Rocky Mountain News,,2000-01-01,12004,Loser +Roger Ebert,rotten,0217630,Chicago Sun-Times,"The end notes of Loser are lame, and it is not encouraging when a college movie means 'aid,' but spells it 'aide.'",2000-01-01,12004,Loser +Hap Erstein,fresh,0217630,Atlanta Journal-Constitution,A better-than-average summer night's entertainment.,2000-01-01,12004,Loser +Paul Clinton (CNN.com),rotten,0217630,CNN.com,Loser wins no credits in lusterless college tale.,2000-01-01,12004,Loser +Sean Means,rotten,0217630,Film.com,I'm offended that this crap is being passed off as suitable teen date-night fare.,2000-01-01,12004,Loser +Owen Gleiberman,fresh,0117040,Entertainment Weekly,,2011-09-07,770793379,Microcosmos: Le peuple de l'herbe +Brendan Kelly,none,0117040,Variety,,2009-03-26,770793379,Microcosmos: Le peuple de l'herbe +Derek Adams,none,0117040,Time Out,,2006-06-24,770793379,Microcosmos: Le peuple de l'herbe +Janet Maslin,none,0117040,New York Times,,2003-05-20,770793379,Microcosmos: Le peuple de l'herbe +Jeff Strickler,none,0117040,Minneapolis Star Tribune,,2002-11-06,770793379,Microcosmos: Le peuple de l'herbe +,none,0117040,Los Angeles Times,,2001-02-14,770793379,Microcosmos: Le peuple de l'herbe +Susan Stark,fresh,0117040,Detroit News,,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +Andy Seiler,fresh,0117040,USA Today,A movie with a quirky vision.,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +James Berardinelli,fresh,0117040,ReelViews,,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +Joe Baltake,none,0117040,Sacramento Bee,,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +Peter Stack,none,0117040,San Francisco Chronicle,,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +Roger Ebert,fresh,0117040,Chicago Sun-Times,,2000-01-01,770793379,Microcosmos: Le peuple de l'herbe +,fresh,0117040,Entertainment Weekly,,1996-05-01,770793379,Microcosmos: Le peuple de l'herbe +Deborah Young,none,0117284,Variety,,2009-03-26,16007,Palookaville +Derek Adams,none,0117284,Time Out,,2006-06-24,16007,Palookaville +Stephen Holden,none,0117284,New York Times,,2003-05-20,16007,Palookaville +Jeff Strickler,none,0117284,Minneapolis Star Tribune,,2002-11-06,16007,Palookaville +Desson Thomson,none,0117284,Washington Post,,2002-01-22,16007,Palookaville +Kenneth Turan,none,0117284,Los Angeles Times,,2001-02-14,16007,Palookaville +Susan Stark,fresh,0117284,Detroit News,,2000-01-01,16007,Palookaville +Roger Ebert,fresh,0117284,Chicago Sun-Times,,2000-01-01,16007,Palookaville +Peter Stack,none,0117284,San Francisco Chronicle,,2000-01-01,16007,Palookaville +James Berardinelli,fresh,0117284,ReelViews,,2000-01-01,16007,Palookaville +Emanuel Levy,fresh,0116378,Variety,"Though directed in different style, thematically, this period movie is a companion piece to King of New York and The Bad Lieutenant, forming an urban crime trilogy and representing Ferrara's best work.",2006-07-04,16702,The Funeral +,fresh,0116378,Time Out,"A brilliant, very visceral piece of film-making with an infectious strain of morbid humour.",2006-01-26,16702,The Funeral +Janet Maslin,fresh,0116378,New York Times,[Ferrara] still finds sharp new ways to explore the nuances of a trite-sounding story.,2004-08-30,16702,The Funeral +Desson Thomson,fresh,0116378,Washington Post,You're engaged on a moral level rarely found in movies about violence.,2002-01-22,16702,The Funeral +James Berardinelli,fresh,0116378,ReelViews,,2000-01-01,16702,The Funeral +Susan Stark,fresh,0116378,Detroit News,,2000-01-01,16702,The Funeral +Roger Ebert,fresh,0116378,Chicago Sun-Times,Now here is a gangster movie that does not want setups or payoffs like traditional gangster movies.,2000-01-01,16702,The Funeral +Mick LaSalle,fresh,0116378,San Francisco Chronicle,"Film after film, Ferrara and St. John are finding new ways to scream.",2000-01-01,16702,The Funeral +,fresh,0116378,Entertainment Weekly,,1996-11-01,16702,The Funeral +,none,0368975,Time Out,,2006-02-09,11340,Sleepover +,none,0368975,Denver Post,,2004-09-04,11340,Sleepover +Kris Wilton,rotten,0368975,Village Voice,"Nussbaum's attempt to capture the 'tween zeitgeist fails: The Spice Girls-infused soundtrack is dated, and the feel-good progressiveness forced.",2004-07-13,11340,Sleepover +Richard Roeper,rotten,0368975,Ebert & Roeper,A terrible film.,2004-07-12,11340,Sleepover +Christy Lemire,rotten,0368975,"Journal News (Westchester, NY)",,2004-07-10,11340,Sleepover +,none,0368975,St. Louis Post-Dispatch,,2004-07-09,11340,Sleepover +Robert Denerstein,rotten,0368975,Denver Rocky Mountain News,,2004-07-09,11340,Sleepover +Sara Gebhardt,rotten,0368975,Washington Post,Not overwhelmingly original or funny.,2004-07-09,11340,Sleepover +Ann Hornaday,rotten,0368975,Washington Post,"Just when the big screen could use an injection of frothy, giggly girl power -- all in the name of a covert feminist message, of course -- Sleepover squanders that promise with a blah story and even bigger bummer of a take-home message.",2004-07-09,11340,Sleepover +Geoff Pevere,rotten,0368975,Toronto Star,Fairly standard tween-oriented fare.,2004-07-09,11340,Sleepover +Tom Keogh,fresh,0368975,Seattle Times,"Pleasantly pixilated, if mildly alarming.",2004-07-09,11340,Sleepover +Carla Meyer,rotten,0368975,San Francisco Chronicle,A good-hearted 'tween comedy hampered by uneven direction and a misguided plot twist.,2004-07-09,11340,Sleepover +Jay Boyar,rotten,0368975,Orlando Sentinel,"If the pre-adolescents in your life don't have anything better to do than watch this movie, maybe the time has come to teach them hopscotch.",2004-07-09,11340,Sleepover +Stephen Whitty,rotten,0368975,Newark Star-Ledger,"There's little in the movie to like, either for tween girls or the unlucky parents who accompany them.",2004-07-09,11340,Sleepover +Lou Lumenick,rotten,0368975,New York Post,"If ever a movie could be charged with imperiling the morals of a minor, it's probably Sleepover.",2004-07-09,11340,Sleepover +Elizabeth Weitzman,rotten,0368975,New York Daily News,"A lazy attempt to snare some preadolescent allowance money, Sleepover earns little more than a few bored yawns.",2004-07-09,11340,Sleepover +Connie Ogle,rotten,0368975,Miami Herald,Never comes close to living up to its slight potential.,2004-07-09,11340,Sleepover +Bruce Westbrook,fresh,0368975,Houston Chronicle,"The movie is uneven, but it has scored well during previews, and there's a reason: Sleepover fills a niche-audience void.",2004-07-09,11340,Sleepover +Tom Long,rotten,0368975,Detroit News,The makers of Sleepover have read the 'tweeners film plot handbook and adhere to it closely.,2004-07-09,11340,Sleepover +John Monaghan,rotten,0368975,Detroit Free Press,A waste of a hard-earned allowance.,2004-07-09,11340,Sleepover +Variety Staff,rotten,0113057,Variety,A Single Girl delivers 80 unbroken and ultimately irritating minutes in the life of a pretty hotel waitress (Virginie Ledoyen).,2012-02-07,20119,La fille seule +Jonathan Rosenbaum,fresh,0113057,Chicago Reader,"A stunning demonstration of moral and existential suspense in relation to duration, much like Agnes Varda's 1961 Cleo From 5 to 7.",2012-02-07,20119,La fille seule +James Berardinelli,fresh,0113057,ReelViews,"Even though nothing much happens during the course of the movie (Valerie spends over half the running time wandering around the inside of a hotel), this is a thoroughly engrossing motion picture.",2012-02-07,20119,La fille seule +Stephen Holden,fresh,0113057,New York Times,"Benoit Jacquot's small, dazzling film A Single Girl is so buoyant, sharp-eyed and casually sexy it comes closer than any recent movie to capturing the essence of youth itself.",2004-08-30,20119,La fille seule +Peter Stack,rotten,0113057,San Francisco Chronicle,"A Single Girl shines because of Ledoyen, but sputters in not taking her character anyplace.",2000-01-01,20119,La fille seule +,none,0116581,Time Out,,2006-01-26,270614090,Le huitième jour +,rotten,0116581,Globe and Mail,,2002-12-23,270614090,Le huitième jour +Kevin Thomas,none,0116581,Los Angeles Times,,2001-02-14,270614090,Le huitième jour +Mike Clark,rotten,0116581,USA Today,Try imagining Rain Man without the laughs but with fantasy sequences featuring a Mexican singer in garb out of Chevy Chase's Three Amigos! and a mouse.,2000-01-01,270614090,Le huitième jour +Edward Guthmann,none,0116581,San Francisco Chronicle,,2000-01-01,270614090,Le huitième jour +Roger Ebert,fresh,0116581,Chicago Sun-Times,,2000-01-01,270614090,Le huitième jour +Janet Maslin,none,0116581,New York Times,,2000-01-01,270614090,Le huitième jour +David Ansen,fresh,0272338,Newsweek,It's a romantic comedy on the verge of a nervous breakdown.,2007-11-01,13508,Punch-Drunk Love +Derek Adams,rotten,0272338,Time Out,"The film looks good and has its funny moments, but too often one senses Anderson straining to impress...",2006-06-24,13508,Punch-Drunk Love +Eleanor Ringel Gillespie,fresh,0272338,Atlanta Journal-Constitution,It is quite a vision.,2002-11-02,13508,Punch-Drunk Love +,none,0272338,St. Louis Post-Dispatch,,2002-10-26,13508,Punch-Drunk Love +Robert Denerstein,rotten,0272338,Denver Rocky Mountain News,The journey toward redemption feels more like a cinematic experiment than a full-blown movie.,2002-10-26,13508,Punch-Drunk Love +Mike Clark,fresh,0272338,USA Today,"Despite its title, Punch-Drunk Love is never heavy-handed. The jabs it employs are short, carefully placed and dead-center.",2002-10-25,13508,Punch-Drunk Love +Joe Baltake,fresh,0272338,Sacramento Bee,"In the end, Punch-Drunk Love is one of those films that I wanted to like much more than I actually did. Sometimes, that's enough.",2002-10-25,13508,Punch-Drunk Love +Jay Boyar,fresh,0272338,Orlando Sentinel,Easily one of the best and most exciting movies of the year.,2002-10-25,13508,Punch-Drunk Love +Rene Rodriguez,fresh,0272338,Miami Herald,Punch-Drunk Love knows how to reap epic delight from the most precious of details.,2002-10-25,13508,Punch-Drunk Love +Eric Harrison,fresh,0272338,Houston Chronicle,[Anderson] uses a hit-or-miss aesthetic that hits often enough to keep the film entertaining even if none of it makes a lick of sense.,2002-10-25,13508,Punch-Drunk Love +Susan Stark,fresh,0272338,Detroit News,"It's wacky. It's unpredictable. It's sure to give pause to Sandler fans and, smaller in number but every bit as dedicated, to Watson admirers too.",2002-10-25,13508,Punch-Drunk Love +Terry Lawson,fresh,0272338,Detroit Free Press,Director Paul Thomas Anderson hasn't reinvented Sandler; he's just allowed those of us who tired very quickly of his innocent naif shtick to see how effectively it can be put in the service of something to care about.,2002-10-25,13508,Punch-Drunk Love +Steven Rosen,rotten,0272338,Denver Post,"Everything about Punch-Drunk Love works in a Being John Malkovich sort of way save one. Sandler. When your star doesn't work, it's hard to get us to buy into the rest of a movie as unusual as this.",2002-10-25,13508,Punch-Drunk Love +Bill Muller,fresh,0272338,Arizona Republic,"In Punch-Drunk Love, Adam Sandler doesn't so much discard his old persona as illuminate it, breathing life into the cardboard characters that populated his earlier films.",2002-10-25,13508,Punch-Drunk Love +Rex Reed,rotten,0272338,New York Observer,How odd that a tribute to a wildly theatrical presence should turn out so dull and prosaic.,2002-10-23,13508,Punch-Drunk Love +Andrew Sarris,fresh,0272338,New York Observer,"It is already apparent that Punch-Drunk Love will not be everyone's cup of tea, but nonetheless Mr. Anderson has found a way to fashion a passionate romance out of the materials of postmodern chaos.",2002-10-23,13508,Punch-Drunk Love +Ann Hornaday,fresh,0272338,Washington Post,"A weird, arresting little ride.",2002-10-18,13508,Punch-Drunk Love +Moira MacDonald,fresh,0272338,Seattle Times,"A weirdly sweet little love story set in waltz time and filmed as a study in contrast: light and dark, order and chaos, delicate music and ear-bending noise.",2002-10-18,13508,Punch-Drunk Love +Carla Meyer,fresh,0272338,San Francisco Chronicle,"Sandler is quite winning, but he doesn't stretch so much as deepen the same character he always plays.",2002-10-18,13508,Punch-Drunk Love +Roger Ebert,fresh,0272338,Chicago Sun-Times,"The film is exhilarating to watch because Sandler, liberated from the constraints of formula, reveals unexpected depths as an actor.",2002-10-18,13508,Punch-Drunk Love +,none,0117318,Washington Post,,2008-10-18,15475,The People vs. Larry Flynt +Owen Gleiberman,fresh,0117318,Entertainment Weekly,An exultant comedy of American repression and revolt.,2008-06-30,15475,The People vs. Larry Flynt +David Ansen,fresh,0117318,Newsweek,"A brave, spectacularly entertaining -- and unexpectedly stirring -- account of Flynt's life that asks us to regard the publisher of Hustler magazine as an invaluable champion of our First Amendment freedoms.",2008-06-30,15475,The People vs. Larry Flynt +Todd McCarthy,fresh,0117318,Variety,One of the truly bizarre careers in recent American cultural life provides the source of tart and tasty amusement in The People vs. Larry Flynt.,2008-06-30,15475,The People vs. Larry Flynt +Jonathan Rosenbaum,fresh,0117318,Chicago Reader,"Woody Harrelson plays Flynt with energy, and Courtney Love does at least as well as his wife.",2008-06-30,15475,The People vs. Larry Flynt +Desson Thomson,rotten,0117318,Washington Post,"We're really celebrating Hollywood's freedom to create biographies of anyone, no matter how high or low on the social ladder, and still come up with the same banal characteristics, messages and conclusions.",2008-06-30,15475,The People vs. Larry Flynt +Geoff Andrew,rotten,0117318,Time Out,"The exploitative misogyny of Flynt's output is never examined, the prurient hypocrisy and intolerance of his persecutors seriously overplayed, plus Larry and Althea's odd romance lacks bittersweet conviction.",2006-02-09,15475,The People vs. Larry Flynt +Mick LaSalle,fresh,0117318,San Francisco Chronicle,"It's a modern-day Capra film, about an unorthodox businessman who's persecuted for his originality but eventually is recognized for the lovable, rugged American individualist he truly is.",2002-06-18,15475,The People vs. Larry Flynt +Rick Groen,fresh,0117318,Globe and Mail,"Thanks to the light humour, it's consistently engaging; yet minus that darker shading, it's never fully convincing.",2002-04-12,15475,The People vs. Larry Flynt +Kenneth Turan,fresh,0117318,Los Angeles Times,"In its excesses and extravagances, its fascination with sex, religion, celebrity, bad taste and making a whole lot of money, there is no more American story than that of combative pornographer and Hustler magazine publisher Larry Flynt.",2001-02-14,15475,The People vs. Larry Flynt +Janet Maslin,fresh,0117318,New York Times,"Smart, funny, shamelessly entertaining and perfectly serious too.",2000-01-01,15475,The People vs. Larry Flynt +Mike Clark,fresh,0117318,USA Today,"Like 12 Angry Men, it's a civics lesson that will still be regaling film enthusiasts four decades hence.",2000-01-01,15475,The People vs. Larry Flynt +Rita Kempley,fresh,0117318,Washington Post,An enormously entertaining and surprisingly touching bio-pic.,2000-01-01,15475,The People vs. Larry Flynt +Susan Stark,fresh,0117318,Detroit News,,2000-01-01,15475,The People vs. Larry Flynt +James Berardinelli,fresh,0117318,ReelViews,You don't have to like the man to support his struggles and enjoy this dramatization of them.,2000-01-01,15475,The People vs. Larry Flynt +Roger Ebert,fresh,0117318,Chicago Sun-Times,"Love proves she is not a rock star pretending to act, but a true actress, and Harrelson matches her with his portrait of a man who has one thing on his mind, and never changes it.",2000-01-01,15475,The People vs. Larry Flynt +Charles Taylor,rotten,0117318,Salon.com,"The People vs. Larry Flynt is ultimately a worse disappointment than an out-and-out stinker would be, because of its lively, entertaining first half.",2000-01-01,15475,The People vs. Larry Flynt +Emanuel Levy,none,0116422,Variety,,2011-04-22,15585,Glory Daze +Stephen Holden,none,0116422,New York Times,,2003-05-20,15585,Glory Daze +Edward Guthmann,none,0116422,San Francisco Chronicle,,2000-01-01,15585,Glory Daze +Owen Gleiberman,fresh,0117320,Entertainment Weekly,,2011-09-07,20556,A Perfect Candidate +,none,0117320,Washington Post,,2002-04-16,20556,A Perfect Candidate +Desson Thomson,fresh,0117320,Washington Post,What fun it is to watch.,2002-04-15,20556,A Perfect Candidate +Kenneth Turan,fresh,0117320,Los Angeles Times,"Shrewd, involving",2001-02-14,20556,A Perfect Candidate +Roger Schmeekle,none,0117320,Film.com,"An encouraging item from the film is the claim that, of those who considered honesty and ethics important considerations in choosing a senator, three-fourths voted against North.",2000-01-01,20556,A Perfect Candidate +Janet Maslin,fresh,0117320,New York Times,"A fine, trenchant political documentary on a par with The War Room",2000-01-01,20556,A Perfect Candidate +James Berardinelli,fresh,0117320,ReelViews,"Fascinating, if more than a little depressing",2000-01-01,20556,A Perfect Candidate +Hal Hinson,fresh,0117320,Washington Post,One of a small handful of essential films about politics in this country.,2000-01-01,20556,A Perfect Candidate +Roger Ebert,fresh,0117320,Chicago Sun-Times,"Personalities are being sold, not parties or philosophies, and A Perfect Candidate makes that process even more interesting because one candidate, Robb, apparently has no personality at all, while the other, North, has two.",2000-01-01,20556,A Perfect Candidate +Mick LaSalle,rotten,0117320,San Francisco Chronicle,"The film fails as a portrait of a man. But as an insider's look at a Senate campaign, it holds interest.",2000-01-01,20556,A Perfect Candidate +,fresh,0117320,Entertainment Weekly,,1996-01-01,20556,A Perfect Candidate +Gene Siskel,fresh,0082846,Chicago Tribune,"There is a natural rhythm to the film that makes its own quiet, life-affirming statement.",2013-02-06,12267,On Golden Pond +Richard Schickel,fresh,0082846,TIME Magazine,"When it sometimes seems the whole society has spiritually decamped for Tinseltown, the movie offers the hope that people can come home again-at least for a visit.",2011-06-07,12267,On Golden Pond +Variety Staff,fresh,0082846,Variety,"Without question, these are major, meaty roles for Katharine Hepburn and Henry Fonda, and there could have been little doubt that the two would work superbly together.",2008-02-04,12267,On Golden Pond +,rotten,0082846,Time Out,Two of Hollywood's best-loved veterans deserved a far better swan song than this sticky confection.,2006-01-26,12267,On Golden Pond +Roger Ebert,fresh,0082846,Chicago Sun-Times,"Watching the movie, I felt I was witnessing something rare and valuable.",2004-10-23,12267,On Golden Pond +Vincent Canby,fresh,0082846,New York Times,"On Golden Pond is a mixed blessing, but it offers one performance of rare quality and three others that are very good. That's not half-bad.",2004-08-30,12267,On Golden Pond +Dave Kehr,rotten,0082846,Chicago Reader,"The cinematic equivalent of shrink-wrapping, in which all of the ideas, feelings, characters, and images are neatly separated and hermetically sealed to prevent spoilage, abrasion, or any contact with the natural world.",2000-01-01,12267,On Golden Pond +Geoff Andrew,none,0072081,Time Out,,2006-06-24,9579,The Return of the Pink Panther +Vincent Canby,none,0072081,New York Times,,2005-05-09,9579,The Return of the Pink Panther +Don Druker,none,0072081,Chicago Reader,,2000-01-01,9579,The Return of the Pink Panther +Owen Gleiberman,rotten,0101775,Entertainment Weekly,,2011-09-07,10450,Drop Dead Fred +,none,0101775,Variety,,2008-09-03,10450,Drop Dead Fred +,none,0101775,Time Out,,2006-01-26,10450,Drop Dead Fred +Stephen Holden,none,0101775,New York Times,,2003-05-20,10450,Drop Dead Fred +Hal Hinson,none,0101775,Washington Post,,2000-01-01,10450,Drop Dead Fred +,rotten,0101775,Entertainment Weekly,,1991-04-19,10450,Drop Dead Fred +Variety Staff,fresh,0096754,Variety,"A firstrate underwater suspenser with an otherworldly twist, The Abyss suffers from a payoff unworthy of its buildup.",2008-06-19,12161,The Abyss +Jonathan Rosenbaum,rotten,0096754,Chicago Reader,"The attempt to extract the essences of several genres (cold-war submarine thriller, love story, Disney fantasy, pseudomystical SF in the Spielberg mode) and mix them together ultimately leads to giddy incoherence.",2007-06-06,12161,The Abyss +Geoff Andrew,rotten,0096754,Time Out,"This overlong concoction is scuppered by dire dialogue, histrionic performances and maudlin sentimentality.",2006-02-09,12161,The Abyss +Peter Travers,fresh,0096754,Rolling Stone,Anyone looking for a discouraging word about this stupendously exciting and emotionally engulfing film should read no further. The Abyss confirms James Cameron as a world-class filmmaker.,2001-05-12,12161,The Abyss +Desson Thomson,fresh,0096754,Washington Post,The human stuff is more than worth the descent.,2000-01-01,12161,The Abyss +Rita Kempley,rotten,0096754,Washington Post,I'd sooner believe that Moby Dick could swim up the drainpipe.,2000-01-01,12161,The Abyss +James Berardinelli,fresh,0096754,ReelViews,,1989-08-09,12161,The Abyss +Joshua Rothkopf,rotten,0432291,Time Out New York,"Never will you wish more fervently for an Adrienne Barbeau cameo, just for old time's sake. Your prayers will be in vain.",2007-08-16,8762,The Fog +Andrea Gronvall,rotten,0432291,Chicago Reader,"The production values are above par, but as in Carpenter's original, seeing ghosts is less scary than imagining them.",2007-03-06,8762,The Fog +Mark Salisbury,rotten,0432291,Time Out,Yet another anaemic horror retread starring a cast of good-looking TV totty.,2006-06-24,8762,The Fog +Anita Gates,rotten,0432291,New York Times,Mildly scary here and there.,2005-10-29,8762,The Fog +Christy Lemire,rotten,0432291,Associated Press,"Like most remakes, The Fog is pretty unnecessary.",2005-10-29,8762,The Fog +R. Emmet Sweeney,rotten,0432291,Village Voice,"Making concessions at every turn to the youth-horror market, the film slashes the ages of its protagonists by some 15 years, and its IQ follows suit.",2005-10-27,8762,The Fog +Paul Malcolm,rotten,0432291,L.A. Weekly,A film riddled with missed opportunities for good clean scares.,2005-10-20,8762,The Fog +Owen Gleiberman,rotten,0432291,Entertainment Weekly,"We're meant to be unsettled by digital spectres, reckless Mack trucks, and rotting old pirates who look every bit as terrifying as the guy on the Fisherman's Friend cold-lozenge box.",2005-10-19,8762,The Fog +Lisa Rose,rotten,0432291,Newark Star-Ledger,"Lock your doors. Bolt your windows. And for heaven's sake, stay away from the multiplex.",2005-10-17,8762,The Fog +Kyle Smith,rotten,0432291,New York Post,"I was held in suspense throughout The Fog, aching to learn the answer to its central riddle: Why would any one remake such a crummy movie?",2005-10-17,8762,The Fog +Jami Bernard,rotten,0432291,New York Daily News,"The fog also does something genuinely eerie: It causes everyone in the cast to deliver dreadful performances and display inappropriate reactions when their friends are drowned, burned, stabbed or thrown into glass display cases.",2005-10-17,8762,The Fog +Frank Scheck,rotten,0432291,Hollywood Reporter,Add one more to the list of unnecessary horror remakes.,2005-10-17,8762,The Fog +Joe Leydon,rotten,0432291,Variety,"It's typical of pic's adherence to rigid genre conventions that the very first victims are brazen hotties who are shown drinking, dancing and wearing revealing attire prior to their deaths.",2005-10-17,8762,The Fog +Ty Burr,rotten,0432291,Boston Globe,This Fog lacks the one thing the original had -- originality -- but it qualifies as more than a mist opportunity.,2005-10-17,8762,The Fog +Joshua Rothkopf,fresh,0082340,Time Out New York,The movie proudly wears its affection for crusty Sergio Leone archetypes and countdown-clock suspense sequences; Carpenter was Tarantino long before Tarantino was.,2013-07-23,14097,Escape from New York +Dave Kehr,rotten,0082340,Chicago Reader,It's a rare film that has so many ideas and yet fails so consistently to make use of them.,2007-06-05,14097,Escape from New York +Variety Staff,fresh,0082340,Variety,A solidly satisfying actioner.,2007-06-05,14097,Escape from New York +,fresh,0082340,Time Out,The plot gradually winds down into predictable though highly enoyable histrionics.,2006-01-26,14097,Escape from New York +Vincent Canby,fresh,0082340,New York Times,"It's a toughly told, very tall tale, one of the best escape (and escapist) movies of the season.",2004-08-30,14097,Escape from New York +James Berardinelli,rotten,0082340,ReelViews,"When the final credits roll, you can be forgiven a vague sense of dissatisfaction, because the creativity that went into formulating the premise was never extended to the script writing stage.",2000-01-01,14097,Escape from New York +,none,0082533,Variety,,2009-01-21,16476,The Howling +Derek Adams,none,0082533,Time Out,,2006-06-24,16476,The Howling +Roger Ebert,rotten,0082533,Chicago Sun-Times,,2004-10-23,16476,The Howling +,none,0091288,Variety,,2008-07-22,10960,Jean de Florette +Geoff Andrew,none,0091288,Time Out,,2006-06-24,10960,Jean de Florette +James Berardinelli,fresh,0091288,ReelViews,,2003-09-25,10960,Jean de Florette +Richard Bernstein,none,0091288,New York Times,,2003-05-21,10960,Jean de Florette +Roger Ebert,fresh,0091288,Chicago Sun-Times,"The point of the film is not to create suspense, but to capture the relentlessness of human greed, the feeling that the land is so important the human spirit can be sacrificed to it.",2000-01-01,10960,Jean de Florette +Desson Thomson,fresh,0091288,Washington Post,"You may also become permanently sick of goats. But after Jean, a rich residue of themes and images remains -- much as after reading a long but great novel or Greek tragedy.",2000-01-01,10960,Jean de Florette +Rita Kempley,none,0091288,Washington Post,,2000-01-01,10960,Jean de Florette +Jonathan Rosenbaum,rotten,0091480,Chicago Reader,"Berri also remains a boringly uninteresting director, dotting every i and crossing every t with nothing much on his mind but platitude.",2012-08-14,11360,Manon des sources +Variety Staff,rotten,0091480,Variety,"Berri is unable to overcome the inherent feebleness of the Manon character, here played ineffectually by the lovely and talented Emmanuelle Beart.",2009-03-26,11360,Manon des sources +Derek Adams,fresh,0091480,Time Out,"There is a satisfying symmetry to events, with Manon able to take her revenge on the Soubeyrans.",2006-06-24,11360,Manon des sources +James Berardinelli,fresh,0091480,ReelViews,"The acting, from that of the four major stars to the numerous supporting cast members, is without flaw.",2003-09-25,11360,Manon des sources +Vincent Canby,rotten,0091480,New York Times,The movie is stuffed with cues for arias that are never heard.,2003-05-20,11360,Manon des sources +Roger Ebert,fresh,0091480,Chicago Sun-Times,All of this takes place with the implacable pace of a Greek tragedy.,2000-01-01,11360,Manon des sources +Rita Kempley,rotten,0091480,Washington Post,"Though appealing in its wispy way, Manon is only a continental soap opera.",2000-01-01,11360,Manon des sources +Desson Thomson,rotten,0091480,Washington Post,"Auteil's Ugolin is so well drawn, it's a shame to see the role lost.",2000-01-01,11360,Manon des sources +Joe Morgenstern,none,0362269,Wall Street Journal,,2011-02-19,13114,Kinsey +,rotten,0362269,Time Out,The shame is that the film doesn't convey more mess or danger; its sex and its politics are almost entirely dinner-table-friendly.,2006-02-09,13114,Kinsey +Roger Moore,fresh,0362269,Orlando Sentinel,"It's delightfully playful for a serious movie, balancing glib wit against its pathos and controversy.",2004-12-17,13114,Kinsey +Rex Reed,fresh,0362269,New York Observer,"The great thing about Kinsey is the triumphant way it entertains, informs and electrifies us with the highest values of traditional cinema while opening our hearts and minds with the liberating potential of human diversity.",2004-11-29,13114,Kinsey +Eric Harrison,rotten,0362269,Houston Chronicle,The biopic succumbs to a paint-by-numbers feel as it dutifully touches the highs and lows of a life that can't easily fit within two hours.,2004-11-29,13114,Kinsey +Joe Baltake,fresh,0362269,Sacramento Bee,The remarkable Liam Neeson does an affectingly self-effacing turn in the title role.,2004-11-24,13114,Kinsey +Rene Rodriguez,fresh,0362269,Miami Herald,"Smart, eloquent and refreshingly free of condescension, Kinsey makes clear we'd all be a lot worse off without him.",2004-11-24,13114,Kinsey +Tom Long,fresh,0362269,Detroit News,"One heck of a flick, paying homage to an imperfect man whose impact on history may be substantial, and yet painting him as a clumsy, passionate fellow who's simply trying to figure things out.",2004-11-24,13114,Kinsey +Terry Lawson,fresh,0362269,Detroit Free Press,"I can't imagine the performances, or much else, being improved on.",2004-11-24,13114,Kinsey +Ken Tucker,fresh,0362269,New York Magazine,"It's a new Neeson as Dr. Alfred Kinsey, all spiky-haired and harried, and he's enormously appealing in the role.",2004-11-23,13114,Kinsey +David Denby,fresh,0362269,New Yorker,"It's partly a scientific brief, partly a song of sex, and it's enormously enjoyable.",2004-11-23,13114,Kinsey +Eleanor Ringel Gillespie,fresh,0362269,Atlanta Journal-Constitution,"[Neeson] makes the movie better than it is by filling in the rough patches with a portrayal so committed, so nuanced, that this may be the role he's remembered for (and which may finally win him an Oscar).",2004-11-23,13114,Kinsey +Bill Muller,fresh,0362269,Arizona Republic,"Succeeds, in part, because the film is as non-judgmental as the famed sex researcher himself.",2004-11-23,13114,Kinsey +Teresa Wiltz,rotten,0362269,Washington Post,There's a flatness to the filmmaking; what's needed here is a lot more va-va in its va-va-voom.,2004-11-19,13114,Kinsey +Desson Thomson,fresh,0362269,Washington Post,A convincing picture of an America semiconsciously cowered in fear and ignorance about sexuality.,2004-11-19,13114,Kinsey +Peter Howell,fresh,0362269,Toronto Star,The humour is rich but never bawdy.,2004-11-19,13114,Kinsey +Moira MacDonald,fresh,0362269,Seattle Times,"It's the biography of a sex pioneer disguised as a love story, or a romance with some rather intriguing side issues, and it begins with one of cinema's more intriguing pickup lines: 'I've been reading up on gall wasps.'",2004-11-19,13114,Kinsey +Mick LaSalle,fresh,0362269,San Francisco Chronicle,"It's a film Kinsey himself might have appreciated: It's sober, never flashy or exciting but always engrossing, both for its penetration into Kinsey's psychology and for the effects his findings are shown to have on the world and the people around him.",2004-11-19,13114,Kinsey +Rick Groen,fresh,0362269,Globe and Mail,"Straight from the first frames, writer-director Bill Condon adroitly tackles the problem that all biopics about accomplished people invariably bump up against: How to marry the life to the work, dramatizing one without slighting the other?",2004-11-19,13114,Kinsey +Lisa Kennedy,fresh,0362269,Denver Post,"Not only does Kinsey flow with the purpose of biographical narrative, it provides a compelling portrait of a momentous shift in American culture.",2004-11-19,13114,Kinsey +,none,0081375,Variety,,2009-03-26,14518,Private Benjamin +Derek Adams,none,0081375,Time Out,,2006-02-09,14518,Private Benjamin +Roger Ebert,fresh,0081375,Chicago Sun-Times,,2004-10-23,14518,Private Benjamin +Vincent Canby,none,0081375,New York Times,,2004-08-30,14518,Private Benjamin +Richard Schickel,fresh,0071853,TIME Magazine,"Grail is as funny as a movie can get, but it is also a tough-minded picture -- as outraged about the human propensity for violence as it is outrageous in its attack on that propensity.",2011-03-29,11450,Monty Python and the Holy Grail +Dave Kehr,fresh,0071853,Chicago Reader,"Silly, sophomoric, and slapped together -- but would you want it any other way?",2011-03-29,11450,Monty Python and the Holy Grail +Variety Staff,fresh,0071853,Variety,"Monty Python's Flying Circus, the British comedy group which gained fame via BBC-TV, send-up Arthurian legend, performed in whimsical fashion with Graham Chapman an effective straight man as King Arthur.",2008-09-04,11450,Monty Python and the Holy Grail +Derek Adams,fresh,0071853,Time Out,"Python's delightful and, on the whole, consistent reductio ad absurdum of the Grail legend.",2006-06-24,11450,Monty Python and the Holy Grail +Vincent Canby,fresh,0071853,New York Times,A marvelously particular kind of lunatic endeavor.,2005-05-09,11450,Monty Python and the Holy Grail +Bruce Newman,rotten,0071853,San Jose Mercury News,Holy Grail suffers from the same syndrome that afflicts many of these restored classics: It is better remembered than actually seen.,2003-07-19,11450,Monty Python and the Holy Grail +Kevin Thomas,fresh,0071853,Los Angeles Times,"For all its shenanigans, Monty Python and the Holy Grail has a sense of humor that is intellectual, even academic, at heart.",2002-08-15,11450,Monty Python and the Holy Grail +Michael O'Sullivan,fresh,0071853,Washington Post,"Ah, bless the Pythons, back after 26 years to get medieval all over again on the legend of King Arthur and his knights of the round table.",2001-11-16,11450,Monty Python and the Holy Grail +Roger Moore,fresh,0071853,Orlando Sentinel,The funniest movie of 1975 and probably the silliest movie ever made.,2001-10-12,11450,Monty Python and the Holy Grail +Stephen Hunter,fresh,0071853,Washington Post,"Really smart people improvising really silly gags and bits, most of which work, some of which don't.",2001-09-21,11450,Monty Python and the Holy Grail +Liam Lacey,fresh,0071853,Globe and Mail,Has been so quoted and requoted that the scenes and words feel tattooed onto the psychic membrane.,2001-09-21,11450,Monty Python and the Holy Grail +Steven Rea,fresh,0071853,Philadelphia Inquirer,Still stands as a gloriously silly and twisted send-up.,2001-09-20,11450,Monty Python and the Holy Grail +Tom Sime,fresh,0071853,Dallas Morning News,Brimming over with unforgettable gags and baroquely nonsensical insults.,2001-09-06,11450,Monty Python and the Holy Grail +Terry Lawson,fresh,0071853,Detroit Free Press,"The new Holy Grail is no revelation, just hilarious confirmation that the old days were in fact better.",2001-08-03,11450,Monty Python and the Holy Grail +Joe Baltake,fresh,0071853,Sacramento Bee,Still has the power to shock and make one laugh with shame.,2001-08-01,11450,Monty Python and the Holy Grail +Michael Wilmington,fresh,0071853,Chicago Tribune,"An incredibly silly film of great humor, brilliant design and epic insanity.",2001-06-19,11450,Monty Python and the Holy Grail +James Berardinelli,fresh,0071853,ReelViews,Represents one of the best and brightest comedies ever to shine from the silver screen.,2001-02-21,11450,Monty Python and the Holy Grail +Derek Adams,none,0116587,Time Out,,2006-06-24,17479,Hustler White +,none,0116587,Los Angeles Times,,2001-02-14,17479,Hustler White +Stephen Holden,none,0116587,New York Times,,2000-01-01,17479,Hustler White +Peter Stack,none,0116587,San Francisco Chronicle,,2000-01-01,17479,Hustler White +,none,0112777,Time Out,,2006-01-26,771031792,Dadetown +Daniel M. Kimmel,fresh,0112777,Variety,"Cast of unknowns bring the various characters to vivid life, which may be the problem. This plays so realistically that viewers may not get the satire...",2005-04-29,771031792,Dadetown +Stephen Holden,none,0112777,New York Times,,2003-05-20,771031792,Dadetown +,none,0112777,Los Angeles Times,,2001-11-13,771031792,Dadetown +Roger Ebert,rotten,0112777,Chicago Sun-Times,,2001-11-13,771031792,Dadetown +James Berardinelli,fresh,0112777,ReelViews,,2001-11-13,771031792,Dadetown +Emanuel Levy,rotten,0116245,Variety,A poor imitation of The Big Chill--lesbian style--poorly executed and schematically written.,2006-12-27,770695427,Everything Relative +Stephen Holden,none,0116245,New York Times,,2003-05-20,770695427,Everything Relative +Kevin Thomas,fresh,0116245,Los Angeles Times,"Recalling The Return of the Secaucus Seven rather than the more expensive but more superficial The Big Chill, Everything Relative is one of the best lesbian films yet.",2001-02-14,770695427,Everything Relative +Edward Guthmann,rotten,0116245,San Francisco Chronicle,A mixed bag.,2000-01-01,770695427,Everything Relative +Joe Baltake,rotten,0116245,Sacramento Bee,"With no distinct storyline or one strong individual character to lead the way, the film comes to feel patched together.",2000-01-01,770695427,Everything Relative +Joe Leydon,none,0116212,Variety,,2009-03-26,408728338,Entertaining Angels: The Dorothy Day Story +,none,0116212,Time Out,,2006-01-26,408728338,Entertaining Angels: The Dorothy Day Story +Stephen Holden,none,0116212,New York Times,,2003-05-20,408728338,Entertaining Angels: The Dorothy Day Story +Jeff Strickler,none,0116212,Minneapolis Star Tribune,,2002-11-06,408728338,Entertaining Angels: The Dorothy Day Story +,none,0116212,Los Angeles Times,,2001-02-14,408728338,Entertaining Angels: The Dorothy Day Story +Joe Baltake,none,0116212,Sacramento Bee,,2000-01-01,408728338,Entertaining Angels: The Dorothy Day Story +Peter Stack,none,0116212,San Francisco Chronicle,,2000-01-01,408728338,Entertaining Angels: The Dorothy Day Story +James Berardinelli,rotten,0116212,ReelViews,,2000-01-01,408728338,Entertaining Angels: The Dorothy Day Story +Eddie Cockrell,rotten,0192071,Variety,"The kind of movie where only some of the characters have last names, this essentially sweet-natured enterprise feels slightly rushed and distracted.",2008-07-06,11172,Get Over It +Wally Hammond,rotten,0192071,Time Out,Director O'Haver fails to supply any proper shape or development.,2006-06-24,11172,Get Over It +,rotten,0192071,USA Today,,2003-01-30,11172,Get Over It +,rotten,0192071,Atlanta Journal-Constitution,A sweet teen romance flick.,2002-06-19,11172,Get Over It +,rotten,0192071,Globe and Mail,Shakespeare probably made the point best: Teens rule; parents drool.,2002-04-05,11172,Get Over It +Owen Gleiberman,rotten,0192071,Entertainment Weekly,Get Over It is mostly an amateur hour fiasco.,2001-03-16,11172,Get Over It +Mick LaSalle,fresh,0192071,San Francisco Chronicle,Get Over It breaks the formula for teen romances.,2001-03-12,11172,Get Over It +A.O. Scott,fresh,0192071,New York Times,"May be halfhearted, but it's not entirely without heart.",2001-03-12,11172,Get Over It +Lou Lumenick,rotten,0192071,New York Post,Scarcely enough story for a half-hour TV sitcom.,2001-03-12,11172,Get Over It +Bruce Westbrook,fresh,0192071,Houston Chronicle,A breath of fresh air.,2001-03-12,11172,Get Over It +Michael Rechtshaffen,rotten,0192071,Hollywood Reporter,"Underneath all the fuss, there's a half-baked plot that fails to make much of a connection.",2001-03-12,11172,Get Over It +Gary Dowell,fresh,0192071,Dallas Morning News,It's predictable but charming.,2001-03-12,11172,Get Over It +Christopher Muther,rotten,0192071,Boston Globe,Comes off more like a series of painful cliches than a comedy or a love story.,2001-03-12,11172,Get Over It +Joe Baltake,fresh,0192071,Sacramento Bee,"Will make you feel like you're on spring break, whether you're in still school or not.",2001-03-12,11172,Get Over It +Kevin Thomas,fresh,0192071,Los Angeles Times,A blithe-spirited comedy.,2001-03-12,11172,Get Over It +James Berardinelli,fresh,0192071,ReelViews,Offers a departure (albeit not a radical one) from the norm.,2001-03-12,11172,Get Over It +Peter Howell,fresh,0192071,Toronto Star,A teen movie that for once delivers brains along with babes and buffoons.,2001-03-09,11172,Get Over It +Kevin Maynard,rotten,0192071,Mr. Showbiz,"Deserves to be applauded for not casting Freddie Prinze Jr., but this sloppy, somnolent, strung-together flick pales when compared to such other teenage riffs on classic literature as Clueless and 10 Things I Hate About You.",2001-03-09,11172,Get Over It +Sean Means,fresh,0192071,Film.com,"The surprising part is how, once you get over the crude humor that the teen-movie genre demands, Get Over It is a nice little movie.",2001-03-09,11172,Get Over It +Deborah Young,none,0117968,Variety,,2009-03-26,770670925,Trois vies & une seule mort +Geoff Andrew,none,0117968,Time Out,,2006-02-09,770670925,Trois vies & une seule mort +Stephen Holden,none,0117968,New York Times,,2004-08-30,770670925,Trois vies & une seule mort +,none,0117968,Los Angeles Times,,2001-02-14,770670925,Trois vies & une seule mort +Jonathan Rosenbaum,fresh,0117968,Chicago Reader,,2000-01-01,770670925,Trois vies & une seule mort +Peter Stack,none,0117968,San Francisco Chronicle,,2000-01-01,770670925,Trois vies & une seule mort +Roger Ebert,rotten,0117968,Chicago Sun-Times,,2000-01-01,770670925,Trois vies & une seule mort +Leonard Klady,none,0116886,Variety,,2009-03-26,770699233,The Line King: The Al Hirschfeld Story +Jonathan Rosenbaum,none,0116886,Chicago Reader,,2007-08-04,770699233,The Line King: The Al Hirschfeld Story +Michael O'Sullivan,none,0116886,Washington Post,,2007-08-04,770699233,The Line King: The Al Hirschfeld Story +Nora Sayre,none,0116886,New York Times,,2007-08-04,770699233,The Line King: The Al Hirschfeld Story +Lisa Schwarzbaum,fresh,0118147,Entertainment Weekly,,2011-09-07,12561,When We Were Kings +,none,0118147,Houston Chronicle,,2008-10-18,12561,When We Were Kings +Richard Corliss,fresh,0118147,TIME Magazine,"If anyone deserves an award, it is Ali; his charisma makes the film.",2008-08-04,12561,When We Were Kings +Todd McCarthy,fresh,0118147,Variety,Enormously entertaining.,2007-03-26,12561,When We Were Kings +Rita Kempley,fresh,0118147,Washington Post,"No comedian was ever funnier, no fighter ever faster than Muhammad Ali, who is caught at the top of his game in Leon Gast's valentine, When We Were Kings.",2007-03-26,12561,When We Were Kings +,fresh,0118147,Time Out,A penetrating emotional analysis of the boxing which is nothing short of inspired.,2006-01-26,12561,When We Were Kings +Lawrence Van Gelder,fresh,0118147,New York Times,"When Muhammad Ali achieved victory in Kinshasa on Oct. 30, 1974, he did far more than win a prize fight.",2003-05-20,12561,When We Were Kings +Edward Guthmann,fresh,0118147,San Francisco Chronicle,By portraying the young Ali as hero -- and moving beyond the media image of the poetry-spouting peacock -- Gast reminds us that Ali didn't follow the path of earlier black superstars or earn his stripes by conforming to white society's expectations.,2002-06-18,12561,When We Were Kings +Desson Thomson,fresh,0118147,Washington Post,"By the time the fighters enter that ring, the excitement factor is almost uncontrollable.",2000-01-01,12561,When We Were Kings +Jonathan Rosenbaum,fresh,0118147,Chicago Reader,"With the odds seemingly stacked against him, and surrounded by press, performers, crooks, and charlatans of every stripe, Ali triumphed, and he did so by staying true to his vision and trusting in his own talents.",2000-01-01,12561,When We Were Kings +Charles Taylor,fresh,0118147,Salon.com,Anyone who sees it and still thinks that the sport is two guys beating each other up just ain't paying attention.,2000-01-01,12561,When We Were Kings +Roger Ebert,fresh,0118147,Chicago Sun-Times,"There is a palpable tension, as the two men step into the ring, that is not lessened because we know the outcome.",2000-01-01,12561,When We Were Kings +James Berardinelli,fresh,0118147,ReelViews,You don't have to be a sports fan to enjoy this.... All you need is an appreciation of recent history and a desire to learn more about an event that had far more importance in the world's eyes than any other heavyweight bout in the history of boxing.,2000-01-01,12561,When We Were Kings +Mike Clark,fresh,0118147,USA Today,Immeasurably enriched by extensive location footage shot by director Leon Gast 22 years ago.,2000-01-01,12561,When We Were Kings +,fresh,0118147,Entertainment Weekly,,1996-10-25,12561,When We Were Kings +Lisa Schwarzbaum,fresh,0108598,Entertainment Weekly,,2011-09-07,528392874,Wallace & Gromit in The Wrong Trousers +Geoff Andrew,none,0084589,Time Out,,2006-06-24,19919,Le retour de Martin Guerre +Vincent Canby,none,0084589,New York Times,,2003-05-20,19919,Le retour de Martin Guerre +Dave Kehr,none,0084589,Chicago Reader,,2000-01-01,19919,Le retour de Martin Guerre +Jonathan Holland,none,0223268,Variety,,2012-02-23,17576,Faust: Love of the Damned +Derek Adams,none,0040427,Time Out,,2006-02-09,770678531,He Walked by Night +Dave Kehr,none,0040427,Chicago Reader,,2000-01-01,770678531,He Walked by Night +,none,0091828,Variety,,2009-03-26,16783,Raw Deal +Geoff Andrew,none,0091828,Time Out,,2006-06-24,16783,Raw Deal +Vincent Canby,none,0091828,New York Times,,2003-05-20,16783,Raw Deal +Roger Ebert,rotten,0091828,Chicago Sun-Times,,2000-01-01,16783,Raw Deal +,none,0039881,Variety,,2009-03-26,20882,T-Men +Geoff Andrew,none,0039881,Time Out,,2006-06-24,20882,T-Men +Bosley Crowther,none,0039881,New York Times,,2006-03-25,20882,T-Men +Dave Kehr,none,0039881,Chicago Reader,,2000-01-01,20882,T-Men +Vincent Canby,none,0034493,New York Times,,2006-09-30,243286707,I bambini ci guardano +R. Emmet Sweeney,rotten,0078875,Time Out New York,Schlondorff has a tendency to sketch the rest of the cast as simple grotesques or symbols of decadence that are unconvincingly humanized in the final third.,2012-09-18,16745,Die Blechtrommel +Geoff Andrew,none,0078875,Time Out,,2006-06-24,16745,Die Blechtrommel +Roger Ebert,rotten,0078875,Chicago Sun-Times,,2004-10-23,16745,Die Blechtrommel +Vincent Canby,none,0078875,New York Times,,2003-05-20,16745,Die Blechtrommel +Toby Zinman,none,0069198,Variety,,2009-02-13,15650,The Ruling Class +Geoff Andrew,none,0069198,Time Out,,2006-06-24,15650,The Ruling Class +Roger Ebert,rotten,0069198,Chicago Sun-Times,,2004-10-23,15650,The Ruling Class +Lisa Nesselson,none,0110521,Variety,,2009-03-26,770680017,Mina Tannenbaum +Derek Adams,none,0110521,Time Out,,2006-06-24,770680017,Mina Tannenbaum +Janet Maslin,none,0110521,New York Times,,2003-05-20,770680017,Mina Tannenbaum +Kevin Thomas,none,0110521,Los Angeles Times,,2001-02-14,770680017,Mina Tannenbaum +Edward Guthmann,none,0110521,San Francisco Chronicle,,2000-01-01,770680017,Mina Tannenbaum +Stanley Kauffmann,none,0110521,The New Republic,,2000-01-01,770680017,Mina Tannenbaum +Charles Taylor,none,0110521,Salon.com,,2000-01-01,770680017,Mina Tannenbaum +Ben Kenigsberg,fresh,0060304,Time Out,,2011-11-16,405589925,2 ou 3 choses que je sais d'elle +Michael Wilmington,fresh,0060304,Chicago Tribune,"Two or Three Things I Know About Her is one of the most beautiful films of the young Jean-Luc Godard, a great French cineaste, poet and frustrated lover.",2007-02-22,405589925,2 ou 3 choses que je sais d'elle +John Monaghan,fresh,0060304,Detroit Free Press,"Based on a series of magazine articles, the movie was made around the time Godard abandoned conventional narrative almost entirely for what he dubbed the cinematic essay.",2007-02-16,405589925,2 ou 3 choses que je sais d'elle +Manohla Dargis,fresh,0060304,New York Times,"he her in the title of Jean-Luc Godard's 1967 film is meant to be Paris. There is, however, another 'her.'",2006-11-16,405589925,2 ou 3 choses que je sais d'elle +Andrew O'Hehir,rotten,0060304,Salon.com,"Despite an aura of wistfulness, and a certain power that accrues from the disjunction between the story of a vulnerable, life-hardened woman, the chaotic collision of sound and image, and the ham-handed political lessons, this film never moves me.",2006-11-16,405589925,2 ou 3 choses que je sais d'elle +Nathan Lee,fresh,0060304,Village Voice,"Raoul Coutard's Techniscope cinematography contemplates an espresso, filling the screen in monumental close-up with a rotating vortex of bubbles and foam.",2006-11-14,405589925,2 ou 3 choses que je sais d'elle +,fresh,0060304,Time Out,Too good to miss.,2006-02-11,405589925,2 ou 3 choses que je sais d'elle +Renata Adler,fresh,0060304,New York Times,"There is certainly enough of wit and beauty, though, to keep the film afloat.",2005-05-09,405589925,2 ou 3 choses que je sais d'elle +Roger Ebert,fresh,0060304,Chicago Sun-Times,Godard is as relaxed in the film as in the title.,2004-10-23,405589925,2 ou 3 choses que je sais d'elle +Dave Kehr,fresh,0060304,Chicago Reader,"Though poorly received on its first release, this 1966 film seems in retrospect one of Godard's most stimulating investigations of images and surfaces -- the meanings they convey and the webs they spin.",2000-01-01,405589925,2 ou 3 choses que je sais d'elle +Owen Gleiberman,rotten,0116059,Entertainment Weekly,,2011-09-07,12341,Dear God +Leonard Klady,rotten,0116059,Variety,"It unfortunately has an unfinished quality, and plays very much like a good first draft for a much better movie than the one on view.",2009-03-26,12341,Dear God +Janet Maslin,rotten,0116059,New York Times,"Together, these characters discover the ideas of faith and fellowship as the film congratulates itself on its noble instincts.",2003-05-20,12341,Dear God +Desson Thomson,rotten,0116059,Washington Post,"A goofy, goodwill gesture toward the U.S. Postal Service, it's never funny and moves slower than an unaddressed letter without postage.",2002-01-22,12341,Dear God +Jack Mathews,rotten,0116059,Los Angeles Times,"As trite as the framework is, Dear God might have been a charming holiday film, if only its miracles weren't so trite.",2001-02-14,12341,Dear God +Susan Stark,rotten,0116059,Detroit News,,2000-01-01,12341,Dear God +Peter Stack,rotten,0116059,San Francisco Chronicle,"Awkward cuts rob the film of cohesion, and even the charming Kinnear seems to disappear at times amid the chaos -- a real test of viewers' faith.",2000-01-01,12341,Dear God +Susan Wloszczyna,rotten,0116059,USA Today,"Though aspiring to Capraesque whimsy, Dear God feels and looks like a faded rerun of Marshall's Happy Days.",2000-01-01,12341,Dear God +James Berardinelli,rotten,0116059,ReelViews,A sickeningly bad pastiche of much better pictures.,2000-01-01,12341,Dear God +Roger Ebert,rotten,0116059,Chicago Sun-Times,"It is a limp, lifeless story starring Greg Kinnear as a con man who becomes a do-gooder, and one of its many problems is that he was a lot more entertaining as a con man.",2000-01-01,12341,Dear God +,rotten,0116059,Entertainment Weekly,,1996-11-01,12341,Dear God +Joe Leydon,none,0115610,Variety,,2009-03-26,14247,Bad Moon +Stephen Holden,none,0115610,New York Times,,2003-05-20,14247,Bad Moon +Kevin Thomas,none,0115610,Los Angeles Times,,2001-02-14,14247,Bad Moon +Mick LaSalle,none,0115610,San Francisco Chronicle,,2000-01-01,14247,Bad Moon +James Berardinelli,rotten,0115610,ReelViews,,2000-01-01,14247,Bad Moon +Owen Gleiberman,fresh,0103850,Entertainment Weekly,,2011-09-07,16319,Bob Roberts +Jonathan Rosenbaum,fresh,0103850,Chicago Reader,A sometimes brilliant if overloaded pseudodocumentary satire.,2009-07-08,16319,Bob Roberts +Todd McCarthy,fresh,0103850,Variety,"A sort of political This Is Spinal Tap, Bob Roberts is both a stimulating social satire and, for thinking people, a depressing commentary on the devolution of the American political system.",2008-06-10,16319,Bob Roberts +Geoff Andrew,fresh,0103850,Time Out,"Bob Roberts is not merely a satirical fictional biopic, but a wry exploration of the relationship between political reality and manufactured image.",2006-02-09,16319,Bob Roberts +Vincent Canby,fresh,0103850,New York Times,"A very funny, sometimes prescient satire of American politics, and of the comparatively small, voting portion of the electorate that makes a Bob Roberts phenomenon possible.",2003-05-20,16319,Bob Roberts +Peter Travers,none,0103850,Rolling Stone,Tim Robbins inaugurates the fall season with a slashingly funny political satire that ranks with the year's best films.,2001-05-12,16319,Bob Roberts +Desson Thomson,fresh,0103850,Washington Post,"Robbins, who scripted and directed, creates more than enough on his own. Bob's un-hackneyed character is the prime case in point.",2000-01-01,16319,Bob Roberts +Roger Ebert,fresh,0103850,Chicago Sun-Times,"Watching it might be an education for some voters, who will recognize in the movie political techniques they see being practiced all the time in real life.",2000-01-01,16319,Bob Roberts +Rita Kempley,fresh,0103850,Washington Post,A welcome injection of venom.,2000-01-01,16319,Bob Roberts +,fresh,0103850,Entertainment Weekly,,1992-09-01,16319,Bob Roberts +Tom Keogh,fresh,0095765,Seattle Times,"The heightened symmetry of this new/old Cinema Paradiso makes the film a fuller experience, like an old friend haunted by the exigencies of time.",2002-07-19,14337,Nuovo Cinema Paradiso +Eric Harrison,fresh,0095765,Houston Chronicle,"In the director's cut, the film is not only a love song to the movies but it also is more fully an example of the kind of lush, all-enveloping movie experience it rhapsodizes.",2002-07-19,14337,Nuovo Cinema Paradiso +Terry Lawson,rotten,0095765,Detroit Free Press,"The film's final hour, where nearly all the previous unseen material resides, is unconvincing soap opera that Tornatore was right to cut.",2002-07-19,14337,Nuovo Cinema Paradiso +,none,0095765,Arizona Republic,,2002-07-19,14337,Nuovo Cinema Paradiso +Ann Hornaday,fresh,0095765,Washington Post,"Still rapturous after all these years, Cinema Paradiso stands as one of the great films about movie love.",2002-07-11,14337,Nuovo Cinema Paradiso +Mick LaSalle,rotten,0095765,San Francisco Chronicle,This director's cut -- which adds 51 minutes -- takes a great film and turns it into a mundane soap opera.,2002-06-28,14337,Nuovo Cinema Paradiso +Ty Burr,fresh,0095765,Boston Globe,"Where the original release was an essay in childish delight and adolescent longing, topped off by a muted coda implying that you really can go home again, the reissue is a fully realized epic of the heart.",2002-06-28,14337,Nuovo Cinema Paradiso +Roger Ebert,fresh,0095765,Chicago Sun-Times,"I'm happy to have seen it -- not as an alternate version, but as the ultimate exercise in viewing deleted scenes.",2002-06-28,14337,Nuovo Cinema Paradiso +Carrie Rickey,fresh,0095765,Philadelphia Inquirer,Less front-loaded and more shapely than the two-hour version released here in 1990.,2002-06-27,14337,Nuovo Cinema Paradiso +Chris Vognar,fresh,0095765,Dallas Morning News,"As it turns out, you can go home again.",2002-06-27,14337,Nuovo Cinema Paradiso +Michael Wilmington,fresh,0095765,Chicago Tribune,I don't think most of the people who loved the 1989 Paradiso will prefer this new version. But I do.,2002-06-27,14337,Nuovo Cinema Paradiso +Dan Fienberg,fresh,0095765,L.A. Weekly,"This version moves beyond the original's nostalgia for the communal film experiences of yesteryear to a deeper realization of cinema's inability to stand in for true, lived experience.",2002-06-26,14337,Nuovo Cinema Paradiso +Owen Gleiberman,fresh,0095765,Entertainment Weekly,The new version isn't just endless. It heightens the deeply conservative spirit of Giuseppe Tornatore's fable in a surprising new way.,2002-06-15,14337,Nuovo Cinema Paradiso +Stephen Holden,fresh,0095765,New York Times,"More romantic, more emotional and ultimately more satisfying than the teary-eyed original.",2002-06-14,14337,Nuovo Cinema Paradiso +John Hartl,fresh,0095765,Film.com,"Anyone who feels as attached to the history of movies as Tornatore obviously does, there are more than enough irresistible moments.",2000-01-01,14337,Nuovo Cinema Paradiso +James Berardinelli,fresh,0095765,ReelViews,"This film is sometimes funny, sometimes joyful, and sometimes poignant, but it's always warm, wonderful, and satisfying.",2000-01-01,14337,Nuovo Cinema Paradiso +Rita Kempley,fresh,0095765,Washington Post,"It is, in a word, exquisite.",2000-01-01,14337,Nuovo Cinema Paradiso +Desson Thomson,fresh,0095765,Washington Post,"For the most part, this hamfisted movie is very enjoyable.",2000-01-01,14337,Nuovo Cinema Paradiso +Variety Staff,fresh,0097108,Variety,"Albert is one of the ugliest characters ever brought to the screen. Ignorant, over-bearing and violent, it's a gloriously rich performance by Gambon.",2008-10-18,14895,The Cook the Thief His Wife & Her Lover +Geoff Andrew,rotten,0097108,Time Out,"For a Jacobean-style drama about deadly emotions, the film lacks passion; only in the final half-hour, with Michael Nyman's funereal music supplying a welcome gravity, does it at last exert a stately power.",2006-06-24,14895,The Cook the Thief His Wife & Her Lover +Caryn James,fresh,0097108,New York Times,"A work so intelligent and powerful that it evokes our best emotions and least civil impulses, so esthetically brilliant that it expands the boundaries of film itself.",2003-05-20,14895,The Cook the Thief His Wife & Her Lover +Roger Ebert,fresh,0097108,Chicago Sun-Times,It doesn't simply make a show of being uncompromising -- it is uncompromised in every single shot from beginning to end.,2000-01-01,14895,The Cook the Thief His Wife & Her Lover +Hal Hinson,fresh,0097108,Washington Post,"Greenaway, the bemused, coolly ironic truth-teller, has painted a cruel portrait for a cruel time.",2000-01-01,14895,The Cook the Thief His Wife & Her Lover +James Berardinelli,fresh,0097108,ReelViews,"Taboos? If director Peter Greenaway has any, you can't tell by this film.",2000-01-01,14895,The Cook the Thief His Wife & Her Lover +Desson Thomson,fresh,0097108,Washington Post,"Give or take another masterpiece coming down the pike, this intricately assembled, viscerally provocative tract on consumerism gone full and grisly circle, is without a doubt, the most accomplished, astounding film of the year.",2000-01-01,14895,The Cook the Thief His Wife & Her Lover +Owen Gleiberman,rotten,0097108,Entertainment Weekly,It's probably safe to say that the British director Peter Greenaway holds the ugliest view of mankind ever put forth by a maker of feature films.,1989-09-11,14895,The Cook the Thief His Wife & Her Lover +Leonard Klady,none,0109942,Variety,,2009-03-26,770694385,Grosse fatigue +Derek Adams,none,0109942,Time Out,,2006-06-24,770694385,Grosse fatigue +Janet Maslin,none,0109942,New York Times,,2003-05-20,770694385,Grosse fatigue +Kevin Thomas,none,0109942,Los Angeles Times,,2001-02-13,770694385,Grosse fatigue +James Berardinelli,fresh,0109942,ReelViews,,2000-01-01,770694385,Grosse fatigue +Mick LaSalle,none,0109942,San Francisco Chronicle,,2000-01-01,770694385,Grosse fatigue +Joyce Jones,none,0109942,Washington Post,,2000-01-01,770694385,Grosse fatigue +Roger Ebert,rotten,0109942,Chicago Sun-Times,,2000-01-01,770694385,Grosse fatigue +Rita Kempley,none,0109942,Washington Post,,2000-01-01,770694385,Grosse fatigue +Duane Byrge,fresh,0101700,Hollywood Reporter,"With their detached, sardonic and decidedly sick slant, Jeunet and Caro have served up a burnt-to-a-crisp feast.",2007-06-05,16954,Delicatessen +Jonathan Rosenbaum,rotten,0101700,Chicago Reader,"There are no characters to care about or remember afterward -- just a lot of flashy technique involving decor, some glib allegorical flourishes, and the obligatory studied film-school weirdness.",2007-06-05,16954,Delicatessen +Variety Staff,fresh,0101700,Variety,A zany little film that's a startling and clever debut for co-helmers Jean-Pierre Jeunet and Marc Caro.,2007-06-05,16954,Delicatessen +Geoff Andrew,fresh,0101700,Time Out,"Increasingly inventive as it progresses, Jeunet and Caro's fast, funny feature debut entertains from sinister start to frantic finish.",2006-01-26,16954,Delicatessen +Janet Maslin,rotten,0101700,New York Times,"Its last half-hour is devoted chiefly to letting the characters wreck the sets, and quite literally becomes a washout when the bathtub overflows.",2003-05-20,16954,Delicatessen +Rita Kempley,rotten,0101700,Washington Post,A laboriously self-conscious attempt at being avant-garde.,2000-01-01,16954,Delicatessen +Jenn Shreve,fresh,0101700,Salon.com,Marc Caro and Jean-Pierre Jeunet's film leaves you overwhelmed and breathless.,2000-01-01,16954,Delicatessen +,none,0101765,Variety,,2009-03-26,16955,La double vie de Véronique +Anthony Lane,fresh,0101765,New Yorker,"We see through a glass darkly, and often confusingly, but at least we see.",2006-04-03,16955,La double vie de Véronique +,none,0101765,Time Out,,2006-02-11,16955,La double vie de Véronique +Caryn James,fresh,0101765,New York Times,"Don't even attempt to resolve that paradox, and The Double Life of Veronique will work on its own poetic terms.",2003-05-20,16955,La double vie de Véronique +Hal Hinson,fresh,0101765,Washington Post,A mesmerizing poetic work composed in an eerie minor key.,2000-01-01,16955,La double vie de Véronique +Desson Thomson,fresh,0101765,Washington Post,"It operates purely on visual juxtapositions, emotion and the presence of lead actress Irene Jacob. In its own terms, it's subtly precious.",2000-01-01,16955,La double vie de Véronique +Roger Ebert,fresh,0101765,Chicago Sun-Times,"The parts do not quite fit, and anyway this is not a puzzle to be assembled. It is a romance about those moments we all sometimes have when we think we see ourselves at a distance.",2000-01-01,16955,La double vie de Véronique +Richard Corliss,fresh,0101811,TIME Magazine,"In a raucous movie summer, this is a film for those who appreciate wisteria and sunshine, and a recollection of a time when women and movies could be purveyors of enchantment.",2011-05-27,535718647,Enchanted April +Variety Staff,rotten,0101811,Variety,Strong cast's reliable playing is undercut by a script that dawdles over well-trod territory.,2010-07-06,535718647,Enchanted April +,fresh,0101811,Time Out,"Personalities clash but are cheerfully reconciled, and marital tensions are swiftly resolved.",2006-01-26,535718647,Enchanted April +Janet Maslin,fresh,0101811,New York Times,"The ladies are well bred, the scenery is lovely and the dialogue is polished and polite. It helps that the same villa in Portofino where Miss von Armin wrote the novel has been used to fine effect as the film's principal setting.",2003-05-20,535718647,Enchanted April +Hal Hinson,rotten,0101811,Washington Post,Is it fair to ask why usually sophisticated Americans turn to mush over this particular variety of moribund ersatz art?,2000-01-01,535718647,Enchanted April +James Berardinelli,fresh,0101811,ReelViews,"Personalities clash but are cheerfully reconciled, and marital tensions are swiftly resolved.",2000-01-01,535718647,Enchanted April +Desson Thomson,fresh,0101811,Washington Post,"It would seem from a spate of films lately that the English can only find their warmer, truer selves abroad -- usually in Italy. Enchanted April takes this familiar path, but traipses along with charm and glory, as if for the very first time.",2000-01-01,535718647,Enchanted April +,fresh,0101811,Entertainment Weekly,That's what's appealing about the movie (everyone walks away happy) and also forgettable (everyone walks away mush).,1992-04-05,535718647,Enchanted April +David Mermelstein,fresh,0050825,Wall Street Journal,"More than 20 years after Mr. Cobb's novel was first published, Mr. Kubrick reminded us that human folly is rarely checked for long. A half-century on, he is still right.",2013-03-26,17114,Paths of Glory +Crosby Day,fresh,0050825,Orlando Sentinel,Kirk Douglas gives one of his finest performances as the intelligent and courageous Col. Dax.,2013-03-26,17114,Paths of Glory +David Denby,fresh,0050825,New Yorker,"The sardonic rhetoric may be laid on a little heavily at times, but the movie is blunt and scornfully brilliant.",2013-03-26,17114,Paths of Glory +Variety Staff,rotten,0050825,Variety,"While the subject is well handled and enacted in a series of outstanding characterizations, it seems dated and makes for grim screen fare.",2007-05-08,17114,Paths of Glory +Jonathan Rosenbaum,fresh,0050825,Chicago Reader,"This masterpiece still packs a wallop, though nothing in it is as simple as it may first appear; audiences are still arguing about the final sequence, which has been characterized as everything from a sentimental cop-out to the ultimate cynical twist.",2007-05-08,17114,Paths of Glory +Dave Calhoun,fresh,0050825,Time Out,"The final scene, in which Kubrick presents close-ups of soldiers watching a captured German girl being forced to sing for their pleasure is nothing short of masterful.",2006-06-24,17114,Paths of Glory +Roger Ebert,fresh,0050825,Chicago Sun-Times,Songs at the ends of dramas usually make us feel better. They are part of closure. This song at the end of this movie makes us feel more forlorn.,2006-01-20,17114,Paths of Glory +Ken Tucker,fresh,0050825,New York Magazine,Paths of Glory is all about that greatest of all movie subjects: power.,2005-12-09,17114,Paths of Glory +J. Hoberman,fresh,0050825,Village Voice,There's a near mathematical logic to the scenario and the cruelty is compounded by class.,2005-11-29,17114,Paths of Glory +Michael Wilmington,fresh,0050825,Chicago Tribune,"Both a terrifying, grim look at battle and an excruciatingly tense courtroom thriller. Together, it's a devastating indictment of war as conducted by opportunists and liars.",2005-02-24,17114,Paths of Glory +Bosley Crowther,rotten,0050825,New York Times,"As for the picture's significance, it comes to an inconclusive point.",2000-01-01,17114,Paths of Glory +Owen Gleiberman,fresh,0099703,Entertainment Weekly,,2011-09-07,16215,The Grifters +Richard Corliss,fresh,0099703,TIME Magazine,Best to savor The Grifters for its handsome design -- the picture looks as clean as a Hockney landscape -- and its juicy performances.,2009-11-06,16215,The Grifters +Jonathan Rosenbaum,rotten,0099703,Chicago Reader,A mannerist thriller that doesn't begin to work despite the number of talented hands involved.,2009-11-06,16215,The Grifters +Variety Staff,rotten,0099703,Variety,"Cusack underplays Roy, making him an unbelievable wiseguy, a colorless cipher too akin to the saps he loves to fleece.",2008-10-18,16215,The Grifters +Stephen Garrett,fresh,0099703,Time Out,Donald Westlake's excellent screenplay does some justice to the starkness of Jim Thompson's novel; and Frears' direction never fails to grab the attention.,2006-06-24,16215,The Grifters +Vincent Canby,fresh,0099703,New York Times,The Grifters is so good that one leaves the theater on a spellbound high.,2003-05-20,16215,The Grifters +Hal Hinson,fresh,0099703,Washington Post,"It seduces you into believing it's merely a cheeky trifle, and then, when you least expect it, lowers the boom.",2000-01-01,16215,The Grifters +Desson Thomson,fresh,0099703,Washington Post,This is one human board game that's absorbing to watch.,2000-01-01,16215,The Grifters +Roger Ebert,fresh,0099703,Chicago Sun-Times,"This is a movie of plot, not episode. It's not just a series of things that happen to the characters, but a web, a maze of consequences.",2000-01-01,16215,The Grifters +,fresh,0099703,Entertainment Weekly,,1990-09-14,16215,The Grifters +Owen Gleiberman,fresh,0102014,Entertainment Weekly,,2011-09-07,494066260,Hear My Song +,none,0102014,Variety,,2009-03-26,494066260,Hear My Song +Derek Adams,none,0102014,Time Out,,2006-06-24,494066260,Hear My Song +Janet Maslin,none,0102014,New York Times,,2003-05-20,494066260,Hear My Song +Peter Travers,none,0102014,Rolling Stone,,2001-05-12,494066260,Hear My Song +Hal Hinson,none,0102014,Washington Post,,2000-01-01,494066260,Hear My Song +Desson Thomson,none,0102014,Washington Post,,2000-01-01,494066260,Hear My Song +Roger Ebert,fresh,0102014,Chicago Sun-Times,,2000-01-01,494066260,Hear My Song +,fresh,0102014,Entertainment Weekly,,1991-12-27,494066260,Hear My Song +Mark Caro,fresh,0116209,Chicago Tribune,"With its fine acting, sumptuous visuals and levels of intrigue, The English Patient boasts the elements of something greater than a love story. Too bad it devotes them to something less than a great love story.",2013-02-24,14840,The English Patient +Anthony Lane,fresh,0116209,New Yorker,"The triumph of the film lies not just in the force and range of the performances, but in Minghella's creation of an intimate epic: vast landscapes mingle with the minute details of desire, and the combination is transfixing.",2013-02-24,14840,The English Patient +David Ansen,fresh,0116209,Newsweek,"Out of each of these uprooted characters are spun stories of love, loyalty and betrayal.",2008-01-29,14840,The English Patient +Richard Corliss,fresh,0116209,TIME Magazine,"The cast is superb: Binoche, with her thin, seraphic smile; Scott Thomas, aware of the spell she casts but not flaunting it; Fiennes, especially, radiating sexy mystery, threat shrouded in hauteur. Doom and drive rarely have so much stately star quality.",2008-01-29,14840,The English Patient +Todd McCarthy,rotten,0116209,Variety,"A respectable, intelligent but less than stirring adaptation of an imposingly dense and layered novel.",2008-01-29,14840,The English Patient +Jeff Millar,fresh,0116209,Houston Chronicle,"This is the real thing, and real things don't come along very often, so you'd better snap them up when they do.",2007-02-10,14840,The English Patient +Jonathan Rosenbaum,rotten,0116209,Chicago Reader,"For all the film's effectiveness as a love story, I often felt I was being hurried through a busy itinerary.",2007-02-05,14840,The English Patient +Rita Kempley,fresh,0116209,Washington Post,The result is completely intoxicating.,2007-02-05,14840,The English Patient +Geoff Andrew,fresh,0116209,Time Out,"Needless to say, the performances are flawless; more surprising is the fluency, poetry and scale of Minghella's direction.",2006-01-26,14840,The English Patient +Peter Stack,fresh,0116209,San Francisco Chronicle,"Torrid, witty, passionate and intelligent.",2002-06-18,14840,The English Patient +Peter Travers,fresh,0116209,Rolling Stone,Get ready for the great romance of the movie year.,2001-05-12,14840,The English Patient +Kenneth Turan,fresh,0116209,Los Angeles Times,The English Patient captivates as only the grandest and most consuming passions can.,2001-02-14,14840,The English Patient +Susan Stark,fresh,0116209,Detroit News,,2000-01-01,14840,The English Patient +Janet Maslin,fresh,0116209,New York Times,A stunning feat of literary adaptation as well as a purely cinematic triumph.,2000-01-01,14840,The English Patient +Gary Kamiya,fresh,0116209,Salon.com,"The English Patient, the superb new film by Anthony Minghella, is that rarest of things: a film based on a great contemporary novel.",2000-01-01,14840,The English Patient +Desson Thomson,fresh,0116209,Washington Post,This is a movie to lose yourself in.,2000-01-01,14840,The English Patient +Roger Ebert,fresh,0116209,Chicago Sun-Times,"This poetic, evocative film version of the famous novel by Michael Ondaatje circles down through layers of mystery until all of the puzzles in the story have been solved, and only the great wound of a doomed love remains.",2000-01-01,14840,The English Patient +James Berardinelli,fresh,0116209,ReelViews,"This is one of the year's most unabashed and powerful love stories, using flawless performances, intelligent dialogue, crisp camera work, and loaded glances to attain a level of eroticism and emotional connection that many similar films miss.",2000-01-01,14840,The English Patient +Mike Clark,fresh,0116209,USA Today,An aerobic workout for the tear ducts.,2000-01-01,14840,The English Patient +Owen Gleiberman,fresh,0116209,Entertainment Weekly,"An elegant, accomplished piece of high modernist filmmaking.",1996-11-15,14840,The English Patient +Derek Adams,none,0102426,Time Out,,2006-02-09,16890,Mediterraneo +Vincent Canby,none,0102426,New York Times,,2003-05-20,16890,Mediterraneo +James Berardinelli,rotten,0102426,ReelViews,,2000-01-01,16890,Mediterraneo +Hal Hinson,none,0102426,Washington Post,,2000-01-01,16890,Mediterraneo +Desson Thomson,none,0102426,Washington Post,,2000-01-01,16890,Mediterraneo +Variety Staff,fresh,0097937,Variety,All performances are on the mark in this perfect little film.,2009-03-26,16866,My Left Foot: The Story of Christy Brown +Jonathan Rosenbaum,fresh,0097937,Chicago Reader,For all his character's travails the film as a whole winds up surprisingly upbeat.,2008-03-10,16866,My Left Foot: The Story of Christy Brown +,fresh,0097937,Time Out,"Day Lewis' re-creation of writer/painter Christy Brown's condition is so precise, so detailed and so matter-of-fact that it transcends the carping about casting an actor without cerebral palsy.",2006-06-24,16866,My Left Foot: The Story of Christy Brown +Vincent Canby,fresh,0097937,New York Times,"An intelligent, beautifully acted adaptation of Christy Brown's first book.",2003-05-20,16866,My Left Foot: The Story of Christy Brown +Roger Ebert,fresh,0097937,Chicago Sun-Times,"My Left Foot is a great film for many reasons, but the most important is that it gives us such a complete picture of this man's life.",2000-01-01,16866,My Left Foot: The Story of Christy Brown +Desson Thomson,fresh,0097937,Washington Post,"Not only does Day-Lewis master the physical aspects of the role, the minute-to-minute struggle of almost complete paralysis, he lives the painful genesis of an artistic character.",2000-01-01,16866,My Left Foot: The Story of Christy Brown +Hal Hinson,fresh,0097937,Washington Post,Jim Sheridan's My Left Foot must be the most passionately empathetic film about a physical affliction ever made.,2000-01-01,16866,My Left Foot: The Story of Christy Brown +Richard Corliss,fresh,0098724,TIME Magazine,"What amazes is that at just 26, Soderbergh displays the three qualities associated with mature filmmakers: a unique authorial voice, a spooky camera assurance, and the easy control of ensemble acting.",2011-12-09,13618,"Sex, Lies, and Videotape" +Variety Staff,fresh,0098724,Variety,"This is a sexy, nuanced, beautifully controlled examination of how a quartet of people are defined by their erotic impulses and inhibitions.",2008-10-18,13618,"Sex, Lies, and Videotape" +David Ansen,none,0098724,Newsweek,,2008-03-31,13618,"Sex, Lies, and Videotape" +Geoff Andrew,fresh,0098724,Time Out,"The actors are superb; working from Soderbergh's funny, perceptive, immaculately wrought dialogue, they ensure that the film stimulates both intellectually and emotionally.",2006-06-24,13618,"Sex, Lies, and Videotape" +Caryn James,fresh,0098724,New York Times,A film whose enormous authority and intelligence extend to every detail.,2003-05-20,13618,"Sex, Lies, and Videotape" +Peter Travers,fresh,0098724,Rolling Stone,"A movie of prodigious power and feeling that is also high-spirited, hilarious and scorchingly erotic.",2001-05-12,13618,"Sex, Lies, and Videotape" +Rita Kempley,fresh,0098724,Washington Post,"Inspired chitchat, a barefaced Louisiana gabfest written and directed by Steven Soderbergh, a 26-year-old Wunderkind preoccupied with l'amour.",2000-01-01,13618,"Sex, Lies, and Videotape" +Desson Thomson,fresh,0098724,Washington Post,"Wwriter/director/editor Soderbergh has composed a wry, highly watchable piece that comes across as a great first effort by a film-school graduate.",2000-01-01,13618,"Sex, Lies, and Videotape" +Roger Ebert,fresh,0098724,Chicago Sun-Times,"It is never boring, and there are moments when it reminds us of how sexy the movies used to be, back in the days when speech was an erogenous zone.",2000-01-01,13618,"Sex, Lies, and Videotape" +Jonathan Rosenbaum,fresh,0098724,Chicago Reader,"Lean, economical, relatively unpretentious (or at least pretentiously unpretentious), and purposefully small-scale.",1989-01-20,13618,"Sex, Lies, and Videotape" +Owen Gleiberman,fresh,0105107,Entertainment Weekly,,2011-09-07,15210,Passion Fish +,none,0105107,Variety,,2008-06-20,15210,Passion Fish +Derek Adams,none,0105107,Time Out,,2006-02-09,15210,Passion Fish +Janet Maslin,none,0105107,New York Times,,2003-05-20,15210,Passion Fish +Peter Travers,none,0105107,Rolling Stone,,2001-05-12,15210,Passion Fish +James Berardinelli,fresh,0105107,ReelViews,,2000-01-01,15210,Passion Fish +Roger Ebert,fresh,0105107,Chicago Sun-Times,,2000-01-01,15210,Passion Fish +Desson Thomson,none,0105107,Washington Post,,2000-01-01,15210,Passion Fish +Rita Kempley,none,0105107,Washington Post,,2000-01-01,15210,Passion Fish +,fresh,0105107,Entertainment Weekly,,1992-12-11,15210,Passion Fish +Geoff Andrew,none,0096257,Time Out,,2006-06-24,18735,The Thin Blue Line +Janet Maslin,none,0096257,New York Times,,2003-05-20,18735,The Thin Blue Line +Roger Ebert,fresh,0096257,Chicago Sun-Times,,2000-01-01,18735,The Thin Blue Line +Hal Hinson,none,0096257,Washington Post,,2000-01-01,18735,The Thin Blue Line +Desson Thomson,none,0096257,Washington Post,,2000-01-01,18735,The Thin Blue Line +Owen Gleiberman,none,0101026,Entertainment Weekly,,2011-09-07,178781158,Átame! +,none,0101026,Variety,,2008-12-01,178781158,Átame! +Geoff Andrew,none,0101026,Time Out,,2006-06-24,178781158,Átame! +Vincent Canby,rotten,0101026,New York Times,"Mr. Almodovar's comic invention runs out too soon, leaving the audience to giggle weakly in anticipation of the big laughs and disorienting shocks that never arrive.",2003-05-20,178781158,Átame! +Rita Kempley,fresh,0101026,Washington Post,"A writer-director driven by his passion, Almodovar allows his movies to moan and sweat and writhe. Sex looks like sex, not pornographic but messy and warm. The curtains do not billow, the sheets burn.",2000-01-01,178781158,Átame! +Roger Ebert,rotten,0101026,Chicago Sun-Times,Almodovar's polarities are so perfectly lined up in opposition to my own that it is quite possible for one of his movies to shoot right through my brain without striking a single cell.,2000-01-01,178781158,Átame! +,rotten,0101026,Entertainment Weekly,,1990-01-22,178781158,Átame! +Owen Gleiberman,fresh,0102370,Entertainment Weekly,,2012-04-13,13441,Madonna: Truth or Dare +Geoff Andrew,none,0102370,Time Out,,2006-02-09,13441,Madonna: Truth or Dare +Janet Maslin,none,0102370,New York Times,,2004-08-30,13441,Madonna: Truth or Dare +,none,0102370,Rolling Stone,,2001-06-06,13441,Madonna: Truth or Dare +Desson Thomson,none,0102370,Washington Post,,2000-01-01,13441,Madonna: Truth or Dare +Hal Hinson,none,0102370,Washington Post,,2000-01-01,13441,Madonna: Truth or Dare +Roger Ebert,fresh,0102370,Chicago Sun-Times,,2000-01-01,13441,Madonna: Truth or Dare +,fresh,0102370,Entertainment Weekly,,1991-05-10,13441,Madonna: Truth or Dare +Owen Gleiberman,fresh,0100332,Entertainment Weekly,,2011-09-07,13346,Paris Is Burning +Derek Adams,none,0100332,Time Out,,2006-06-24,13346,Paris Is Burning +Vincent Canby,none,0100332,New York Times,,2003-05-20,13346,Paris Is Burning +Roger Ebert,fresh,0100332,Chicago Sun-Times,,2000-01-01,13346,Paris Is Burning +Joe Brown,none,0100332,Washington Post,,2000-01-01,13346,Paris Is Burning +Hal Hinson,none,0100332,Washington Post,,2000-01-01,13346,Paris Is Burning +Desson Thomson,none,0100332,Washington Post,,2000-01-01,13346,Paris Is Burning +,fresh,0100332,Entertainment Weekly,,1990-01-01,13346,Paris Is Burning +Chris Nashawaty,fresh,0073486,Entertainment Weekly,"There's a lot here. But with a classic like Cuckoo's Nest, too much is never enough.",2010-09-09,12965,One Flew Over the Cuckoo's Nest +Richard Schickel,rotten,0073486,TIME Magazine,One Flew over the Cuckoo 's Nest is an earnest attempt to make a serious film. But in the end the movie backs away from both the human reality and the cloudy but potent symbolism that Ken Kesey found in the asylum.,2009-02-20,12965,One Flew Over the Cuckoo's Nest +James Berardinelli,fresh,0073486,ReelViews,"Viewed 30 years after its release, One Flew Over the Cuckoo's Nest remains a very good motion picture, although one that perhaps just misses the pinnacle of greatness where its reputation suggests it resides.",2008-11-04,12965,One Flew Over the Cuckoo's Nest +A.D. Murphy,fresh,0073486,Variety,"Jack Nicholson stars in an outstanding characterization of Ken Kesey's asylum anti-hero, McMurphy, and Milos Forman's direction of a superbly-cast film is equally meritorious.",2008-02-19,12965,One Flew Over the Cuckoo's Nest +Dave Kehr,fresh,0073486,Chicago Reader,"Jack Nicholson plays McMurphy as if he were born to it, and the supporting cast provides fine, detailed performances.",2006-12-13,12965,One Flew Over the Cuckoo's Nest +,fresh,0073486,Time Out,"Set in an insane asylum, the film involves the oppression of the individual, a struggle spearheaded by an ebullient Nicholson, turning in a star performance if ever there was one.",2006-02-11,12965,One Flew Over the Cuckoo's Nest +Vincent Canby,rotten,0073486,New York Times,"Even granting the artist his license, America is much too big and various to be satisfactorily reduced to the dimensions of one mental ward in a movie like this.",2003-05-20,12965,One Flew Over the Cuckoo's Nest +Roger Ebert,fresh,0073486,Chicago Sun-Times,"Is One Flew Over the Cuckoo's Nest not a great film because it is manipulative, or is it great because it is so superbly manipulative? I can see it through either filter.",2003-03-25,12965,One Flew Over the Cuckoo's Nest +Variety Staff,rotten,0078446,Variety,What's lacking in Up in Smoke is a cohesiveness in both humor and characterization.,2008-05-07,12990,Up in Smoke +Dave Kehr,rotten,0078446,Chicago Reader,"Director Lou Adler (the record producer) finds a few chuckles, but mostly it's amateur night.",2008-05-07,12990,Up in Smoke +,rotten,0078446,Time Out,"As the most fun comes not from watching the movie but from recalling great lines later, it would seem that the audio success of C & C has not translated too well into visuals.",2006-06-24,12990,Up in Smoke +,fresh,0080684,TIME Magazine,"In many ways the new film is a better film than Star Wars, visually more exciting, more artful and meticulous in detail.",2008-08-13,11470,Star Wars: Episode V - The Empire Strikes Back +James Harwood,fresh,0080684,Variety,"The Empire Strikes Back is a worthy sequel to Star Wars, equal in both technical mastery and characterization, suffering only from the familiarity with the effects generated in the original and imitated too much by others.",2008-03-04,11470,Star Wars: Episode V - The Empire Strikes Back +Dave Kehr,rotten,0080684,Chicago Reader,"Irvin Kershner directed the actors this time around, and without the benefit of Lucas's personal affection they seem stiffer, more clenched.",2007-05-30,11470,Star Wars: Episode V - The Empire Strikes Back +,fresh,0080684,Time Out,"An extended ricochet from one incendiary set-piece battle to another which still finds time to attend to plot, pace and character.",2006-01-26,11470,Star Wars: Episode V - The Empire Strikes Back +Judith Martin,fresh,0080684,Washington Post,"The total effect is fast and attractive and occasionally amusing. Like a good hot dog, that's something of an achievement in a field where unpalatable junk is the rule.",2002-01-22,11470,Star Wars: Episode V - The Empire Strikes Back +Roger Ebert,fresh,0080684,Chicago Sun-Times,"It is a visual extravaganza from beginning to end, one of the most visionary and inventive of all films.",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +David Ansen,fresh,0080684,Newsweek,"The Empire Strikes Back is a technological triumph, a cornucopia of intergalactic tchotchkes.",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Peter Stack,fresh,0080684,San Francisco Chronicle,The balance between action and mysticism in Empire provides fascinating energy.,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +James Berardinelli,fresh,0080684,ReelViews,A superior motion picture!,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Susan Stark,fresh,0080684,Detroit News,"In the glory days of science fiction, critics wrote about the 'sense of wonder.' That's what The Empire Strikes Back creates in us",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Vincent Canby,rotten,0080684,New York Times,I found myself glancing at my watch almost as often as I did when I was sitting through a truly terrible movie called The Island.,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Gary Arnold,fresh,0080684,Washington Post,A dramatic illustration of the continued technical brilliance and leadership of the Lucas production team.,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Sean Means,fresh,0080684,Film.com,Star Wars made my eyes pop out when I first saw it in 1977!,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Bruce Westbrook,fresh,0080684,Houston Chronicle,"The most classic in its style, design and narrative.",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Gene Siskel,fresh,0080684,Chicago Tribune,"It balances bloodshed with charm, spectacle with childlike glee. It's a near flawless movie of its kind.",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Joe Baltake,fresh,0080684,Sacramento Bee,Genuinely powerful!,2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +John Hartl,fresh,0080684,Film.com,"For many Star Wars fans, this second installment is the best of the George Lucas trilogy: a dark, ultimately melancholy, even philosophical episode that has no triumphant happy ending.",2000-01-01,11470,Star Wars: Episode V - The Empire Strikes Back +Lisa Schwarzbaum,fresh,0080684,Entertainment Weekly,"The storytelling is the series' best, with a zingy balance of drama, humor, and Deep Thoughts.",1980-05-21,11470,Star Wars: Episode V - The Empire Strikes Back +Richard Corliss,fresh,0093779,TIME Magazine,"As you watch this enchanting fantasy, feel free to be thrilled or to giggle, as you wish.",2013-06-28,12686,The Princess Bride +Carrie Rickey,fresh,0093779,Philadelphia Inquirer,"Patinkin, the most dazzling movie swordsman since Errol Flynn, steals the movie with his athletic grace and delivery of lines like: ""My name is Inigo Montoya! Prepare to die!""",2013-06-28,12686,The Princess Bride +Jay Boyar,fresh,0093779,Orlando Sentinel,"For parents who have felt as if they were approaching the Cliffs of Insanity while enduring the inanities of standard kiddie pictures, The Princess Bride may be a godsend.",2013-06-28,12686,The Princess Bride +Michael Wilmington,fresh,0093779,Los Angeles Times,"Heroic fantasies, we often feel, should be lighter than air, hot as dragon fire, fast as a sword in sunlight. And that's mostly what we get from the delightful The Princess Bride -- along with some bracing humor and foolery.",2013-06-28,12686,The Princess Bride +Dave Kehr,fresh,0093779,Chicago Tribune,"The film works well enough, providing its fair share of laughs and thrills, and in technical terms it is by far Reiner`s most professional job of direction.",2013-06-28,12686,The Princess Bride +Variety Staff,rotten,0093779,Variety,"Based on William Goldman's novel, this is a post-modern fairy tale that challenges and affirms the conventions of a genre that may not be flexible enough to support such horseplay.",2007-08-13,12686,The Princess Bride +Jonathan Rosenbaum,fresh,0093779,Chicago Reader,Rob Reiner's friendly 1987 fairy-tale adventure delicately mines the irony inherent in its make-believe without ever undermining the effectiveness of the fantasy.,2007-08-13,12686,The Princess Bride +Geoff Andrew,rotten,0093779,Time Out,The leads are vacuous; the absurdities sometimes forced and obvious.,2006-06-24,12686,The Princess Bride +James Berardinelli,fresh,0093779,ReelViews,"Since its release more than 15 years ago, The Princess Bride has often been copied, but never equaled.",2003-06-05,12686,The Princess Bride +Janet Maslin,fresh,0093779,New York Times,"This material might easily have lent itself to broad parody or become too cute for its own good. But Mr. Reiner presents it as a bedtime story, pure and simple.",2003-05-20,12686,The Princess Bride +Roger Ebert,fresh,0093779,Chicago Sun-Times,It is filled with good-hearted fun.,2000-01-01,12686,The Princess Bride +Desson Thomson,fresh,0093779,Washington Post,Bride achieves much more than most film comedies.,2000-01-01,12686,The Princess Bride +Rita Kempley,fresh,0093779,Washington Post,"It's a lively, fun-loving, but nevertheless epic look at the nature of true love.",2000-01-01,12686,The Princess Bride +Gene Siskel,fresh,0082971,Chicago Tribune,"Yes, it's as entertaining as you have heard. Maybe more so. Raiders of the Lost Ark is, in fact, about as entertaining as a commercial movie can be.",2013-08-04,23529,Raiders of the Lost Ark +Richard Schickel,fresh,0082971,TIME Magazine,"Raiders of the Lost Ark has it all -- or, anyway, more than enough to transport moviegoers back to the dazzling, thrill-sated matinee idyls of old.",2011-08-08,23529,Raiders of the Lost Ark +Pauline Kael,rotten,0082971,New Yorker,"The thrills are fully consumed while you're seeing this movie, and it's totally over when it's over. It's a workout. You feel as if you'd been to the desert digs: at the end your mind is blank, yet you're parched, you're puffing hard -- you want relief.",2008-05-27,23529,Raiders of the Lost Ark +Stephen Klain,fresh,0082971,Variety,...a crackerjack fantasy-adventure that shapes its pulp sensibilities and cliff-hanging serial origins into an exhilarating escapist entertainment that will have broad-cased summer audiences in the palm of its hand.,2007-06-28,23529,Raiders of the Lost Ark +Dave Kehr,rotten,0082971,Chicago Reader,One would think that a collaboration between Steven Spielberg and George Lucas would produce something better than this giggly pastiche of a Republic serial...,2007-06-28,23529,Raiders of the Lost Ark +Geoff Andrew,fresh,0082971,Time Out,"Whether you swallow it or not, see it for a handful of totally unexpected visual jokes, worth the price of admission alone.",2006-06-24,23529,Raiders of the Lost Ark +James Berardinelli,fresh,0082971,ReelViews,"This is the kind of movie that, even today, audiences immediately fall in love with. It has all the right ingredients: a smart script, a likable hero, a dash of romance, more than a touch of comedy, and a lot of fast-paced action.",2003-11-06,23529,Raiders of the Lost Ark +Vincent Canby,fresh,0082971,New York Times,"To get to the point immediately, Raiders of the Lost Ark is one of the most deliriously funny, ingenious and stylish American adventure movies ever made.",2003-05-20,23529,Raiders of the Lost Ark +Roger Ebert,fresh,0082971,Chicago Sun-Times,The movie is just plain fun.,2000-01-01,23529,Raiders of the Lost Ark +Joe Morgenstern,fresh,0088846,Wall Street Journal,[A] darkly funny and truly visionary retro-futurist fantasy.,2011-03-12,13466,Brazil +James Berardinelli,fresh,0088846,ReelViews,"Brazil is a stinging, Strangelovian satire of the power of the bureaucracy in an Orwellian landscape.",2008-10-16,13466,Brazil +,fresh,0088846,Variety,Brazil offers a chillingly hilarious vision of the near-future.,2007-05-30,13466,Brazil +Dave Kehr,fresh,0088846,Chicago Reader,"Terry Gilliam's ferociously creative black comedy is filled with wild tonal contrasts, swarming details, and unfettered visual invention -- every shot carries a charge of surprise and delight.",2007-05-30,13466,Brazil +,fresh,0088846,Time Out,Fortunately the story of an alternative future is realised with such visual imagination and sparky humour that it's only half way through that the plot's weaknesses become apparent.,2006-02-09,13466,Brazil +Janet Maslin,fresh,0088846,New York Times,"A superb example of the power of comedy to underscore serious ideas, even solemn ones.",2003-05-20,13466,Brazil +John Hartl,fresh,0088846,Film.com,"For all its occasional long-windedness and visual dazzle, Brazil may be the Strangelove of the 1980s.",2000-01-01,13466,Brazil +Michael Atkinson,fresh,0088846,Village Voice,"Gilliam understood that all futuristic films end up quaintly evoking the naive past in which they were made, and turned the principle into a coherent comic aesthetic.",2000-01-01,13466,Brazil +Roger Ebert,rotten,0088846,Chicago Sun-Times,Very hard to follow.,2000-01-01,13466,Brazil +Joe Baltake,fresh,0088846,Sacramento Bee,"Everything that Terry Gilliam does seems to come in a peak. His movies tend to be a series of exhilarating, madding high points, and his method of dazzle can be exhausting and exasperating. But you never want him to stop.",2000-01-01,13466,Brazil +Desmond Ryan,fresh,0090605,Philadelphia Inquirer,[Aliens] is a spectacular example of state-of-the-art science fiction simply because it never tries to be overtly spectacular.,2013-07-30,13240,Aliens +Sheila Benson,fresh,0090605,Los Angeles Times,"It's blaster action, not Gothic future-horror. Fortunately, director-screenwriter James Cameron has shaped his film around the defiant intelligence and sensual athleticism of Weaver, and that's where Aliens works best.",2013-07-30,13240,Aliens +Joe Baltake,fresh,0090605,Philadelphia Daily News,"The idea behind Aliens remains the scariest, dirtiest, most perversely funny one for a monster film, and the Rambo action further gooses us.",2013-07-30,13240,Aliens +Jay Boyar,fresh,0090605,Orlando Sentinel,This film is also the best monster movie of the year and the best picture of any kind to open so far this summer. Put it another way: Aliens is the Jaws of the '80s.,2013-07-30,13240,Aliens +Anthony Lane,fresh,0090605,New Yorker,"Action thrillers assail but rarely test us; this is the tautest, most provoking, and altogether most draining example ever made.",2013-07-30,13240,Aliens +Gene Siskel,rotten,0090605,Chicago Tribune,Count me out of the fan club for this one.,2013-01-16,13240,Aliens +Richard Schickel,fresh,0090605,TIME Magazine,"The trouble Ripley has found this time is exponentially bigger and scarier than anything she encountered in Ridley Scott's memorably minimalist, eerily elegant 1979 film.",2008-10-19,13240,Aliens +Dave Kehr,fresh,0090605,Chicago Reader,One sequel that surpasses the original.,2007-09-24,13240,Aliens +,fresh,0090605,Time Out,"There is always an interesting tension in Cameron's work between masculine and feminine qualities. When it finally hits the fan here, we're in for the mother of all battles.",2007-08-16,13240,Aliens +Walter Goodman,fresh,0090605,New York Times,"A flaming, flashing, crashing, crackling blow-'em-up show that keeps you popping from your seat despite your better instincts and the basically conventional scare tactics.",2003-05-21,13240,Aliens +Variety Staff,fresh,0090605,Variety,Makes up for lack of surprise with sheer volume of thrills and chills.,2001-02-13,13240,Aliens +James Berardinelli,fresh,0090605,ReelViews,"When it comes to the logical marriage of action, adventure, and science fiction, few films are as effective or accomplished as Aliens.",2000-01-01,13240,Aliens +Roger Ebert,fresh,0090605,Chicago Sun-Times,"The ads for Aliens claim that this movie will frighten you as few movies have, and, for once, the ads don't lie.",2000-01-01,13240,Aliens +John Hartl,fresh,0090605,Film.com,"""Absolutely smashing!""",2000-01-01,13240,Aliens +,rotten,0060196,TIME Magazine,"All three arrive at the cache at the same time. Who gets it? Director Leone doesn't seem to care very much, and after 161 minutes of mayhem, audiences aren't likely to either.",2008-08-11,13308,"Il buono, il brutto, il cattivo." +Variety Staff,rotten,0060196,Variety,"The third in the Clint Eastwood series of Italo westerns, The Good, the Bad and the Ugly is exactly that -- a curious amalgam of the visually striking, the dramatically feeble and the offensively sadistic.",2008-07-22,13308,"Il buono, il brutto, il cattivo." +Dave Kehr,fresh,0060196,Chicago Reader,"Though ordained from the beginning, the three-way showdown that climaxes the film is tense and thoroughly astonishing.",2007-03-28,13308,"Il buono, il brutto, il cattivo." +Tom Huddlestone,fresh,0060196,Time Out,"Sergio Leone's grandiose 1966 western epic is nothing less than a masterclass in movie storytelling, a dynamic testament to the sheer, invigorating uniqueness of cinema.",2006-06-24,13308,"Il buono, il brutto, il cattivo." +Glenn Abel,fresh,0060196,Hollywood Reporter,"Sergio Leone's epic looks good, almost great, restored to its original running time.",2004-06-08,13308,"Il buono, il brutto, il cattivo." +John Monaghan,fresh,0060196,Detroit Free Press,"Of all the great films of the 1960s, The Good, the Bad and the Ugly is one of a fistful that can be truly appreciated only on the big screen.",2003-09-11,13308,"Il buono, il brutto, il cattivo." +Colin Covert,fresh,0060196,Minneapolis Star Tribune,Leone's blockbuster is balanced on the razor's edge between popular entertainment and art film. It took classic American themes and turned them inside out.,2003-09-11,13308,"Il buono, il brutto, il cattivo." +Stephen Hunter,fresh,0060196,Washington Post,"This is a great movie, whatever strange estuary of the western river it occupies.",2003-08-22,13308,"Il buono, il brutto, il cattivo." +Michael Wilmington,fresh,0060196,Chicago Tribune,"An improbable masterpiece -- a bizarre mixture of grandly operatic visuals, grim brutality and sordid violence that keeps wrenching you from one extreme to the other.",2003-08-07,13308,"Il buono, il brutto, il cattivo." +Roger Ebert,fresh,0060196,Chicago Sun-Times,"Art it is, summoned out of the imagination of Leone and painted on the wide screen so vividly that we forget what marginal productions these films were.",2003-08-05,13308,"Il buono, il brutto, il cattivo." +Ty Burr,fresh,0060196,Boston Globe,"The uncut new print reclaims the widescreen majesty of Tonino Delli Colli's cinematography, allowing you to see every iconic wart and furrow on every bad guy's face.",2003-08-01,13308,"Il buono, il brutto, il cattivo." +Stephen Whitty,fresh,0060196,Newark Star-Ledger,"It's great to see a great director's film as he intended it, with rich color and restored sound.",2003-06-03,13308,"Il buono, il brutto, il cattivo." +Michael Atkinson,fresh,0060196,Village Voice,"All told, and in giant widescreen, it's only blood-red adolescent fun, but it blooms like Douglas Sirk with a Gatling gun compared to the teenage demographic's current fare.",2003-05-27,13308,"Il buono, il brutto, il cattivo." +A.O. Scott,none,0094336,New York Times,,2011-05-24,17331,Withnail & I +Variety Staff,fresh,0094336,Variety,"Set in 1969 England, it portrays the last throes of a friendship mirroring the seedy demise of the hippie period, delivering some comic gems along the way.",2007-09-10,17331,Withnail & I +Dave Calhoun,fresh,0094336,Time Out,"A biting script from writer-director Bruce Robinson and performances from Richard E Grant and Paul McGann as two 'resting' actors, Withnail and 'I', that neither has surpassed.",2006-01-26,17331,Withnail & I +Joshua Rothkopf,fresh,0050083,Time Out New York,"Too few films take on the art of arguing as a subject; we could certainly use more of them, but until then, Lumet's window into strained civic duty will continue to serve mightily.",2013-07-03,18108,12 Angry Men +Variety Staff,fresh,0050083,Variety,The film leaves a tremendous impact.,2008-06-30,18108,12 Angry Men +Jonathan Rosenbaum,fresh,0050083,Chicago Reader,"Mechanically written, but within its own middlebrow limitations, it delivers the goods.",2007-06-26,18108,12 Angry Men +Geoff Andrew,fresh,0050083,Time Out,A strangely realistic thriller.,2006-06-24,18108,12 Angry Men +A.H. Weiler,fresh,0050083,New York Times,"Although it may sound ungallant, these 12 Angry Men, are all right without distaff glamour. Their dramas are powerful and provocative enough to keep a viewer spellbound.",2003-05-20,18108,12 Angry Men +Roger Ebert,fresh,0050083,Chicago Sun-Times,"This is a film where tension comes from personality conflict, dialogue and body language, not action.",2002-11-19,18108,12 Angry Men +,fresh,0056172,TIME Magazine,"It is O'Toole who continually dominates the screen, and he dominates it with professional skill, Irish charm and smashing good looks.",2009-02-20,10348,Lawrence of Arabia +Variety Staff,fresh,0056172,Variety,It was a big bold project and has turned out a big bold film.,2008-02-19,10348,Lawrence of Arabia +Jonathan Rosenbaum,fresh,0056172,Chicago Reader,"[It] remains one of the most intelligent, handsome, and influential of all war epics.",2006-12-13,10348,Lawrence of Arabia +Geoff Andrew,fresh,0056172,Time Out,"The passage of time has only proved how difficult it is to run ideas, history, characterisation and landscape in harness on this sort of scale.",2006-06-24,10348,Lawrence of Arabia +Colin Covert,fresh,0056172,Minneapolis Star Tribune,"Approach it from whatever angle you like, performances, script, cinematography, score; David Lean's sweeping biography of T.E. Lawrence is unarguably magnificent.",2004-11-29,10348,Lawrence of Arabia +Douglas Pratt,fresh,0056172,Hollywood Reporter,Even the flies in the opening Cairo scene jump out at you.,2004-03-04,10348,Lawrence of Arabia +Bosley Crowther,rotten,0056172,New York Times,It reduces a legendary figure to conventional movie-hero size amidst magnificent and exotic scenery but a conventional lot of action-film cliches.,2003-05-20,10348,Lawrence of Arabia +Janice Page,fresh,0056172,Boston Globe,An epic achievement in filmmaking.,2002-11-01,10348,Lawrence of Arabia +Glenn Lovell,fresh,0056172,San Jose Mercury News,"A cracking good adventure yarn, as well as a disturbing psychological profile of a man destined to become a great leader but an even greater dupe.",2002-09-26,10348,Lawrence of Arabia +Michael Wilmington,fresh,0056172,Chicago Tribune,"It's an astonishing, unrepeatable epic.",2002-09-19,10348,Lawrence of Arabia +James Berardinelli,fresh,0056172,ReelViews,"Riveting from beginning to end, featuring stellar performances, amazing cinematography, and a story without a trace of fat, the film does everything an epic is supposed to do -- and more.",2002-03-28,10348,Lawrence of Arabia +Desson Thomson,fresh,0056172,Washington Post,Lawrence is too emotionally overpowering for critical reservations.,2000-01-01,10348,Lawrence of Arabia +Rita Kempley,fresh,0056172,Washington Post,"The only thing that really dates it is the awful makeup, orangey pancake for Lawrence, a gray-green nose for Quinn and cordovan shoe polish for Guinness.",2000-01-01,10348,Lawrence of Arabia +Roger Ebert,fresh,0056172,Chicago Sun-Times,"We remember the quiet, empty passages, the sun rising across the desert, the intricate lines traced by the wind in the sand.",2000-01-01,10348,Lawrence of Arabia +Gary Kamiya,fresh,0056172,Salon.com,"This is that rare film whose weaknesses are not only swallowed up by its vast, disturbing ambition, but somehow become part of its strengths.",2000-01-01,10348,Lawrence of Arabia +Stanley Kauffmann,fresh,0056172,The New Republic,Lawrence luxuriates in the tremendous.,2000-01-01,10348,Lawrence of Arabia +Joe Morgenstern,none,0056592,Wall Street Journal,,2011-08-13,17873,To Kill a Mockingbird +Roger Ebert,rotten,0056592,Chicago Sun-Times,"To Kill a Mockingbird is a time capsule, preserving hopes and sentiments from a kinder, gentler, more naive America.",2011-07-25,17873,To Kill a Mockingbird +Dave Kehr,fresh,0056592,Chicago Reader,"Harper Lee's child's-eye view of southern bigotry gains something in its translation to the screen by Robert Mulligan, who knows exactly where to place the camera to catch a child's subjective experience.",2011-07-25,17873,To Kill a Mockingbird +Geoff Andrew,rotten,0056592,Time Out,This one is always just off the boil.,2006-06-24,17873,To Kill a Mockingbird +Bosley Crowther,fresh,0056592,New York Times,Minor shortcomings in a rewarding film.,2003-05-20,17873,To Kill a Mockingbird +James Berardinelli,fresh,0056592,ReelViews,"Universally recognized as a classic, and the label is well deserved.",2002-06-20,17873,To Kill a Mockingbird +,fresh,0056592,Variety,Harper Lee's highly regarded first novel has been artfully and delicately translated to the screen.,2001-02-13,17873,To Kill a Mockingbird +Todd McCarthy,none,0078788,Variety,,2012-02-23,13092,Apocalypse Now +Tom Huddleston,fresh,0078788,Time Out,"A film of pure sensation, dazzling audiences with light and noise, laying bare the stark horror - and unimaginable thrill - of combat.",2011-05-25,13092,Apocalypse Now +Dale Pollock,fresh,0078788,Variety,"Alternately a brilliant and bizarre film, Francis Coppola's four year 'work in progress' offers the definitive validation to the old saw, 'war is hell.'",2007-07-02,13092,Apocalypse Now +Geoff Andrew,fresh,0078788,Time Out,...it's wonderful to see this hallucinatory folly-cum-near masterpiece again on the big screen.,2006-02-09,13092,Apocalypse Now +Eric Harrison,fresh,0078788,Houston Chronicle,"Apocalypse Now did help provide me, and many of my generation, with a vision of what film art could achieve, a vision so magnificent it doomed us to spend much of our subsequent moviegoing lives in a funk.",2005-07-21,13092,Apocalypse Now +Moira MacDonald,fresh,0078788,Seattle Times,"...Coppola's sprawling, harrowing war story is not to be missed.",2003-12-31,13092,Apocalypse Now +Edward Guthmann,fresh,0078788,San Francisco Chronicle,"Apocalypse Now is a mixed bag, a product of excess and ambition, hatched in agony and redeemed by shards of brilliance.",2002-01-17,13092,Apocalypse Now +Peter Travers,fresh,0078788,Rolling Stone,"The opening, with the whirling sound of choppers intercut with Willard sweating angst in his Saigon hotel bed, a jungle burning with napalm...remains a visual and aural wonder.",2002-01-17,13092,Apocalypse Now +Jonathan Foreman,fresh,0078788,New York Post,,2002-01-17,13092,Apocalypse Now +Susan Stark,fresh,0078788,Detroit News,,2002-01-17,13092,Apocalypse Now +Allen Barra,fresh,0078788,Salon.com,"What the excitement was about was the unspoken belief that this film would put a cap on the most exciting decade in American film, that it would sum up everything that had come before and influence everything that came after...",2002-01-17,13092,Apocalypse Now +Paul Tatara,fresh,0078788,CNN.com,...the movie still has the power to floor you with its stunning sounds and imagery.,2002-01-17,13092,Apocalypse Now +Vincent Canby,fresh,0078788,New York Times,As technically complex and masterful as any war film I can remember.,2002-01-15,13092,Apocalypse Now +Dave Kehr,rotten,0078788,Chicago Reader,"There are worse ways to make movies, but there are a lot of better ones too.",2001-09-11,13092,Apocalypse Now +Roger Ebert,fresh,0078788,Chicago Sun-Times,"The film has one of the most haunting endings in cinema, a poetic evocation of what Kurtz has discovered, and what we hope not to discover for ourselves.",2000-01-01,13092,Apocalypse Now +Stanley Kauffmann,fresh,0064116,The New Republic,There is something touching and maniacal about the two-and-three-quarter- hour result.,2013-06-18,10196,C'era una volta il West +David Jenkins,fresh,0064116,Time Out,"'Once Upon a Time...' now looks like an over-cooked mess of style, metaphor and reference.",2009-07-24,10196,C'era una volta il West +,none,0064116,Variety,,2008-06-06,10196,C'era una volta il West +,fresh,0064116,Time Out,"The Western is dead - or so they tell us. Long live Leone's timeless monument to the death of the West itself, rivalled only by Peckinpah's Pat Garrett and Billy the Kid for the title of best ever made.",2006-01-26,10196,C'era una volta il West +Andrew Sarris,fresh,0064116,New York Observer,Leone (1921-1989) is here at the peak of his epic powers.,2005-09-29,10196,C'era una volta il West +Chuck Stephens,fresh,0064116,Village Voice,"If only the first 10 minutes of Sergio Leone's Once Upon a Time in the West still existed, this most hyperbolic of oat operas would still be acknowledged as one of the genre's greatest exhumations.",2005-09-27,10196,C'era una volta il West +Vincent Canby,fresh,0064116,New York Times,It is mostly fun for the way it cherishes movie styles and attitudes from the past.,2005-05-09,10196,C'era una volta il West +Roger Ebert,rotten,0064116,Chicago Sun-Times,"The movie stretches on for nearly three hours, with intermission, and provides two false alarms before it finally ends.",2004-10-23,10196,C'era una volta il West +Douglas Pratt,fresh,0064116,Hollywood Reporter,One of the greatest face movies ever made.,2003-12-10,10196,C'era una volta il West +James Harwood,none,0086190,Variety,,2012-02-23,11366,Star Wars: Episode VI - Return of the Jedi +Lisa Schwarzbaum,fresh,0086190,Entertainment Weekly,,2011-09-07,11366,Star Wars: Episode VI - Return of the Jedi +Susan Stark,fresh,0086190,Detroit News,,2008-10-18,11366,Star Wars: Episode VI - Return of the Jedi +,fresh,0086190,TIME Magazine,"It is not as exciting as Star Wars itself, which had the advantage of novelty. But it is better and more satisfying than The Empire Strikes Back...",2008-08-13,11366,Star Wars: Episode VI - Return of the Jedi +Variety Staff,fresh,0086190,Variety,"Reasonably fast paced for its 133-minute length, a visual treat throughout.",2007-06-06,11366,Star Wars: Episode VI - Return of the Jedi +Dave Kehr,rotten,0086190,Chicago Reader,"With its feints at horror and pathos, the third Star Wars film is the most Disney-esque in its emotional outline, yet that outline is buried beneath an obnoxiously hyped-up pace that reduces the emotions to rubble.",2007-06-06,11366,Star Wars: Episode VI - Return of the Jedi +Geoff Andrew,rotten,0086190,Time Out,"In scope and ambition, Jediresembles nothing so much as the next level of a computer game, with a new environment, new gadgets and new creatures.",2006-02-09,11366,Star Wars: Episode VI - Return of the Jedi +Peter Stack,fresh,0086190,San Francisco Chronicle,"Though it looks almost too polished, a handful of eye-smacking action scenes were breakthroughs in precomputer cinematic graphics. And when the film moves, it does so with blazing energy and awesome noise.",2002-06-18,11366,Star Wars: Episode VI - Return of the Jedi +Bruce Westbrook,fresh,0086190,Houston Chronicle,"Jedi may not be George Lucas's crown jewel, but his trilogy as a whole is as good as film fantasy gets.",2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Vincent Canby,rotten,0086190,New York Times,"The old Star Wars gang are back doing what they've done before, but this time with a certain evident boredom.",2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Roger Ebert,fresh,0086190,Chicago Sun-Times,Marvelous!,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Joe Baltake,fresh,0086190,Sacramento Bee,Has twice as many visual effects than the original first film.,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Gary Arnold,fresh,0086190,Washington Post,Jedi couldn't end the Star Wars trilogy on a happier note!,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Gene Siskel,fresh,0086190,Chicago Tribune,Mark Hamill is particularly good in this film.,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +James Berardinelli,fresh,0086190,ReelViews,The acting in Return of the Jedi is stronger than in the previous films.,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Rex Reed,rotten,0086190,New York Post,Let's not pretend we're watching art!,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +David Ansen,rotten,0086190,Newsweek,Jedi is downright repetitive!,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Sean Means,fresh,0086190,Film.com,A mediocre Star Wars is better than no Star Wars at all.,2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +Michael Wilmington,fresh,0086190,Chicago Tribune,"The film is a huge, rousing finale that resolves all plot twists, settles all accounts, reunites old friends and sweeps to a climax that all but blows the theater apart!",2000-01-01,11366,Star Wars: Episode VI - Return of the Jedi +,fresh,0086190,Entertainment Weekly,,1983-05-25,11366,Star Wars: Episode VI - Return of the Jedi +Joe Morgenstern,fresh,0093191,Wall Street Journal,A fantasy that... goes right in spite of its solemn style.,2012-11-27,10221,Der Himmel über Berlin +David Stratton,fresh,0093191,Variety,"A sublimely beautiful, deeply romantic film for our times.",2012-11-27,10221,Der Himmel über Berlin +Jonathan Rosenbaum,fresh,0093191,Chicago Reader,Wings of Desire is one of Wenders's most stunning achievements.,2007-07-09,10221,Der Himmel über Berlin +Geoff Andrew,fresh,0093191,Time Out,"Few films are so rich, so intriguing, or so ambitious.",2006-01-26,10221,Der Himmel über Berlin +Douglas Pratt,fresh,0093191,Hollywood Reporter,One of the few truly great movies to come out of the '80s.,2003-08-05,10221,Der Himmel über Berlin +Janet Maslin,rotten,0093191,New York Times,"Startlingly original at first, Wings of Desire is in the end damagingly overloaded.",2003-05-20,10221,Der Himmel über Berlin +Roger Ebert,fresh,0093191,Chicago Sun-Times,"The film evokes a mood of reverie, elegy and meditation.",2000-01-01,10221,Der Himmel über Berlin +Rita Kempley,fresh,0093191,Washington Post,"Underneath its melancholia and mind-boggling, even bothersome metaphysics, it's the simplest (well, almost) story ever told -- angel meets girl, angel gets girl.",2000-01-01,10221,Der Himmel über Berlin +Desson Thomson,fresh,0093191,Washington Post,a soaring vision that appeals to the senses and the spirit,2000-01-01,10221,Der Himmel über Berlin +David Ansen,fresh,0041959,Newsweek,It transformed the way I looked at the world.,2007-11-01,18250,The Third Man +Geoff Andrew,none,0041959,Time Out,,2006-06-24,18250,The Third Man +Jeff Millar,fresh,0041959,Houston Chronicle,"Welles gives Harry a mask of irony that turns all moral judgment back on itself. He turns a mass murderer into a wry rogue, and makes his villainy all the more horrifying because we rather like him.",2005-07-21,18250,The Third Man +Andrew Sarris,fresh,0041959,New York Observer,"Seen today, The Third Man ... can be appreciated as a prophetic statement on the eventual moral bankruptcy of the one-world euphoria that clouded men's minds immediately after the second 'war to end all wars.'",2004-04-22,18250,The Third Man +Bosley Crowther,fresh,0041959,New York Times,Top credit must go to Mr. Reed for molding all possible elements into a thriller of superconsequence.,2003-05-20,18250,The Third Man +James Berardinelli,fresh,0041959,ReelViews,"For lovers of film noir, The Third Man is unquestionably a must-see -- one of the masterpieces of a genre that has contained everything from milestone motion pictures to low-budget potboilers.",2002-08-29,18250,The Third Man +Susan Stark,fresh,0041959,Detroit News,The Third Man is like the exhausted aftermath of Casablanca.,2002-01-17,18250,The Third Man +,fresh,0041959,Variety,"a full-blooded, absorbing story",2001-02-13,18250,The Third Man +Robert Horton,fresh,0041959,Film.com,"One of the glories of postwar cinema, and quite possibly one of the most sheerly enjoyable movies ever made.",2000-01-01,18250,The Third Man +Joe Baltake,fresh,0041959,Sacramento Bee,A triumph of atmosphere and grown-up concerns.,2000-01-01,18250,The Third Man +Laura Miller,fresh,0041959,Salon.com,"It seemed like the creation of a sensibility terribly old and wise, and most of all very European; it was the very essence of world-weary sophistication.",2000-01-01,18250,The Third Man +J. Hoberman,fresh,0041959,Village Voice,"However hoked-up and self-regarding, The Third Man ... remains an indelible experience.",2000-01-01,18250,The Third Man +Tom Keogh,fresh,0041959,Film.com,"The complete effect of The Third Man is of superficial mysteries wrapped around deeper mysteries of the human heart, all immersed in a desperate universe suspended by the silent witnessing of a thousand eyes.",2000-01-01,18250,The Third Man +Jonathan Rosenbaum,fresh,0041959,Chicago Reader,Wonderful entertainment.,2000-01-01,18250,The Third Man +Roger Ebert,fresh,0041959,Chicago Sun-Times,"Of all the movies I have seen, this one most completely embodies the romance of going to the movies.",2000-01-01,18250,The Third Man +Owen Gleiberman,fresh,0099685,Entertainment Weekly,"In GoodFellas, director Martin Scorsese does something simple and audacious: He takes the guilt out of organized crime.",2011-09-07,12924,Goodfellas +Richard Corliss,fresh,0099685,TIME Magazine,"You walk away, tantalized by a view into the darkest part of yourself, glad that that part is still behind bars.",2008-08-24,12924,Goodfellas +Joseph McBride,rotten,0099685,Variety,Colorful but dramatically unsatisfying.,2007-06-26,12924,Goodfellas +Jonathan Rosenbaum,fresh,0099685,Chicago Reader,May well be the most accomplished thing Scorsese's ever done.,2007-06-26,12924,Goodfellas +Geoff Andrew,fresh,0099685,Time Out,"Scorsese's fast, violent, stylish mobster movie is a return to form.",2006-02-09,12924,Goodfellas +Glenn Abel,fresh,0099685,Hollywood Reporter,"Brutal, stylish, hypnotic and addictive, GoodFellas remains Scorsese's best film.",2004-09-02,12924,Goodfellas +Vincent Canby,fresh,0099685,New York Times,Goodfellas looks and sounds as if it must be absolutely authentic.,2003-05-21,12924,Goodfellas +James Berardinelli,fresh,0099685,ReelViews,It is not a coincidence that Scorsese's three masterpieces all star Robert De Niro.,2000-01-01,12924,Goodfellas +John Hartl,fresh,0099685,Film.com,"GoodFellas is an appalling masterpiece of the kind that, along with New York's current well-publicized troubles, is likely to give pause to anyone planning to make a trip to the city.",2000-01-01,12924,Goodfellas +Roger Ebert,fresh,0099685,Chicago Sun-Times,No finer film has ever been made about organized crime.,2000-01-01,12924,Goodfellas +Desson Thomson,fresh,0099685,Washington Post,"The performances by everyone are stunning, standout.",2000-01-01,12924,Goodfellas +Erik Lundegaard,fresh,0078748,Seattle Times,"The most startling thing watching Alien again is its pacing. For the first 45 minutes, little happens. It's all slow, exquisite build-up, which makes the second half seem all the more horrific.",2011-10-28,13492,Alien +Frank Rich,rotten,0078748,TIME Magazine,"It is depressing to watch an expensive, crafty movie that never soars beyond its cold desire to score the big bucks.",2010-10-22,13492,Alien +Geoff Andrew,fresh,0078748,Time Out,The limited strengths of its staple sci-fi horrors always derived from either the offhand organic/ Freudian resonances of its design or the purely (brilliantly) manipulative editing and pacing of its above-average shock quota.,2007-08-16,13492,Alien +Variety Staff,fresh,0078748,Variety,"An old-fashioned scary movie set in a highly realistic sci-fi future, made all the more believable by expert technical craftmanship.",2007-06-04,13492,Alien +Dave Kehr,rotten,0078748,Chicago Reader,"An empty-headed horror movie with nothing to recommend it beyond the disco-inspired art direction and some handsome, if gimmicky, cinematography.",2007-06-04,13492,Alien +Keith Uhlich,fresh,0078748,Time Out New York,The limited strengths of its staple sci-fi horrors always derived from either the offhand organic/ Freudian resonances of its design or the purely (brilliantly) manipulative editing and pacing of its above-average shock quota.,2006-02-09,13492,Alien +Bruce Westbrook,fresh,0078748,Houston Chronicle,A genuine fright classic.,2005-07-21,13492,Alien +Vincent Canby,rotten,0078748,New York Times,"These things no longer surprise or tantalize us as they once did. In a very short time, science-fiction films have developed their own jargon that's now become a part of the grammar.",2005-05-09,13492,Alien +Eleanor Ringel Gillespie,fresh,0078748,Atlanta Journal-Constitution,Alien will upset your mind and upset your stomach.,2005-03-07,13492,Alien +Glenn Abel,fresh,0078748,Hollywood Reporter,"Alien looks amazing, almost like a new film.",2004-02-05,13492,Alien +Peter Hartlaub,fresh,0078748,San Francisco Chronicle,"Ridley Scott's new cut won't change the way people think about the movie, but it reinforces the film's strengths without alienating the series' biggest fans.",2004-01-15,13492,Alien +Roger Ebert,fresh,0078748,Chicago Sun-Times,Ridley Scott's 1979 movie is a great original.,2004-01-15,13492,Alien +Glenn Lovell,fresh,0078748,San Jose Mercury News,It's a most satisfying return to one of the few sci-fi films that deserves to be called a masterpiece.,2003-11-29,13492,Alien +Lou Lumenick,fresh,0078748,New York Post,"Besides Weaver and Skeritt, the top-notch ensemble includes two of Britain's best actors -- Ian Holm, as the untrustworthy science officer, and John Hurt.",2003-11-09,13492,Alien +Ty Burr,fresh,0078748,Boston Globe,"What's most unusual about the original 24 years later, though, is its elegant minimalism.",2003-11-02,13492,Alien +Michael Wilmington,fresh,0078748,Chicago Tribune,It's a scream from another era that still echoes around us.,2003-11-01,13492,Alien +Andrew O'Hehir,fresh,0078748,Salon.com,"A haunted-house movie set in space, Alien also has a profoundly existentialist undertow that makes it feel like a film noir -- the other genre to feature a slithery, sexualized monster as its classic villain.",2003-11-01,13492,Alien +James Berardinelli,fresh,0078748,ReelViews,The way [Ridley] Scott meticulously raises the sense of menace and tension is worthy of Hitchcock.,2000-01-01,13492,Alien +Lisa Schwarzbaum,fresh,0078748,Entertainment Weekly,"In space, the famous tagline went, no one can hear you scream. In Alien, you can hear lessons for the sci-fi future in a great milestone from the recent past.",1979-01-01,13492,Alien +Owen Gleiberman,rotten,0106308,Entertainment Weekly,,2011-09-07,13043,Army of Darkness +Jonathan Rosenbaum,fresh,0106308,Chicago Reader,"This is old-fashioned fun until the climactic battle, which almost comes across like routine bone piling after all the flights of fancy.",2009-05-29,13043,Army of Darkness +Geoff Andrew,none,0106308,Time Out,,2006-01-26,13043,Army of Darkness +Janet Maslin,none,0106308,New York Times,,2004-08-30,13043,Army of Darkness +Richard Harrington,none,0106308,Washington Post,,2000-01-01,13043,Army of Darkness +Roger Ebert,rotten,0106308,Chicago Sun-Times,,2000-01-01,13043,Army of Darkness +Desson Thomson,none,0106308,Washington Post,,2000-01-01,13043,Army of Darkness +James Berardinelli,fresh,0106308,ReelViews,,2000-01-01,13043,Army of Darkness +,rotten,0106308,Entertainment Weekly,,1993-02-19,13043,Army of Darkness +Kevin Thomas,rotten,0095250,Los Angeles Times,Such a total disaster that it would have been an act of kindness for all concerned to have never released it.,2012-10-16,13132,Le grand bleu +Variety Staff,rotten,0095250,Variety,Besson fatally misjudges the cinematic interest of his theme.,2009-03-26,13132,Le grand bleu +Janet Maslin,fresh,0095250,New York Times,"The film's undersea footage has a powerful otherworldly quality, much as if it were unfolding in outer space, as indeed it might be.",2003-05-20,13132,Le grand bleu +Rita Kempley,rotten,0095250,Washington Post,The subtext is easy to follow; it's the screenplay that's impossible.,2001-11-16,13132,Le grand bleu +Steven Rosen,rotten,0095250,Denver Post,What he and his writers have cooked up defies our patience.,2000-01-01,13132,Le grand bleu +Mark Holcomb,rotten,0095250,Village Voice,Besson is no master storyteller.,2000-01-01,13132,Le grand bleu +Gene Siskel,fresh,0089881,Chicago Tribune,"Ultimately it is this mixture of the grand gesture and the fine touch, the big world and the small people who occupy it, that lingers with us long after Ran is over.",2013-04-01,15203,Ran +Michael O'Sullivan,fresh,0089881,Washington Post,"By the time Kurosawa's camera comes to rest on the film's final, poignant image, a painting of the Buddha that one character had promised another would protect him from harm, the movie seemingly has accomplished the impossible: one-upping Shakespeare.",2013-04-01,15203,Ran +Jay Boyar,fresh,0089881,Orlando Sentinel,"There's probably more carnage in Ran than there is in Rambo and The Terminator combined, but the new film substitutes intelligence and emotion for mindlessness and emotionalism. You leave the theater awestruck, not dumbstruck.",2013-04-01,15203,Ran +Mark Feeney,fresh,0089881,Boston Globe,"What could be more exciting than the prospect of one of the giants of world cinema, his career resuscitated, adapting Shakespeare's most modern play?",2010-03-18,15203,Ran +Kenneth Turan,fresh,0089881,Los Angeles Times,"What's remarkable about Ran is that the drama enhances the spectacle the same way the spectacle bolsters the drama. Few other directors had Kurosawa's ability to convey the intimate as well as the epic, to handle stillness as well as violence.",2010-03-05,15203,Ran +Michael Atkinson,fresh,0089881,L.A. Weekly,Those who were suspicious of the filmmaker's unambiguous plotting and Westernized approach had to admit to its daunting grandeur.,2010-03-04,15203,Ran +David Fear,fresh,0089881,Time Out New York,"Like all of Kurosawa's work, the human pulse is what drives the drama. Only this time, it's also the drumbeat of an elegy.",2010-02-03,15203,Ran +Richard Schickel,fresh,0089881,TIME Magazine,It is a film that already belongs to the ages.,2008-07-09,15203,Ran +Amy Taubin,fresh,0089881,Village Voice,"For aficionados of the war movie, the western, and the period action epic, Ran is necessary viewing.",2008-07-01,15203,Ran +Variety Staff,fresh,0089881,Variety,"At age 75, the director has made his most costly epic to date, and it's a dazzlingly successful addition to his distinguished career.",2008-07-01,15203,Ran +Dave Kehr,fresh,0089881,Chicago Reader,"Akira Kurosawa's 1985 film is slightly marred by some too obvious straining toward masterpiece status, yet it's a stunning achievement in epic cinema.",2008-07-01,15203,Ran +,fresh,0089881,Time Out,"The shift and sway of a nation divided is vast, the chaos terrible, the battle scenes the most ghastly ever filmed, and the outcome is even bleaker than Shakespeare's.",2006-06-24,15203,Ran +Glenn Abel,fresh,0089881,Hollywood Reporter,"Kurosawa dares to edit Shakespeare's story lines, adding back stories and deleting major characters, but the motivations and emotions remain true.",2003-06-16,15203,Ran +Vincent Canby,fresh,0089881,New York Times,"A film of the sort of grandeur that brings to mind Griffith's Birth of a Nation, Napoleon Vu par Abel Gance and Eisenstein's Ivan the Terrible.",2003-05-20,15203,Ran +Bob Graham,fresh,0089881,San Francisco Chronicle,"List any element -- from concept through cinematography, battle action, editing, acting, sound, music, costumes or whatever, right down to makeup -- and Kurosawa's commitment is total.",2000-01-01,15203,Ran +John Hartl,fresh,0089881,Film.com,It has become a cliche to call Kurosawa the world's greatest living filmmaker.,2000-01-01,15203,Ran +Roger Ebert,fresh,0089881,Chicago Sun-Times,Nobody can film an epic battle scene like Kurosawa.,2000-01-01,15203,Ran +Liam Lacey,fresh,0097202,Globe and Mail,,2008-11-28,17925,Dip huet seung hung +Jonathan Rosenbaum,fresh,0097202,Chicago Reader,"A lot of claims have been made for this campy bloodbath concerto by Hong Kong director John Woo, and I must admit that he's even better than Brian De Palma at delivering emotional and visceral excess with staccato relentlessness.",2007-03-01,17925,Dip huet seung hung +Stephen Holden,fresh,0097202,New York Times,The director repeatedly places the viewer at the center of the crossfire and turns the gyrating camera into the next best thing to a lethal weapon.,2006-02-11,17925,Dip huet seung hung +,fresh,0097202,Time Out,The most dementedly elegiac thriller you've ever seen.,2006-02-09,17925,Dip huet seung hung +Hal Hinson,fresh,0097202,Washington Post,This is a rush of a movie.,2000-01-01,17925,Dip huet seung hung +Andrew Sarris,fresh,0054215,Village Voice,Hitchcock is the most-daring avant-garde film-maker in America today.,2012-10-08,12879,Psycho +Keith Uhlich,fresh,0054215,Time Out New York,The best that can be said is there are bats in the belfry and a well-preserved corpse in the basement. What else can one do but scream?,2010-10-27,12879,Psycho +David Jenkins,fresh,0054215,Time Out,"It blazed a bloody trail for the much-loved slasher cycle, but it also assured us that a B-movie could be A-grade in quality and innovation.",2010-04-01,12879,Psycho +,rotten,0054215,TIME Magazine,"Director Hitchcock bears down too heavily in this one, and the delicate illusion of reality necessary for a creak-and-shriek movie becomes, instead, a spectacle of stomach-churning horror.",2008-10-07,12879,Psycho +Variety Staff,fresh,0054215,Variety,"An unusual, good entertainment, indelibly Hitchcock, and on the right kind of boxoffice beam.",2008-10-07,12879,Psycho +Dave Kehr,fresh,0054215,Chicago Reader,"Alfred Hitchcock's 1960 masterpiece blends a brutal manipulation of audience identification and an incredibly dense, allusive visual style to create the most morally unsettling film ever made.",2007-09-19,12879,Psycho +Mary Elizabeth Williams,fresh,0054215,Salon.com,"All those who still get a chill every time they step into a hotel shower, say aye. That, you see, is the power of Psycho.",2000-01-01,12879,Psycho +Roger Ebert,fresh,0054215,Chicago Sun-Times,"What makes Psycho immortal, when so many films are already half-forgotten as we leave the theater, is that it connects directly with our fears.",2000-01-01,12879,Psycho +Paine Knickerbocker,fresh,0054215,San Francisco Chronicle,"[Hitchcock] has very shrewdly interwoven crime, sex and suspense, blended the real and the unreal in fascinating proportions and punctuated his film with several quick, grisly and unnerving surprises.",2000-01-01,12879,Psycho +James Berardinelli,fresh,0054215,ReelViews,"With the exception of Halloween, no latter-day horror/thriller has been capable of generating as many goosebumps.",2000-01-01,12879,Psycho +Bosley Crowther,fresh,0054215,New York Times,[Hitchcock's] denouement falls quite flat for us. But the acting is fair.,2000-01-01,12879,Psycho +Tom Huddlestone,fresh,0080455,Time Out,"The film retains a huge nostalgic kick, thanks in large part to Aykroyd and Belushi's easy rapport, a smattering of daft, shaggy humour and some truly iconic musical sequences.",2009-07-24,13659,The Blues Brothers +Richard Corliss,rotten,0080455,TIME Magazine,A demolition symphony that works with the cold efficiency of a Moog synthesizer gone sadistic.,2008-08-20,13659,The Blues Brothers +Variety Staff,fresh,0080455,Variety,"Given all the chaos, director and, with Aykroyd, cowriter, John Landis manages to keep things reasonably controlled and in a straight line.",2008-04-01,13659,The Blues Brothers +Dave Kehr,rotten,0080455,Chicago Reader,"The humor is predicated on underplaying in overscaled situations, which is sporadically funny in a Keaton-esque way but soon sputters out through sheer, uninspired repetition.",2008-04-01,13659,The Blues Brothers +Roger Ebert,fresh,0080455,Chicago Sun-Times,"There's even room, in the midst of the carnage and mayhem, for a surprising amount of grace, humor, and whimsy.",2004-10-23,13659,The Blues Brothers +Janet Maslin,rotten,0080455,New York Times,"This essentially modest movie is reported to have cost about $30 million, and what did all that money buy? Scores of car crashes. Too many extras. Overstaged dance numbers. And a hollowness that certainly didn't come cheap.",2004-08-30,13659,The Blues Brothers +Michael Wilmington,fresh,0071562,Chicago Tribune,"One of the most ambitious and brilliantly executed American films, a landmark work from one of Hollywood's top cinema eras.",2013-02-24,12926,The Godfather: Part II +,fresh,0071562,TIME Magazine,"Not once does Pacino overtly ask for the audience's sympathy, but through a disciplined, suggestive performance he dominates the film.",2009-02-20,12926,The Godfather: Part II +A.D. Murphy,fresh,0071562,Variety,The Paramount release has everything going for it.,2008-02-19,12926,The Godfather: Part II +Don Druker,fresh,0071562,Chicago Reader,Francis Ford Coppola pulls it off in grand style.,2006-12-13,12926,The Godfather: Part II +Geoff Andrew,fresh,0071562,Time Out,"The performances, Gordon Willis' memorably gloomy camerawork, the stately pace and the sheer scale of the story's sweep render everything engrossing and so, well, plausible that our ideas of organised crime in America will forever be marked by this movie.",2006-06-24,12926,The Godfather: Part II +Roger Ebert,fresh,0071562,Chicago Sun-Times,"The stunning text of The Godfather is replaced in Part II with prologues, epilogues, footnotes, and good intentions.",2004-10-23,12926,The Godfather: Part II +Vincent Canby,rotten,0071562,New York Times,It's a second movie made largely out of the bits and pieces of Mr. Puzo's novel that didn't fit into the first. It's a Frankenstein's monster stitched together from leftover parts. It talks. It moves in fits and starts but it has no mind of its own.,2003-05-20,12926,The Godfather: Part II +James Berardinelli,fresh,0071562,ReelViews,Few sequels have expanded upon the original with the faithfulness and detail of this one.,2000-01-01,12926,The Godfather: Part II +Desmond Ryan,fresh,0093058,Philadelphia Inquirer,"If his considerable achievement in this long- awaited film falls short of his Olympian standards, there is a reason that ought to give Kubrick some satisfaction. The world has caught up with Kubrick and what he has to say.",2013-06-21,16673,Full Metal Jacket +Sheila Benson,fresh,0093058,Los Angeles Times,"It may seem too spare, too clinical, its moments of war even too familiar for some. But, aiming for minds as well as hearts, Kubrick hits his target squarely.",2013-06-21,16673,Full Metal Jacket +Jay Boyar,fresh,0093058,Orlando Sentinel,"What gives this story its power is not really its originality, but the relentlessness of Kubrick's black-comic vision and the tightness of his focus.",2013-06-21,16673,Full Metal Jacket +Dave Kehr,fresh,0093058,Chicago Tribune,"There is a real fear at the heart of this monstrously armored, desperately defensive film.",2013-06-21,16673,Full Metal Jacket +Gene Siskel,fresh,0093058,Chicago Tribune,"It's a great piece of filmmaking, diminished only by a second act that fails to live up to the first act of the Marines in training.",2013-06-21,16673,Full Metal Jacket +Richard Corliss,fresh,0093058,TIME Magazine,"Full Metal Jacket is not a realistic film -- it is horror-comic superrealism, from a God's-eye view -- but it should fully engage the ordinary movie grunt.",2008-08-24,16673,Full Metal Jacket +Jonathan Rosenbaum,fresh,0093058,Chicago Reader,"This is the most tightly crafted Kubrick film since Dr. Strangelove, as well as the most horrific; the first section alone accomplishes most of what The Shining failed to do.",2007-05-08,16673,Full Metal Jacket +Variety Staff,fresh,0093058,Variety,"An intense, schematic, superbly made Vietnam War drama.",2007-05-08,16673,Full Metal Jacket +Geoff Andrew,rotten,0093058,Time Out,"Kubrick's direction is as steely cold and manipulative as the regime it depicts, and we never really get to know, let alone care about, the hapless recruits on view.",2006-01-26,16673,Full Metal Jacket +Desson Thomson,fresh,0093058,Washington Post,"Although the elements of the story are simple and precise, Kubrick infuses a dreamlike, fatalistic quality.",2000-01-01,16673,Full Metal Jacket +Rita Kempley,fresh,0093058,Washington Post,"Full Metal Jacket, ice and wildfire, order and chaos, is intellectual war, hard thought.",2000-01-01,16673,Full Metal Jacket +Janet Maslin,fresh,0093058,New York Times,"No one who sees Full Metal Jacket will easily put the film's last glimpse of D'Onofrio, or a great many other things about Kubrick's latest and most sobering vision, out of mind.",2000-01-01,16673,Full Metal Jacket +Roger Ebert,rotten,0093058,Chicago Sun-Times,[A] strangely shapeless film from the man whose work usually imposes a ferociously consistent vision on his material.,2000-01-01,16673,Full Metal Jacket +Vincent Canby,fresh,0093058,New York Times,"Kubrick's harrowing, beautiful and characteristically eccentric new film about Vietnam, is going to puzzle, anger and (I hope) fascinate audiences as much as any film he has made to date.",2000-01-01,16673,Full Metal Jacket +Variety Staff,fresh,0097499,Variety,"A stirring, gritty and enjoyable pic which offers a plethora of fine performances from some of the U.K.'s brightest talents.",2008-07-01,10071,Henry V +Jonathan Rosenbaum,fresh,0097499,Chicago Reader,"The cast -- including Derek Jacobi as the modern-dress chorus, Paul Scofield, Judi Dench, Ian Holm, Emma Thompson, and Robbie Coltrane in an effective cameo as Falstaff -- is uniformly fine without any grandstanding.",2008-07-01,10071,Henry V +,fresh,0097499,Time Out,"Branagh succeeds in his blunt, robust portrayal of the Soldier-King, hauling the film along in the wake of his own gung-ho performance.",2006-06-24,10071,Henry V +Benedict Nightingale,fresh,0097499,New York Times,Mr. Branagh's Henry has psychological heft and intellectual weight.,2003-05-21,10071,Henry V +Amy E. Schwartz,fresh,0097499,Washington Post,"More questioning, more agonized, finally more humble.",2000-01-01,10071,Henry V +Hal Hinson,fresh,0097499,Washington Post,Everything about this remarkable production is exhilaratingly unexpected.,2000-01-01,10071,Henry V +Roger Ebert,fresh,0097499,Chicago Sun-Times,What works best in the film is the over-all vision.,2000-01-01,10071,Henry V +Desson Thomson,fresh,0097499,Washington Post,"In this alert, rousing interpretation of Henry V, Branagh beats down the doors of high art and drags the sleeping bard into the light of modern day.",2000-01-01,10071,Henry V +Gene Siskel,fresh,0086879,Chicago Tribune,The subject of artistic creation is typically handled badly in the movies.... [Amadeus] treats the subject of creativity in a fresh way.,2013-02-20,10286,Amadeus +Richard Corliss,none,0086879,TIME Magazine,A grand movie entertainment.,2013-02-19,10286,Amadeus +Todd McCarthy,fresh,0086879,Variety,"On a production level and as an evocation of a time and place, Amadeus is loaded with pleasures.",2008-02-19,10286,Amadeus +Dave Kehr,rotten,0086879,Chicago Reader,"Peter Shaffer's shrewdly orchestrated cultural evening gets a steady, dignified, moderately dull treatment from Milos Forman.",2006-12-17,10286,Amadeus +Geoff Andrew,fresh,0086879,Time Out,"The entire cast speaks in horribly intrusive American accents, but Forman makes some perceptive connections between Mozart's life and work.",2006-06-24,10286,Amadeus +James Berardinelli,fresh,0086879,ReelViews,It is arguably the best motion picture ever made about the process of creation and the creator.,2003-07-31,10286,Amadeus +Vincent Canby,fresh,0086879,New York Times,"As Mozart, Tom Hulce, though extremely American in looks and voice, gets better and better as the drama progresses.",2003-05-20,10286,Amadeus +F.X. Feeney,fresh,0086879,L.A. Weekly,"This dark, exuberant epic is nearly 18 years old, yet remains the most popularly successful film ever to render the inner life of an artist.",2002-10-03,10286,Amadeus +Michael Wilmington,fresh,0086879,Chicago Tribune,"Reminds us that movies can be lyrical as well as vulgar, ambitious as well as playful, brilliant as well as down and dirty -- just like Amadeus himself.",2002-07-20,10286,Amadeus +Philip Wuntch,fresh,0086879,Dallas Morning News,"Remains a beautiful, deftly directed and superbly acted version of a witty and poignant drama.",2002-05-23,10286,Amadeus +Roger Ebert,fresh,0086879,Chicago Sun-Times,"In a film of grand gestures, some of the finest moments are very subtle.",2002-04-24,10286,Amadeus +Moira MacDonald,fresh,0086879,Seattle Times,"A gloriously colorful confection of music, theater and emotion.",2002-04-19,10286,Amadeus +David Hunter,fresh,0086879,Hollywood Reporter,"It's got more music, more drama, more of what made it a big winner with audiences and critics 18 years ago.",2002-04-08,10286,Amadeus +Peter Howell,fresh,0086879,Toronto Star,"Like the composers the film so wondrously depicts, Amadeus: Director's Cut is a divine work in need of a little earthly restraint.",2002-04-05,10286,Amadeus +Mick LaSalle,fresh,0086879,San Francisco Chronicle,"In any incarnation, Amadeus is beautiful to behold.",2002-04-05,10286,Amadeus +Liam Lacey,fresh,0086879,Globe and Mail,"The principal additions ... are more Amadeus, but not better.",2002-04-05,10286,Amadeus +Glenn Lovell,fresh,0086879,San Jose Mercury News,Still a work of consummate artistry and craftsmanship.,2002-04-04,10286,Amadeus +Variety Staff,fresh,0045061,Variety,This is a robust romantic drama of a native-born's return to Ireland. Director John Ford took cast and cameras to Ireland to tell the story [by Maurice Walsh] against actual backgrounds.,2008-03-11,19268,The Quiet Man +Don Druker,fresh,0045061,Chicago Reader,John Ford's 1952 Oscar winner is a tribute to an Ireland that exists only in the imaginations of songwriters and poets like Ford.,2008-03-11,19268,The Quiet Man +,rotten,0045061,Time Out,The illusion/reality theme underlying immigrant boxer Wayne's return from America to County Galway is soon swamped within a vibrant community of stage-Irish 'types'.,2006-06-24,19268,The Quiet Man +A.H. Weiler,fresh,0045061,New York Times,"Let's face it. Mr. Ford is in love with Ireland, as is his cast, and they give us a fine, gay time while they're about it.",2003-05-20,19268,The Quiet Man +James Berardinelli,fresh,0045061,ReelViews,"Although not a true classic, The Quiet Man is worth more than a cursory glance, especially for those who like Wayne or would like to experience more of his work.",2000-01-01,19268,The Quiet Man +David Fear,fresh,0087843,Time Out New York,"Sergio Leone's languid, lovely and lengthy ode to Lower East Side mobsters (more specifically, mobster films) ...",2012-11-20,13113,Once Upon a Time in America +Richard Corliss,fresh,0087843,TIME Magazine,"Leone is less interested in arousing an audience's easier emotions than in presenting, at a dispassionate distance, the horror of two men warily walking toward each other on a tightrope suspended above the snake pit of their , deepest compulsions.",2011-04-12,13113,Once Upon a Time in America +Dave Kehr,fresh,0087843,Chicago Reader,"Every gesture is immediate, and every gesture seems eternal.",2011-04-12,13113,Once Upon a Time in America +Variety Staff,rotten,0087843,Variety,A disappointment of considerable proportions.,2008-09-12,13113,Once Upon a Time in America +,rotten,0087843,Time Out,"While Leone's vision still has a magnificent sweep, the film finally subsides to an emotional core that is sombre, even elegiac, and which centres on a man who is bent and broken by time, and finally left with nothing but an impotent sadness.",2006-01-26,13113,Once Upon a Time in America +Roger Ebert,fresh,0087843,Chicago Sun-Times,"There are times when we don't understand exactly what is happening, but never a time when we don't feel confidence in the film's narrative.",2004-10-23,13113,Once Upon a Time in America +Douglas Pratt,fresh,0087843,Hollywood Reporter,"As one would expect from Leone, the film is a brilliant stylistic accomplishment.",2003-07-16,13113,Once Upon a Time in America +Vincent Canby,rotten,0087843,New York Times,A lazily haullucinatory epic that means to encapsulate approximately 50 years of American social history into a single film.,2003-05-20,13113,Once Upon a Time in America +John Hartl,fresh,0087843,Film.com,Seeing what Leone always intended is like getting your dirty glasses washed.,2000-01-01,13113,Once Upon a Time in America +Keith Uhlich,fresh,0081398,Time Out New York,When has a performer as fully and uniquely sacrificed himself to the moving-picture cause as De Niro?,2010-11-03,15121,Raging Bull +Richard Corliss,fresh,0081398,TIME Magazine,"De Niro is always absorbing and credible, even when his character isn't.",2008-08-04,15121,Raging Bull +Joseph McBride,rotten,0081398,Variety,Martin Scorsese makes pictures about the kinds of people you wouldn't want to know.,2007-03-14,15121,Raging Bull +Dave Kehr,fresh,0081398,Chicago Reader,"I can't pan it, but this 1980 fantasy biography of fighter Jake LaMotta seems unquestionably Martin Scorsese's weakest work, at least to that point in his career.",2007-03-14,15121,Raging Bull +Jessica Winter,fresh,0081398,Time Out,"This film does more than make you think about masculinity, it makes you see it -- in a way that's relevant to all men, not just Bronx boxers.",2006-02-09,15121,Raging Bull +Ty Burr,fresh,0081398,Boston Globe,The film that many consider the finest of its decade.,2005-03-11,15121,Raging Bull +Glenn Abel,fresh,0081398,Hollywood Reporter,An underdog in its day and a classic today.,2005-02-23,15121,Raging Bull +Vincent Canby,fresh,0081398,New York Times,"Though Raging Bull has only three principal characters, it is a big film, its territory being the landscape of the soul.",2003-05-20,15121,Raging Bull +Amy Taubin,fresh,0081398,Village Voice,"The most obvious basis for the film's claim to greatness lies in Scorsese's devastating critique of the very codes of masculinity that shaped him as a filmmaker, and in Robert De Niro's performance, through which that critique is made flesh.",2000-01-01,15121,Raging Bull +Roger Ebert,fresh,0081398,Chicago Sun-Times,"It's the best film I've seen about the low self-esteem, sexual inadequacy and fear that lead some men to abuse women.",2000-01-01,15121,Raging Bull +James Berardinelli,fresh,0081398,ReelViews,"There's no room for romanticism in the ring with inky black blood staining the canvas. During fight sequences, the director also uses a number of point-of-view shots designed to show the world, however briefly, from La Motta's perspective.",2000-01-01,15121,Raging Bull +Keith Uhlich,fresh,0075686,Time Out New York,"This is the link between Allen's ""earlier, funnier"" stuff and more probing works like Interiors and Manhattan. Would that we all could build such masterful bridges.",2013-02-19,10183,Annie Hall +Richard Schickel,fresh,0075686,TIME Magazine,"Personal as the story he is telling may be, what separates this film from Allen's own past work and most other recent comedy is its general believability.",2009-02-20,10183,Annie Hall +Joseph McBride,fresh,0075686,Variety,A touching and hilarious love story that is Allen's most three-dimensional film to date.,2008-02-19,10183,Annie Hall +Dave Kehr,fresh,0075686,Chicago Reader,"Visually and structurally it's a mess, but many of the situations are genuinely clever, and there are plenty of memorable gags.",2006-12-13,10183,Annie Hall +Geoff Andrew,fresh,0075686,Time Out,"If you can forgive the fact that it's a ragbag of half-digested intellectual ideas dressed up with trendy intellectual references, you should have a good laugh.",2006-06-24,10183,Annie Hall +Vincent Canby,fresh,0075686,New York Times,"There will be discussion about what points in the film coincide with the lives of its two stars, but this, I think, is to detract from and trivialize the achievement of the film, which, at last, puts Woody in the league with the best directors we have.",2003-05-20,10183,Annie Hall +Roger Ebert,fresh,0075686,Chicago Sun-Times,"Watching it again, 25 years after its April 1977 premiere, I am astonished by how scene after scene has an instant familiarity.",2002-05-26,10183,Annie Hall +Richard Schickel,fresh,0086197,TIME Magazine,"Moviegoers seeking a grand yet edifying entertainment, right-stuffed with what Kaufman calls ""seriousness of subject matter and a wild humor that comes out of left field,"" now know where to look...",2011-10-05,11250,The Right Stuff +Variety Staff,fresh,0086197,Variety,"The Right Stuff is a humdinger. Full of beauty, intelligence and excitement, this big-scale look at the development of the US space program and its pioneering aviators provides a fresh, entertaining look back at the recent past.",2009-03-26,11250,The Right Stuff +Geoff Andrew,fresh,0086197,Time Out,"From the opening moments it is clear that we have the nearest modern equivalent to a Western: men of quiet virtue going skyward, leaving the tawdry world of log-rolling politicians behind.",2006-06-24,11250,The Right Stuff +Vincent Canby,fresh,0086197,New York Times,"These men remain virtually flawless heroes, almost too good, decent and brave to be true, and it's a measure of how successful the movie is that one is inclined to believe it.",2003-05-20,11250,The Right Stuff +Roger Ebert,fresh,0086197,Chicago Sun-Times,"That the writer-director, Philip Kaufman, is able to get so much into a little more than three hours is impressive. That he also has organized this material into one of the best recent American movies is astonishing.",2003-03-25,11250,The Right Stuff +Jonathan Rosenbaum,fresh,0079944,Chicago Reader,"Not an easy film, but almost certainly a great one.",2007-05-30,18852,Stalker +Derek Adams,fresh,0079944,Time Out,"Tarkovsky conjures images like you've never seen before; and as a journey to the heart of darkness, it's a good deal more persuasive than Coppola's.",2006-02-09,18852,Stalker +Janet Maslin,fresh,0079944,New York Times,"Stalker, a somber futuristic fantasy from the Soviet Union, attempts to build an apocalyptic vision out of the most impoverished materials imaginable.",2005-01-15,18852,Stalker +Variety Staff,fresh,0082096,Variety,Everything described in the film is authentic.,2012-02-23,17965,Das Boot +Dave Kehr,rotten,0082096,Chicago Reader,The film has no qualities beyond its formal polish.,2011-12-09,17965,Das Boot +Todd McCarthy,fresh,0082096,Variety,"Agripping, impressively detailed account of one harrowing voyage by a German U-boat during World War II.",2009-03-19,17965,Das Boot +Geoff Andrew,fresh,0082096,Time Out,"Petersen's shooting style displays a breathtaking, if impersonal and faintly academic, virtuosity comparable to that of Lean or Coppola.",2006-06-24,17965,Das Boot +Janet Maslin,fresh,0082096,New York Times,Das Boot is yet another moving testament to the wastefulness of battle.,2004-08-30,17965,Das Boot +Jeff Millar,fresh,0082096,Houston Chronicle,The film reaches right out to grab us by the neck and squeeze hard.,2002-02-02,17965,Das Boot +Roger Ebert,fresh,0082096,Chicago Sun-Times,Wolfgang Petersen's direction is an exercise in pure craftsmanship.,2000-01-01,17965,Das Boot +James Berardinelli,fresh,0082096,ReelViews,"This film takes all of the drama and suspense inherent in a submarine-based story and delivers it in a near- perfect package, establishing Das Boot as not just a terrific adrenaline rush, but one of the best movies ever made.",2000-01-01,17965,Das Boot +Desson Thomson,fresh,0082096,Washington Post,You're drawn in powerfully as the crew members experience a psychologically maddening cycle of lull and storm.,2000-01-01,17965,Das Boot +Edward Guthmann,fresh,0082096,San Francisco Chronicle,"Suspenseful when it needs to be and intelligent in its depiction of the horrors of war and the sweaty claustrophobia of submarine life. On occasion, it's even -- pardon the pun -- deep.",2000-01-01,17965,Das Boot +Jay Cocks,rotten,0070735,TIME Magazine,"Newman and Redford pass a few facial expressions between them and try to cool each other out. If there ever was much of a script, it can be said to have gone to waste.",2008-10-01,22491,The Sting +A.D. Murphy,fresh,0070735,Variety,Extremely handsome production values and a great supporting cast round out the virtues.,2008-02-19,22491,The Sting +Don Druker,fresh,0070735,Chicago Reader,Top-notch entertainment.,2006-12-13,22491,The Sting +Derek Adams,fresh,0070735,Time Out,"The film ends up relying on different chapter headings to explain what's going on, but it's all very professional, with fine attention to period detail.",2006-06-24,22491,The Sting +Vincent Canby,fresh,0070735,New York Times,"The film is so good-natured, so obviously aware of everything it's up to, even its own picturesque frauds, that I opt to go along with it.",2005-05-09,22491,The Sting +Roger Ebert,fresh,0070735,Chicago Sun-Times,"The movie has a nice, light-fingered style to it.",2004-10-23,22491,The Sting +Richard McGuinness,fresh,0067185,Village Voice,"The fact that [it] isn't very funny and, like its 80-year-old heroic, long outlives its necessary life, is less important than the fact that the characters frequently react gently or like credible human beings to the script's impossible notions.",2013-01-18,10059,Harold and Maude +Dave Kehr,rotten,0067185,Chicago Reader,"Simpleminded, but it's fairly inoffensive, at least until Ashby lingers over the concentration-camp serial number tattooed on Gordon's arm. Some things are beyond the reach of whimsy.",2007-10-24,10059,Harold and Maude +Derek Adams,fresh,0067185,Time Out,It is most successful when it keeps to the tone of an insane fairystory set up at the beginning of the movie.,2006-06-24,10059,Harold and Maude +Vincent Canby,rotten,0067185,New York Times,"[Bud Cort and Ruth Gordon] both are so aggressive, so creepy and off-putting.",2005-05-09,10059,Harold and Maude +Roger Ebert,rotten,0067185,Chicago Sun-Times,"The visual style makes everyone look fresh from the Wax Museum, and all the movie lacks is a lot of day-old gardenias and lilies and roses in the lobby, filling the place with a cloying sweet smell. Nothing more to report today.",2004-10-23,10059,Harold and Maude +Variety Staff,rotten,0067185,Variety,"Marked by a few good gags, but marred by a greater preponderance of sophomoric, overdone and mocking humor.",2001-02-13,10059,Harold and Maude +,none,0427968,Atlanta Journal-Constitution,,2011-04-12,283051883,Trust the Man +J. R. Jones,fresh,0427968,Chicago Reader,"I saw this at a festival and hated it, then sat through it again a year later and decided it wasn't so bad, aside from the god-awful ending.",2006-12-18,283051883,Trust the Man +Ben Walters,rotten,0427968,Time Out,"It's a pity, because few romcoms pull off the basically sympathetic mining of personal vanities and social embarrassment that the film manages in its opening hour.",2006-09-21,283051883,Trust the Man +,none,0427968,St. Louis Post-Dispatch,,2006-09-02,283051883,Trust the Man +Tom Keogh,fresh,0427968,Seattle Times,"Freundlich's outstanding cast (including Garry Shandling, Eva Mendes, Ellen Barkin, Bob Balaban and James LeGros) -- his best since 1997's The Myth of Fingerprints -- glosses over miscalculations with sheer star power.",2006-09-01,283051883,Trust the Man +Roger Moore,rotten,0427968,Orlando Sentinel,"Two couples in trouble, one with kids, another considering them. Writer-director Bart Freundlich's challenge is to stress them and find a resolution to their conflicts in ways that aren't banal, predictable or witless. And he settles for one out of three.",2006-09-01,283051883,Trust the Man +Connie Ogle,rotten,0427968,Miami Herald,"The fact that Freundlich tries to put some thoughtful commentary into a formulaic story is commendable, but in the end either his faith wavers or the studio intervened.",2006-09-01,283051883,Trust the Man +Amy Biancolli,rotten,0427968,Houston Chronicle,"I wish the film were true to itself and its quartet of puzzled, struggling lovers; their collapse into sitcom idiocy felt uncomfortably close to betrayal.",2006-09-01,283051883,Trust the Man +Terry Lawson,rotten,0427968,Detroit Free Press,"A lot more smug and a lot less insightful than writer-director Bart Freundlich apparently assumes, and it's burdened even more by its surfeit of unsympathetic characters.",2006-09-01,283051883,Trust the Man +Philip Wuntch,rotten,0427968,Dallas Morning News,"Screenwriter and director Bart Freundlich fails to offer fresh insights into the problems of contemporary relationships, and many of his comic targets are easy and conventional.",2006-08-31,283051883,Trust the Man +Bill Muller,rotten,0427968,Arizona Republic,"There's nothing terribly wrong with this comedy about the romantic dalliances of four New Yorkers, but there's nothing terribly right about it, either.",2006-08-31,283051883,Trust the Man +Colin Covert,rotten,0427968,Minneapolis Star Tribune,"The people behind this film would not recognize complex, honest emotion if it hit them in the face with a frying pan.",2006-08-31,283051883,Trust the Man +Richard Roeper,rotten,0427968,Ebert & Roeper,"Trying to mimic the Woody Allen films is not a bad thing to do, but why not put a spin on it?",2006-08-21,283051883,Trust the Man +Wesley Morris,rotten,0427968,Boston Globe,"Is this farce, drama, satire? Who knows?",2006-08-19,283051883,Trust the Man +Claudia Puig,rotten,0427968,USA Today,This comedy about two self-absorbed New York couples feels like wan Woody Allen.,2006-08-18,283051883,Trust the Man +Ruthe Stein,rotten,0427968,San Francisco Chronicle,"Trust the Man has a sketchy overall feel, as if Freundlich didn't finish thinking it through.",2006-08-18,283051883,Trust the Man +Stephen Whitty,rotten,0427968,Newark Star-Ledger,"Trust the Man is a mildly amusing movie, but that's chiefly a result of its stars -- or, more specifically, its female stars -- elevating the material.",2006-08-18,283051883,Trust the Man +Lou Lumenick,fresh,0427968,New York Post,"As faux Woody Allen movies go, Trust the Man is one of the more diverting recent entries in the genre, with a top-drawer cast, well-chosen Manhattan locations and a sharper script than Allen himself has managed in a while.",2006-08-18,283051883,Trust the Man +Jack Mathews,rotten,0427968,New York Daily News,"In the end, you're left feeling a little empty, as if you've been eavesdropping on a conversation in a restaurant and neglected to eat your dinner.",2006-08-18,283051883,Trust the Man +Carina Chocano,rotten,0427968,Los Angeles Times,"The actors gamely keep up their spirits, but the male characters are too one-dimensional and the female characters too bizarrely divorced from reality to be at all engaging.",2006-08-18,283051883,Trust the Man +Elliott Stein,fresh,0050976,Village Voice,Bergman's visually striking medieval morality play [was] the work that gained him an international reputation.,2013-07-23,341817599,Det sjunde inseglet +Variety Staff,fresh,0050976,Variety,"Film has superior technical narrative, impressive lensing and thesping.",2009-03-26,341817599,Det sjunde inseglet +John Monaghan,fresh,0050976,Detroit Free Press,Its view of a seemingly godless landscape in the grip of plague is still bold and frightening.,2007-12-07,341817599,Det sjunde inseglet +Dave Kehr,rotten,0050976,Chicago Reader,"It survives today only as an unusually pure example of a typical 50s art-film strategy: the attempt to make the most modern and most popular of art forms acceptable to the intelligentsia by forcing it into an arcane, antique mold.",2007-07-30,341817599,Det sjunde inseglet +Wally Hammond,fresh,0050976,Time Out,"Not only highly impressive but thought-provoking, relevant and intensely moving in our present, nervous, times.",2006-02-09,341817599,Det sjunde inseglet +Bosley Crowther,fresh,0050976,New York Times,"Essentially intellectual, yet emotionally stimulating, too, it is as tough -- and rewarding -- a screen challenge as the moviegoer has had to face this year.",2003-05-20,341817599,Det sjunde inseglet +Roger Ebert,fresh,0050976,Chicago Sun-Times,"This is an uncompromising film, regarding good and evil with the same simplicity and faith as its hero.",2000-01-01,341817599,Det sjunde inseglet +Dave Kehr,fresh,0085859,Chicago Reader,"The thematics are rather cloying, but the mood -- profoundly relaxed, bemused -- eventually conquers.",2010-09-03,10342,Local Hero +Todd McCarthy,fresh,0085859,Variety,"[It's] loaded with wry, offbeat humor and is the sort of satisfying, personal picture that is becoming an increasingly rare commodity these days",2008-08-13,10342,Local Hero +,fresh,0085859,Time Out,"Forsyth cannot quite tease out of his characters the kind of strange sublety that Powell and Pressburger delivered, but it is enough that he and producer David Puttnam succeed in making you realise just how badly this kind of film has been missed.",2006-06-24,10342,Local Hero +Roger Ebert,fresh,0085859,Chicago Sun-Times,"Here is a small film to treasure, a loving, funny, understated portrait of a small Scottish town and its encounter with a giant oil company.",2004-10-23,10342,Local Hero +Janet Maslin,fresh,0085859,New York Times,"It demonstrates Mr. Forsyth's uncanny ability for making an audience sense that something magical is going on, even if that something isn't easily explained.",2003-05-20,10342,Local Hero +Joshua Rothkopf,rotten,0438488,Time Out,,2011-11-17,770676948,Terminator Salvation +Laremy Legel,rotten,0438488,Film.com,"It brings me very little joy to report that this version of the popular Terminator franchise is silly, obtuse, and pointless.",2011-05-06,770676948,Terminator Salvation +Tom Huddlestone,rotten,0438488,Time Out,"A shambolic, deafening, intelligence-insulting mess, a crushing failure on almost all counts.",2009-06-05,770676948,Terminator Salvation +Ben Mankiewicz,rotten,0438488,At the Movies,This is the worst big budget summer release I've seen in some time.,2009-05-26,770676948,Terminator Salvation +Ben Lyons,rotten,0438488,At the Movies,It's a fun time at the movies.,2009-05-26,770676948,Terminator Salvation +Anthony Lane,rotten,0438488,New Yorker,"Terminator Salvation is a confused, humorless grind, with nobody, from the stars to the set designers, prepared to prick its self-importance.",2009-05-26,770676948,Terminator Salvation +Joe Morgenstern,fresh,0438488,Wall Street Journal,The digital effects are mostly quite dazzling-not just the depictions of towering marauders...but a memorably scary sequence in which a little serpentine robot that's been taken captive thrashes furiously to save its nonlife.,2009-05-22,770676948,Terminator Salvation +Peter Travers,fresh,0438488,Rolling Stone,"T4 is a mixed bag, but it's not f------- amateur.",2009-05-22,770676948,Terminator Salvation +Steven Rea,rotten,0438488,Philadelphia Inquirer,Message to Hollywood: Stop with the time-travel stuff.,2009-05-22,770676948,Terminator Salvation +Peter Rainer,fresh,0438488,Christian Science Monitor,"McG, a music video maven whose previous credits include the Charlie's Angels movies, directs the action passably well.",2009-05-22,770676948,Terminator Salvation +Christopher Orr,rotten,0438488,The New Republic,"Intensity need not be the enemy of personality, but in Bale's work it too often has been.",2009-05-22,770676948,Terminator Salvation +James Rocchi,fresh,0438488,MSN Movies,"""Terminator Salvation"" promised moviegoers a war between the human heart and the cold, cruel efficiency of machines. So why then is it so mechanical itself, so good at repetition, so preprogrammed and clunky?",2009-05-22,770676948,Terminator Salvation +Dana Stevens,rotten,0438488,Slate,A good summer movie isn't just an uninterrupted crescendo of cacophony. You need stuff in between the fireballs and the cyborgs.,2009-05-21,770676948,Terminator Salvation +Stephanie Zacharek,rotten,0438488,Salon.com,"Terminator Salvation is so programmed, so impersonal, that it practically dares you to warm to its characters.",2009-05-21,770676948,Terminator Salvation +Lisa Kennedy,rotten,0438488,Denver Post,One could argue Connor's grim demeanor is precisely what a global disaster demands. But Bale's turn has a bass-note feel that is anti-charismatic.,2009-05-21,770676948,Terminator Salvation +J. R. Jones,rotten,0438488,Chicago Reader,"The movie's only unmitigated pleasure is a too-brief fight scene between Connor and a naked combatant made up to look precisely like Arnold Schwarzenegger, the relentless cyborg of the first three installments.",2009-05-21,770676948,Terminator Salvation +Ty Burr,rotten,0438488,Boston Globe,"The latest installment in the venerable sci-fi action franchise turns out to be a straight-up war film, grim and muscular and thundering and joyless. It's the color of cement, and it weighs as much, too.",2009-05-21,770676948,Terminator Salvation +Colin Covert,rotten,0438488,Minneapolis Star Tribune,"The Terminator franchise was built on thrills, imagination, narrative, emotion, believability, character development and watchability. Terminator Salvation has plenty of thrills.",2009-05-20,770676948,Terminator Salvation +John Hartl,rotten,0438488,Seattle Times,Too bad Schwarzenegger is otherwise occupied these days.,2009-05-20,770676948,Terminator Salvation +Stephen Whitty,rotten,0438488,Newark Star-Ledger,"Skynet may not have ensured its own future, yet. But their robots have clearly made serious inroads in our movies.",2009-05-20,770676948,Terminator Salvation +David Stratton,fresh,0103873,Variety,The best to date from Kiwi gore specialist Peter Jackson.,2008-07-22,17021,Braindead +,fresh,0103873,Time Out,"The finale, in which Lionel reduces a horde of flesh-eaters to a mulch of blood, flesh and offal with the aid of a flymo, is probably the goriest scene ever.",2006-06-24,17021,Braindead +Stephen Holden,rotten,0103873,New York Times,"Because all of this looks blatantly unreal, and because the timing of the shock effects is so haphazard, Dead Alive isn't especially scary or repulsive. Nor is it very funny.",2003-05-20,17021,Braindead +Owen Gleiberman,fresh,0103873,Entertainment Weekly,"Horror films used to be primordial spook shows, tapping midnight-dark fears. Now they tap bodily goo: rivers of blood, dripping limbs, eyeballs that go pop in the night.",1993-02-12,17021,Braindead +Richard Schickel,fresh,0097441,TIME Magazine,"It is the movie's often awesome imagery and a bravely soaring choral score by James Horner that transfigure the reality, granting it the status of necessary myth.",2010-01-06,16760,Glory +Variety Staff,fresh,0097441,Variety,A stirring and long overdue tribute to the black soldiers who fought for the Union cause in the Civil War.,2008-06-05,16760,Glory +Jonathan Rosenbaum,fresh,0097441,Chicago Reader,"A pretty watchable and always interesting period film, well photographed by English cinematographer Freddie Francis.",2007-02-09,16760,Glory +,fresh,0097441,Time Out,The stark clarity of Freddie Francis' cinematography combined with Zwick's intimate style evokes immediacy and fear.,2006-06-24,16760,Glory +Vincent Canby,fresh,0097441,New York Times,"This is a good, moving, complicated film.",2003-05-20,16760,Glory +James Berardinelli,fresh,0097441,ReelViews,"Glory is, without question, one of the best movies ever made about the American Civil War.",2003-01-23,16760,Glory +Peter Travers,rotten,0097441,Rolling Stone,Matthew Broderick [is] catastrophically miscast as Shaw.,2001-05-13,16760,Glory +Roger Ebert,fresh,0097441,Chicago Sun-Times,A strong and valuable film.,2000-01-01,16760,Glory +Desson Thomson,fresh,0097441,Washington Post,It's hard not to get carried along.,2000-01-01,16760,Glory +John Hartl,fresh,0097441,Film.com,Generally engrossing and always well-acted.,2000-01-01,16760,Glory +Owen Gleiberman,rotten,0100519,Entertainment Weekly,,2011-09-07,10157,Rosencrantz & Guildenstern Are Dead +,none,0100519,Variety,,2009-03-20,10157,Rosencrantz & Guildenstern Are Dead +Geoff Andrew,rotten,0100519,Time Out,Both Oldman and Roth turn in flat and uninspiring performances.,2006-02-09,10157,Rosencrantz & Guildenstern Are Dead +Vincent Canby,rotten,0100519,New York Times,"As happens at the opera, one usually laughs (if one laughs at all) not because something is funny, but because one has successfully recognized that it is supposed to be funny.",2003-05-20,10157,Rosencrantz & Guildenstern Are Dead +Roger Ebert,rotten,0100519,Chicago Sun-Times,"As a movie, this material, freely adapted by Stoppard, is boring and endless. It lies flat on the screen, hardly stirring.",2000-01-01,10157,Rosencrantz & Guildenstern Are Dead +Hal Hinson,rotten,0100519,Washington Post,"Staged as they are here, the jokes and the fourth-wall gamesmanship don't seem as funny as they did on the page.",2000-01-01,10157,Rosencrantz & Guildenstern Are Dead +Carla Hall,none,0100519,Washington Post,,2000-01-01,10157,Rosencrantz & Guildenstern Are Dead +,rotten,0100519,Entertainment Weekly,,1991-02-08,10157,Rosencrantz & Guildenstern Are Dead +Richard Brody,fresh,0079522,New Yorker,"Allen serves up a nostalgia that was utterly of its time; he incarnates an idea of the city that, even now, remains as strong as its reality and refracts his disappointed ideals into high existential crises.",2012-09-03,13058,Manhattan +Joshua Rothkopf,fresh,0079522,Time Out,,2011-11-17,13058,Manhattan +J. Hoberman,fresh,0079522,Village Voice,"Manhattan is not just Woody Allen's dream movie. Wistful as it is witty, it's his dream of the movies.",2009-02-04,13058,Manhattan +Variety Staff,fresh,0079522,Variety,"Allen has, in black and white, captured the inner beauty that lurks behind the outer layer of dirt and grime in Manhattan.",2009-02-04,13058,Manhattan +Dave Kehr,fresh,0079522,Chicago Reader,Woody Allen's great leap forward into character development and dramatic integrity.,2009-02-04,13058,Manhattan +Joshua Rothkopf,fresh,0079522,Time Out New York,"This is a deeply self-critical film about immaturity and the gift of real love. Many films can be said to put an epitaph on the decade, but few remain as relevant.",2008-01-18,13058,Manhattan +Dave Calhoun,fresh,0079522,Time Out,Woody Allen's gem of comic kvetching.,2006-06-24,13058,Manhattan +Vincent Canby,fresh,0079522,New York Times,Mr. Allen's progress as one of our major filmmakers is proceeding so rapidly that we who watch him have to pause occasionally to catch our breath.,2003-05-20,13058,Manhattan +James Berardinelli,fresh,0079522,ReelViews,"If Manhattan was only a romantic comedy, it would be a very good one, but the fact that the movie has so much more ambition than the 'average' entry into the genre makes it an extraordinary example of the fusion of entertainment and art.",2002-03-14,13058,Manhattan +Roger Ebert,fresh,0079522,Chicago Sun-Times,"Seeing it again I realize it's more subtle, more complex, and not about love, but loss.",2001-04-11,13058,Manhattan +Owen Gleiberman,fresh,0100150,Entertainment Weekly,,2011-09-07,12945,Miller's Crossing +Variety Staff,fresh,0100150,Variety,"Substance is here in spades, along with the twisted, brilliantly controlled style on which filmmakers Joel and Ethan Coen made a name.",2007-11-06,12945,Miller's Crossing +Jonathan Rosenbaum,rotten,0100150,Chicago Reader,It never fully convinces in terms of either period or plot.,2007-11-06,12945,Miller's Crossing +Peter Travers,fresh,0100150,Rolling Stone,"The Coens' take on Depression-era gangster flicks, looks gorgeous and showcases John Turturro's best acting ever.",2007-08-14,12945,Miller's Crossing +Geoff Andrew,fresh,0100150,Time Out,It's arguably the US mainstream's first art movie since Days of Heaven; and quite wonderful.,2006-06-24,12945,Miller's Crossing +Vincent Canby,rotten,0100150,New York Times,Without much point at all.,2003-05-20,12945,Miller's Crossing +Desson Thomson,fresh,0100150,Washington Post,"Crossing is the kind of movie that benefits from a second sitting, to get a complete grip on the plot.",2000-01-01,12945,Miller's Crossing +John Hartl,fresh,0100150,Film.com,"While Miller's Crossing is not as messy or inspired as Martin Scorsese's GoodFellas, or as richly suggestive as The Godfather, it accomplishes exactly what it sets out to do.",2000-01-01,12945,Miller's Crossing +Roger Ebert,fresh,0100150,Chicago Sun-Times,There is a lot here to admire.,2000-01-01,12945,Miller's Crossing +Rita Kempley,fresh,0100150,Washington Post,As disturbing and densely beautiful as its opening image.,2000-01-01,12945,Miller's Crossing +,fresh,0100150,Entertainment Weekly,,1990-09-22,12945,Miller's Crossing +Richard Schickel,fresh,0097165,TIME Magazine,"Williams, who has comparatively little screen time, has come to act, not to cut comic riffs, and he does so with forceful, ultimately compelling, simplicity.",2010-08-24,10138,Dead Poets Society +Variety Staff,fresh,0097165,Variety,"Story sings whenever Williams is onscreen. Screen belongs just as often to Leonard, who as Neil has a quality of darting confidence mixed with hesitancy. Hawke, as the painfully shy Todd, gives a haunting performance.",2007-07-18,10138,Dead Poets Society +Jonathan Rosenbaum,rotten,0097165,Chicago Reader,"The moral divisions set up between characters are childishly overdrawn; and, worst of all, the behavior shown by the boys and adults frequently reeks of falsity and contrivance.",2007-07-18,10138,Dead Poets Society +,fresh,0097165,Time Out,"Weir infuses the film with his customary mysticism, but more importantly, draws sensitive performances from his largely inexperienced cast.",2006-01-26,10138,Dead Poets Society +Vincent Canby,rotten,0097165,New York Times,"The movie undercuts Mr. Williams's exceptionally fine performance, making the character seem more of a dubious fool than is probably intended.",2003-05-20,10138,Dead Poets Society +Rita Kempley,fresh,0097165,Washington Post,"It's a literate though strained uplifter, a not altogether compatible coupleting of Rocky Balboa and the Bard.",2000-01-01,10138,Dead Poets Society +Roger Ebert,rotten,0097165,Chicago Sun-Times,"Not the worst of the countless recent movies about good kids and hidebound, authoritatian older people. It may, however, be the most shameless in its attempt to pander to an adolescent audience.",2000-01-01,10138,Dead Poets Society +Desson Thomson,fresh,0097165,Washington Post,"Solid, smart entertainment.",2000-01-01,10138,Dead Poets Society +Andrew Sarris,fresh,0061722,Village Voice,"The emotional elevation of the film is due in no small measure to the extraordinarily engaging performances of Anne Bancroft as the wife-mother-mistress, Dustin Hoffman as the lumbering Lancelot, and Katherine Ross as his fair Elaine.",2013-01-14,13799,The Graduate +Keith Uhlich,fresh,0061722,Time Out New York,"It's consistently fleet and funny, even as it probes the heady abandon and looming hangover that typified the decade of discontent.",2012-04-10,13799,The Graduate +,rotten,0061722,TIME Magazine,"The screenplay, which begins as genuine comedy, soon degenerates into spurious melodrama.",2011-03-29,13799,The Graduate +Derek Adams,rotten,0061722,Time Out,"The film itself is very broken-backed, partly because Anne Bancroft's performance as the mother carries so much more weight than Katharine Ross' as the daughter, partly because Nichols couldn't decide whether he was making a social satire or a farce.",2006-06-24,13799,The Graduate +Bosley Crowther,fresh,0061722,New York Times,Makes you feel a little tearful and choked-up while it is making you laugh yourself raw.,2003-05-20,13799,The Graduate +A.D. Murphy,fresh,0061722,Variety,"A delightful, satirical comedy-drama.",2001-02-13,13799,The Graduate +Robin Dougherty,rotten,0061722,Salon.com,"A simple romantic comedy whose ""countercultural"" message, insofar as it has one, is decidedly retrograde.",2000-01-01,13799,The Graduate +Roger Ebert,fresh,0061722,Chicago Sun-Times,It is a good topical movie whose time has passed,2000-01-01,13799,The Graduate +Michael Wilmington,fresh,0061722,Chicago Tribune,Few movies have communicated with such dark hilarity all the anxiety and flamboyant misery of youthful sexual initiation,2000-01-01,13799,The Graduate +Jonathan Rosenbaum,fresh,0061722,Chicago Reader,"What I don't enjoy is the cruelty, the glib mindlessness, and the insulated, pampered narcissism that makes the whole thing possible.",2000-01-01,13799,The Graduate +Philip Roth,fresh,0050212,The New Republic,"Part of the success of The Bridge is that its courageous hero is shown from all angles, in all kinds of mirrors. He is strong, stubborn, fallible, maniacal, silly, and wise; and in the end he is pathetic, noble, and foolish.",2013-01-23,11175,The Bridge on the River Kwai +Keith Uhlich,fresh,0050212,Time Out New York,"From sky to ground in two shots, and it already feels like we've traversed a great distance, with two and a half hours of skillful, suspenseful WWII adventure to go.",2010-09-22,11175,The Bridge on the River Kwai +,fresh,0050212,TIME Magazine,"It is a whale of a story, and in the telling of it, British Director David Lean does a whale of a job.",2009-02-18,11175,The Bridge on the River Kwai +Mike Kaplan,fresh,0050212,Variety,"A gripping drama, expertly put together and handled with skill in all departments.",2008-02-19,11175,The Bridge on the River Kwai +Dave Kehr,rotten,0050212,Chicago Reader,"For what it is, it ain't bad, though it serves mainly as an illustration of the ancient quandary of revisionist moviemakers: if all you do is systematically invert cliches, you simply end up creating new ones.",2006-12-13,11175,The Bridge on the River Kwai +,rotten,0050212,Time Out,A classic example of a film that fudges the issues it raises.,2006-02-09,11175,The Bridge on the River Kwai +James Berardinelli,fresh,0050212,ReelViews,"In my opinion, it is one of the two best films to emerge from a very strong decade of cinema.",2003-07-03,11175,The Bridge on the River Kwai +Bosley Crowther,fresh,0050212,New York Times,"Brilliant is the word, and no other, to describe the quality of skills that have gone into the making of this picture.",2003-05-20,11175,The Bridge on the River Kwai +Roger Ebert,fresh,0050212,Chicago Sun-Times,Most war movies are either for or against their wars. The Bridge on the River Kwai (1957) is one of the few that focuses not on larger rights and wrongs but on individuals.,2000-01-01,11175,The Bridge on the River Kwai +,rotten,0056801,TIME Magazine,"Unless Fellini's problem has been preying on the mind of the viewer, he may not care to take on the director's doubts and confusions.",2009-04-27,18384,8½ +Jonathan Rosenbaum,fresh,0056801,Chicago Reader,It's Fellini's last black-and-white picture and conceivably the most gorgeous and inventive thing he ever did.,2007-07-09,18384,8½ +Variety Staff,fresh,0056801,Variety,"Here is the author-director picture par excellence, an exciting, stimulating, monumental creation.",2007-07-09,18384,8½ +,fresh,0056801,Time Out,"Amiably spiking all criticism through a gloomy scriptwriter mouthpiece, Fellini pulls a multitude of rabbits out of the showman's hat.",2006-06-24,18384,8½ +Bosley Crowther,fresh,0056801,New York Times,"Here is a piece of entertainment that will really make you sit up straight and think, a movie endowed with the challenge of a fascinating intellectual game.",2003-05-20,18384,8½ +Desson Thomson,fresh,0056801,Washington Post,"Somehow, the movie is more than the dated crisis of a naval-contemplating artist. It's about the inability in all of us to make sense of our lives, put it all together and come up with something meaningful.",2000-01-01,18384,8½ +Hal Hinson,fresh,0056801,Washington Post,"[Fellini] is that rare sort of artist who can be loved, revered and just barely tolerated, all at the same time.",2000-01-01,18384,8½ +J. Hoberman,fresh,0056801,Village Voice,"The ensuing decades have brought forth a deluge of bogus masterpieces, and Fellini's, by comparison, holds up rather well.",2000-01-01,18384,8½ +Peter Rainer,fresh,0056801,New York Magazine,"Its opening [has] perhaps the greatest dream scene of all: Marcello Mastroianni's Guido stifled in a silent traffic jam, onlookers gazing blankly at him as he rises through the sunroof of his car, high into the sky. The rest of the film isn't too shabby.",2000-01-01,18384,8½ +Roger Ebert,fresh,0056801,Chicago Sun-Times,8 1/2 is the best film ever made about filmmaking.,2000-01-01,18384,8½ +Gene Siskel,rotten,0071315,Chicago Tribune,"As much as I admire the work of both Polanski and Nicholson, I found Chinatown tedious from beginning to just before the end.",2013-01-18,12883,Chinatown +A.D. Murphy,fresh,0071315,Variety,"Roman Polanski's American made film, first since Rosemary's Baby shows him again in total command of talent and physical filmmaking elements.",2009-03-27,12883,Chinatown +Don Druker,fresh,0071315,Chicago Reader,"Polanski's film suggests that the rules of the game are written in some strange, untranslatable language, and that everyone's an alien and, ultimately, a victim.",2009-03-27,12883,Chinatown +,fresh,0071315,Time Out,The hard-boiled private eye coolly strolls a few steps ahead of the audience.,2006-02-09,12883,Chinatown +Jessica Winter,fresh,0071315,Village Voice,"In 1974 a director, a screenwriter, and a producer (Robert Evans, who for once deserves a few of the plaudits he's apportioned himself) could decide to beat a genre senseless and then dump it in the wilds of Greek tragedy.",2003-08-05,12883,Chinatown +Vincent Canby,fresh,0071315,New York Times,A new private-eye melodrama that celebrates not only a time and a place (Los Angeles) but also a kind of criminality that to us jaded souls today appears to be nothing worse than an eccentric form of legitimate private enterprise.,2003-05-20,12883,Chinatown +James Berardinelli,fresh,0071315,ReelViews,"It takes a Herculean effort to transform this type into a character and to replace the formula with a story, and Chinatown's success in both of these regards is one of the reasons it is universally viewed as a classic.",2002-02-24,12883,Chinatown +Roger Ebert,fresh,0071315,Chicago Sun-Times,"[Nicholson's] performance is key in keeping Chinatown from becoming just a genre crime picture--that, and a Robert Towne screenplay that evokes an older Los Angeles.",2000-01-01,12883,Chinatown +Michael Booth,fresh,0043456,Denver Post,"The Day the Earth Stood Still may at first look like goofy, outdated science fiction, but its timeless warnings about violence, nuclear confrontation and the difficulties of policing the planet have made it an enduring cultural classic.",2007-10-05,9396,The Day the Earth Stood Still +Dave Kehr,fresh,0043456,Chicago Reader,"Like most of Robert Wise's work, this slickly constructed 1951 science fiction film settles squarely in the middle of its genre, better than some and worse than others.",2007-06-04,9396,The Day the Earth Stood Still +,fresh,0043456,Variety,"Cast, although secondary to the story, works well.",2007-06-04,9396,The Day the Earth Stood Still +,fresh,0043456,Time Out,"Edmund H North's intelligent script and Wise's smooth direction are serious without being solemn, while Bernard Herrmann's effectively alien-sounding score reinforces the atmosphere of strangeness and potential menace.",2006-01-26,9396,The Day the Earth Stood Still +Glenn Abel,fresh,0043456,Hollywood Reporter,"Today, wistful viewers might ask: Where are Klaatu and Gort when we need them most?",2003-06-14,9396,The Day the Earth Stood Still +Bosley Crowther,rotten,0043456,New York Times,"It is comforting, of course, to have it made plain that our planetary neighbors are much wiser and more peaceful than are we, but this makes for a tepid entertainment in what is anamolously labeled the science-fiction field.",2003-05-20,9396,The Day the Earth Stood Still +,fresh,0040897,TIME Magazine,"Treasure of Sierra Madre is one of the best things Hollywood has done since it learned to talk; and the movie can take a place, without blushing, among the best ever made.",2009-04-20,18253,The Treasure of the Sierra Madre +Don Druker,fresh,0040897,Chicago Reader,John Huston has rarely been in better form than in this 1948 study of gold fever and worse obsessions among an unlikely trio of prospectors...,2007-07-02,18253,The Treasure of the Sierra Madre +Stephen Garrett,fresh,0040897,Time Out,There's a quite enjoyable yarn buried under the hollow laughter.,2006-02-09,18253,The Treasure of the Sierra Madre +Roger Ebert,fresh,0040897,Chicago Sun-Times,"The movie has never really been about gold but about character, and Bogart fearlessly makes Fred C. Dobbs into a pathetic, frightened, selfish man -- so sick we would be tempted to pity him, if he were not so undeserving of pity.",2004-01-15,18253,The Treasure of the Sierra Madre +Bosley Crowther,fresh,0040897,New York Times,"Greed, a despicable passion out of which other base ferments may spawn, is seldom treated in the movies with the frank and ironic contempt that is vividly manifested toward it in Treasure of Sierra Madre.",2003-05-20,18253,The Treasure of the Sierra Madre +Herb Schoenfeld,fresh,0040897,Variety,"The characters here are probed and thoroughly penetrated, not through psychoanalysis but through a crucible of human conflict, action, gesture and expressive facial tones.",2001-02-13,18253,The Treasure of the Sierra Madre +,rotten,0092610,Time Out,"A climatic rebirth-by-chainsaw scene almost makes it all worthwhile, though you may have had to visit the bathroom once or twice in the wait.",2006-01-26,17781,Bad Taste +Joe Bigelow,fresh,0023969,Variety,Duck Soup should make practically everybody laugh.,2007-06-27,18986,Duck Soup +Dave Kehr,fresh,0023969,Chicago Reader,The Marx Brothers' best movie...,2007-06-27,18986,Duck Soup +Geoff Andrew,fresh,0023969,Time Out,"It also includes what is perhaps the Brothers' funniest scene ever: an immaculately timed and performed sequence with a broken mirror in which Groucho, Chico and Harpo look absolutely identical. A masterpiece.",2006-01-26,18986,Duck Soup +Mordaunt Hall,rotten,0023969,New York Times,"This production is, for the most part, extremely noisy without being nearly as mirthful as [the Marx brothers'] other films.",2003-05-20,18986,Duck Soup +Roger Ebert,fresh,0023969,Chicago Sun-Times,"The Marx Brothers created a body of work in which individual films are like slices from the whole, but Duck Soup (1933) is probably the best.",2000-01-01,18986,Duck Soup +,none,0088794,Entertainment Weekly,,2011-07-14,10107,Better Off Dead... +Janet Maslin,fresh,0088794,New York Times,"The film doesn't seem to have much of a focus. But it doesn't seem to want one, either.",2003-05-20,10107,Better Off Dead... +Ben Walters,fresh,0081505,Time Out,A masterpiece.,2013-10-06,14884,The Shining +Richard Schickel,fresh,0081505,TIME Magazine,Kubrick has made a movie that will have to be reckoned with on the highest level.,2010-10-21,14884,The Shining +James Berardinelli,fresh,0081505,ReelViews,"As a ghost story and adaptation of the Stephen King novel, it's largely a failure. On the other hand, as an example of directorial bravura and as a study of madness and the unreliable narrator, it's a brilliant success.",2009-04-30,14884,The Shining +Dave Kehr,rotten,0081505,Chicago Reader,"Kubrick is after a cool, sunlit vision of hell, born in the bosom of the nuclear family, but his imagery -- with its compulsive symmetry and brightness -- is too banal to sustain interest, while the incredibly slack narrative line forestalls suspense.",2007-05-08,14884,The Shining +Roger Ebert,fresh,0081505,Chicago Sun-Times,The movie is not about ghosts but about madness and the energies it sets loose in an isolated situation primed to magnify them.,2007-05-08,14884,The Shining +Variety Staff,rotten,0081505,Variety,"With everything to work with, director Stanley Kubrick has teamed with jumpy Jack Nicholson to destroy all that was so terrifying about Stephen King's bestseller.",2007-05-08,14884,The Shining +Eleanor Ringel Gillespie,rotten,0081505,Atlanta Journal-Constitution,I fear all work and no play has made Stanley a dull boy.,2005-03-07,14884,The Shining +Janet Maslin,fresh,0081505,New York Times,"Kubrick isn't out for screams, but he manages to make his movie thoroughly unnerving by keeping the horror so close to home.",2000-01-01,14884,The Shining +Joe Baltake,fresh,0092005,Philadelphia Daily News,"It is about the evolution of a writer, his relationship with his three closest friends and a situation that formed his talent -- and morbid fascination.",2013-06-26,16272,Stand by Me +Carrie Rickey,fresh,0092005,Philadelphia Inquirer,"Stand by Me is a small, quiet film that walks tall and resonates long after.",2013-06-26,16272,Stand by Me +Jay Boyar,fresh,0092005,Orlando Sentinel,"Its perspective is that of a knowing adult, which is to say that though the film is frequently affectionate and funny, it contains a drop too much condescension to be entirely successful.",2013-06-26,16272,Stand by Me +Sheila Benson,fresh,0092005,Los Angeles Times,"It stands, sweet and strong, ribald, outrageous and funny, like its heroes themselves -- a bit gamy around the edges, perhaps, but pure and fine clear through. It's one of those treasures absolutely not to be missed.",2013-06-26,16272,Stand by Me +Dave Kehr,rotten,0092005,Chicago Tribune,Stand by Me is a film of honorable ambitions severely compromised by a creeping show-biz phoniness.,2013-06-26,16272,Stand by Me +Pat Graham,rotten,0092005,Chicago Reader,"Reiner seems lost in his own cinematic wilderness -- button-down careful, almost afraid to move",2011-03-28,16272,Stand by Me +Chris Nashawaty,fresh,0092005,Entertainment Weekly,"Good luck choking back the tears, folks.",2011-03-17,16272,Stand by Me +Variety Staff,fresh,0092005,Variety,Scripters have written inspired dialog for this quartet of plucky boys at that hard-to-capture age when they're still young enough to get scared and yet old enough to want to sneak smokes and cuss.,2009-01-29,16272,Stand by Me +,fresh,0092005,Time Out,The film is so well-observed and so energetically acted by its young cast that mawkishness is kept at bay.,2006-02-09,16272,Stand by Me +Walter Goodman,rotten,0092005,New York Times,Rob Reiner's direction hammers in every obvious element in an obvious script.,2004-08-30,16272,Stand by Me +James Berardinelli,fresh,0092005,ReelViews,"It's as effective in 2009 as it was upon its initial release, and the richness of its tapestry, densely woven from human emotions and character interaction, ensure it will never lose that relevance.",1800-01-01,16272,Stand by Me +Kenneth Turan,fresh,0022100,Los Angeles Times,"Few films are gripping and effective 82 years after their original release, but this one surely is.",2013-04-11,17470,M +Joshua Rothkopf,fresh,0022100,Time Out New York,"This is a movie that dares to sympathize with a sick person, that risks making the monster real and us (in an era when Germany's cinema was still shellacked in canted angles and fanciful shadows).",2013-03-12,17470,M +Dave Kehr,fresh,0022100,Chicago Reader,"The moral issues are complex and deftly handled: Lorre is at once entirely innocent and absolutely evil. Lang's detached, modified expressionist style gives the action a plastic beauty.",2007-02-09,17470,M +Variety Staff,fresh,0022100,Variety,"An extraordinary, good, impressive and strong talker. Again fine work by Fritz Lang, and his wife and helper, Thea von Harbou.",2006-11-11,17470,M +Derek Adams,fresh,0022100,Time Out,"A subversive film, or more simply a movie brimming over with the ferment of Lang's imagination at its height? You choose.",2006-06-24,17470,M +Mordaunt Hall,fresh,0022100,New York Times,[An] important film which rightly deserves its success.,2003-05-20,17470,M +John Hartl,fresh,0022100,Film.com,Lorre's performance as a desperate killer who insists he can't help himself remains his finest hour on film.,2000-01-01,17470,M +Edward Guthmann,fresh,0022100,San Francisco Chronicle,It's an impeccable film -- a model of psychological suspense and a stunning display of Lang's power and skill.,2000-01-01,17470,M +Joe Baltake,fresh,0022100,Sacramento Bee,"The film grows more unsettling when it becomes apparent that the child killer Beckert is something of a child himself, forcing the audience into something beyond complicity, something dangerously close to identification.",2000-01-01,17470,M +Jonathan Rosenbaum,fresh,0022100,Chicago Reader,This astonishing movie represents an unsurpassed grand synthesis of storytelling.,2000-01-01,17470,M +Roger Ebert,fresh,0022100,Chicago Sun-Times,"The film doesn't ask for sympathy for the killer Franz Becker, but it asks for understanding: As he says in his own defense, he cannot escape or control the evil compulsions that overtake him.",2000-01-01,17470,M +Kevin Thomas,fresh,0092991,Los Angeles Times,"Just when things start getting too grisly, Raimi rushes in with a hilarious, sendup joke to remind us that all this blood and guts is meant in spooky Grand Guignol fun.",2013-10-01,98831005,Evil Dead II +Dave Kehr,fresh,0092991,Chicago Tribune,"Evil Dead 2 is, pardon the expression, consistently lively -- a ghoulish splatter comedy that uses wildly excessive gore to provoke the kind of shock that lies between a laugh and a scream.",2013-10-01,98831005,Evil Dead II +James Berardinelli,fresh,0092991,ReelViews,"Good acting would not have served the material well, since it would have diluted the comedy quotient and made the campy elements seem cheap and cheesy.",2007-09-21,98831005,Evil Dead II +Variety Staff,fresh,0092991,Variety,A flashy good-natured display of special effects and scare tactics so extreme they can only be taken for laughs.,2007-09-21,98831005,Evil Dead II +Pat Graham,rotten,0092991,Chicago Reader,"The pop-up humor and smirkiness suggest Raimi's aspiring to the fashionable company of the brothers Coen, though on the basis of this strained effort I'd say he's overshot the mark.",2007-09-21,98831005,Evil Dead II +,fresh,0092991,Time Out,"Delirious, demented and diabolically funny.",2006-01-26,98831005,Evil Dead II +Caryn James,fresh,0092991,New York Times,"Genuine, if bizarre, proof of Sam Raimi's talent and developing skill.",2003-05-20,98831005,Evil Dead II +Roger Ebert,fresh,0092991,Chicago Sun-Times,"If you know it's all special effects, and if you've seen a lot of other movies and have a sense of humor, you might have a great time at Evil Dead 2.",2000-01-01,98831005,Evil Dead II +Richard Harrington,fresh,0092991,Washington Post,"The acting is straight out of '50s B movies. The exposition is clumsy, the sound track corny, the denouement silly. Then again, who said bad taste was easy?",2000-01-01,98831005,Evil Dead II +Gene Siskel,fresh,0077416,Chicago Tribune,Is it as good as its advance word and nine Academy Award nominations suggest? Yes.,2013-02-06,12994,The Deer Hunter +,fresh,0077416,TIME Magazine,"This excruciatingly violent, three-hour Viet Nam saga demolishes the moral and ideological cliches of an era: it shoves the audience into hell and leaves it stranded without a map.",2009-02-20,12994,The Deer Hunter +Charles Schreger,fresh,0077416,Variety,The film is ambitious and it succeeds on a number of levels and it proves that Cimino is an important director who deserves to be watched carefully.,2008-02-20,12994,The Deer Hunter +Jonathan Rosenbaum,rotten,0077416,Chicago Reader,"A disgusting account of what the evil Vietnamese did to poor, innocent Americans stands at the center of this Oscar-laden weepie about macho buddies from a small industrial town.",2006-12-13,12994,The Deer Hunter +,fresh,0077416,Time Out,This is probably one of the few great films of the decade.,2006-01-26,12994,The Deer Hunter +Roger Ebert,fresh,0077416,Chicago Sun-Times,It is a heartbreakingly effective fictional machine that evokes the agony of the Vietnam time.,2004-10-23,12994,The Deer Hunter +Vincent Canby,fresh,0077416,New York Times,"Its feelings for time, place and blue-collar people are genuine, and its vision is that of an original, major new film maker.",2003-05-20,12994,The Deer Hunter +David Fear,fresh,0082269,Time Out,,2011-11-18,16191,Diva +Hank Sartin,fresh,0082269,Time Out,,2011-11-17,16191,Diva +Lisa Schwarzbaum,fresh,0082269,Entertainment Weekly,,2011-09-07,16191,Diva +Sid Smith,fresh,0082269,Chicago Tribune,"The movie's a maelstrom of possibilities touching ethnic relations, high art, fashion and modern morality, not to mention cinema.",2008-10-18,16191,Diva +Ty Burr,rotten,0082269,Boston Globe,"As with so many pop moments a quarter-century on, what once looked sexy now smells a little sexist.",2008-02-22,16191,Diva +Philip Kennicott,fresh,0082269,Washington Post,"Diva, as a lifestyle, a fantasy, a model for alienation and solipsism and eccentricity, has gone deep into all of us.",2008-01-24,16191,Diva +David Fear,rotten,0082269,Time Out New York,"An elaborate, subtitled exercise in blowing hot air.",2008-01-18,16191,Diva +Steven Rea,fresh,0082269,Philadelphia Inquirer,"A light-headed, fleet-footed French caper, Jean-Jacques Beineix's ultra-stylish Diva stormed the art houses when it was released in 1982, and it's still a lot of fun now -- though its hip patina feels more quaint these days than cool.",2008-01-10,16191,Diva +Leba Hertz,fresh,0082269,San Francisco Chronicle,I still loved every minute of it.,2007-12-07,16191,Diva +Kevin Thomas,fresh,0082269,Los Angeles Times,"Made with wit and humor, this French stunner abounds in the go-for-broke spirit of a first film made by a talented, nervy director.",2007-11-30,16191,Diva +David Edelstein,fresh,0082269,New York Magazine,This is style as a force of nature.,2007-11-03,16191,Diva +Andrew O'Hehir,fresh,0082269,Salon.com,"It's a supremely gorgeous and supremely shallow motion picture, but it believes in art with a capital A. And practically nobody does anymore.",2007-11-01,16191,Diva +Dave Kehr,fresh,0082269,Chicago Reader,Any film with this much stylistic assurance is impossible to fully resist.,2007-10-31,16191,Diva +Variety Staff,fresh,0082269,Variety,"The novel touches, bizarre chases and plot twists, breathtaking camerawork by Philippe Rousselot and tension-filled editing, make Diva a superior piece of entertainment.",2007-10-31,16191,Diva +Nathan Lee,fresh,0082269,Village Voice,"Half a century later, a glut of uber-groovy meta-thrillers has blunted the novelty of Diva, but its gamboling flair is still a kick.",2007-10-31,16191,Diva +,fresh,0082269,Time Out,"The most exciting debut in years, it is unified by the extraordinary decor - colour supplement chic meets pop art surrealism - which creates a world of totally fantastic reality situated four-square in contemporary Paris.",2006-01-26,16191,Diva +Roger Ebert,fresh,0082269,Chicago Sun-Times,"Here is a director taking audacious chances, doing wild and unpredictable things with his camera and actors, just to celebrate moviemaking.",2004-10-23,16191,Diva +Vincent Canby,fresh,0082269,New York Times,...frightfully chic-looking...,2003-05-20,16191,Diva +,fresh,0082269,Entertainment Weekly,,1981-03-11,16191,Diva +Kenneth Turan,fresh,0107048,Los Angeles Times,"Groundhog Day may not be the funniest collaboration between Bill Murray and director Harold Ramis... Yet this gentle, small-scale effort is easily the most endearing film of both men's careers, a sweet and amusing surprise package.",2013-05-06,11770,Groundhog Day +Steven Rea,fresh,0107048,Philadelphia Inquirer,"Murray hasn't made a comedy this winningly dumb and smart and -- yes -- sweet in a long time. If, indeed, he ever has.",2013-05-06,11770,Groundhog Day +Jay Boyar,fresh,0107048,Orlando Sentinel,"A movie that continually replays a single day could quickly become tedious but, strangely enough, Groundhog Day never does.",2013-05-06,11770,Groundhog Day +Gene Siskel,fresh,0107048,Chicago Tribune,Murray's wiseacre persona is perfect for what could be saccharine material in other hands.,2013-05-06,11770,Groundhog Day +Michael Sragow,fresh,0107048,New Yorker,"Even if you applaud Bill Murray's evolution from inspired comedian to minimalist seriocomic actor, it's a relief to revisit his most varied and charming role as Phil Connors.",2013-05-06,11770,Groundhog Day +Owen Gleiberman,fresh,0107048,Entertainment Weekly,Bill Murray is the one veteran of the Saturday Night Live/SCTV axis who still knows how to enter into a giddy conspiracy with his audience.,2011-09-07,11770,Groundhog Day +Jonathan Rosenbaum,fresh,0107048,Chicago Reader,"Considering that none of the characters is fresh or interesting, it's a commendable achievement that the quality of the storytelling alone keeps the movie watchable and likable.",2009-02-02,11770,Groundhog Day +Richard Corliss,fresh,0107048,TIME Magazine,[Murray] carries Groundhog Day with his uniquely frittery nonchalance and makes the movie a comic time warp anyone should be happy to get stuck in.,2008-10-05,11770,Groundhog Day +Richard Natale,fresh,0107048,Variety,Ramis' direction is often too cool and restrained. He wisely avoids playing into the tale's underlying sentimentality.,2008-10-05,11770,Groundhog Day +Michael Booth,fresh,0107048,Denver Post,"Since arriving as a mild success in 1993, Groundhog Day has gradually achieved the status of beloved. The American Film Institute rates it No.34 on its list of all-time funniest movies, and it's a story that bears frequent repeat viewings.",2007-08-18,11770,Groundhog Day +Geoff Andrew,fresh,0107048,Time Out,"Ramis directs this surreal suburban fantasy with an admirably light touch, revelling in its absurd repetitions, surprising us with narrative ellipses, and allowing Murray ample space to indulge his special mix of sarcasm and smarm.",2006-02-09,11770,Groundhog Day +Janet Maslin,fresh,0107048,New York Times,"Mr. Murray is back in top form with a clever, varied role that draws upon the full range of his talents.",2003-05-20,11770,Groundhog Day +Desson Thomson,fresh,0107048,Washington Post,"Groundhog will never be designated a national film treasure by the Library of Congress. But, in terms of vehicle selection, this is one of the better ones Murray has hitched himself to.",2000-01-01,11770,Groundhog Day +Roger Ebert,fresh,0107048,Chicago Sun-Times,The film is lovable and sweet.,2000-01-01,11770,Groundhog Day +James Berardinelli,fresh,0107048,ReelViews,"This movie has all the qualities necessary to be a crowd-pleaser: likable characters, charismatic performers, a strong, capably-executed premise, and lots of laughs.",2000-01-01,11770,Groundhog Day +Hal Hinson,fresh,0107048,Washington Post,... brilliantly imaginative ...,2000-01-01,11770,Groundhog Day +Mike Clark,fresh,0105695,USA Today,It shouldn't be missed by anyone with a taste for Eastwood's typically slanted morality. It's the actor/director's best movie -- and the best Western by anybody -- in over 20 years.,2013-08-02,13014,Unforgiven +Jay Boyar,fresh,0105695,Orlando Sentinel,"Unforgiven ain't nuthin' new, y'unnerstan', but it's a good, old-fashioned western-type pitcher with plenty o' rootin' tootin' action 'n' big ol' horses 'n' 10-gallon hats 'n' sech.",2013-08-02,13014,Unforgiven +Steven Rea,fresh,0105695,Philadelphia Inquirer,"Eastwood deliberately upends the conventions of the western, subverting his own image in the process.",2013-08-02,13014,Unforgiven +Kenneth Turan,fresh,0105695,Los Angeles Times,The Western is back. With a vengeance. Saddle up or get out of the way.,2013-08-02,13014,Unforgiven +Michael Sragow,fresh,0105695,New Yorker,"This is the finest set of performances ever to grace a Clint Eastwood movie, and this time Eastwood even does a good job directing Eastwood. Every bullet in this movie matters.",2013-02-20,13014,Unforgiven +Dave Kehr,fresh,0105695,Chicago Tribune,"This dark, melancholic film is a reminder-never more necessary than now-of what the American cinema is capable of, in the way of expressing a mature, morally complex and challenging view of the world.",2013-02-20,13014,Unforgiven +Richard Corliss,fresh,0105695,TIME Magazine,"Eastwood's meditation on age, repute, courage, heroism -- on all those burdens he has been carrying with such good grace for decades.",2008-10-26,13014,Unforgiven +James Berardinelli,fresh,0105695,ReelViews,"One of Unforgiven's assets is the way it overturns conventions, taking the man who is typically the hero and making him the villain, while transforming the traditional bad guy into a sympathetic protagonist.",2008-06-10,13014,Unforgiven +Todd McCarthy,fresh,0105695,Variety,A classic Western for the ages.,2008-02-19,13014,Unforgiven +Jonathan Rosenbaum,rotten,0105695,Chicago Reader,There's not much dramatic urgency apart from the revisionist context.,2007-02-05,13014,Unforgiven +Geoff Andrew,fresh,0105695,Time Out,"In this dark, timeless terrain, the film achieves a magnificent intensity.",2006-06-24,13014,Unforgiven +Vincent Canby,fresh,0105695,New York Times,Unforgiven is a most entertaining western that pays homage to the great tradition of movie westerns while surreptitiously expressing a certain amount of skepticism.,2003-05-20,13014,Unforgiven +Roger Ebert,fresh,0105695,Chicago Sun-Times,"That implacable moral balance, in which good eventually silences evil, is at the heart of the Western, and Eastwood is not shy about saying so.",2002-08-03,13014,Unforgiven +Peter Travers,fresh,0105695,Rolling Stone,"In three decades of climbing into the saddle, Eastwood has never ridden so tall.",2001-05-12,13014,Unforgiven +Desson Thomson,fresh,0105695,Washington Post,"Jumps adroitly between the macho and anti-macho, the romantic and anti-romantic.",2000-01-01,13014,Unforgiven +Hal Hinson,rotten,0105695,Washington Post,"By now ... Eastwood has little more than a paint-by-numbers approach to acting. As a result, we relate to Munny more as a compendium of Eastwood's earlier characters.",2000-01-01,13014,Unforgiven +John Hartl,fresh,0105695,Film.com,This is the best work Eastwood has done as a director since The Outlaw Josey Wales 16 years ago.,2000-01-01,13014,Unforgiven +Owen Gleiberman,fresh,0105695,Entertainment Weekly,"Enjoy it for the handsome wide-screen vistas, the interplay of the actors, the classical sweep of its story line. Just don't expect the new, soul-searching Eastwood to be any more dramatically convincing than the old.",1992-08-03,13014,Unforgiven +Owen Gleiberman,rotten,0100436,Entertainment Weekly,,2011-09-07,13910,Pump Up the Volume +,none,0100436,Variety,,2009-03-26,13910,Pump Up the Volume +,fresh,0100436,Time Out,"The perfectly cast Slater effectively propels the film, his intensity and dry delivery giving it a definite edge, as does a soundtrack which includes Ice T, Concrete Blonde and the Cowboy Junkies.",2006-02-09,13910,Pump Up the Volume +James Berardinelli,fresh,0100436,ReelViews,,2004-06-04,13910,Pump Up the Volume +Stephen Holden,none,0100436,New York Times,,2003-05-20,13910,Pump Up the Volume +Peter Travers,none,0100436,Rolling Stone,,2001-05-12,13910,Pump Up the Volume +Rita Kempley,fresh,0100436,Washington Post,"It's a howl from the heart, a relentlessly involving movie that gives a kid every reason to believe that he or she can come of age.",2000-01-01,13910,Pump Up the Volume +,rotten,0100436,Entertainment Weekly,,1990-08-22,13910,Pump Up the Volume +Variety Staff,fresh,0036613,Variety,"Despite the fact that picture runs 118 minutes, Frank Capra has expanded on the original play [by Joseph Kesselring] to a sufficient extent to maintain a steady, consistent pace.",2007-08-13,18092,Arsenic and Old Lace +Dave Kehr,rotten,0036613,Chicago Reader,"The timing is abysmal throughout, turning fast pace into numbing frenzy.",2007-08-13,18092,Arsenic and Old Lace +,fresh,0036613,New York Times,Good macabre fun.,2006-08-08,18092,Arsenic and Old Lace +Geoff Andrew,fresh,0036613,Time Out,Dusty but gentle entertainment.,2006-06-24,18092,Arsenic and Old Lace +Jay Boyar,fresh,0088763,Orlando Sentinel,It isn't often that extremely clever moviemakers use their brains in the service of pure fun. But that's just what the people who made Back to the Future have done. This brilliant contraption of a film could become the hit of the summer.,2013-06-26,23532,Back to the Future +Sheila Benson,rotten,0088763,Los Angeles Times,"It's big, cartoonish and empty, with an interesting premise that is underdeveloped and overproduced.",2013-06-26,23532,Back to the Future +Gene Siskel,fresh,0088763,Chicago Tribune,"Zemeckis and Gale... give us two priceless scenes in which the young time-traveler simply regards his parents-to-be with wonderment, delight and empathy. And we cannot help but share that emotion and relate it to our own lives.",2013-06-26,23532,Back to the Future +Richard Corliss,fresh,0088763,TIME Magazine,The picture packs a wonderful wallop.,2011-03-29,23532,Back to the Future +Variety Staff,fresh,0088763,Variety,"Performances by the earnest Fox, the lunatic Lloyd, the deceptively passionate Lea Thompson, and, particularly, the bumbling-to-confident Glover, who runs away with the picture, merrily keep the ship sailing.",2008-05-05,23532,Back to the Future +Dave Kehr,fresh,0088763,Chicago Reader,Director Robert Zemeckis confronts the oedipal heart of the time-travel genre with this zestfully tasteless 1985 tale about a teenager (Michael J. Fox) who is projected back to 1955 and then must arrange the romance of his parents.,2007-02-26,23532,Back to the Future +Chris Peachment,fresh,0088763,Time Out,The movie has all the benign good nature of a Frank Capra.,2006-01-26,23532,Back to the Future +Janet Maslin,fresh,0088763,New York Times,"Mr. Zemeckis is able both to keep the story moving and to keep it from going too far. He handles Back to the Future with the kind of inventiveness that indicates he will be spinning funny, whimsical tall tales for a long time to come.",2003-05-20,23532,Back to the Future +John Hartl,rotten,0088763,Film.com,So busy being clever that it trips over its own ingenuity.,2000-01-01,23532,Back to the Future +Roger Ebert,fresh,0088763,Chicago Sun-Times,Shows not only a fine comic touch but also some of the lighthearted humanism of a Frank Capra.,2000-01-01,23532,Back to the Future +James Berardinelli,fresh,0088763,ReelViews,"One of the mid-'80s most enduring and enjoyable confections: an infectious mix of comedy, fantasy, satire, excitement, and nostalgia.",1985-07-03,23532,Back to the Future +Owen Gleiberman,fresh,0101921,Entertainment Weekly,,2011-09-07,10104,Fried Green Tomatoes +,none,0101921,Variety,,2008-10-18,10104,Fried Green Tomatoes +,none,0101921,Time Out,,2006-06-24,10104,Fried Green Tomatoes +Janet Maslin,none,0101921,New York Times,,2003-05-20,10104,Fried Green Tomatoes +Rita Kempley,none,0101921,Washington Post,,2000-01-01,10104,Fried Green Tomatoes +Roger Ebert,fresh,0101921,Chicago Sun-Times,,2000-01-01,10104,Fried Green Tomatoes +James Berardinelli,fresh,0101921,ReelViews,,2000-01-01,10104,Fried Green Tomatoes +,fresh,0101921,Entertainment Weekly,,1991-12-27,10104,Fried Green Tomatoes +Andrew Sarris,fresh,0066206,Village Voice,George C. Scott's performance cannot be praised highly enough for capturing both the violence and the vulnerability of the Patton personality without degenerating either into vulgar caricature or cardboard sentimentality.,2013-02-06,12600,Patton +Variety Staff,fresh,0066206,Variety,"War is hell, and Patton is one hell of a war picture, perhaps one of the most remarkable of its type ever made.",2008-02-19,12600,Patton +Dave Kehr,fresh,0066206,Chicago Reader,"Nixon's favorite movie, which proves he was blind to ambiguity as well as a few other things.",2006-12-13,12600,Patton +Derek Adams,fresh,0066206,Time Out,"The film lays bare the roots of Patton's lust for power in his willingess to sacrifice everything to his vaunting ego, a trait which is mirrored in George C Scott's superb performance.",2006-06-24,12600,Patton +Vincent Canby,rotten,0066206,New York Times,"It's both fascinating and appalling the sort of extravagant technically superior spectacle that only a big Hollywood movie company could afford to make, and the story of a man about whom only the Establishment could become genuinely sentimental.",2003-05-20,12600,Patton +Michael Wilmington,fresh,0066206,Chicago Tribune,Scott strikes an unforgettable figure.,2002-07-02,12600,Patton +Roger Ebert,fresh,0066206,Chicago Sun-Times,Scott's theatricality is electrifying.,2002-03-24,12600,Patton +James Berardinelli,fresh,0066206,ReelViews,Remains to this day one of Hollywood's most compelling biographical war pictures.,2000-01-01,12600,Patton +Variety Staff,fresh,0090967,Variety,The Jim Jarmusch penchant for off-the-wall characters and odd situations is very much in evidence.,2008-01-11,13621,Down by Law +Pat Graham,rotten,0090967,Chicago Reader,On the whole I've had more fun in Cleveland.,2008-01-11,13621,Down by Law +,fresh,0090967,Time Out,"After the initial establishment of character and atmosphere, the laughs come thick and fast, most notably from the marvellous [Roberto] Benigni.",2006-01-26,13621,Down by Law +Vincent Canby,fresh,0090967,New York Times,"The excitement (of Down by Law) comes from the realization that we are seeing a true film maker at work, using film to create a narrative that couldn't exist on the stage or the printed page of a novel.",2003-05-20,13621,Down by Law +Roger Ebert,fresh,0090967,Chicago Sun-Times,A true original that kind of grows on you.,2000-01-01,13621,Down by Law +Rita Kempley,fresh,0090967,Washington Post,Pure pleasure for comedy connoisseurs.,2000-01-01,13621,Down by Law +Paul Attanasio,rotten,0090967,Washington Post,"It's not that the movie doesn't move fast enough, it's that while it dawdles, it doesn't give you enough to dwell on.",2000-01-01,13621,Down by Law +Dave Kehr,rotten,0094625,Chicago Tribune,"Pounding away, it becomes monotonous.",2013-04-10,16482,Akira +Charles Solomon,rotten,0094625,Los Angeles Times,"A compendium of the worst cliches of Japanese animation -- two hours of chases, laser attacks, machine-gun battles, spilled stage blood, computer-animated backgrounds and hokey dialogue.",2013-04-10,16482,Akira +Jay Cocks,fresh,0094625,TIME Magazine,"The movie, even at 124 minutes, has the densely packed sweep and go-for-it pep of a pop epic.",2008-09-07,16482,Akira +Jonathan Rosenbaum,rotten,0094625,Chicago Reader,"Grade-school violence freaks may find a few kicks here, but even they may have trouble coping with this ugly movie's ending about eight separate times.",2007-04-16,16482,Akira +Variety Staff,fresh,0094625,Variety,"A lavish animation extravaganza produced at a cost of $8 million, this futuristic exploration is a followup by author-director Katsuhiro Otomo to his tremendously popular comic books.",2007-04-16,16482,Akira +Geoff Andrew,fresh,0094625,Time Out,"An impressive achievement, often suggesting a weird expressionist blend of 2001, The Warriors, Blade Runner and Forbidden Planet.",2006-02-09,16482,Akira +Janet Maslin,fresh,0094625,New York Times,A phenomenal work of animation with all the hallmarks of an instant cult classic.,2004-08-30,16482,Akira +Michael Atkinson,fresh,0094625,Village Voice,Easily the most breathtaking and kinetic anime ever made.,2001-03-27,16482,Akira +Richard Harrington,fresh,0094625,Washington Post,"The most expensive animated feature ever made in Japan... and it's easily the most impressive, as well.",2000-01-01,16482,Akira +,none,0091203,Variety,,2009-03-26,15929,Highlander +Dave Kehr,fresh,0091203,Chicago Reader,"Lambert, with his beetle brow, broken nose, and vaguely crossed eyes, remains an amiable oddball presence, and Sean Connery radiates charm and nobility in a bit as an elder immortal who shows Lambert the rules of the game.",2007-06-05,15929,Highlander +Derek Adams,rotten,0091203,Time Out,"It's a lot of utterly preposterous fun, even if it doesn't quite hang together.",2006-06-24,15929,Highlander +Walter Goodman,rotten,0091203,New York Times,"Since none of the characters makes sense even on the movie's own terms, Highlander keeps on exploding for almost two hours, with nothing at stake.",2003-05-21,15929,Highlander +Dave Kehr,fresh,0061512,Chicago Reader,"Stuart Rosenberg's direction is a horror, but the cast teems with so many familiar faces that this 1967 film can't help but entertain.",2009-04-23,18102,Cool Hand Luke +,fresh,0061512,TIME Magazine,A picture of chilling dramatic power.,2008-08-22,18102,Cool Hand Luke +Variety Staff,fresh,0061512,Variety,"Newman gives an excellent performance, assisted by a terriffic supporting cast, including George Kennedy, outstanding as the unofficial leader of the cons who yields first place to Newman.",2008-07-22,18102,Cool Hand Luke +Tom Milne,fresh,0061512,Time Out,"A caustically witty look at the American South and its still-surviving chain gangs, with Newman in fine sardonic form as the boss-baiter who refuses to submit and becomes a hero to his fellow-prisoners.",2006-02-09,18102,Cool Hand Luke +Roger Ebert,fresh,0061512,Chicago Sun-Times,"A tough, honest film with backbone.",2004-10-23,18102,Cool Hand Luke +James Berardinelli,fresh,0061512,ReelViews,It's as fresh and effective in 2004 as it was in 1967.,2004-04-15,18102,Cool Hand Luke +Bosley Crowther,fresh,0061512,New York Times,"That traditional object of sorrow and compassion in American folk song and lore, the chain-gang prisoner, is given as strong a presentation as ever he has had on the screen.",2003-05-20,18102,Cool Hand Luke +,none,0042367,Variety,,2009-03-26,18736,Cyrano de Bergerac +,rotten,0042367,TIME Magazine,"Audiences, traditionally willing to meet this impossibly romantic classic half way, may have to go a bit further this time.",2007-11-07,18736,Cyrano de Bergerac +Bosley Crowther,fresh,0042367,New York Times,"Withal, there is beauty and magic in the things that Cyrano says. He is still a magnificent character. Thank goodness, he is on the screen.",2006-03-25,18736,Cyrano de Bergerac +Jonathan Rosenbaum,rotten,0042367,Chicago Reader,At least some of the lines in the Rostand play are good.,2000-01-01,18736,Cyrano de Bergerac +Pauline Kael,fresh,0072431,New Yorker,Wilder's hysteria seems perfectly natural. You never question what's driving him to it; his fits are lucid and total. They take him into a different dimension -- he delivers what Harpo promised.,2013-01-15,12052,Young Frankenstein +Don Druker,fresh,0072431,Chicago Reader,"More about the myth of Karloff than the monster, this Mel Brooks pastiche is probably his best early film.",2007-06-04,12052,Young Frankenstein +Geoff Andrew,fresh,0072431,Time Out,"For a really delightful parody, James Whale's own Bride of Frankenstein is far better value.",2006-06-24,12052,Young Frankenstein +Roger Ebert,fresh,0072431,Chicago Sun-Times,It shows artistic growth and a more sure-handed control of the material by a director who once seemed willing to do literally anything for a laugh. It's more confident and less breathless.,2004-10-23,12052,Young Frankenstein +Vincent Canby,fresh,0072431,New York Times,"Some of the gags don't work, but fewer than in any previous Brooks film that I've seen, and when the jokes are meant to be bad, they are riotously poor. What more can one ask of Mel Brooks?",2003-05-20,12052,Young Frankenstein +,fresh,0072431,Variety,Young Frankenstein emerges as a reverently satirical salute to the 1930s horror film genre.,2001-02-13,12052,Young Frankenstein +Geoff Andrew,fresh,0102536,Time Out,"Though it may take a while to get Jarmusch's gist, hang in there; by the time Tom Waits growls his lovely closing waltz over the credits, Jarmusch has shown us moments most filmmakers don't even notice.",2006-01-26,16877,Night on Earth +Vincent Canby,fresh,0102536,New York Times,"With this, his fourth commercially released feature, Mr. Jarmusch again demonstrates his mastery of comedy of the oblique.",2003-05-20,16877,Night on Earth +Roger Ebert,fresh,0102536,Chicago Sun-Times,"At the end, we have learned no great lessons and arrived at no thrilling conclusions, but we have shared the community of the night, when people are unbuttoned and vulnerable - more ready to speak about what's really on their minds.",2000-01-01,16877,Night on Earth +Hal Hinson,rotten,0102536,Washington Post,"Unfortunately, Jarmusch's lackadaisical minimalist aesthetic and his chronic lack of energy are the only unifying elements.",2000-01-01,16877,Night on Earth +Desson Thomson,rotten,0102536,Washington Post,"""Night on Earth"" sounds better than it turns out to be.",2000-01-01,16877,Night on Earth +Owen Gleiberman,fresh,0102536,Entertainment Weekly,"Night on Earth dawdles a bit, and a couple of the segments, notably the one in Helsinki, feel like half-baked epiphanies. Throughout, though, there are moments that catch you delightfully off guard.",1991-12-12,16877,Night on Earth +Owen Gleiberman,fresh,0101640,Entertainment Weekly,,2011-09-07,98818287,Da hong deng long gao gao gua +Joe Morgenstern,none,0101640,Wall Street Journal,,2011-06-18,98818287,Da hong deng long gao gao gua +Rob Nelson,fresh,0101640,Village Voice,"Visually ravishing and emotionally cold, Zhang's third feature is one long series of pushes and pulls.",2007-02-27,98818287,Da hong deng long gao gao gua +Geoff Andrew,none,0101640,Time Out,,2006-06-24,98818287,Da hong deng long gao gao gua +Janet Maslin,fresh,0101640,New York Times,A beautifully crafted and richly detailed feat of consciousness-raising and a serious drama with the verve of a good soap opera.,2003-05-20,98818287,Da hong deng long gao gao gua +Peter Travers,fresh,0101640,Rolling Stone,"Gong Li delivers a performance of exquisite expressiveness that, like the film itself, is unnerving in its emotional nakedness.",2001-05-12,98818287,Da hong deng long gao gao gua +John Hartl,fresh,0101640,Film.com,A near-perfect movie that often recalls the visual purity and intensity of silent films.,2000-01-01,98818287,Da hong deng long gao gao gua +Desson Thomson,fresh,0101640,Washington Post,"In purely aesthetic terms, Raise the Red Lantern is breathtaking.",2000-01-01,98818287,Da hong deng long gao gao gua +Hal Hinson,rotten,0101640,Washington Post,The story never amounts to much more than a rather tepid Chinese rendition of The Women.,2000-01-01,98818287,Da hong deng long gao gao gua +James Berardinelli,fresh,0101640,ReelViews,A defining example of Chinese movie-making and one of the best films of the '90s.,2000-01-01,98818287,Da hong deng long gao gao gua +Roger Ebert,fresh,0101640,Chicago Sun-Times,A Chinese film of voluptuous physical beauty and angry passions.,2000-01-01,98818287,Da hong deng long gao gao gua +,fresh,0101640,Entertainment Weekly,,1991-09-01,98818287,Da hong deng long gao gao gua +William Goss,fresh,0032553,Film.com,"The first full-blown talkie from the biggest star of the silent era, complete with a message that Chaplin couldn't have sent more loudly or clearly.",2011-06-01,9962,The Great Dictator +,rotten,0032553,TIME Magazine,"Through no fault of Chaplin's, during the two years he was at work on the picture dictators became too sinister for comedy.",2010-09-03,9962,The Great Dictator +Dave Kehr,fresh,0032553,Chicago Reader,"Chaplin is at his most profound in suggesting that there is much of the Tramp in the Dictator, and much of the Dictator in the Tramp.",2010-09-03,9962,The Great Dictator +Michael Atkinson,fresh,0032553,Village Voice,"Like all major Chaplin works, Dictator was a cheaply, but methodically, made film, a cardboard act of humanist defiance, and, thanks to its purity of purpose, the cheesier the jokes get, the harder they land.",2009-12-23,9962,The Great Dictator +Variety Staff,fresh,0032553,Variety,It's when he is playing the dictator that the comedian's voice raises the value of the comedy content of the picture to great heights.,2008-10-09,9962,The Great Dictator +,rotten,0032553,Time Out,"The representation of Hitler is vaudeville goonery all the way, but minus the acid wit and inventive energy that Groucho Marx managed.",2006-02-09,9962,The Great Dictator +Roger Ebert,fresh,0032553,Chicago Sun-Times,"It is a funny film, which we expect from Chaplin, and a brave one.",2004-10-23,9962,The Great Dictator +Glenn Abel,fresh,0032553,Hollywood Reporter,The film remains controversial to this day.,2003-07-26,9962,The Great Dictator +Bosley Crowther,fresh,0032553,New York Times,"Now that the waiting is over and the shivers of suspense at an end, let the trumpets be sounded and the banners flung against the sky.",2003-05-20,9962,The Great Dictator +David Fear,fresh,0032553,Time Out New York,It's easy to forget the sheer cojones Charles Chaplin showed when he attacked Adolf Hitler in this 1940 satire.,1940-01-01,9962,The Great Dictator +Edwin Schallert,fresh,0032455,Los Angeles Times,"The words most used to describe ""Fantasia,"" besides the conventional ""beautiful"" and ""wonderful"" were ""path-breaking"" and ""courageous."" The phrase ""courageous beyond belief"" would be even more accurate.",2013-01-18,22473,Fantasia +,fresh,0032455,TIME Magazine,"Critics may deplore Disney's lapses of taste, but he trips, Mickey-like, into an art form that immortals from Aeschylus to Richard Wagner have always dreamed of.",2008-09-04,22473,Fantasia +John C. Flinn Sr.,fresh,0032455,Variety,There is something in Fantasia for every taste.,2008-08-31,22473,Fantasia +Dave Kehr,fresh,0032455,Chicago Reader,"The concept and some of the episodes are tainted with kitsch, but there's no other animated film with its scope and ambition.",2008-03-03,22473,Fantasia +,fresh,0032455,Time Out,Certainly not to be missed.,2006-01-26,22473,Fantasia +Bosley Crowther,fresh,0032455,New York Times,Fantasia is simply terrific -- as terrific as anything that has ever happened on a screen.,2003-05-20,22473,Fantasia +Henry Allen,fresh,0032455,Washington Post,"This is animation in every sense of the word, as if you are seeing the world through the eyes of your tree-worshipping ancestors.",2000-01-01,22473,Fantasia +Roger Ebert,fresh,0032455,Chicago Sun-Times,"Throughout Fantasia, Disney pushes the edges of the envelope.",2000-01-01,22473,Fantasia +,fresh,0044706,TIME Magazine,High Noon combines its points about good citizenship with some excellent picturemaking.,2011-07-26,22011,High Noon +William Brogdon,fresh,0044706,Variety,Zinnemann carefully and deliberately makes the most of the mood cast by the threat of impending violence.,2008-10-18,22011,High Noon +Jonathan Rosenbaum,fresh,0044706,Chicago Reader,"Some of the results ring false, but the memorable theme song and some equally memorable character acting (by Thomas Mitchell and Lon Chaney Jr. more than Lloyd Bridges and Katy Jurado) help things along.",2007-09-04,22011,High Noon +Derek Adams,fresh,0044706,Time Out,"High Noon won a fistful of Oscars, but in these days of pasteboard screen machismo, it's worth seeing simply as the anatomy of what it took to make a man before the myth turned sour.",2006-02-09,22011,High Noon +Michael Atkinson,fresh,0044706,Village Voice,"More than a half-century later, Foreman was right after all: High Noon is a scorching and sour portrait of American complacence and capacity for collaborationism.",2004-04-27,22011,High Noon +Stephen Hunter,fresh,0044706,Washington Post,"Regarded as '50s melodrama, it's nearly perfect.",2003-05-30,22011,High Noon +Bosley Crowther,fresh,0044706,New York Times,"Meaningful in its implications, as well as loaded with interest and suspense, High Noon is a western to challenge Stagecoach for the all-time championship.",2003-05-20,22011,High Noon +James Berardinelli,fresh,0044706,ReelViews,"The Western may be one of the few truly American art forms, and High Noon shows exactly how much potential it can embrace.",2001-03-21,22011,High Noon +Manny Farber,fresh,0038355,The New Republic,"The Big Sleep, though, is witty and sinister, and in an odd way is a realistic portrayal of big-city life with Arabian Nights overtones.",2012-08-30,18329,The Big Sleep +Variety Staff,fresh,0038355,Variety,"Brittle Chandler characters have been transferred to the screen with punch by Howard Hawks' production and direction, providing full load of rough, tense action most of the way.",2008-07-18,18329,The Big Sleep +Dave Kehr,fresh,0038355,Chicago Reader,What you remember here are moments.,2008-07-18,18329,The Big Sleep +Geoff Andrew,fresh,0038355,Time Out,One of the finest mainstream noir-thrillers ever made.,2006-06-24,18329,The Big Sleep +Bosley Crowther,rotten,0038355,New York Times,It's likely to leave you confused and dissatisfied.,2003-05-20,18329,The Big Sleep +Eric Brace,fresh,0038355,Washington Post,"Don't try too hard to follow the story, just get swept away by the mood of the film.",2002-01-22,18329,The Big Sleep +James Berardinelli,fresh,0038355,ReelViews,A movie that every film student should study and every movie lover should watch at least once.,2000-01-01,18329,The Big Sleep +John Hartl,fresh,0038355,Film.com,Fascinating if not necessarily improved edition of Howard Hawks' 1946 detective classic.,2000-01-01,18329,The Big Sleep +,fresh,0038355,Washington Post,An unqualified masterpiece.,2000-01-01,18329,The Big Sleep +Roger Ebert,fresh,0038355,Chicago Sun-Times,"It is typical of this most puzzling of films that no one agrees even on why it is so puzzling. Yet that has never affected The Big Sleep's enduring popularity, because the movie is about the process of a criminal investigation, not its results.",2000-01-01,18329,The Big Sleep +Joe Morgenstern,none,0097493,Wall Street Journal,,2012-03-31,15577,Heathers +,none,0097493,Variety,,2012-02-23,15577,Heathers +Richard Corliss,fresh,0097493,TIME Magazine,Heathers locates the emotional totalitarianism lurking in a prom queen's heart.,2010-08-31,15577,Heathers +Variety Staff,fresh,0097493,Variety,A super-smart black comedy about high school politics and teenage suicide that showcases a host of promising young talents.,2010-08-31,15577,Heathers +Mick LaSalle,fresh,0097493,San Francisco Chronicle,"Two decades later, Heathers is so on the money, with its vague but unmistakable parallels to several school shootings, that it could never be made today.",2008-07-15,15577,Heathers +Todd McCarthy,fresh,0097493,Variety,A super-smart black comedy about high school politics and teenage suicide that showcases a host of promising young talents.,2007-07-18,15577,Heathers +Jonathan Rosenbaum,rotten,0097493,Chicago Reader,Its inanities and glib pretensions are so thick that it mainly comes across as tacky and contrived.,2007-07-18,15577,Heathers +Nigel Floyd,fresh,0097493,Time Out,The film uses an intimate knowledge of teen-movie cliches to subvert their debased values from the inside.,2006-02-09,15577,Heathers +Janet Maslin,fresh,0097493,New York Times,As snappy and assured as it is mean-spirited.,2003-05-20,15577,Heathers +Roger Ebert,rotten,0097493,Chicago Sun-Times,"For a long time, we're not even sure of the point of view: Is this a black comedy about murder or just a cynical morality play? The traveler in the foreign country is not sure, but he knows the film inspires thought.",2000-01-01,15577,Heathers +Desson Thomson,fresh,0097493,Washington Post,"May be the nastiest, cruelest fun you can have without actually having to study law or gird leather products.",2000-01-01,15577,Heathers +Rita Kempley,fresh,0097493,Washington Post,"More than just one of the best movies so far this year, it is a revolution in young-adult entertainment.",2000-01-01,15577,Heathers +Variety Staff,fresh,0081534,Variety,"A charming, witty, passionate romantic drama about a love transcending space and time, Somewhere In Time is an old-fashioned film in the best sense of that term.",2007-12-10,12145,Somewhere in Time +Dave Kehr,rotten,0081534,Chicago Reader,"Director Jeannot Szwarc strains hard for spectacular visual effects, though he's barely able to compose a competent close-up.",2007-12-10,12145,Somewhere in Time +,rotten,0081534,Time Out,This must go down as a missed opportunity.,2006-02-09,12145,Somewhere in Time +Roger Ebert,rotten,0081534,Chicago Sun-Times,The movie surrounds its love story with such boring mumbo jumbo about time travel that we finally just don't care.,2004-10-23,12145,Somewhere in Time +Vincent Canby,rotten,0081534,New York Times,"The [Grand H]otel and Mackinac [Island] are spectacularly lovely, but fail to give substance to this ephemeral endeavor.",2004-08-30,12145,Somewhere in Time +,fresh,0052618,TIME Magazine,The biggest and the best of Hollywood's super-spectacles.,2008-08-22,9402,Ben-Hur +Dave Kehr,rotten,0052618,Chicago Reader,Entire new frontiers in boredom were opened up by this MGM whopper from 1959.,2006-12-13,9402,Ben-Hur +,rotten,0052618,Time Out,"The movie could be trying to say that for some people religion is an escape from their sexuality, but it seems unlikely.",2006-01-26,9402,Ben-Hur +Bosley Crowther,fresh,0052618,New York Times,Mr. Wyler and his money-free producers have smartly and effectively laid stress on the powerful and meaningful personal conflicts that are strong in this old heroic tale.,2003-05-20,9402,Ben-Hur +Ronald Holloway,fresh,0052618,Variety,"A majestic achievement, representing a superb blending of the motion picture arts by master craftsmen.",2001-02-13,9402,Ben-Hur +Geoff Andrew,none,0085809,Time Out,,2006-02-09,17050,Koyaanisqatsi +Roger Ebert,fresh,0085809,Chicago Sun-Times,,2004-10-23,17050,Koyaanisqatsi +Vincent Canby,none,0085809,New York Times,,2003-05-20,17050,Koyaanisqatsi +Pat Graham,rotten,0094006,Chicago Reader,Assembly-line feature from the John Hughes teen factory.,2007-07-24,10394,Some Kind of Wonderful +Variety Staff,fresh,0094006,Variety,"A simple, lovely and thoughtful teenage story that occasionally shines due to fine characterizations and lucid dialog.",2007-07-24,10394,Some Kind of Wonderful +Derek Adams,rotten,0094006,Time Out,"This time it ends with the underdogs together. Oddly enough, it's this conclusion that feels phony, seeing as Stoltz has spent the last 80 minutes arranging his dream date with Lea.",2006-06-24,10394,Some Kind of Wonderful +Janet Maslin,fresh,0094006,New York Times,The film creates a perfect embodiment of every adolescent's nightmare.,2003-05-20,10394,Some Kind of Wonderful +Rita Kempley,rotten,0094006,Washington Post,Lighter and less filling than usual.,2000-01-01,10394,Some Kind of Wonderful +Roger Ebert,fresh,0094006,Chicago Sun-Times,Some Kind of Wonderful is yet another film in which Hughes and his team show a special ability to make an entertaining movie about teenagers.,2000-01-01,10394,Some Kind of Wonderful +Richard Harrington,fresh,0094006,Washington Post,"Like her energy, Masterson's beauty is kinetic, internalized, and she's a winner even if the film itself runs third in the Hughes opus on teenhood.",2000-01-01,10394,Some Kind of Wonderful +Variety Staff,fresh,0078841,Variety,A highly unusual and an unusually fine film.,2007-10-31,10184,Being There +Dave Kehr,fresh,0078841,Chicago Reader,"No one seems to know what to do with the allegorical undertone of Jerzy Kosinski's script, but as a whole this 1979 film maintains a fine level of wit, sophistication, and insight.",2007-10-31,10184,Being There +,rotten,0078841,Time Out,"What emerges in the end is a strange ambiguity of attitude to the American political system and a hollow humour about cultural values. The cinema of cynicism, really.",2006-01-26,10184,Being There +Janet Maslin,fresh,0078841,New York Times,"Hal Ashby directs Being There at an unruffled, elegant pace, the better to let Mr. Sellers's double-edged mannerisms make their full impression upon the audience.",2003-05-20,10184,Being There +Roger Ebert,fresh,0078841,Chicago Sun-Times,"Satire is a threatened species in American film, and when it does occur, it's usually broad and slapstick, as in the Mel Brooks films. Being There, directed by Hal Ashby, is a rare and subtle bird that finds its tone and stays with it.",2000-01-01,10184,Being There +Richard Schickel,fresh,0083987,TIME Magazine,"In playing Gandhi, an actor must be less concerned with physical verisimilitude than with spiritual presence, and here Kingsley is nothing short of astonishing.",2010-02-24,10197,Gandhi +Variety Staff,fresh,0083987,Variety,Once in a long while a motion picture so eloquently expressive and technically exquisite comes along that one is tempted to hail it as being near perfect.,2008-01-29,10197,Gandhi +Dave Kehr,rotten,0083987,Chicago Reader,Attenborough's work lacks even the undercurrent of personality that David Lean brought to his films: the film has no flavor but that of the standard Hollywood hagiography.,2006-12-17,10197,Gandhi +,fresh,0083987,Time Out,"Its faults rather pale beside the epic nature of its theme, and Kingsley's performance in the central role is outstanding.",2006-06-24,10197,Gandhi +Roger Ebert,fresh,0083987,Chicago Sun-Times,A remarkable experience.,2004-10-23,10197,Gandhi +Vincent Canby,fresh,0083987,New York Times,"[Of] importance is the possibility that the film will bring Gandhi to the attention of a lot of people around the world for the first time, not as a saint but as a self-searching, sometimes fallible human being with a sense of humor as well as of history.",2003-05-20,10197,Gandhi +,none,0096332,Variety,,2008-10-16,14116,The Unbearable Lightness of Being +Geoff Andrew,none,0096332,Time Out,,2006-02-09,14116,The Unbearable Lightness of Being +Vincent Canby,none,0096332,New York Times,,2003-05-20,14116,The Unbearable Lightness of Being +Rita Kempley,none,0096332,Washington Post,,2000-01-01,14116,The Unbearable Lightness of Being +Roger Ebert,fresh,0096332,Chicago Sun-Times,,2000-01-01,14116,The Unbearable Lightness of Being +Desson Thomson,none,0096332,Washington Post,,2000-01-01,14116,The Unbearable Lightness of Being +Jonathan Rosenbaum,rotten,0096332,Chicago Reader,,1988-02-05,14116,The Unbearable Lightness of Being +,none,0091867,Variety,,2008-11-19,17636,A Room with a View +Geoff Andrew,none,0091867,Time Out,,2006-02-09,17636,A Room with a View +Vincent Canby,fresh,0091867,New York Times,"A Room With a View is not only uncharacteristically benign for Forster, but also blithely, elegantly funny, which is a fit description of [this]first-rate film adaptation...",2003-05-20,17636,A Room with a View +Roger Ebert,fresh,0091867,Chicago Sun-Times,"It is an intellectual film, but intellectual about emotions: It encourages us to think about how we feel, instead of simply acting on our feelings.",2000-01-01,17636,A Room with a View +Dave Kehr,rotten,0089886,Chicago Reader,"The humor is relentlessly cruel, smug, and disconnected from any sense of how human beings might behave in similar situations.",2007-05-30,10142,Real Genius +,fresh,0089886,Variety,"What lifts the production above the run-of-the-mill is swift direction by Martha Coolidge, who has a firm grasp over the manic material.",2007-05-30,10142,Real Genius +Geoff Andrew,fresh,0089886,Time Out,"It does make you wonder if the drive of the US education system is ultimately to develop better weapons of mass-destruction, though Coolidge's movie is too hazily good-natured to capitalise on the tougher aspects of the material.",2006-06-24,10142,Real Genius +Janet Maslin,rotten,0089886,New York Times,"What the film needs, instead of these familiar teen-movie trappings, is a cleverness and eccentricity to match that of its characters. For the most part, these are qualities that it lacks.",2003-05-20,10142,Real Genius +Roger Ebert,fresh,0089886,Chicago Sun-Times,"Real Genius contains many pleasures, but one of the best is its conviction that the American campus contains life as we know it.",2000-01-01,10142,Real Genius +,none,0084503,Variety,,2008-07-31,13760,Pink Floyd The Wall +Derek Adams,none,0084503,Time Out,,2006-06-24,13760,Pink Floyd The Wall +Janet Maslin,none,0084503,New York Times,,2004-08-30,13760,Pink Floyd The Wall +Richard Schickel,fresh,0087553,TIME Magazine,"It must be nerve-racking for the producers to offer a tale so lacking in standard melodramatic satisfactions. But the result is worth it, for this is the clearest film statement yet on how the nature of heroism has changed in this totalitarian century.",2008-08-25,13358,The Killing Fields +Dave Kehr,rotten,0087553,Chicago Reader,"The screen is swamped by a bathetic, self-preening sententiousness.",2008-04-09,13358,The Killing Fields +Variety Staff,rotten,0087553,Variety,"The intent and outward trappings are all impressively in place, but at its heart there's something missing.",2008-04-09,13358,The Killing Fields +Geoff Andrew,fresh,0087553,Time Out,"The film's overall thrust - angry, intelligent, compassionate -- makes this producer Puttnam's finest movie to date.",2006-02-09,13358,The Killing Fields +Roger Ebert,fresh,0087553,Chicago Sun-Times,"The best moments are the human ones, the conversations, the exchanges of trust, the waiting around, the sudden fear, the quick bursts of violence, the desperation.",2004-10-23,13358,The Killing Fields +Vincent Canby,rotten,0087553,New York Times,"The movie is diffuse and wandering. It's someone telling a long, interesting story who can't get to the point.",2003-05-20,13358,The Killing Fields +John Hartl,fresh,0087553,Film.com,"The director, Roland Joffe, and his photographer, Chris Menges, capture all of this with a realism that hasn't been so poetically convincing in a nondocumentary context since Gillo Pontecorvo's Battle of Algiers.",2000-01-01,13358,The Killing Fields +,none,0089606,Variety,,2009-03-26,12188,Mitt liv som hund +Michael Booth,fresh,0089606,Denver Post,A series of emotionally wrenching moments that made My Life as a Dog a transatlantic hit when it arrived in 1985.,2007-04-13,12188,Mitt liv som hund +Derek Adams,none,0089606,Time Out,,2006-02-09,12188,Mitt liv som hund +Vincent Canby,none,0089606,New York Times,,2003-05-20,12188,Mitt liv som hund +Hal Hinson,fresh,0089606,Washington Post,A lot of the movie is routine coming-of-age stuff.,2000-01-01,12188,Mitt liv som hund +Desson Thomson,fresh,0089606,Washington Post,Well-constructed crowd-pleaser.,2000-01-01,12188,Mitt liv som hund +,fresh,0049223,TIME Magazine,[A] nifty interstellar meller.,2011-07-26,9400,Forbidden Planet +Dave Kehr,fresh,0049223,Chicago Reader,An engaging 1956 science fiction gloss of Shakespeare's Tempest.,2011-07-26,9400,Forbidden Planet +Variety Staff,fresh,0049223,Variety,"Imaginative gadgets galore, plus plenty of suspense and thrills, make the production a top offering in the space travel category.",2007-06-05,9400,Forbidden Planet +Bosley Crowther,fresh,0049223,New York Times,Offers some of the most amusing creatures conceived since the Keystone cops.,2006-03-25,9400,Forbidden Planet +Geoff Andrew,fresh,0049223,Time Out,"An ingenious script, excellent special effects and photography, and superior acting, make it an endearing winner.",2006-01-26,9400,Forbidden Planet +Michael Wilmington,rotten,0097351,Los Angeles Times,"All of this would work better if Robinson built up the reality of the town more, made the citizens a more palpable presence, as Frank Capra did in Hollywood's greatest fable-fantasy, It's a Wonderful Life.",2013-03-20,11618,Field of Dreams +Dave Kehr,fresh,0097351,Chicago Tribune,"The sentimentality, of which there is plenty, is nicely balanced by a humor of ironic pragmatism, as when Ray, having built his baseball field as a monument to human dreams, decides to charge tourists $20 a head to visit it.",2013-03-20,11618,Field of Dreams +,none,0097351,Variety,,2012-02-23,11618,Field of Dreams +,rotten,0097351,Entertainment Weekly,,2011-04-04,11618,Field of Dreams +Richard Corliss,rotten,0097351,TIME Magazine,"Despite a lovely cameo turn by Burt Lancaster, Field of Dreams is the male weepie at its wussiest.",2011-03-16,11618,Field of Dreams +,fresh,0097351,Denver Post,The life-equals-baseball masterpiece still packs an unexpected kick.,2007-11-03,11618,Field of Dreams +,fresh,0097351,Variety,"Field of Dreams sustains a dreamy mood in which the idea of baseball is distilled to its purest essence: a game that stands for unsullied innocence in a cruel, imperfect world.",2007-03-21,11618,Field of Dreams +Jonathan Rosenbaum,fresh,0097351,Chicago Reader,"The conception is sentimental, but the storytelling remains assured and effective.",2007-03-21,11618,Field of Dreams +,fresh,0097351,Time Out,Pure magic.,2006-01-26,11618,Field of Dreams +Caryn James,fresh,0097351,New York Times,"It seems much easier to fall into Field of Dreams than to resist its warm, intelligent, timely appeal to our most idealistic selves.",2003-05-20,11618,Field of Dreams +Peter Travers,rotten,0097351,Rolling Stone,[A] gooey fable.,2001-05-13,11618,Field of Dreams +Desson Thomson,rotten,0097351,Washington Post,"The movie may steal a base here and there, but there are no homers.",2000-01-01,11618,Field of Dreams +Roger Ebert,fresh,0097351,Chicago Sun-Times,"Field of Dreams will not appeal to grinches and grouches and realists. It is a delicate movie, a fragile construction of one goofy fantasy after another. But it has the courage to be about exactly what it promises.",2000-01-01,11618,Field of Dreams +Rita Kempley,rotten,0097351,Washington Post,"Poesy, pointlessness and baseball worship aside, the movie is easy to get along with.",2000-01-01,11618,Field of Dreams +Jay Cocks,fresh,0073341,TIME Magazine,John Huston has been wanting to make this movie for more than 20 years. It was worth the wait.,2010-04-20,10239,The Man Who Would Be King +Variety Staff,rotten,0073341,Variety,"A too-broad comedy, mostly due to the poor performance of Michael Caine.",2008-10-22,10239,The Man Who Would Be King +Derek Adams,fresh,0073341,Time Out,"Connery and Caine (both excellent) become classic Huston overreachers, and echoes of The Treasure of the Sierra Madre and Moby Dick permeate the mythic yarn.",2006-06-24,10239,The Man Who Would Be King +Vincent Canby,fresh,0073341,New York Times,"It's a tall tale, a legend, of steadfastness, courage, camaraderie, gallantry and greed, though not necessarily in that order.",2005-05-09,10239,The Man Who Would Be King +Roger Ebert,fresh,0073341,Chicago Sun-Times,It's been a long time since there's been an escapist entertainment quite this unabashed and thrilling and fun.,2004-10-23,10239,The Man Who Would Be King +Dave Kehr,rotten,0064115,Chicago Reader,You have to admire the craft and assurance of the thing even as its artificiality hits you in the face.,2011-05-27,10096,Butch Cassidy and the Sundance Kid +,rotten,0064115,TIME Magazine,"Every character, every scene, is marred by the film's double view, which oscillates between sympathy and farce.",2008-10-01,10096,Butch Cassidy and the Sundance Kid +Whitney Willaims,fresh,0064115,Variety,"The John Foreman production is episodic, but George Roy Hill's direction is so satisfying in catching the full value of the Goldman screenplay that a high degree of interest is sustained.",2008-10-01,10096,Butch Cassidy and the Sundance Kid +,fresh,0064115,Time Out,"One of the funniest, if slightest, Westerns of recent years.",2006-06-24,10096,Butch Cassidy and the Sundance Kid +Roger Ebert,rotten,0064115,Chicago Sun-Times,"William Goldman's script is constantly too cute and never gets up the nerve, by God, to admit it's a Western.",2004-10-23,10096,Butch Cassidy and the Sundance Kid +Vincent Canby,fresh,0064115,New York Times,Very funny in a strictly contemporary way-the last exuberant word on movies about the men of the mythic American West who have outlived their day.,2003-05-20,10096,Butch Cassidy and the Sundance Kid +James Berardinelli,fresh,0064115,ReelViews,"Although Butch Cassidy wasn't the first movie to pair up a couple of wisecracking best friends in an action/adventure setting, this film became the model of how well that approach could work when done right.",2001-02-13,10096,Butch Cassidy and the Sundance Kid +Holly Willis,none,0087884,Variety,,2008-08-06,12963,"Paris, Texas" +Derek Adams,none,0087884,Time Out,,2006-06-24,12963,"Paris, Texas" +Vincent Canby,none,0087884,New York Times,,2003-05-20,12963,"Paris, Texas" +Roger Ebert,fresh,0087884,Chicago Sun-Times,,2003-01-06,12963,"Paris, Texas" +,none,0101458,Variety,,2009-03-26,16881,Bis ans Ende der Welt +Geoff Andrew,none,0101458,Time Out,,2006-06-24,16881,Bis ans Ende der Welt +Vincent Canby,none,0101458,New York Times,,2004-08-30,16881,Bis ans Ende der Welt +Joe Brown,none,0101458,Washington Post,,2000-01-01,16881,Bis ans Ende der Welt +Hal Hinson,none,0101458,Washington Post,,2000-01-01,16881,Bis ans Ende der Welt +Roger Ebert,rotten,0101458,Chicago Sun-Times,,2000-01-01,16881,Bis ans Ende der Welt +Dave Kehr,fresh,0098635,Chicago Tribune,"Reiner wants to maintain the sitcom sense of comfort and familiarity; he creates types that we somehow already know, slightly out-of-focus images in which we can see ourselves and our friends.",2013-07-30,16317,When Harry Met Sally... +Gene Siskel,fresh,0098635,Chicago Tribune,When Harry Met Sally pleasantly affirms the institution of marriage while showing how difficult it is to achieve a lasting one.,2013-07-30,16317,When Harry Met Sally... +Sheila Benson,fresh,0098635,Los Angeles Times,"The summer's uncorseted, unqualified delight.",2013-07-30,16317,When Harry Met Sally... +Carrie Rickey,fresh,0098635,Philadelphia Inquirer,"If you love vintage Woody Allen, you'll like the nouveau Rob Reiner.",2013-07-30,16317,When Harry Met Sally... +Jay Boyar,rotten,0098635,Orlando Sentinel,"During the slow passages, I wondered to what extent the film's creators are aware of its Woodyisms, and to what degree they feel guilty about ripping Allen off.",2013-07-30,16317,When Harry Met Sally... +Richard Corliss,fresh,0098635,TIME Magazine,"ike Harry and Sally, the movie is hardworking, spot on; it winepresses its conversation into epigrams.",2009-02-03,16317,When Harry Met Sally... +Jonathan Rosenbaum,rotten,0098635,Chicago Reader,"Fans of Billy Crystal's amphibian qualities may be amused, but the rest of us have to contend with a slavish Woody Allen imitation.",2008-04-01,16317,When Harry Met Sally... +Variety Staff,rotten,0098635,Variety,"Rob Reiner directs with deftness and sincerity, making the material seem more engaging than it is, at least until the plot machanics begin to unwind and the film starts to seem shapeless.",2008-04-01,16317,When Harry Met Sally... +Geoff Andrew,fresh,0098635,Time Out,"Reiner clearly likes his characters, and elicits sturdy performances from a proficient cast (Kirby and Fisher are especially fine as friends and confidants to the pair).",2006-06-24,16317,When Harry Met Sally... +Caryn James,fresh,0098635,New York Times,"What Harry and Sally do -- the true focus of this often funny but amazingly hollow film -- is saunter through the romanticized lives of intelligent, successful, neurotic New Yorkers.",2003-05-20,16317,When Harry Met Sally... +Peter Travers,fresh,0098635,Rolling Stone,"A ravishing, romantic lark brimming over with style, intelligence and flashing wit.",2001-05-12,16317,When Harry Met Sally... +Rita Kempley,fresh,0098635,Washington Post,"When Harry Met Sally... is a sweet, embraceable comedy, a moonstruck Manhattan romance that, like a Gershwin tune, turns the sighs and glances, the spats and reconciliations, all the cliches of the heart into infectious melody.",2000-01-01,16317,When Harry Met Sally... +Roger Ebert,fresh,0098635,Chicago Sun-Times,"What makes it special, apart from the Ephron screenplay, is the chemistry between Crystal and Ryan.",2000-01-01,16317,When Harry Met Sally... +James Berardinelli,fresh,0098635,ReelViews,"Offers an often humorous, occasionally poignant view of men, women, sex, love, and friendship.",2000-01-01,16317,When Harry Met Sally... +Owen Gleiberman,fresh,0116589,Entertainment Weekly,,2011-09-07,17252,Hype! +Godfrey Cheshire,none,0116589,Variety,,2009-03-26,17252,Hype! +Dave Calhoun,none,0116589,Time Out,,2006-06-24,17252,Hype! +Janet Maslin,none,0116589,New York Times,,2003-05-20,17252,Hype! +,none,0116589,Los Angeles Times,,2001-02-14,17252,Hype! +Joe Baltake,none,0116589,Sacramento Bee,,2000-01-01,17252,Hype! +Roger Ebert,fresh,0116589,Chicago Sun-Times,,2000-01-01,17252,Hype! +Edward Guthmann,none,0116589,San Francisco Chronicle,,2000-01-01,17252,Hype! +,fresh,0116589,Entertainment Weekly,,1996-11-08,17252,Hype! +Joe Leydon,none,0117550,Variety,,2009-03-26,266538045,Santa with Muscles +,none,0117550,Chicago Reader,,2004-01-10,266538045,Santa with Muscles +Emanuel Levy,fresh,0116293,Variety,The women (played by Tilda Swinton and Amy Madigan) are so intriguing and complex that they almost overcome the trappings of a non-linear narrative that's borderline academic.,2006-06-27,16684,Female Perversions +,none,0116293,Time Out,,2006-01-26,16684,Female Perversions +Rick Groen,fresh,0116293,Globe and Mail,The result is short on plot but long on observational detail and psychological resonance.,2002-04-12,16684,Female Perversions +Kevin Thomas,fresh,0116293,Los Angeles Times,"Even if it works better as a provocative psychological treatise than as art, it does come alive and does provide major roles for Tilda Swinton and Amy Madigan.",2001-02-14,16684,Female Perversions +James Berardinelli,rotten,0116293,ReelViews,Often too pretentious to be profound.,2000-01-01,16684,Female Perversions +Jeff Millar,fresh,0116293,Houston Chronicle,"Taken as a whole, this is not a product of the cookie cutter and should be of interest to the adventurous filmgoer.",2000-01-01,16684,Female Perversions +Peter Stack,fresh,0116293,San Francisco Chronicle,"This film is steamy, pulsing with veracity, boldly performed.",2000-01-01,16684,Female Perversions +Stephen Holden,fresh,0116293,New York Times,"Thanks to the mercurial fluency of Ms. Swinton's hot-and-cold performance, Eve emerges as much more than a symbolic case study of a powerful woman inwardly tearing herself to pieces.",2000-01-01,16684,Female Perversions +Tom Keogh,rotten,0116293,Film.com,"Dreamy but seemingly endless, ambitious but affected, daring but banal film.",2000-01-01,16684,Female Perversions +Roger Ebert,fresh,0116293,Chicago Sun-Times,This is the kind of movie you can't stop thinking about.,2000-01-01,16684,Female Perversions +Derek Adams,none,0116953,Time Out,,2006-02-09,15865,Mad Dog Time +Stephen Holden,none,0116953,New York Times,,2003-05-20,15865,Mad Dog Time +,none,0116953,Los Angeles Times,,2001-02-14,15865,Mad Dog Time +Edward Guthmann,none,0116953,San Francisco Chronicle,,2000-01-01,15865,Mad Dog Time +Roger Ebert,rotten,0116953,Chicago Sun-Times,The first movie I have seen that does not improve on the sight of a blank screen viewed for the same length of time.,2000-01-01,15865,Mad Dog Time +,rotten,0116953,Entertainment Weekly,,1996-11-08,15865,Mad Dog Time +Stephen Holden,none,0116601,New York Times,,2003-05-20,12355,I'm Not Rappaport +,rotten,0116601,Globe and Mail,,2002-04-12,12355,I'm Not Rappaport +Peter Travers,none,0116601,Rolling Stone,,2001-05-12,12355,I'm Not Rappaport +Jack Mathews,none,0116601,Los Angeles Times,,2001-02-14,12355,I'm Not Rappaport +James Berardinelli,fresh,0116601,ReelViews,,2000-01-01,12355,I'm Not Rappaport +Andy Seiler,rotten,0116601,USA Today,"This is good stuff. Unfortunately, director Herb Gardner is a little too fond of writer Herb Gardner's script, which just keeps going and going and going -- until even two old pros such as Walter and Ossie have worn out their welcome.",2000-01-01,12355,I'm Not Rappaport +Roger Ebert,rotten,0116601,Chicago Sun-Times,,2000-01-01,12355,I'm Not Rappaport +Joe Baltake,none,0116601,Sacramento Bee,,2000-01-01,12355,I'm Not Rappaport +Brendan Kelly,none,0112537,Variety,,2009-03-26,15070,Blue Juice +,none,0112537,Time Out,,2006-06-24,15070,Blue Juice +,rotten,0112537,Globe and Mail,,2002-04-12,15070,Blue Juice +Kevin Thomas,none,0112537,Los Angeles Times,,2001-02-14,15070,Blue Juice +Geoff Andrew,rotten,0103644,Time Out,"Good acting has salvaged many a poor script in the past, but not here.",2006-02-09,14276,Alien³ +Vincent Canby,fresh,0103644,New York Times,"Alien 3 belongs to that branch of fantasy comics, best exemplified by the Road Warrior movies, in which the iron and space ages meet for dizzy results.",2003-05-20,14276,Alien³ +Peter Travers,fresh,0103644,Rolling Stone,Bold and haunting,2001-05-12,14276,Alien³ +James Berardinelli,rotten,0103644,ReelViews,Barely watchable and not especially enjoyable.,2000-01-01,14276,Alien³ +Desson Thomson,fresh,0103644,Washington Post,"Ironically, Alien 3 is not a bad movie. In fact -- here's the rub -- it's too interesting to make an exciting summer flick.",2000-01-01,14276,Alien³ +John Hartl,rotten,0103644,Film.com,May satisfy fans of the earlier films ... but it won't win any new converts.,2000-01-01,14276,Alien³ +Hal Hinson,rotten,0103644,Washington Post,"There are a few narrative twists, but not enough new ideas to keep us guessing. In the end, we're stuck running through air shafts and corridors again.",2000-01-01,14276,Alien³ +Owen Gleiberman,fresh,0103644,Entertainment Weekly,"A grimly seductive end-of-the-world thriller, with pop-tragic overtones that build in resonance as the movie goes on.",1800-01-01,14276,Alien³ +Tom Huddleston,fresh,0082010,Time Out,"Not just gory but actually frightening, not just funny but clever, 'American Werewolf...' has its flaws, but these are outweighed by the film's many, mighty strengths.",2009-10-30,16412,An American Werewolf in London +Variety Staff,fresh,0082010,Variety,"A clever mixture of comedy and horror which succeeds in being both funny and scary, An American Werewolf in London possesses an overriding eagerness to please that prevents it from becoming off-putting.",2007-09-23,16412,An American Werewolf in London +Dave Kehr,rotten,0082010,Chicago Reader,"It's a failure, less because the odd stylistic mix doesn't take (it does from time to time, and to striking effect) than because Landis hasn't bothered to put his story into any kind of satisfying shape.",2007-09-23,16412,An American Werewolf in London +Roger Ebert,rotten,0082010,Chicago Sun-Times,"Seems curiously unfinished, as if director John Landis spent all his energy on spectacular set pieces and then didn't want to bother with things like transitions, character development, or an ending.",2004-10-23,16412,An American Werewolf in London +James Berardinelli,fresh,0082010,ReelViews,"Considering its often campy competition, it's hard to argue that, if your in the mood for lycanthropy, London is the place to go.",2000-01-01,16412,An American Werewolf in London +Variety Staff,rotten,0085159,Variety,There is hardly anything original about the picture.,2009-03-26,11870,Amityville 3-D +,rotten,0085159,Time Out,"To pad things out characters argue over story-lines from previous Amityville movies, while for 3-D purposes, wasps, furniture and minor players are hurled in our direction at varying intervals.",2006-06-24,11870,Amityville 3-D +Janet Maslin,rotten,0085159,New York Times,"The cast is good, but the characters are idiots.",2004-08-30,11870,Amityville 3-D +,none,0083550,Variety,,2009-03-26,14807,Amityville II: The Possession +Geoff Andrew,none,0083550,Time Out,,2006-06-24,14807,Amityville II: The Possession +Roger Ebert,rotten,0083550,Chicago Sun-Times,,2004-10-23,14807,Amityville II: The Possession +,none,0384806,Time Out,,2006-06-24,21,The Amityville Horror +Roger Ebert,rotten,0384806,Chicago Sun-Times,"The problem with The Amityville Horror is that, in a very real sense, there's nothing there.",2005-09-30,21,The Amityville Horror +,none,0384806,St. Louis Post-Dispatch,,2005-07-05,21,The Amityville Horror +Rex Reed,rotten,0384806,New York Observer,"A few lines get laughs, but the horror is standard fare, without a shred of innovation.",2005-04-21,21,The Amityville Horror +Chuck Wilson,rotten,0384806,L.A. Weekly,"Never buy a house with a basement, and while you're at it, avoid old Dutch Colonials in which the previous occupants were murdered by an eldest son possessed by demons.",2005-04-21,21,The Amityville Horror +Owen Gleiberman,rotten,0384806,Entertainment Weekly,"Nothing gets in the way of the rote staging, the ham-handed predictability, the feeling that you've been to this house, and yawned at these ghosts, once too often.",2005-04-20,21,The Amityville Horror +David Ng,rotten,0384806,Village Voice,The Amityville Horror is a Xerox so tattered and faded that it's impossible to determine who's to blame for the overproduced mediocrity before our eyes.,2005-04-19,21,The Amityville Horror +Sean Daly,rotten,0384806,Washington Post,You'll want to get out of Amityville long before the Lutzes do.,2005-04-15,21,The Amityville Horror +Stephanie Zacharek,rotten,0384806,Salon.com,"I wasn't shocked by The Amityville Horror, or outraged by it: I felt nothing but disdain.",2005-04-15,21,The Amityville Horror +Peter Howell,rotten,0384806,Toronto Star,Brevity is the single best thing about it.,2005-04-15,21,The Amityville Horror +Moira MacDonald,rotten,0384806,Seattle Times,"In theory, this should all be scary, but it just isn't. You giggle at the B-movie cheesiness of it.",2005-04-15,21,The Amityville Horror +Ruthe Stein,fresh,0384806,San Francisco Chronicle,"It retains the cheesy look of the 1979 original, pure schlock not gussied up to appear to be anything else.",2005-04-15,21,The Amityville Horror +Peter Travers,rotten,0384806,Rolling Stone,"This house springs so many FX shocks it plays like a theme-park ride. Result? It's not scary, just busy.",2005-04-15,21,The Amityville Horror +James Berardinelli,rotten,0384806,ReelViews,"In a ghost story, the narrative doesn't have to be a model of originality or coherence, but it needs to support the scares. In The Amityville Horror, the writing is so bad that it detracts from the 'boo!' moments and creepy interludes.",2005-04-15,21,The Amityville Horror +Roger Moore,fresh,0384806,Orlando Sentinel,"The original is still creepy, but this Horror will have fans jumping in their seats and talking back to the screen.",2005-04-15,21,The Amityville Horror +Lisa Rose,fresh,0384806,Newark Star-Ledger,"The startling thing about the remake is that it's one of the better horror films to hit screens in recent months, thanks to its refusal to take itself too seriously.",2005-04-15,21,The Amityville Horror +Lou Lumenick,rotten,0384806,New York Post,"Shoddily made, boring and, most shockingly, without a single decent scare.",2005-04-15,21,The Amityville Horror +Connie Ogle,rotten,0384806,Miami Herald,"Moviegoers are more cynical now than they were in 1979, and most will laugh off the moments meant to be tense. You can't really blame them.",2005-04-15,21,The Amityville Horror +Jack Mathews,rotten,0384806,New York Daily News,A cut-to-order MTV hack attack. Audiences will be stunned not because they have been frightened but by how obvious and safe the whole thing is.,2005-04-15,21,The Amityville Horror +Bruce Westbrook,rotten,0384806,Houston Chronicle,"Like good drive-in fare from the '70s, this is all about sensation.",2005-04-15,21,The Amityville Horror +Variety Staff,rotten,0071233,Variety,"Morrisey long showed that his films, although more implicit in sex, drugs and characterizations, were really Hollywood films at the core.",2009-10-19,770802271,Blood for Dracula +Jonathan Rosenbaum,fresh,0071233,Chicago Reader,One of the two schlocky horror comedies Paul Morrissey made in Italy in 1974... Blood for Dracula is the sexier and funnier.,2009-10-19,770802271,Blood for Dracula +,fresh,0071233,Time Out,Often startlingly beautiful to look at.,2006-02-09,770802271,Blood for Dracula +Geoff Andrew,none,0075704,Time Out,,2006-06-24,11582,Audrey Rose +Vincent Canby,none,0075704,New York Times,,2005-05-09,11582,Audrey Rose +Andrew Sarris,fresh,0056869,Village Voice,"Drawing from the relatively invisible literary talents of Daphne DuMaurier and Evan Hunter, Alfred Hitchcock has fashioned a major work of cinematic art, and ""cinematic"" is the operative term here, not ""literary"" or ""sociological.""",2013-01-18,10078,The Birds +Richard Brody,fresh,0056869,New Yorker,Few films depict so eerily yet so meticulously the metaphysical and historical sense of a world out of joint.,2012-10-09,10078,The Birds +J. Hoberman,fresh,0056869,Village Voice,"Hitch's much misappreciated follow-up to Psycho is arguably the greatest of all disaster films -- a triumph of special effects, as well as the fountainhead of what has become known as gross-out horror.",2012-10-09,10078,The Birds +,rotten,0056869,TIME Magazine,The movie flaps to a plotless end.,2008-10-07,10078,The Birds +Variety Staff,rotten,0056869,Variety,Beneath all of this elaborate feather bedlam lies a Hitch cock-and-bull story that's essentially a fowl ball.,2007-09-21,10078,The Birds +Dave Kehr,fresh,0056869,Chicago Reader,"Alfred Hitchcock's most abstract film (1963), and perhaps his subtlest, still yielding new meanings and inflections after a dozen or more viewings.",2007-09-21,10078,The Birds +Tom Milne,fresh,0056869,Time Out,"It's fierce and Freudian as well as great cinematic fun, with ample fodder for the amateur psychologist following up on Hitch's tortuous involvement with his leading ladies.",2006-06-24,10078,The Birds +Bosley Crowther,fresh,0056869,New York Times,Mr. Hitchcock and his associates have constructed a horror film that should raise the hackles of the most courageous and put goose-pimples on the toughest hide.,2000-01-01,10078,The Birds +,none,0094761,Variety,,2008-11-21,14263,The Blob +,none,0094761,Time Out,,2006-02-09,14263,The Blob +Janet Maslin,none,0094761,New York Times,,2003-05-20,14263,The Blob +Richard Harrington,none,0094761,Washington Post,,2000-01-01,14263,The Blob +,none,0082083,Time Out,,2006-06-24,403887268,Blood Beach +Tom Buckley,none,0082083,New York Times,,2004-08-30,403887268,Blood Beach +,none,0101492,Variety,,2009-03-26,16744,Body Parts +,none,0101492,Time Out,,2006-02-09,16744,Body Parts +Janet Maslin,none,0101492,New York Times,,2003-05-20,16744,Body Parts +Richard Harrington,none,0101492,Washington Post,,2000-01-01,16744,Body Parts +,rotten,0101492,Entertainment Weekly,,1991-08-02,16744,Body Parts +,fresh,0021814,TIME Magazine,"An exciting melodrama, not as good as it ought to be but a cut above the ordinary trapdoor-and-winding-sheet type of mystery film.",2008-10-15,18413,Dracula +Variety Staff,fresh,0021814,Variety,A sublimated ghost story related with all surface seriousness and above all with a remarkably effective background of creepy atmosphere.,2008-10-07,18413,Dracula +Dave Kehr,fresh,0021814,Chicago Reader,"The opening scenes, set in Dracula's castle, are magnificent -- grave, stately, and severe. But the film becomes unbearably static once the action moves to England.",2007-09-25,18413,Dracula +Tom Milne,fresh,0021814,Time Out,"Not by any means the masterpiece of fond memory or reputation, although the first twenty minutes are astonishingly fluid and brilliantly shot by Karl Freund.",2006-01-26,18413,Dracula +Mordaunt Hall,fresh,0021814,New York Times,"With Mr. Browning's imaginative direction and Mr. Lugosi's makeup and weird gestures, this picture succeeds to some extent in its grand guignol intentions.",2003-05-20,18413,Dracula +James Berardinelli,fresh,0021814,ReelViews,"Dracula deserves its status as a classic, although one might be tempted to append the word 'lesser' to that label.",2000-01-01,18413,Dracula +Roger Ebert,fresh,0021814,Chicago Sun-Times,"Certainly it is Lugosi's performance, and the cinematography of Karl Freund, that make Tod Browning's film such an influential Hollywood picture.",2000-01-01,18413,Dracula +,fresh,0026138,TIME Magazine,"Screenwriters Hurlbut & Balderston and Director James Whale have given it the macabre intensity proper to all good horror pieces, but have substituted a queer kind of mechanistic pathos for the sheer evil that was Frankenstein.",2008-10-07,20645,Bride of Frankenstein +,fresh,0026138,Variety,Karloff manages to invest the character with some subtleties of emotion that are surprisingly real and touching.,2007-06-04,20645,Bride of Frankenstein +Don Druker,fresh,0026138,Chicago Reader,"Whale added an element of playful sexuality to this version, casting the proceedings in a bizarre visual framework that makes this film a good deal more surreal than the original.",2007-06-04,20645,Bride of Frankenstein +Frank S. Nugent,fresh,0026138,New York Times,Another astonishing chapter in the career of the Monster.,2006-08-08,20645,Bride of Frankenstein +Geoff Andrew,fresh,0026138,Time Out,"Whale's most perfectly realised movie, a delight from start to finish.",2006-02-09,20645,Bride of Frankenstein +Roger Ebert,fresh,0026138,Chicago Sun-Times,"Seen today, Whale's masterpiece is more surprising than when it was made because today's audiences are more alert to its buried hints of homosexuality, necrophilia and sacrilege. But you don't have to deconstruct it to enjoy it.",2000-01-01,20645,Bride of Frankenstein +Bob Graham,fresh,0026138,San Francisco Chronicle,The Bride of Frankenstein has an in-your- face audacity that hasn't dimmed all that much after 63 years.,2000-01-01,20645,Bride of Frankenstein +,none,0074258,Variety,,2009-03-26,10850,Burnt Offerings +,none,0074258,Time Out,,2006-06-24,10850,Burnt Offerings +,none,0074258,New York Times,,2005-05-09,10850,Burnt Offerings +Roger Ebert,rotten,0074258,Chicago Sun-Times,,2004-10-23,10850,Burnt Offerings +Variety Staff,fresh,0103919,Variety,Candyman is an uppper-register horror item that delivers the requisite shocks and gore but doesn't cheat or cop out.,2008-09-17,15135,Candyman +Jonathan Rosenbaum,rotten,0103919,Chicago Reader,"Like so many post-Val Lewton horror films, this 1992 feature starts out promisingly while the plot is mainly a matter of suggestion, but gradually turns gross and obvious as the meanings become literal and unambiguous.",2008-09-17,15135,Candyman +,fresh,0103919,Time Out,One of the best sustained horror movies for some years.,2006-06-24,15135,Candyman +Janet Maslin,fresh,0103919,New York Times,The film's spooky atmosphere is accentuated by Anthony B. Richmond's cinematography and Philip Glass's score.,2003-05-20,15135,Candyman +Richard Harrington,rotten,0103919,Washington Post,"Madsen is a much better actress than is usually found in such a role. However, if you don't like splashes of blood or bees swarming out of bodies, you may want to think twice about this one.",2000-01-01,15135,Candyman +Roger Ebert,fresh,0103919,Chicago Sun-Times,"What I liked was a horror movie that was scaring me with ideas and gore, instead of simply with gore.",2000-01-01,15135,Candyman +Michael Wilmington,fresh,0074285,Chicago Tribune,A voluptuously shot horror movie.,2013-10-06,15878,Carrie +Joe Morgenstern,fresh,0074285,Wall Street Journal,"More superpowers from Brian De Palma, this time in high school, in a screen version of a Stephen King novel that's become a horror classic.",2011-06-04,15878,Carrie +Richard Schickel,fresh,0074285,TIME Magazine,An exercise in high style that even the most unredeemably rational among moviegoers should find enormously enjoyable.,2008-10-13,15878,Carrie +Variety Staff,fresh,0074285,Variety,"Carrie is a modest but effective shock-suspense drama about a pubescent girl, her evangelical mother and cruel schoolmates.",2008-10-07,15878,Carrie +Dave Kehr,rotten,0074285,Chicago Reader,"This 1976 thriller, about a high school outcast (Sissy Spacek) who uses her telekinetic powers to massacre the graduating class, contains a number of interesting ideas. But as with most of his films, De Palma can't keep track of them.",2007-09-25,15878,Carrie +,fresh,0074285,Time Out,The fierce sympathy it extends to its unfashionable central character puts the film a million miles above the contemporary line in sick exploitation.,2006-02-09,15878,Carrie +Richard Eder,rotten,0074285,New York Times,"It is sometimes funny in a puzzling kind of way, it is generally overwrought in an irritating kind of way, and once in a while it is inappropriately touching.",2005-05-09,15878,Carrie +Barbara Thomas,fresh,0074285,Atlanta Journal-Constitution,Young director Brian DePalma is fast making his reputation in the genre of the suspense-horror film.,2005-03-06,15878,Carrie +Roger Ebert,fresh,0074285,Chicago Sun-Times,"Brian De Palma's Carrie is an absolutely spellbinding horror movie, with a shock at the end that's the best thing along those lines since the shark leaped aboard in Jaws.",2004-10-23,15878,Carrie +James Berardinelli,rotten,0074285,ReelViews,There is little suspense or dramatic tension; everything plays out like bad melodrama or cheap exploitation.,2000-01-01,15878,Carrie +Dave Kehr,rotten,0083722,Chicago Reader,"Paul Schrader's hammering, art-porno remake of Jacques Tourneur's deft little thriller.",2007-09-26,16712,Cat People +Variety Staff,fresh,0083722,Variety,"Kinski was essential to the film as conceived, and she's endlessly watchable.",2007-09-26,16712,Cat People +,fresh,0083722,Time Out,"The seductively exotic surface of this mythically underpinned fantasy might be offset for some by much graphic gore, but if you can buy the romantic metaphors for the primitivisms of sexual obsession, the film delivers down the line.",2006-06-24,16712,Cat People +Roger Ebert,fresh,0083722,Chicago Sun-Times,"Cat People is a good movie in an old tradition, a fantasy-horror film that takes itself just seriously enough to work, has just enough fun to be entertaining, [and] contains elements of intrinsic fascination in its magnificent black leopards.",2004-10-23,16712,Cat People +Variety Staff,fresh,0087800,Variety,A highly imaginative horror film that provides the requisite shocks to keep fans of the genre happy.,2007-09-21,13117,A Nightmare on Elm Street +J. R. Jones,fresh,0087800,Chicago Reader,Craven vitalizes the nightmare sequences with assorted surrealist novelties.,2007-09-21,13117,A Nightmare on Elm Street +,fresh,0087800,Time Out,It's all good scary fun.,2006-01-26,13117,A Nightmare on Elm Street +Vincent Canby,fresh,0087800,New York Times,"A Nightmare on Elm Street... puts more emphasis on bizarre special effects, which aren't at all bad.",2003-05-20,13117,A Nightmare on Elm Street +James Berardinelli,fresh,0087800,ReelViews,Still stands on its own as an intriguing and chilling example of how horror works best when the characters and the audience don't have to be lobotomized.,2000-01-01,13117,A Nightmare on Elm Street +Mordaunt Hall,rotten,0013442,New York Times,It is the sort of thing one could watch at midnight without its having much effect upon one's slumbering hours.,2013-08-21,17740,"Nosferatu, eine Symphonie des Grauens" +Kevin Thomas,fresh,0013442,Los Angeles Times,"Never mind that much of the story of this first important screen version of the Dracula legend seems corny and dated, for what counts is its atmosphere and its images, which are timeless in their power.",2013-08-21,17740,"Nosferatu, eine Symphonie des Grauens" +Dennis Lim,fresh,0013442,Los Angeles Times,"Less frightening than haunting, Murnau's film conjures a persistent atmosphere of dread and decay, thanks in part to Max Schreck's immortal performance as Orlok.",2013-08-21,17740,"Nosferatu, eine Symphonie des Grauens" +Michael Wilmington,fresh,0013442,Chicago Tribune,"It's not just a great horror movie. It's a poem of horror, a symphony of dread, a film so rapt, mysterious and weirdly lovely it haunts the mind long after it's over.",2013-08-21,17740,"Nosferatu, eine Symphonie des Grauens" +Richard Brody,fresh,0013442,New Yorker,"The metaphysical style is most vividly rendered by Murnau's obsessive use of point-of-view shots, which force a viewer to follow the characters into the abyss of their terrifying visions.",2013-08-21,17740,"Nosferatu, eine Symphonie des Grauens" +Variety Staff,fresh,0013442,Variety,"Murnau proved his directorial artistry in Sunrise for Fox about three years earlier, but in this picture he's a master artisan demonstrating not only a knowledge of the subtler side of directing but in photography.",2008-05-16,17740,"Nosferatu, eine Symphonie des Grauens" +Jonathan Rosenbaum,fresh,0013442,Chicago Reader,The film shows Murnau's uncanny mixture of expressionism and location shooting at its finest.,2007-09-19,17740,"Nosferatu, eine Symphonie des Grauens" +Dave Kehr,fresh,0013442,Chicago Reader,A masterpiece of the German silent cinema and easily the most effective version of Dracula on record.,2007-09-19,17740,"Nosferatu, eine Symphonie des Grauens" +Geoff Andrew,fresh,0013442,Time Out,"Murnau's classic vampire movie, though not his best film, remains one of the most poetic of all horror films.",2007-08-16,17740,"Nosferatu, eine Symphonie des Grauens" +James Berardinelli,fresh,0013442,ReelViews,"As vampire movies go, few are more memorable than Nosferatu, which is not only the first screen version of Dracula, but, in some ways, remains the best.",2000-01-01,17740,"Nosferatu, eine Symphonie des Grauens" +Roger Ebert,fresh,0013442,Chicago Sun-Times,"It doesn't scare us, but it haunts us. It shows not that vampires can jump out of shadows, but that evil can grow there, nourished on death.",2000-01-01,17740,"Nosferatu, eine Symphonie des Grauens" +Dave Kehr,fresh,0075005,Chicago Reader,"Richard Donner directs more for speed than mood, but there are a few good shocks.",2012-10-09,13666,The Omen +Variety Staff,fresh,0075005,Variety,Richard Donner's direction is taut. Players all are strong.,2009-03-26,13666,The Omen +,fresh,0075005,Time Out,"This apocalyptic movie mostly avoids physical gore to boost its relatively unoriginal storyline with suspense, some excellent acting (especially from Warner and Whitelaw), and a very deft, incident-packed script.",2006-01-26,13666,The Omen +Joe Williams,fresh,0075005,St. Louis Post-Dispatch,,2005-07-07,13666,The Omen +Richard Eder,fresh,0075005,New York Times,"A member of the Exorcist family, it is a dreadfully silly film, which is not to say that it is totally bad.",2005-05-09,13666,The Omen +Roger Ebert,rotten,0075005,Chicago Sun-Times,"As long as movies like The Omen are merely scaring us, they're fun in a portentous sort of way.",2004-10-23,13666,The Omen +David Rooney,fresh,0115710,Variety,"An amusingly caustic, straight-up serving of film noir staples spiced with star charisma.",2009-03-26,364525542,Blood and Wine +Nigel Floyd,fresh,0115710,Time Out,"An engrossing thriller - and one sparkling with intelligence, with the surprising twists grounded in credible human behaviour.",2006-06-24,364525542,Blood and Wine +Stephen Holden,fresh,0115710,New York Times,"When Bob Rafelson decides to get nasty, he really means it.",2003-05-20,364525542,Blood and Wine +,fresh,0115710,Globe and Mail,,2002-04-12,364525542,Blood and Wine +Roger Ebert,fresh,0115710,Chicago Sun-Times,"It's a morality play, really, but dripping with humid sex and violence.",2000-01-01,364525542,Blood and Wine +Mike Clark,fresh,0115710,USA Today,"The movie's own payoff is compelling enough, but the project has a weightless feel that limits involvement. Better you give it an hour-and-a-half on video someday, surrounded by wine and snacks.",2000-01-01,364525542,Blood and Wine +Susan Stark,rotten,0115710,Detroit News,,2000-01-01,364525542,Blood and Wine +Edward Guthmann,rotten,0115710,San Francisco Chronicle,"Rafelson is so true to his sour vision of crime, deception and a rottenness at the core of our natures -- he's as cheerful as a Jim Thompson potboiler -- that we never get a chance to like or care about his characters.",2000-01-01,364525542,Blood and Wine +James Berardinelli,rotten,0115710,ReelViews,"Nicholson is good, but the movie isn't.",2000-01-01,364525542,Blood and Wine +,fresh,0115710,Entertainment Weekly,,1997-02-21,364525542,Blood and Wine +Lisa Schwarzbaum,rotten,0115495,Entertainment Weekly,,2011-09-07,15411,Albino Alligator +Geoff Andrew,none,0115495,Time Out,,2006-02-09,15411,Albino Alligator +Janet Maslin,none,0115495,New York Times,,2003-05-20,15411,Albino Alligator +Edward Guthmann,rotten,0115495,San Francisco Chronicle,,2002-06-18,15411,Albino Alligator +,rotten,0115495,Globe and Mail,,2002-04-12,15411,Albino Alligator +Peter Travers,none,0115495,Rolling Stone,,2001-05-12,15411,Albino Alligator +Jack Mathews,none,0115495,Los Angeles Times,,2001-02-14,15411,Albino Alligator +James Berardinelli,fresh,0115495,ReelViews,,2000-01-01,15411,Albino Alligator +Susan Stark,fresh,0115495,Detroit News,,2000-01-01,15411,Albino Alligator +Susan Wloszczyna,rotten,0115495,USA Today,"Pretentious and show-offy, the noirish drama fairly reeks of film-student overkill.",2000-01-01,15411,Albino Alligator +Gary Kamiya,none,0115495,Salon.com,,2000-01-01,15411,Albino Alligator +Roger Ebert,rotten,0115495,Chicago Sun-Times,,2000-01-01,15411,Albino Alligator +Emanuel Levy,none,0117057,Variety,,2012-02-23,12621,The Mirror Has Two Faces +Lisa Schwarzbaum,rotten,0117057,Entertainment Weekly,,2011-09-07,12621,The Mirror Has Two Faces +Todd McCarthy,none,0117057,Variety,,2009-03-26,12621,The Mirror Has Two Faces +Derek Adams,none,0117057,Time Out,,2006-02-09,12621,The Mirror Has Two Faces +Janet Maslin,none,0117057,New York Times,,2003-05-20,12621,The Mirror Has Two Faces +Jeff Strickler,none,0117057,Minneapolis Star Tribune,,2002-11-06,12621,The Mirror Has Two Faces +Edward Guthmann,none,0117057,San Francisco Chronicle,,2002-06-18,12621,The Mirror Has Two Faces +Peter Travers,none,0117057,Rolling Stone,,2001-05-12,12621,The Mirror Has Two Faces +Kenneth Turan,none,0117057,Los Angeles Times,,2001-02-14,12621,The Mirror Has Two Faces +James Berardinelli,rotten,0117057,ReelViews,,2000-01-01,12621,The Mirror Has Two Faces +Susan Stark,rotten,0117057,Detroit News,,2000-01-01,12621,The Mirror Has Two Faces +Roger Ebert,fresh,0117057,Chicago Sun-Times,,2000-01-01,12621,The Mirror Has Two Faces +,none,0117057,Washington Post,,2000-01-01,12621,The Mirror Has Two Faces +Joe Baltake,none,0117057,Sacramento Bee,,2000-01-01,12621,The Mirror Has Two Faces +,rotten,0117057,Entertainment Weekly,,1996-11-15,12621,The Mirror Has Two Faces +Owen Gleiberman,fresh,0115751,Entertainment Weekly,,2011-09-07,13433,Breaking the Waves +David Stratton,none,0115751,Variety,,2009-03-26,13433,Breaking the Waves +,none,0115751,Time Out,,2006-06-24,13433,Breaking the Waves +Jeff Strickler,none,0115751,Minneapolis Star Tribune,,2002-11-06,13433,Breaking the Waves +Desson Thomson,none,0115751,Washington Post,,2002-01-22,13433,Breaking the Waves +Peter Travers,fresh,0115751,Rolling Stone,,2001-05-12,13433,Breaking the Waves +Kenneth Turan,rotten,0115751,Los Angeles Times,,2001-02-14,13433,Breaking the Waves +James Berardinelli,fresh,0115751,ReelViews,,2000-01-01,13433,Breaking the Waves +Peter Stack,none,0115751,San Francisco Chronicle,,2000-01-01,13433,Breaking the Waves +Joe Baltake,none,0115751,Sacramento Bee,,2000-01-01,13433,Breaking the Waves +Janet Maslin,fresh,0115751,New York Times,,2000-01-01,13433,Breaking the Waves +Roger Ebert,fresh,0115751,Chicago Sun-Times,,2000-01-01,13433,Breaking the Waves +Stanley Kauffmann,none,0115751,The New Republic,,2000-01-01,13433,Breaking the Waves +Jonathan Rosenbaum,fresh,0115751,Chicago Reader,,2000-01-01,13433,Breaking the Waves +,none,0115751,Houston Chronicle,,2000-01-01,13433,Breaking the Waves +,fresh,0115751,Entertainment Weekly,,1996-11-29,13433,Breaking the Waves +Jonathan Rosenbaum,rotten,0403358,Chicago Reader,"The punchy, nonstop visual effects crowd out coherent storytelling.",2009-10-20,19049986,Nochnoy dozor +David Edelstein,fresh,0403358,New York Magazine,"For a good hour and change, the film is a big toy box that teases you out of the Gloom.",2007-07-07,19049986,Nochnoy dozor +Roger Moore,fresh,0403358,Orlando Sentinel,It has a refreshing Old World take on a never-ending fantasy war between vampires and the forces of 'light.',2006-03-03,19049986,Nochnoy dozor +Amy Biancolli,rotten,0403358,Houston Chronicle,What a rabid beast is Night Watch. What a pungent Russian fantasy-horror cheeseathon.,2006-03-03,19049986,Nochnoy dozor +Robert Denerstein,rotten,0403358,Denver Rocky Mountain News,"This mostly incoherent, enormously eccentric helping of mayhem breaks into so many fragments that watching the movie can be a bit like trying to assemble the pieces from several jigsaw puzzles.",2006-03-03,19049986,Nochnoy dozor +Michael Booth,rotten,0403358,Denver Post,"Night Watch was one of the most popular movies ever released in Russia. That just proves there's no accounting for taste, in film or in human sacrifice.",2006-03-03,19049986,Nochnoy dozor +Colin Covert,rotten,0403358,Minneapolis Star Tribune,Goth thrill-junkies will probably get a giddy charge out of this overheated fantasy. The rest of us can have an equivalent experience by putting our brains in a blender and hitting puree.,2006-03-02,19049986,Nochnoy dozor +Bob Longino,fresh,0403358,Atlanta Journal-Constitution,"Clarity may be lost, but rare is the movie that grabs viewers by their throats and never lets go. Bekmambetov's Night Watch is one of the grabbers.",2006-03-02,19049986,Nochnoy dozor +Kerry Lengel,fresh,0403358,Arizona Republic,"The faux mythology may be cheesy, the grandiose plot stretched thin and full of holes, but underneath the recycled story and style is a hint of something troubling and real.",2006-03-02,19049986,Nochnoy dozor +Michael Wilmington,fresh,0403358,Chicago Tribune,"Even though you couldn't call it a great science fiction movie, on the level of Tarkovsky's Solaris and Stalker it's often a great, heart-pumping, blow-you- to-the walls movie experience.",2006-02-25,19049986,Nochnoy dozor +Peter Howell,fresh,0403358,Toronto Star,"While the movie's inspirations might be glam-Hollywood action fantasies, Night Watch fairly wallows in damp, post-Soviet decay.",2006-02-24,19049986,Nochnoy dozor +Liam Lacey,rotten,0403358,Globe and Mail,"Though Night Watch is impressive at creating atmosphere, the movie is an impenetrable narrative tangle with plot strands running in every direction.",2006-02-24,19049986,Nochnoy dozor +Jeff Shannon,rotten,0403358,Seattle Times,"If [Director] Bekmambetov had any skill in actually telling a story, his kitchen-sink trilogy would be something to celebrate. It presently qualifies as a dubious achievement.",2006-02-24,19049986,Nochnoy dozor +Steven Rea,fresh,0403358,Philadelphia Inquirer,"Although it doesn't have Kate Beckinsale, her guns ablazin', vamped out in the latest vampire-slaying couture, Night Watch is vastly more fun than the similar-themed Underworld pics.",2006-02-24,19049986,Nochnoy dozor +Peter Debruge,rotten,0403358,Miami Herald,Night Watch works better as a demo reel for the state of Russian effects work than as a first installment in an epic trilogy.,2006-02-24,19049986,Nochnoy dozor +Tom Long,rotten,0403358,Detroit News,"Unfortunately, by Hollywood standards, Night Watch is about three Wookies and two Neos short of convincing. All the gobbledygook is in place, but the special effects are minimal and somewhat frustrating.",2006-02-24,19049986,Nochnoy dozor +Terry Lawson,fresh,0403358,Detroit Free Press,"The original plan was to remake Night Watch in English, and then thought was given to dubbing it. Thankfully both ideas were scuttled, as the film's Russian-ness and its allusions to post-communist fears and frustrations add greatly to its appeal.",2006-02-24,19049986,Nochnoy dozor +Wesley Morris,fresh,0403358,Boston Globe,"Night Watch is shabby chic, with hints of Russia's great silent-cinema past.",2006-02-24,19049986,Nochnoy dozor +Claudia Puig,rotten,0403358,USA Today,"Ultimately, it's a formulaic, predictable take on a Hollywood staple: the vampire horror film. That's a pretty tired genre, no matter what language it's told in.",2006-02-23,19049986,Nochnoy dozor +Peter Rainer,fresh,0403358,Christian Science Monitor,"As opposed to the dreary domestic dramas that are [Russian] cinema's stock in trade, this one is a full-stops-out fantasia that is often disgustingly gloppy and looks as if it was birthed by the Wachowski brothers and Quentin Tarantino.",2006-02-23,19049986,Nochnoy dozor +Lisa Schwarzbaum,fresh,0117731,Entertainment Weekly,"In zooming out from Picard's glinty eyeball, this eighth feature film from the Trek factory displays a zippy new energy and a sleek, confident style fully independent of its predecessors.",2011-09-07,11853,Star Trek: First Contact +Richard Corliss,fresh,0117731,TIME Magazine,"First Contact is no grab bag of camp gewgaws; it stands proud and apart, accessible even to the Trek-deficient. This old Star, it seems, has a lot of life in it.",2009-05-03,11853,Star Trek: First Contact +Lisa Alspector,fresh,0117731,Chicago Reader,"The elegance of the story is enhanced by the sure direction of Jonathan Frakes, who also plays Commander William Riker.",2007-06-05,11853,Star Trek: First Contact +Joe Leydon,fresh,0117731,Variety,A smashingly exciting sci-fi adventure that ranks among the very best in the long-running Paramount franchise.,2007-06-05,11853,Star Trek: First Contact +Derek Adams,rotten,0117731,Time Out,This makes little concession to non-initiates.,2006-06-24,11853,Star Trek: First Contact +Janet Maslin,rotten,0117731,New York Times,"The series now lacks all of its original stars and much of its earlier determination. It has morphed into something less innocent and more derivative than it used to be, something the noncultist is ever less likely to enjoy.",2003-05-20,11853,Star Trek: First Contact +Lloyd Rose,fresh,0117731,Washington Post,The excitement comes from Frakes's direction.,2002-07-31,11853,Star Trek: First Contact +Mick LaSalle,fresh,0117731,San Francisco Chronicle,"A nicely constructed science-fiction film, with a simple premise, a charismatic villain and a good back-story to enhance the action.",2002-06-18,11853,Star Trek: First Contact +Kenneth Turan,fresh,0117731,Los Angeles Times,"Blessed with clever plot devices and a villainous horde that makes the once-dread Klingons seem like a race of Barneys, First Contact does everything you'd want a Star Trek film to do, and it does it with cheerfulness and style.",2001-02-14,11853,Star Trek: First Contact +Susan Stark,fresh,0117731,Detroit News,"The first stretch and the home stretch are so filled with visual interest and, more importantly, with the patented Star Trek philosophical and humorous tidbits that fans will gladly suffer the dull Borg patch for the pleasure of the rest.",2000-01-01,11853,Star Trek: First Contact +,fresh,0117731,USA Today,"While First Contact espouses the usual lofty Trek ideals, it never forgets to factor in the fun. As the Borg likes to say, resistance is futile -- and also unnecessary.",2000-01-01,11853,Star Trek: First Contact +Roger Ebert,fresh,0117731,Chicago Sun-Times,"Star Trek: First Contact is one of the best of the eight Star Trek films: Certainly the best in its technical credits, and among the best in the ingenuity of its plot.",2000-01-01,11853,Star Trek: First Contact +James Berardinelli,fresh,0117731,ReelViews,"Following in the wake of a trio of disappointing features, First Contact proves to be the most entertaining Star Trek in more than a decade.",2000-01-01,11853,Star Trek: First Contact +Desson Thomson,fresh,0117731,Washington Post,A thoroughly enjoyable visit with the crew of TV's Star Trek: The Next Generation.,2000-01-01,11853,Star Trek: First Contact +Lisa Schwarzbaum,fresh,0117631,Entertainment Weekly,,2011-09-07,10736,Shine +David Stratton,none,0117631,Variety,,2008-10-18,10736,Shine +Derek Adams,none,0117631,Time Out,,2006-06-24,10736,Shine +Jeff Strickler,none,0117631,Minneapolis Star Tribune,,2002-11-06,10736,Shine +Edward Guthmann,none,0117631,San Francisco Chronicle,,2002-06-19,10736,Shine +Desson Thomson,none,0117631,Washington Post,,2002-01-22,10736,Shine +Peter Travers,none,0117631,Rolling Stone,,2001-05-11,10736,Shine +Kenneth Turan,fresh,0117631,Los Angeles Times,,2001-02-14,10736,Shine +,fresh,0117631,USA Today,Shine has a story to reckon with and powerhouse male performances.,2000-01-01,10736,Shine +James Berardinelli,fresh,0117631,ReelViews,,2000-01-01,10736,Shine +Roger Ebert,fresh,0117631,Chicago Sun-Times,,2000-01-01,10736,Shine +Susan Stark,fresh,0117631,Detroit News,,2000-01-01,10736,Shine +,none,0117631,Houston Chronicle,,2000-01-01,10736,Shine +Janet Maslin,fresh,0117631,New York Times,,2000-01-01,10736,Shine +Stanley Kauffmann,none,0117631,The New Republic,,2000-01-01,10736,Shine +Joe Baltake,none,0117631,Sacramento Bee,,2000-01-01,10736,Shine +,fresh,0117631,Entertainment Weekly,,1996-11-20,10736,Shine +Owen Gleiberman,fresh,0117666,Entertainment Weekly,,2011-09-07,13636,Sling Blade +Todd McCarthy,none,0117666,Variety,,2008-07-23,13636,Sling Blade +Derek Adams,none,0117666,Time Out,,2006-06-24,13636,Sling Blade +Jeff Strickler,none,0117666,Minneapolis Star Tribune,,2002-11-06,13636,Sling Blade +Susan Stark,fresh,0117666,Detroit News,,2002-05-09,13636,Sling Blade +,none,0117666,Washington Post,,2002-05-09,13636,Sling Blade +Rita Kempley,fresh,0117666,Washington Post,A masterpiece of Southern storytelling.,2002-05-08,13636,Sling Blade +Janet Maslin,rotten,0117666,New York Times,"An abundance of long, flat medium shots that rob the film of intimacy and give it a sleepy pace.",2002-05-08,13636,Sling Blade +Kevin Thomas,fresh,0117666,Los Angeles Times,A mesmerizing parable of good and evil and a splendid example of Southern storytelling at its most poetic and imaginative.,2001-02-14,13636,Sling Blade +Roger Ebert,fresh,0117666,Chicago Sun-Times,"If there were the slightest justice and curiosity in the Academy Award process, Thornton's work here would get a nomination.",2000-01-01,13636,Sling Blade +Sean Means,fresh,0117666,Film.com,"In Sling Blade, Thornton lays claim to the title of hyphenate of the year.",2000-01-01,13636,Sling Blade +Tom Keogh,fresh,0117666,Film.com,"The lure of Sling Blade is both elemental and hauntingly familiar, and I would not be surprised if Thornton's breakthrough film is one day considered a classic in its own right.",2000-01-01,13636,Sling Blade +James Berardinelli,fresh,0117666,ReelViews,A fine motion picture.,2000-01-01,13636,Sling Blade +John Hartl,fresh,0117666,Film.com,"[Thornton] does wonders with Yoakam, who could have played a standard villain but always manages to suggest a man trapped within his prejudices.",2000-01-01,13636,Sling Blade +Dwight Garner,rotten,0117666,Salon.com,"By its midpoint, however, Thornton has begun forcing both the film's poetry and the preternatural goodness of its simple-minded protagonist, and Sling Blade's sweet charms begin to curdle.",2000-01-01,13636,Sling Blade +Edward Guthmann,fresh,0117666,San Francisco Chronicle,"All the actors in Sling Blade do magnificent work, but it's Thornton who stays with you for days.",2000-01-01,13636,Sling Blade +Joe Baltake,fresh,0117666,Sacramento Bee,Sling Blade does homage to Psycho without slavishly imitating the memorable parts.,2000-01-01,13636,Sling Blade +Desson Thomson,fresh,0117666,Washington Post,"Sling Blade takes you down paths full of primitive, almost biblical implications, but it also finds comic relief in moments of palpable tension.",2000-01-01,13636,Sling Blade +Jonathan Rosenbaum,fresh,0117666,Chicago Reader,,2000-01-01,13636,Sling Blade +Stanley Kauffmann,fresh,0117666,The New Republic,[Thornton] performance is so good that his directing may be slighted.,2000-01-01,13636,Sling Blade +Owen Gleiberman,rotten,0116705,Entertainment Weekly,,2011-09-07,10318,Jingle All the Way +Emanuel Levy,rotten,0116705,Variety,"In this formulaic star vehicle, Schwarzenegger gets to fly like Peter Pan, act like Superman--and fulfill all the fantasies kids may have about their fathers.",2006-12-18,10318,Jingle All the Way +Geoff Andrew,none,0116705,Time Out,,2006-06-24,10318,Jingle All the Way +Janet Maslin,none,0116705,New York Times,,2003-05-20,10318,Jingle All the Way +Jeff Strickler,none,0116705,Minneapolis Star Tribune,,2002-11-06,10318,Jingle All the Way +Jack Mathews,none,0116705,Los Angeles Times,,2001-02-14,10318,Jingle All the Way +Roger Ebert,rotten,0116705,Chicago Sun-Times,"I liked a lot of the movie, which is genial and has a lot of energy, but I was sort of depressed by its relentlessly materialistic view of Christmas, and by the choice to go with action and (mild) violence over dialogue and plot.",2000-01-01,10318,Jingle All the Way +Edward Guthmann,none,0116705,San Francisco Chronicle,,2000-01-01,10318,Jingle All the Way +Joe Baltake,none,0116705,Sacramento Bee,,2000-01-01,10318,Jingle All the Way +Susan Stark,rotten,0116705,Detroit News,,2000-01-01,10318,Jingle All the Way +Andy Seiler,fresh,0116705,USA Today,"Here's Arnie, of all people, playing a bedraggled suburbanite, and his perversely amusing casting boosts a crass, sometimes nasty and finally funny celebration of holiday mass-merchandising and greed.",2000-01-01,10318,Jingle All the Way +James Berardinelli,rotten,0116705,ReelViews,,2000-01-01,10318,Jingle All the Way +,rotten,0116705,Entertainment Weekly,,1997-06-01,10318,Jingle All the Way +,none,0117293,Entertainment Weekly,,2009-11-06,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Godfrey Cheshire,none,0117293,Variety,,2009-03-26,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Janet Maslin,none,0117293,New York Times,,2003-05-20,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Jeff Strickler,none,0117293,Minneapolis Star Tribune,,2002-11-06,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Jonathan Rosenbaum,none,0117293,Chicago Reader,,2002-06-12,18104,Paradise Lost: The Child Murders at Robin Hood Hills +,fresh,0117293,Globe and Mail,,2002-04-12,18104,Paradise Lost: The Child Murders at Robin Hood Hills +,none,0117293,Los Angeles Times,,2001-02-14,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Peter Stack,none,0117293,San Francisco Chronicle,,2000-01-01,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Roger Ebert,fresh,0117293,Chicago Sun-Times,,2000-01-01,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Stanley Kauffmann,none,0117293,The New Republic,,2000-01-01,18104,Paradise Lost: The Child Murders at Robin Hood Hills +James Berardinelli,fresh,0117293,ReelViews,,2000-01-01,18104,Paradise Lost: The Child Murders at Robin Hood Hills +Lisa Schwarzbaum,fresh,0117372,Entertainment Weekly,,2011-09-07,11024,The Preacher's Wife +Leonard Klady,none,0117372,Variety,,2009-03-26,11024,The Preacher's Wife +Derek Adams,none,0117372,Time Out,,2006-06-24,11024,The Preacher's Wife +Stephen Holden,none,0117372,New York Times,,2003-05-20,11024,The Preacher's Wife +Jeff Strickler,none,0117372,Minneapolis Star Tribune,,2002-11-06,11024,The Preacher's Wife +Esther Iverem,fresh,0117372,Washington Post,There are many good reasons for going to see The Preacher's Wife.,2002-09-24,11024,The Preacher's Wife +Peter Stack,fresh,0117372,San Francisco Chronicle,"The Preacher's Wife qualifies as old-fashioned Hollywood movie making at its corniest and most saccharine. But the mostly African American cast puts an engaging spin on the chestnut, and it works beautifully.",2002-06-18,11024,The Preacher's Wife +Liam Lacey,rotten,0117372,Globe and Mail,"For a movie that might have offered a new twist of the mistletoe, The Preacher's Wife delivers the Scrooge-like acceptable market minimum.",2002-04-12,11024,The Preacher's Wife +Kevin Thomas,fresh,0117372,Los Angeles Times,"The Preacher's Wife is one Christmas picture that actually is in the spirit of the season. It's warm, sentimental, amusing yet serious, bringing fantasy to bear upon the painfully real.",2001-02-14,11024,The Preacher's Wife +Susan Wloszczyna,fresh,0117372,USA Today,As warm and cheery as a mug of hot cocoa on a frosty morn.,2000-01-01,11024,The Preacher's Wife +Joe Baltake,fresh,0117372,Sacramento Bee,An endearingly modest entertainment elevated by the luminous double presence of Whitney Houston and Denzel Washington.,2000-01-01,11024,The Preacher's Wife +Desson Thomson,fresh,0117372,Washington Post,A welcome boost for audiences seeking images of black characters without criminal tendencies.,2000-01-01,11024,The Preacher's Wife +Roger Ebert,fresh,0117372,Chicago Sun-Times,"This movie could have done more, but what it does, it makes you feel good about.",2000-01-01,11024,The Preacher's Wife +Susan Stark,rotten,0117372,Detroit News,"Penny Marshall's remake of The Bishop's Wife is very uneven -- sometimes sweet or soulful, often stiff.",2000-01-01,11024,The Preacher's Wife +James Berardinelli,rotten,0117372,ReelViews,"If not for the pervasive spirit of the season, something like this could easily send me into sugar shock. It's a little too nice and happy.",2000-01-01,11024,The Preacher's Wife +,fresh,0117372,Entertainment Weekly,,1996-12-13,11024,The Preacher's Wife +Lisa Schwarzbaum,fresh,0117477,Entertainment Weekly,,2011-09-07,13787,Ridicule +Lisa Nesselson,none,0117477,Variety,,2009-03-26,13787,Ridicule +Geoff Andrew,none,0117477,Time Out,,2006-06-24,13787,Ridicule +Janet Maslin,none,0117477,New York Times,,2003-05-20,13787,Ridicule +Jeff Strickler,none,0117477,Minneapolis Star Tribune,,2002-11-06,13787,Ridicule +Kenneth Turan,none,0117477,Los Angeles Times,,2001-02-14,13787,Ridicule +Susan Stark,fresh,0117477,Detroit News,,2000-01-01,13787,Ridicule +Roger Ebert,fresh,0117477,Chicago Sun-Times,,2000-01-01,13787,Ridicule +,none,0117477,Houston Chronicle,,2000-01-01,13787,Ridicule +Laura Miller,none,0117477,Salon.com,,2000-01-01,13787,Ridicule +James Berardinelli,fresh,0117477,ReelViews,,2000-01-01,13787,Ridicule +,none,0117477,Washington Post,,2000-01-01,13787,Ridicule +Edward Guthmann,none,0117477,San Francisco Chronicle,,2000-01-01,13787,Ridicule +Mike Clark,fresh,0117477,USA Today,"Audiences will respond favorably to its overall warmth, and the motion picture academy may, too.",2000-01-01,13787,Ridicule +,fresh,0117477,Entertainment Weekly,,1996-11-29,13787,Ridicule +Joe Morgenstern,fresh,0115988,Wall Street Journal,"Then there's always Mr. Scofield, bringing an almost unbearable, yet entirely believable, lightness of spirit to his loathsome character. It's a bold stroke by a great actor, making zealotry and evil seem positively beneficent.",2013-05-17,10082,The Crucible +David Ansen,fresh,0115988,Newsweek,"I recommend Hytner's movie highly, but a part of me resists a work that makes the audience feel as noble in our moral certainty as the characters it invites us to deplore. Some part of its power seems borrowed from the thing it hates.",2013-05-17,10082,The Crucible +Richard Corliss,fresh,0115988,TIME Magazine,"Her cheeks flush, her winsome beauty seared with erotic rage, Ryder exposes the real roots of the piece. Forget McCarthyism; The Crucible is a colonial Fatal Attraction.",2013-05-17,10082,The Crucible +Misha Berson,rotten,0115988,Seattle Times,"Too bad, though, that The Crucible fails to probe deeper into the sexual, religious, and political conditions that can give false accusations so much power -- even today.",2013-05-17,10082,The Crucible +Carrie Rickey,fresh,0115988,Philadelphia Inquirer,"I very much admire how Hytner... keeps the pace swift and doesn't fetishize the 17th-century decors and clothes. But I can't help feeling that in more ways than one, The Crucible is a period piece.",2013-05-17,10082,The Crucible +Jay Boyar,fresh,0115988,Orlando Sentinel,What happened in long-ago Salem does still seem to matter.,2013-05-17,10082,The Crucible +Rita Kempley,rotten,0115988,Washington Post,"Handsome and well-acted, the film's ultimate success depends on the heat between Ryder and Day-Lewis, and it simply isn't there. The attraction is fatal alright, but it certainly doesn't seem mutual.",2013-05-17,10082,The Crucible +Todd McCarthy,rotten,0115988,Variety,"Neither the establishing dramatic linchpin nor the final conversion of conscience is terribly convincing, leaving this pared-down rendition of the original work diminished in power and meaning as well.",2008-08-08,10082,The Crucible +Geoff Andrew,fresh,0115988,Time Out,"Hytner holds the action together with solid, unflashy, well-paced direction, ensuring that this is no mere period piece but a compelling, pertinent account of human fear, frailty and cold ambition.",2006-06-24,10082,The Crucible +Michael Wilmington,fresh,0115988,Chicago Tribune,Nothing in the movie is quite up to Scofield's Danforth. But what a mighty performance that is!,2005-04-09,10082,The Crucible +Jeff Strickler,fresh,0115988,Minneapolis Star Tribune,"Day-Lewis, Ryder and Scofield will be odds-on favorites for Oscar nominations, as will the movie itself.",2002-11-06,10082,The Crucible +Edward Guthmann,fresh,0115988,San Francisco Chronicle,"There's an awful, piercing truth in the performances of Daniel Day-Lewis, Winona Ryder, Joan Allen and Paul Scofield as members of a community destroyed by guilt, paranoia and betrayal.",2002-06-18,10082,The Crucible +,rotten,0115988,Globe and Mail,,2002-04-12,10082,The Crucible +Peter Travers,fresh,0115988,Rolling Stone,This stirring film lets you feel the heat of Miller's argument and the urgent power of his kick.,2001-05-12,10082,The Crucible +Kenneth Turan,rotten,0115988,Los Angeles Times,"Despite these involving moments, The Crucible finally seems too schematic, more useful as an allegory than as drama, and possibly owing that undoubted popularity to its simplistic qualities as much as its insights into group psychology.",2001-02-14,10082,The Crucible +Mike Clark,fresh,0115988,USA Today,"With a head on its shoulders and the rawest emotions in its craw, Arthur Miller's stage hit The Crucible has become a cinematic grabber for grown-ups -- without that castor oil taste.",2000-01-01,10082,The Crucible +Susan Stark,fresh,0115988,Detroit News,,2000-01-01,10082,The Crucible +James Berardinelli,fresh,0115988,ReelViews,"This version illuminates the story's numerous strengths, resulting in a motion picture of surprising emotional and intellectual impact.",2000-01-01,10082,The Crucible +Jonathan Rosenbaum,fresh,0115988,Chicago Reader,"Though Hytner remains essentially a stage director, he makes fine use of Massachusetts locations and period interiors; some of the visual details recall Dreyer's Day of Wrath, a film that likely had an influence on Miller's play",2000-01-01,10082,The Crucible +Roger Ebert,rotten,0115988,Chicago Sun-Times,"The first scene in ""The Crucible'' strikes the first wrong note.",2000-01-01,10082,The Crucible +,fresh,0055254,TIME Magazine,"It is the wittiest, most charming, least pretentious cartoon feature Walt Disney has ever made.",2008-09-04,9417,One Hundred and One Dalmatians +Variety Staff,fresh,0055254,Variety,"While not as indelibly enchanting or inspired as some of the studio's most unforgettable animated endeavors, this is nonetheless a painstaking creative effort.",2008-03-04,9417,One Hundred and One Dalmatians +Dave Kehr,fresh,0055254,Chicago Reader,This was the last Disney animated feature (1961) that Uncle Walt lived to see through personally; it can't be a coincidence that it's also the last Disney animated feature of real depth and emotional authenticity.,2008-02-12,9417,One Hundred and One Dalmatians +,fresh,0055254,Time Out,Brilliant entertainment.,2006-01-26,9417,One Hundred and One Dalmatians +Janet Maslin,fresh,0055254,New York Times,"A rather clever idea, if a bit unsettling.",2003-05-20,9417,One Hundred and One Dalmatians +Roger Ebert,fresh,0055254,Chicago Sun-Times,"If there's one thing that's absolutely first-rate about the film, it's the character of Cruella.",2000-01-01,9417,One Hundred and One Dalmatians +Lisa Schwarzbaum,fresh,0110171,Entertainment Weekly,,2011-09-07,21816,J'ai pas sommeil +Deborah Young,none,0110171,Variety,,2009-03-26,21816,J'ai pas sommeil +Caryn James,none,0110171,New York Times,,2003-05-20,21816,J'ai pas sommeil +James Berardinelli,rotten,0110171,ReelViews,,2000-01-01,21816,J'ai pas sommeil +Mick LaSalle,none,0110171,San Francisco Chronicle,,2000-01-01,21816,J'ai pas sommeil +,fresh,0110171,Entertainment Weekly,,1995-08-11,21816,J'ai pas sommeil +Derek Elley,none,0079945,Variety,,2012-02-23,10849,Star Trek: The Motion Picture +Richard Schickel,rotten,0079945,TIME Magazine,Nothing but a long day's journey into ennui.,2009-05-03,10849,Star Trek: The Motion Picture +Variety Staff,fresh,0079945,Variety,"The expensive effects (under supervision of Douglas Trumbull) are the secret of this film, and the amazing wizardry throughout would appear to justify the whopping budget.",2008-05-19,10849,Star Trek: The Motion Picture +Dave Kehr,rotten,0079945,Chicago Reader,This 1979 movie adaptation of the cult TV series is blandness raised to an epic scale.,2008-05-19,10849,Star Trek: The Motion Picture +,fresh,0079945,Time Out,"For non-addicts, the smart plot and effects go some way towards compensating for the plastic characters and costumes.",2007-08-16,10849,Star Trek: The Motion Picture +Vincent Canby,rotten,0079945,New York Times,"[It's] like attending your high-school class's 10th reunion at Caesar's Palace. Most of the faces are familiar, but the decor has little relationship to anything you've ever seen before.",2005-05-09,10849,Star Trek: The Motion Picture +James Berardinelli,fresh,0079945,ReelViews,"Star Trek - The Motion Picture: Director's Edition is no 2001 (its obvious inspiration -- a fact that is more evident here than ever before), but it represents thought-provoking, well constructed science fiction.",2000-01-01,10849,Star Trek: The Motion Picture +Owen Gleiberman,fresh,0102975,Entertainment Weekly,,2011-09-07,12300,Star Trek VI: The Undiscovered Country +Variety Staff,fresh,0102975,Variety,"Weighed down by a midsection even flabbier than the long-in-the-tooth cast, director Nicholas Meyer still delivers enough of what Trek auds hunger for to justify the trek to the local multiplex.",2008-05-19,12300,Star Trek VI: The Undiscovered Country +Derek Adams,fresh,0102975,Time Out,"Though patchy, this is a lot more fun than the disastrous Star Trek V.",2006-02-09,12300,Star Trek VI: The Undiscovered Country +Janet Maslin,fresh,0102975,New York Times,"The principals' enthusiasm for their material has never seemed to fade. If anything, that enthusiasm grows more appealingly nutty with time.",2003-05-20,12300,Star Trek VI: The Undiscovered Country +Desson Thomson,fresh,0102975,Washington Post,Director/coscripter Nicholas Meyer moves this vehicle efficiently. He employs some tremendous visuals.,2000-01-01,12300,Star Trek VI: The Undiscovered Country +Hal Hinson,fresh,0102975,Washington Post,"If, indeed, Star Trek VI turns out to be the last of the series, it couldn't have made a more felicitous or more satisfying exit.",2000-01-01,12300,Star Trek VI: The Undiscovered Country +James Berardinelli,rotten,0102975,ReelViews,"For a movie that begins with such promise, The Undiscovered Country ends with a whimper.",2000-01-01,12300,Star Trek VI: The Undiscovered Country +,fresh,0102975,Entertainment Weekly,,1991-12-03,12300,Star Trek VI: The Undiscovered Country +Variety Staff,rotten,0098382,Variety,William Shatner's inauspicious feature directing debut is a double letdown.,2008-05-19,12182,Star Trek V: The Final Frontier +Jonathan Rosenbaum,rotten,0098382,Chicago Reader,"[The] special effects, despite the hefty budget, look strictly bargain basement.",2008-05-19,12182,Star Trek V: The Final Frontier +,rotten,0098382,Time Out,"The plot, about a quest for the Ultimate Answer, resembles something Douglas Adams would have thrown in the bin.",2006-02-09,12182,Star Trek V: The Final Frontier +Caryn James,rotten,0098382,New York Times,Captain Kirk and his crew go where too many film makers have too often gone before.,2003-05-20,12182,Star Trek V: The Final Frontier +Peter Travers,rotten,0098382,Rolling Stone,"Bloated, bombastic and maddeningly pretentious.",2001-05-12,12182,Star Trek V: The Final Frontier +James Berardinelli,rotten,0098382,ReelViews,"The whole point of the movie has something to do with the search for God and Eden, but the theme is presented in the most mundane fashion imaginable.",2000-01-01,12182,Star Trek V: The Final Frontier +Rita Kempley,rotten,0098382,Washington Post,A snoozola of astronomic proportions.,2000-01-01,12182,Star Trek V: The Final Frontier +Roger Ebert,rotten,0098382,Chicago Sun-Times,"Of all of the Star Trek movies, this is the worst.",2000-01-01,12182,Star Trek V: The Final Frontier +Richard Schickel,fresh,0084726,TIME Magazine,"There is something comfortable, even old-shoeish, about the new film, a sense, appropriate to its theme of coming to terms with middle age, that all aboard are pleasurably rediscovering their best selves.",2009-05-03,12084,Star Trek: The Wrath of Khan +Variety Staff,fresh,0084726,Variety,"Star Trek II is a very satisfying space adventure, closer in spirit and format to the popular TV series than to its big-budget predecessor.",2008-05-19,12084,Star Trek: The Wrath of Khan +Dave Kehr,rotten,0084726,Chicago Reader,"If only director Nicholas Meyer had grasped the implications of his tale more fully and enthusiastically, this might have become a classic piece of cornball SF poetry, but as it stands the tepid acting and one-set claustrophobia take a heavy toll.",2007-06-05,12084,Star Trek: The Wrath of Khan +Derek Adams,rotten,0084726,Time Out,"The net effect, between embarrassed guffaws, is incredulity: a movie at once post-TV and pre-DW Griffith.",2006-06-24,12084,Star Trek: The Wrath of Khan +Roger Ebert,fresh,0084726,Chicago Sun-Times,"Although I liked the special effects in the first movie, they were probably not the point; fans of the TV series wanted to see their favorite characters again, and Trek II understood that desire and acted on it.",2004-10-23,12084,Star Trek: The Wrath of Khan +Janet Maslin,fresh,0084726,New York Times,"Here comes a sequel that's worth its salt. The second Star Trek movie is swift, droll and adventurous, not to mention appealingly gadget-happy. It's everything the first one should have been and wasn't.",2003-05-20,12084,Star Trek: The Wrath of Khan +James Berardinelli,fresh,0084726,ReelViews,"Star Trek II added hefty doses of action, adventure, and suspense, injecting life into a concept that had been left moribund by its first big-screen feature.",2000-01-01,12084,Star Trek: The Wrath of Khan +Richard Schickel,fresh,0088170,TIME Magazine,"These are classic directorial occasions, and Nimoy rises to them with fervor, in effect beaming his film up onto a higher pictorial plane than either of its predecessors.",2009-05-03,12642,Star Trek III: The Search for Spock +Variety Staff,fresh,0088170,Variety,An emotionally satisfying science fiction adventure.,2009-03-26,12642,Star Trek III: The Search for Spock +Dave Kehr,rotten,0088170,Chicago Reader,"This 1984 film's few and unimpressive special effects evidently qualify it as science fiction, but the genre it really belongs to is the male weepie: there hasn't been a gooier buddy romance on the screen since Joe Buck took Ratso Rizzo to Miami.",2007-06-04,12642,Star Trek III: The Search for Spock +Derek Adams,fresh,0088170,Time Out,"Decent SFX, but a little more action wouldn't have gone amiss.",2006-02-09,12642,Star Trek III: The Search for Spock +Roger Ebert,fresh,0088170,Chicago Sun-Times,"This is a good but not great Star Trek movie, a sort of compromise between the first two.",2004-10-23,12642,Star Trek III: The Search for Spock +Janet Maslin,fresh,0088170,New York Times,"The humanity of the Star Trek series, unexpected as it is in a sci-fi setting, remains the series' best feature.",2003-05-20,12642,Star Trek III: The Search for Spock +James Berardinelli,fresh,0088170,ReelViews,"'Star Trek III' takes nearly forty minutes, much of which is filled with silly, mystical exposition about the current state of Spock's soul, before things start moving. The last twenty minutes are equally slow, but the stuff in between is quite enjoyable.",2000-01-01,12642,Star Trek III: The Search for Spock +Variety Staff,rotten,0092007,Variety,"Latest excursion is warmer, wittier, more socially relevant and truer to its TV origins than prior odysseys.",2008-05-19,12428,Star Trek IV: The Voyage Home +Pat Graham,rotten,0092007,Chicago Reader,I suspect the unconverted will want to be beamed up pronto.,2007-06-06,12428,Star Trek IV: The Voyage Home +Stephen Garrett,fresh,0092007,Time Out,"Kirk & Co return to present-day San Francisco to save the whales in the most enjoyable film of the series so far, also returning to the simplistic morality-play format that gave the original TV series its strength.",2006-01-26,12428,Star Trek IV: The Voyage Home +Janet Maslin,fresh,0092007,New York Times,"Mr. Nimoy directed this Star Trek installment, and indeed he should probably direct all of them. His technical expertise leaves much to be desired. But his sincerity is unmistakable, and it counts for a lot.",2003-05-20,12428,Star Trek IV: The Voyage Home +Roger Ebert,fresh,0092007,Chicago Sun-Times,"This is easily the most absurd of the Star Trek stories -- and yet, oddly enough, it is also the best, the funniest and the most enjoyable in simple human terms.",2000-01-01,12428,Star Trek IV: The Voyage Home +James Berardinelli,fresh,0092007,ReelViews,"An effective and enjoyable sample of entertainment -- not good science fiction, but a lightweight piece of comic fantasy utilizing characters so familiar that they feel like old friends.",2000-01-01,12428,Star Trek IV: The Voyage Home +Rita Kempley,fresh,0092007,Washington Post,"A happy, heartfelt chapter that reunites the original cast with the original TV format, shying away from the cold and epic scale of the preceding movie adventures.",2000-01-01,12428,Star Trek IV: The Voyage Home +Paul Attanasio,fresh,0092007,Washington Post,Immensely pleasurable.,2000-01-01,12428,Star Trek IV: The Voyage Home +Desmond Ryan,fresh,0103776,Philadelphia Inquirer,"As Beetlejuice and Edward Scissorhands reminded us, Burton always has been more absorbed by what his audience sees than by what his movies say.",2013-04-10,10598,Batman Returns +Jay Carr,fresh,0103776,Boston Globe,Batman Returns is the rarest of Hollywood beasts -- a sequel that's better than the original,2013-04-10,10598,Batman Returns +Richard Corliss,fresh,0103776,TIME Magazine,"Burton, once an animator at Disney, understands that to go deeper, you must fly higher, to liberation from plot into poetry. Here he's done it. This Batman soars.",2013-04-10,10598,Batman Returns +Terrence Rafferty,fresh,0103776,New Yorker,"As in the first movie, Burton gives the material a luxurious masked-ball quality and a sly contemporary wit without violating the myth's low, cheesy comic-book origins.",2013-04-10,10598,Batman Returns +Jay Boyar,fresh,0103776,Orlando Sentinel,Burton and company return to the prickly humor that gave such a jolt to the earlier film -- frequently finding it in unexpected places.,2013-04-10,10598,Batman Returns +Gene Siskel,fresh,0103776,Chicago Tribune,This time the richness of the Batman movie is not in its production design but rather in Burton's and screenwriter Daniel Waters' Freudian view of adult human behavior.,2013-01-16,10598,Batman Returns +David Ansen,fresh,0103776,Newsweek,"Something about the filmmaker's eccentric, surreal, childlike images seems to strike a deep chord in the mass psyche: he makes nightmares that taste like candy.",2010-07-07,10598,Batman Returns +Owen Gleiberman,fresh,0103776,Entertainment Weekly,Exhaustingly inventive.,2010-07-06,10598,Batman Returns +Jonathan Rosenbaum,rotten,0103776,Chicago Reader,"More of the same, but nowhere near as good (funny, disturbing, obsessive) as the uneven original, revealing arrested development on every level.",2007-04-16,10598,Batman Returns +Todd McCarthy,fresh,0103776,Variety,"Where Burton's ideas end and those of his collaborators begin is impossible to know, but result is a seamless, utterly consistent universe full of nasty notions about societal deterioration, greed and other base impulses.",2007-04-16,10598,Batman Returns +Geoff Andrew,rotten,0103776,Time Out,"Bigger, louder, more relentlessly action-packed than its predecessor, Batman Returns batters its audience into submission.",2006-01-26,10598,Batman Returns +Janet Maslin,fresh,0103776,New York Times,"Because the film's predominant motif is that of wounded individuals re-inventing themselves as wily villains, its most memorable episodes are early ones explaining each main character's transformation.",2003-05-20,10598,Batman Returns +Peter Travers,fresh,0103776,Rolling Stone,Burton uses the summer's most explosively entertaining movie to lead us back into the liberating darkness of dreams.,2001-05-12,10598,Batman Returns +Rita Kempley,rotten,0103776,Washington Post,"Like a hyperactive 11-year-old, the director seems both uncomfortable with adult emotions and unable to focus on the overall portrait.",2000-01-01,10598,Batman Returns +Desson Thomson,fresh,0103776,Washington Post,"Comes closer than ever to Bob Kane's dark, original strip, which began in 1939.",2000-01-01,10598,Batman Returns +Roger Ebert,rotten,0103776,Chicago Sun-Times,"Odd and sad, but not exhilarating.",2000-01-01,10598,Batman Returns +,none,0096487,Variety,,2009-03-26,14912,Young Guns +Jonathan Rosenbaum,rotten,0096487,Chicago Reader,"Christopher Cain directed this western from a script by John Fusco, and on the whole seems much more comfortable with the scroungy and scatological dialogue than he does with the action sequences.",2008-02-04,14912,Young Guns +,fresh,0096487,Time Out,"Little more than a flawed romp, but energetic and enjoyable, with sterling performances from Sutherland and Estevez.",2006-06-24,14912,Young Guns +Janet Maslin,fresh,0096487,New York Times,"Young Guns is best watched in the playful, none-too-serious spirit in which it was made.",2003-05-20,14912,Young Guns +Hal Hinson,rotten,0096487,Washington Post,They behave as if our adoration were their birthright.,2000-01-01,14912,Young Guns +Owen Gleiberman,rotten,0100994,Entertainment Weekly,,2011-09-07,10544,Young Guns II +,none,0100994,Variety,,2009-03-26,10544,Young Guns II +Geoff Andrew,none,0100994,Time Out,,2006-02-09,10544,Young Guns II +Janet Maslin,none,0100994,New York Times,,2003-05-20,10544,Young Guns II +Peter Travers,none,0100994,Rolling Stone,,2001-05-12,10544,Young Guns II +Roger Ebert,rotten,0100994,Chicago Sun-Times,,2000-01-01,10544,Young Guns II +Rita Kempley,none,0100994,Washington Post,,2000-01-01,10544,Young Guns II +,rotten,0100994,Entertainment Weekly,,1990-08-01,10544,Young Guns II +John L. Wasserman,rotten,0077631,San Francisco Chronicle,"The screenplay is a prepubescent shambles, the direction is by acne out of disposable douches, the dubbing and looping of the songs is painfully obvious, the characterizations are generally repulsive and the whole thing is utterly without style.",2013-03-15,10080,Grease +James Berardinelli,fresh,0077631,ReelViews,"Travolta is a riot. Alternately swaggering to prove his ""coolness"" and re-affirming his ability on the dance floor, the actor gives the kind of performance that's perfect for the role.",2009-04-30,10080,Grease +Michael Booth,fresh,0077631,Denver Post,Grease holds up for new generations because it captures the enthusiasm of youth and the vibrancy of California's sunshine-and-cars culture.,2008-12-30,10080,Grease +Variety Staff,fresh,0077631,Variety,"Grease has got it, from the outstanding animated titles of John Wilson all the way through the rousing finale as John Travolta and Olivia Newton-John ride off into teenage happiness.",2007-07-18,10080,Grease +Dave Kehr,rotten,0077631,Chicago Reader,"Limp, cheaply made.",2007-07-18,10080,Grease +Julie Hinds,fresh,0077631,San Jose Mercury News,"An unembarrassed movie musical, something my generation experienced only in Sunday-afternoon movies on TV.",2006-12-30,10080,Grease +Derek Adams,rotten,0077631,Time Out,Its flashy opportunism (nostalgia pitched squarely at an audience too young to even recall the era) quickly becomes very irritating.,2006-02-09,10080,Grease +Vincent Canby,fresh,0077631,New York Times,"Its sensibility is not tied to the past but to a free-wheeling, well informed, high-spirited present.",2005-05-09,10080,Grease +Joe Baltake,fresh,0077631,Sacramento Bee,Grease is a great 'fun movie'.,2000-01-01,10080,Grease +Roger Ebert,fresh,0077631,Chicago Sun-Times,"Just an average musical, pleasant and upbeat and plastic.",2000-01-01,10080,Grease +Edward Guthmann,fresh,0077631,San Francisco Chronicle,"The friskiness of the performers, the choreography by Patricia Birch and most of all Travolta's phenomenal charm give it its value.",2000-01-01,10080,Grease +Jay Carr,fresh,0077631,Boston Globe,Grease seems kickier now than it did 20 years ago.,2000-01-01,10080,Grease +,rotten,0077631,Entertainment Weekly,,1978-06-01,10080,Grease +,none,0100114,Variety,,2009-02-05,13815,Marked for Death +Derek Adams,none,0100114,Time Out,,2006-02-09,13815,Marked for Death +Janet Maslin,none,0100114,New York Times,,2003-05-20,13815,Marked for Death +Richard Harrington,none,0100114,Washington Post,,2000-01-01,13815,Marked for Death +Geoff Andrew,none,0115471,Time Out,,2007-08-16,246248957,Adrenalin: Fear the Rush +Stephen Holden,none,0115471,New York Times,,2003-05-20,246248957,Adrenalin: Fear the Rush +Kevin Thomas,none,0115471,Los Angeles Times,,2001-02-14,246248957,Adrenalin: Fear the Rush +James Berardinelli,rotten,0115471,ReelViews,,2000-01-01,246248957,Adrenalin: Fear the Rush +Lisa Nesselson,none,0117773,Variety,,2009-03-27,16296,The Substance of Fire +Stephen Holden,none,0117773,New York Times,,2004-08-30,16296,The Substance of Fire +,rotten,0117773,Globe and Mail,,2002-04-12,16296,The Substance of Fire +Lloyd Rose,none,0117773,Washington Post,,2002-01-22,16296,The Substance of Fire +Roger Ebert,fresh,0117773,Chicago Sun-Times,,2000-01-01,16296,The Substance of Fire +James Berardinelli,rotten,0117773,ReelViews,,2000-01-01,16296,The Substance of Fire +Joe Baltake,none,0117773,Sacramento Bee,,2000-01-01,16296,The Substance of Fire +Edward Guthmann,none,0117773,San Francisco Chronicle,,2000-01-01,16296,The Substance of Fire +,none,0117773,Houston Chronicle,,2000-01-01,16296,The Substance of Fire +Owen Gleiberman,fresh,0105690,Entertainment Weekly,,2011-09-07,13929,Under Siege +Emanuel Levy,none,0105690,Variety,,2009-03-26,13929,Under Siege +Geoff Andrew,none,0105690,Time Out,,2006-02-09,13929,Under Siege +Vincent Canby,none,0105690,New York Times,,2003-05-20,13929,Under Siege +,none,0105690,Los Angeles Times,,2002-11-15,13929,Under Siege +Richard Harrington,none,0105690,Washington Post,,2000-01-01,13929,Under Siege +James Berardinelli,rotten,0105690,ReelViews,,2000-01-01,13929,Under Siege +Roger Ebert,fresh,0105690,Chicago Sun-Times,,2000-01-01,13929,Under Siege +,fresh,0105690,Entertainment Weekly,,1992-10-09,13929,Under Siege +,none,0052287,Variety,,2009-03-26,770670179,Terror in a Texas Town +Geoff Andrew,none,0052287,Time Out,,2006-06-24,770670179,Terror in a Texas Town +Stephen Holden,none,0052287,New York Times,,2005-01-15,770670179,Terror in a Texas Town +Dave Kehr,none,0052287,Chicago Reader,,2000-01-01,770670179,Terror in a Texas Town +Pauline Kael,fresh,0073195,New Yorker,"It may be the most cheerfully perverse scare movie ever made. Even while you're convulsed with laughter you're still apprehensive, because the editing rhythms are very tricky, and the shock images loom up huge, right on top of you.",2013-07-29,10288,Jaws +Judith Crist,fresh,0073195,New York Magazine,"The result is a fast-paced, straight-line thriller that moves without pause toward the climactic contest at sea between three men and a 25-foot, 3-ton great while killer shark.",2013-07-29,10288,Jaws +Charles Champlin,rotten,0073195,Los Angeles Times,"It is a coarse-grained and exploitive work which depends on excess for its impact. Ashore it is a bore, awkwardly staged and lumpily written.",2013-07-29,10288,Jaws +Gene Siskel,fresh,0073195,Chicago Tribune,"What this movie is about, and where it succeeds best, is the primordial level of fear.",2013-07-29,10288,Jaws +J. Hoberman,fresh,0073195,Village Voice,A near Hitchcockian exercise in transference of guilt and making the audience pay for its illicit pleasures.,2013-07-29,10288,Jaws +David Denby,fresh,0073195,New Yorker,"Spielberg may be the man who created the new Hollywood, but in his first megahit he summed up what was best in the old -- the humor, the perversity, and the storytelling integrity of Alfred Hitchcock.",2013-07-29,10288,Jaws +Vincent Canby,fresh,0073195,New York Times,"Mr. Spielberg has so effectively spaced out the shocks that by the time we reach the spectacular final confrontation between the three men and the great white shark, we totally accept the makebelieve on its own foolishly entertaining terms.",2013-07-29,10288,Jaws +,fresh,0073195,TIME Magazine,"Spielberg works self-effacingly, with subtly correct camera placement and meticulous editing. He twists our guts with false alarms, giving us the real thing with heart-stopping suddenness.",2008-10-16,10288,Jaws +Dave Kehr,fresh,0073195,Chicago Reader,Steven Spielberg's mechanical thriller is guaranteed to make you scream on schedule.,2007-06-27,10288,Jaws +A.D. Murphy,fresh,0073195,Variety,The fast-moving 124-minute film engenders enormous suspense as the shark attacks a succession of people.,2007-06-27,10288,Jaws +Tom Huddleston,fresh,0073195,Time Out,It's no wonder a generation of holidaymakers still thinks twice before stepping into the water.,2006-06-24,10288,Jaws +James Berardinelli,fresh,0073195,ReelViews,"When it comes to this kind of thriller, no movie has been able to top Jaws, although many have tried. And, as the years go by, it seems increasingly unlikely that anything will come close.",2002-12-12,10288,Jaws +Roger Ebert,fresh,0073195,Chicago Sun-Times,One of the most effective thrillers ever made.,2000-01-01,10288,Jaws +Variety Staff,rotten,0085750,Variety,Surprisingly tepid.,2007-12-10,10714,Jaws 3-D +Derek Adams,rotten,0085750,Time Out,"Put in a baking tray, gas mark 7, and enjoy a turkey.",2006-06-24,10714,Jaws 3-D +Janet Maslin,rotten,0085750,New York Times,It's harmless but unsurprising.,2004-08-30,10714,Jaws 3-D +Lisa Schwarzbaum,rotten,0117119,Entertainment Weekly,,2011-09-07,11108,My Fellow Americans +,rotten,0117119,Entertainment Weekly,,2011-01-01,11108,My Fellow Americans +Stephen Holden,none,0117119,New York Times,,2003-05-20,11108,My Fellow Americans +Jeff Strickler,none,0117119,Minneapolis Star Tribune,,2002-11-06,11108,My Fellow Americans +,rotten,0117119,Globe and Mail,,2002-04-12,11108,My Fellow Americans +Todd McCarthy,fresh,0117119,Variety,Shameless laughs flow off the prefab assembly line with sufficient regularity to please audiences with a taste for comfortable tradition spiced with a bit of contempo naughtiness.,2001-02-14,11108,My Fellow Americans +Jack Mathews,rotten,0117119,Los Angeles Times,"A gang-written comedy that doesn't have a political bone in its body, or much evidence of a funny one, either.",2001-02-14,11108,My Fellow Americans +Roger Ebert,fresh,0117119,Chicago Sun-Times,"This is not a great comedy and will be soon forgotten, but it has nice moments.",2000-01-01,11108,My Fellow Americans +Tom Keogh,rotten,0117119,Film.com,"A very bad, uninspired comedy with slight leanings toward self-importance.",2000-01-01,11108,My Fellow Americans +Susan Stark,rotten,0117119,Detroit News,"The performers are first rate. Unfortunately, and all too often in movies these days, the script regularly lets them down.",2000-01-01,11108,My Fellow Americans +Richard Schickel,fresh,0117119,TIME Magazine,Puts a very bright capper on this dismal political year.,2000-01-01,11108,My Fellow Americans +Joe Baltake,rotten,0117119,Sacramento Bee,A shameless variation on the Grumpy Old Men films.,2000-01-01,11108,My Fellow Americans +James Berardinelli,rotten,0117119,ReelViews,"There are times when I laughed, but, as a whole, this particular buddy film really isn't worth the price of admission.",2000-01-01,11108,My Fellow Americans +Susan Wloszczyna,fresh,0117119,USA Today,These two vets of showbiz wars smartly play off their own iconic pasts.,2000-01-01,11108,My Fellow Americans +Mick LaSalle,rotten,0117119,San Francisco Chronicle,"A pleasing but mediocre film, with a great cast, a great story and a misguided script.",2000-01-01,11108,My Fellow Americans +Kevin McManus,rotten,0117119,Washington Post,"Segal loses his light-comedy touch after the first hour and makes an unfunny mess of the final, 'crackpot' chase sequence.",2000-01-01,11108,My Fellow Americans +Sean Means,rotten,0117119,Film.com,"Pardons for Lemmon and Garner, but none for the filmmakers.",2000-01-01,11108,My Fellow Americans +John Teegarden,rotten,0117119,Film.com,"Relies heavily on the kick of seeing famous, aging actors muttering vulgarities, doing mildly naughty things and making feeble attempts at political satire.",2000-01-01,11108,My Fellow Americans +Owen Gleiberman,fresh,0116996,Entertainment Weekly,,2011-09-07,10454,Mars Attacks! +Susan Stark,rotten,0116996,Detroit News,,2008-10-18,10454,Mars Attacks! +,none,0116996,Washington Post,,2008-10-18,10454,Mars Attacks! +Richard Schickel,fresh,0116996,TIME Magazine,"Perhaps they don't create quite enough deeply funny earthlings to go around, but a thoroughly meanspirited big-budget movie is always a treasurable rarity.",2008-08-25,10454,Mars Attacks! +Todd McCarthy,fresh,0116996,Variety,"oaded with wit, nifty little ideas and an extraordinary sense of design, but its allure is of quite a particular nature, much closer to that of Ed Wood than of Burton's earlier, and far more commercially successful, works.",2008-08-25,10454,Mars Attacks! +Derek Adams,rotten,0116996,Time Out,"Unfortunately, it's not very good.",2006-02-09,10454,Mars Attacks! +Janet Maslin,rotten,0116996,New York Times,"Just a parade of scattershot gags, more often weird than funny and most often just flat.",2003-05-20,10454,Mars Attacks! +Desson Thomson,rotten,0116996,Washington Post,Only moderately amusing.,2002-10-29,10454,Mars Attacks! +Peter Stack,rotten,0116996,San Francisco Chronicle,Hilarity never seemed so tedious.,2002-06-18,10454,Mars Attacks! +Rick Groen,fresh,0116996,Globe and Mail,"This may not be a Christmas movie, but it sure captures the elusive spirit of the season, and the simple pleasure is contagious.",2002-04-12,10454,Mars Attacks! +Kenneth Turan,rotten,0116996,Los Angeles Times,Not as much fun as it should be.,2001-02-14,10454,Mars Attacks! +Joe Baltake,fresh,0116996,Sacramento Bee,The film's penchant for repetition is faithful to its '50s source material and is the very quality that turns Mars Attacks! into such a marvelously unstable comedy.,2000-01-01,10454,Mars Attacks! +Roger Ebert,rotten,0116996,Chicago Sun-Times,"First he made Ed Wood, a tribute to the man fondly recalled as the worst movie director of all time. Now Tim Burton seems to have made a tribute to Wood's work.",2000-01-01,10454,Mars Attacks! +James Berardinelli,rotten,0116996,ReelViews,A stillborn affair that could have been -- and should have been -- a whole lot hipper and funnier.,2000-01-01,10454,Mars Attacks! +Jonathan Rosenbaum,fresh,0116996,Chicago Reader,"As light entertainment, Mars Attacks! gave me more pleasure than most other recent movies I've seen.",2000-01-01,10454,Mars Attacks! +Rita Kempley,rotten,0116996,Washington Post,Sadly empty exercise.,2000-01-01,10454,Mars Attacks! +Scott Rosenberg,rotten,0116996,Salon.com,"A throwaway piece of pop ephemera, like a '90s Casino Royale, momentarily arresting and soon forgotten.",2000-01-01,10454,Mars Attacks! +,fresh,0116996,Entertainment Weekly,,1996-12-13,10454,Mars Attacks! +Owen Gleiberman,fresh,0115906,Entertainment Weekly,,2011-09-07,15202,Citizen Ruth +Todd McCarthy,none,0115906,Variety,,2009-03-27,15202,Citizen Ruth +David Ansen,none,0115906,Newsweek,,2008-03-31,15202,Citizen Ruth +Janet Maslin,none,0115906,New York Times,,2004-08-30,15202,Citizen Ruth +Jeff Strickler,none,0115906,Minneapolis Star Tribune,,2002-11-06,15202,Citizen Ruth +Mick LaSalle,none,0115906,San Francisco Chronicle,,2002-06-18,15202,Citizen Ruth +,rotten,0115906,Globe and Mail,,2002-04-12,15202,Citizen Ruth +Kevin Thomas,none,0115906,Los Angeles Times,,2001-02-14,15202,Citizen Ruth +Roger Ebert,fresh,0115906,Chicago Sun-Times,,2000-01-01,15202,Citizen Ruth +Joe Baltake,none,0115906,Sacramento Bee,,2000-01-01,15202,Citizen Ruth +Jonathan Rosenbaum,rotten,0115906,Chicago Reader,,2000-01-01,15202,Citizen Ruth +,none,0115906,Houston Chronicle,,2000-01-01,15202,Citizen Ruth +Mike Clark,fresh,0115906,USA Today,"It's probably too schematic to reward more than a single viewing, but as a provocative one-time surprise it may become a specialized sleeper.",2000-01-01,15202,Citizen Ruth +James Berardinelli,fresh,0115906,ReelViews,,2000-01-01,15202,Citizen Ruth +,none,0115906,Washington Post,,2000-01-01,15202,Citizen Ruth +Nell Bernstein,none,0115906,Salon.com,,2000-01-01,15202,Citizen Ruth +Owen Gleiberman,fresh,0116695,Entertainment Weekly,,2011-09-07,13109,Jerry Maguire +Todd McCarthy,fresh,0116695,Variety,"Smartly written and boasting a sensational cast, Cameron Crowe's shrewdly observed third feature also gives Tom Cruise one of his very best roles...",2008-07-31,13109,Jerry Maguire +Richard Schickel,fresh,0116695,TIME Magazine,"There is a recognizable ordinariness about the way these people stumble in and out of trouble, in and out of grace -- an ambiguous note, at once tart and sweet, knowing and innocent, in their relationships.",2008-07-31,13109,Jerry Maguire +Rita Kempley,fresh,0116695,Washington Post,"Cruise seems to have grown as much as Jerry, for he brings gentleness, warmth and lightheartedness to this role, qualities that we haven't seen since he played air guitar in his underpants in Risky Business 13 years ago.",2007-03-26,13109,Jerry Maguire +Geoff Andrew,rotten,0116695,Time Out,"Lauded as a witty moral fable with a revelatory performance from its star, this romantic comedy is in fact meretricious, manipulative and reactionary.",2006-02-09,13109,Jerry Maguire +Janet Maslin,fresh,0116695,New York Times,"Disarming acting, colorful writing and true generosity of spirit keep it right on track.",2003-05-20,13109,Jerry Maguire +Rick Groen,rotten,0116695,Globe and Mail,"There's much to admire in Jerry Maguire, except Jerry Maguire.",2002-04-12,13109,Jerry Maguire +Kenneth Turan,fresh,0116695,Los Angeles Times,"This is a wholly unexpected film, as heady and surprising in its humor as in its emotional texture.",2001-02-14,13109,Jerry Maguire +Joe Baltake,fresh,0116695,Sacramento Bee,"Slick, stylish and committed.",2000-01-01,13109,Jerry Maguire +Tom Keogh,fresh,0116695,Film.com,"Jerry Maguire is a lovely film, and an extremely fun film full of moment-to-moment observation.",2000-01-01,13109,Jerry Maguire +Robert Horton,fresh,0116695,Film.com,Cruise has never been this open or this funny.,2000-01-01,13109,Jerry Maguire +James Berardinelli,fresh,0116695,ReelViews,This is the kind of movie that reminds me why I started reviewing in the first place.,2000-01-01,13109,Jerry Maguire +Susan Stark,fresh,0116695,Detroit News,"You may come away from Jerry Maguire feeling a little dizzy, but once the film settles into afterthought, it provides plenty to think about.",2000-01-01,13109,Jerry Maguire +Roger Ebert,fresh,0116695,Chicago Sun-Times,There are a couple of moments in Jerry Maguire when you want to hug yourself with delight.,2000-01-01,13109,Jerry Maguire +Mike Clark,fresh,0116695,USA Today,Cameron Crowe's overstuffed but exuberantly humane Jerry Maguire is a Tom Cruise vehicle that gives equal time to brilliantly cast co-stars in elaborately conceived roles.,2000-01-01,13109,Jerry Maguire +Jonathan Rosenbaum,rotten,0116695,Chicago Reader,"Cameron Crowe, Tom Cruise, and Cuba Gooding Jr. are salesmen, and we're consumers, buying emotional truth. That's a brave message for a commercial film to have. Too bad it's unintentional.",2000-01-01,13109,Jerry Maguire +Sean Means,fresh,0116695,Film.com,"Zellweger's sweetly intense performance is a star-making one, while Gooding shines in his fast-talking charm.",2000-01-01,13109,Jerry Maguire +John Hartl,fresh,0116695,Film.com,"Gooding does his finest work since Boyz N the Hood, positively glowing with this character's mixture of engaging brassiness and (occasionally misdirected) energy.",2000-01-01,13109,Jerry Maguire +Peter Stack,fresh,0116695,San Francisco Chronicle,Jerry Maguire is a savvy depiction of a punched-up egomaniac being mauled by the tender hands of love.,2000-01-01,13109,Jerry Maguire +Desson Thomson,fresh,0116695,Washington Post,"Cruise is at the top of his form, and Gooding makes a brilliant opponent.",2000-01-01,13109,Jerry Maguire +Pauline Kael,fresh,0093822,New Yorker,"Raising Arizona is no big deal, but it has a rambunctious charm.",2013-01-14,10205,Raising Arizona +Richard Corliss,fresh,0093822,TIME Magazine,"To their old fascination with Sunbelt pathology, to their side-winding Steadicam and pristine command of screen space, the Coens have added a robust humor, a plot that keeps outwitting expectations and a...dollop of sympathy for their forlorn kidnapers.",2009-03-13,10205,Raising Arizona +Pat Graham,fresh,0093822,Chicago Reader,"The cartoon vision of southwestern tackiness doesn't cut very deep, but the mise-en-scene is packed with clever clutter.",2007-11-06,10205,Raising Arizona +Variety Staff,rotten,0093822,Variety,"While film is filled with many splendid touches and plenty of yocks, it often doesn't hold together as a coherent story.",2007-11-06,10205,Raising Arizona +Geoff Andrew,fresh,0093822,Time Out,"Starting from a point of delirious excess, the film leaps into dark and virtually uncharted territory to soar like a comet.",2006-06-24,10205,Raising Arizona +Vincent Canby,rotten,0093822,New York Times,"Like Blood Simple, it's full of technical expertise but has no life of its own.",2003-05-20,10205,Raising Arizona +Rita Kempley,fresh,0093822,Washington Post,"A wacky, happy, daring, darkly comic tale of parenting outside the law.",2000-01-01,10205,Raising Arizona +Roger Ebert,rotten,0093822,Chicago Sun-Times,What we have here is a film shot down by its own forced and mannered style.,2000-01-01,10205,Raising Arizona +,none,0094155,Variety,,2009-03-26,13409,Tin Men +Geoff Andrew,none,0094155,Time Out,,2006-02-09,13409,Tin Men +Janet Maslin,none,0094155,New York Times,,2003-05-20,13409,Tin Men +Rita Kempley,none,0094155,Washington Post,,2000-01-01,13409,Tin Men +Richard Harrington,none,0094155,Washington Post,,2000-01-01,13409,Tin Men +Roger Ebert,fresh,0094155,Chicago Sun-Times,,2000-01-01,13409,Tin Men +Owen Gleiberman,fresh,0105435,Entertainment Weekly,,2011-09-07,12740,Sneakers +Todd McCarthy,none,0105435,Variety,,2009-03-26,12740,Sneakers +David Ansen,fresh,0105435,Newsweek,Makes up for its gaps in logic with its breezy tone and its technological razzledazzle.,2008-03-31,12740,Sneakers +Derek Adams,fresh,0105435,Time Out,"Right up to an ending designed to crack the sternest critical poker face, this is gourmet popcorn of the highest order.",2006-06-24,12740,Sneakers +Vincent Canby,rotten,0105435,New York Times,The performances are generally quite bad.,2003-05-20,12740,Sneakers +Peter Travers,fresh,0105435,Rolling Stone,"Discounting his god-awful American accent, Kingsley is in fine venomous form.",2001-05-12,12740,Sneakers +Rita Kempley,fresh,0105435,Washington Post,"It's a Twinkie for techies, an enormously entertaining time-waster.",2000-01-01,12740,Sneakers +Roger Ebert,rotten,0105435,Chicago Sun-Times,"It's a sometimes entertaining movie, but thin.",2000-01-01,12740,Sneakers +Desson Thomson,fresh,0105435,Washington Post,"If you think of Sneakers as a slick, updated Mission: Impossible, it's a lot of fun.",2000-01-01,12740,Sneakers +,fresh,0105435,Entertainment Weekly,,1992-09-09,12740,Sneakers +Godfrey Cheshire,none,0115633,Variety,,2009-03-26,14211,Bastard Out of Carolina +Owen Gleiberman,rotten,0116621,Entertainment Weekly,,2011-09-07,11729,In Love and War +Geoff Andrew,none,0116621,Time Out,,2006-06-24,11729,In Love and War +Stephen Holden,none,0116621,New York Times,,2003-05-20,11729,In Love and War +Jeff Strickler,none,0116621,Minneapolis Star Tribune,,2002-11-06,11729,In Love and War +Edward Guthmann,rotten,0116621,San Francisco Chronicle,,2002-06-18,11729,In Love and War +,none,0116621,Los Angeles Times,,2001-02-14,11729,In Love and War +Susan Stark,rotten,0116621,Detroit News,,2000-01-01,11729,In Love and War +Roger Ebert,rotten,0116621,Chicago Sun-Times,,2000-01-01,11729,In Love and War +,none,0116621,Houston Chronicle,,2000-01-01,11729,In Love and War +Joe Baltake,none,0116621,Sacramento Bee,,2000-01-01,11729,In Love and War +James Berardinelli,rotten,0116621,ReelViews,,2000-01-01,11729,In Love and War +Mike Clark,rotten,0116621,USA Today,"In Love and War is at its best photographing stationary objects, such as architecture, trees and bedridden soldiers -- not exactly what one hopes for from a movie portraying such a vital force as Ernest Hemingway.",2000-01-01,11729,In Love and War +,none,0116621,Washington Post,,2000-01-01,11729,In Love and War +,rotten,0116621,Entertainment Weekly,,1996-12-18,11729,In Love and War +Lisa Schwarzbaum,fresh,0116999,Entertainment Weekly,,2011-09-07,11423,Marvin's Room +Lisa Alspector,rotten,0116999,Chicago Reader,The performances are overwhelmed by cinematography so gorgeous and distracting it makes the drama seem like just so much wheel spinning.,2010-02-08,11423,Marvin's Room +Eric Brace,rotten,0116999,Washington Post,"It's all plinky-plink pianos and mewing oboes, trying to jerk those tears a little too hard. No, a lot too hard. The music is awful. Stupendously bad.",2010-02-08,11423,Marvin's Room +Emanuel Levy,fresh,0116999,Variety,"Based on a play by Scott McPherson's who died of AIDS, it's impossible to watch the well-acted film (particularly Diane Keaton, who should get an Oscar nod) without thinking of its themees: the various approaches to love and the strength of family bonds",2006-12-26,11423,Marvin's Room +Wally Hammond,fresh,0116999,Time Out,Streep gives her most credible blue-collar performance to date; Keaton sidesteps saintliness to mix vulnerability and small heroics.,2006-06-24,11423,Marvin's Room +Janet Maslin,fresh,0116999,New York Times,Powerhouse casting and a heartbreaking history make the screen version of Marvin's Room more memorable than it otherwise would be.,2003-05-20,11423,Marvin's Room +Edward Guthmann,fresh,0116999,San Francisco Chronicle,"Any movie with Meryl Streep is an occasion, but when you add Diane Keaton, Robert De Niro, Leonardo DiCaprio, Hume Cronyn and Gwen Verdon, you've got an embarrassment of riches.",2002-06-18,11423,Marvin's Room +,fresh,0116999,Globe and Mail,,2002-04-12,11423,Marvin's Room +Kenneth Turan,rotten,0116999,Los Angeles Times,"There is a core of substance in Marvin's Room, and persuasive acting to back it up. Which makes it a special pity that the filmmakers didn't trust viewers to have the necessary intelligence to figure that out for themselves.",2001-02-14,11423,Marvin's Room +Desson Thomson,rotten,0116999,Washington Post,Marvin's Room seems to exist primarily to road-test every one of your emotions.,2000-01-01,11423,Marvin's Room +Susan Stark,fresh,0116999,Detroit News,,2000-01-01,11423,Marvin's Room +James Berardinelli,fresh,0116999,ReelViews,"What begins as an apparently simple tale of sibling interaction reveals a complex web of pain, guilt, and uncertainty.",2000-01-01,11423,Marvin's Room +Roger Ebert,fresh,0116999,Chicago Sun-Times,"Streep and Keaton, in their different styles, find ways to make Lee and Bessie into much more than the expression of their problems.",2000-01-01,11423,Marvin's Room +,fresh,0116999,USA Today,"Now and then, a scene will hit you in the gut, such as when Streep restyles Keaton's chemo wig. When sentiment is this honest, it's not hard to swallow.",2000-01-01,11423,Marvin's Room +,fresh,0116999,Entertainment Weekly,,1996-12-20,11423,Marvin's Room +Lisa Schwarzbaum,rotten,0116410,Entertainment Weekly,,2011-09-07,11181,Ghosts of Mississippi +,rotten,0116410,Entertainment Weekly,,2011-01-01,11181,Ghosts of Mississippi +Godfrey Cheshire,none,0116410,Variety,,2008-05-28,11181,Ghosts of Mississippi +,none,0116410,Time Out,,2006-06-24,11181,Ghosts of Mississippi +Peter Stack,fresh,0116410,San Francisco Chronicle,,2002-06-18,11181,Ghosts of Mississippi +,rotten,0116410,Globe and Mail,,2002-04-12,11181,Ghosts of Mississippi +Desson Thomson,none,0116410,Washington Post,,2002-01-22,11181,Ghosts of Mississippi +Kenneth Turan,none,0116410,Los Angeles Times,,2001-02-14,11181,Ghosts of Mississippi +Janet Maslin,none,0116410,New York Times,,2000-01-01,11181,Ghosts of Mississippi +Charles Taylor,none,0116410,Salon.com,,2000-01-01,11181,Ghosts of Mississippi +Jonathan Rosenbaum,fresh,0116410,Chicago Reader,,2000-01-01,11181,Ghosts of Mississippi +James Berardinelli,fresh,0116410,ReelViews,,2000-01-01,11181,Ghosts of Mississippi +Joe Baltake,none,0116410,Sacramento Bee,,2000-01-01,11181,Ghosts of Mississippi +Mike Clark,rotten,0116410,USA Today,Rob Reiner's self-congratulatory Ghosts of Mississippi portrays Medgar Evers' slaying from the viewpoint of a white guy and can't even do a capable job of that.,2000-01-01,11181,Ghosts of Mississippi +Roger Ebert,rotten,0116410,Chicago Sun-Times,,2000-01-01,11181,Ghosts of Mississippi +Susan Stark,rotten,0116410,Detroit News,,2000-01-01,11181,Ghosts of Mississippi +Owen Gleiberman,fresh,0119783,Entertainment Weekly,,2011-09-07,16851,Night Falls on Manhattan +,none,0119783,Time Out,,2006-01-26,16851,Night Falls on Manhattan +Jeff Strickler,none,0119783,Minneapolis Star Tribune,,2002-11-06,16851,Night Falls on Manhattan +,rotten,0119783,Globe and Mail,,2002-04-12,16851,Night Falls on Manhattan +Kevin Thomas,none,0119783,Los Angeles Times,,2001-02-14,16851,Night Falls on Manhattan +,none,0119783,Houston Chronicle,,2000-01-01,16851,Night Falls on Manhattan +Janet Maslin,none,0119783,New York Times,,2000-01-01,16851,Night Falls on Manhattan +Robin Dougherty,none,0119783,Salon.com,,2000-01-01,16851,Night Falls on Manhattan +Mike Clark,fresh,0119783,USA Today,Its maker's best since 1988's Running on Empty and maybe even '82's The Verdict.,2000-01-01,16851,Night Falls on Manhattan +Joe Baltake,none,0119783,Sacramento Bee,,2000-01-01,16851,Night Falls on Manhattan +Jonathan Rosenbaum,none,0119783,Chicago Reader,,2000-01-01,16851,Night Falls on Manhattan +James Berardinelli,fresh,0119783,ReelViews,,2000-01-01,16851,Night Falls on Manhattan +Roger Ebert,fresh,0119783,Chicago Sun-Times,,2000-01-01,16851,Night Falls on Manhattan +,none,0119783,Washington Post,,2000-01-01,16851,Night Falls on Manhattan +Stanley Kauffmann,none,0119783,The New Republic,,2000-01-01,16851,Night Falls on Manhattan +Peter Stack,none,0119783,San Francisco Chronicle,,2000-01-01,16851,Night Falls on Manhattan +Susan Stark,fresh,0119783,Detroit News,,2000-01-01,16851,Night Falls on Manhattan +Bruce Diones,fresh,0115641,New Yorker,Its idiocy is irresistible.,2013-05-03,10358,Beavis and Butt-Head Do America +Owen Gleiberman,fresh,0115641,Entertainment Weekly,,2011-09-07,10358,Beavis and Butt-Head Do America +Susan Stark,fresh,0115641,Detroit News,,2008-10-18,10358,Beavis and Butt-Head Do America +Joe Leydon,fresh,0115641,Variety,Faithful fans of the MTV series will no doubt be amused. But the few newcomers who pay the price of admission likely will wonder what all the fuss has been about.,2008-05-18,10358,Beavis and Butt-Head Do America +Charlotte O'Sullivan,fresh,0115641,Time Out,Nothing much about Mike Judge's creation has changed.,2006-01-26,10358,Beavis and Butt-Head Do America +Stephen Holden,fresh,0115641,New York Times,"They distill the agony of adolescence, the queasy feeling of being trapped in a body going through monstrous changes, at the same time that they purge it of its terror.",2003-05-20,10358,Beavis and Butt-Head Do America +Mick LaSalle,rotten,0115641,San Francisco Chronicle,It's as good as any animated feature about two teenage morons could ever hope to be.,2002-06-18,10358,Beavis and Butt-Head Do America +Desson Thomson,fresh,0115641,Washington Post,Takes the spirit of their late night TV show and flies with it.,2002-01-22,10358,Beavis and Butt-Head Do America +Kevin Thomas,fresh,0115641,Los Angeles Times,Successfully brings to the big screen those no-brainer nerds who have brought laughter to living rooms around the world for nearly four years.,2001-02-14,10358,Beavis and Butt-Head Do America +Roger Ebert,fresh,0115641,Chicago Sun-Times,Those who deplore Beavis and Butt-Head are confusing the messengers with the message.,2000-01-01,10358,Beavis and Butt-Head Do America +Bruce Westbrook,fresh,0115641,Houston Chronicle,"Judge's mirth translates surprisingly well to an 80-minute length, and he exploits the movies' greater scope without sacrificing the show's cheesy charm.",2000-01-01,10358,Beavis and Butt-Head Do America +Mike Clark,rotten,0115641,USA Today,"Even if the movie does engender a few more chuckles than expected, where's that redneck in a truck when we need one?",2000-01-01,10358,Beavis and Butt-Head Do America +Gary Kamiya,rotten,0115641,Salon.com,"Mostly, we get dumb formula, not quite ironic and self-mocking enough to be hip.",2000-01-01,10358,Beavis and Butt-Head Do America +James Berardinelli,rotten,0115641,ReelViews,"An old saying states that too much of anything isn't good, and this is a prime example.",2000-01-01,10358,Beavis and Butt-Head Do America +,fresh,0115641,Entertainment Weekly,,1996-12-20,10358,Beavis and Butt-Head Do America +Owen Gleiberman,fresh,0112769,Entertainment Weekly,,2011-09-07,21444,La cérémonie +Lisa Nesselson,none,0112769,Variety,,2008-10-09,21444,La cérémonie +,none,0112769,Time Out,,2006-02-09,21444,La cérémonie +Janet Maslin,none,0112769,New York Times,,2003-05-20,21444,La cérémonie +Desson Thomson,fresh,0112769,Washington Post,"As the movers and shakers of this peculiar saga, Bonnaire and Huppert are unnerving and fascinating to watch together.",2002-01-22,21444,La cérémonie +Kevin Thomas,fresh,0112769,Los Angeles Times,"Elegant, brisk and lethal in its assault on the obliviousness of the haute bourgeoise.",2001-02-14,21444,La cérémonie +James Berardinelli,fresh,0112769,ReelViews,"Dire, tense, unpredictable, and, ultimately, satisfying.",2000-01-01,21444,La cérémonie +John Hartl,fresh,0112769,Film.com,Chabrol's most accomplished and popular movie in decades.,2000-01-01,21444,La cérémonie +Robert Horton,fresh,0112769,Film.com,"Chabrol's metier has always been tracing the cracks in the old family china, and this movie presents a brittle set, indeed.",2000-01-01,21444,La cérémonie +Edward Guthmann,fresh,0112769,San Francisco Chronicle,"A tight, beautifully contained thriller that plunges four wonderful actors ... into dangerous territory.",2000-01-01,21444,La cérémonie +Jeff Millar,fresh,0112769,Houston Chronicle,"An unconventional thriller, its climax being the result of the meeting of two largely inert elements that become explosive only when they are mixed.",2000-01-01,21444,La cérémonie +Stanley Kauffmann,rotten,0112769,The New Republic,"Besides the unconvincing shift of psychic gears, the picture has no theme, no resonance, no point.",2000-01-01,21444,La cérémonie +Jonathan Rosenbaum,fresh,0112769,Chicago Reader,,2000-01-01,21444,La cérémonie +Roger Ebert,fresh,0112769,Chicago Sun-Times,"Watching the film, you think maybe you know where it's headed. Or maybe not. Not every ceremony ends in the way we anticipate.",2000-01-01,21444,La cérémonie +Mike Clark,fresh,0112769,USA Today,"The acting, as expected, is first rate, and it's unimaginable that any seasoned veteran of French cinema will let this movie get by.",2000-01-01,21444,La cérémonie +,fresh,0112769,Entertainment Weekly,,1995-08-30,21444,La cérémonie +Desmond Ryan,rotten,0117571,Philadelphia Inquirer,"By the time Scream arrives at its final twist, Craven has done too many contortions of his own to give the finale much shock value.",2013-10-06,17135,Scream +John Hartl,rotten,0117571,Seattle Times,"The picture is so full of cross-references, self-mockery and movies within movies (including a stalking that's recorded on video) that it can't help turning into a precious two-hour in-joke.",2013-10-06,17135,Scream +Dave Kehr,fresh,0117571,New York Daily News,Scream builds to a splattering finale that should leave genre fans highly satisfied. Here's one of the year's better thrillers.,2013-10-06,17135,Scream +John Petrakis,rotten,0117571,Chicago Tribune,"Scream may be a cut above the gore fests that line the dimly lit back wall at your video store, but it is a far cry from genre classics like Halloween or Craven's own Nightmare On Elm Street.",2013-10-06,17135,Scream +Leonard Klady,rotten,0117571,Variety,"The pic's chills are top-notch, but its underlying mockish tone won't please die-hard fans.",2007-09-21,17135,Scream +Lisa Alspector,rotten,0117571,Chicago Reader,"The assumption that there's something inherently clever about a slasher movie making reference to both its genre and the filmmaking process is a fundamental flaw of this tiresome, blood-filled comedy.",2007-09-21,17135,Scream +,fresh,0117571,Time Out,"At last, a horror movie to shout about!",2006-06-24,17135,Scream +Liam Lacey,fresh,0117571,Globe and Mail,Turns slasher flicks into slapstick.,2002-04-12,17135,Scream +Richard Harrington,fresh,0117571,Washington Post,The best fright fest of the '90s.,2002-01-22,17135,Scream +Kevin Thomas,fresh,0117571,Los Angeles Times,"A bravura, provocative sendup of horror pictures that's also scary and gruesome yet too swift-moving to lapse into morbidity.",2001-02-14,17135,Scream +Janet Maslin,rotten,0117571,New York Times,Not even horror fans who can answer all this film's knowing trivia questions may be fully comfortable with such an exploitative mix.,2000-01-01,17135,Scream +Bruce Westbrook,fresh,0117571,Houston Chronicle,"Whatever you do, don't close your mind to such an inventive concoction. One last time, despite all your better instincts, go ahead -- open that theater door.",2000-01-01,17135,Scream +Peter Stack,fresh,0117571,San Francisco Chronicle,The film plays lively games with the macabre.,2000-01-01,17135,Scream +Susan Stark,fresh,0117571,Detroit News,,2000-01-01,17135,Scream +Bill Stamets,fresh,0117571,Chicago Reader,"Craven has expressed a desire to get out of the horror business. Maybe that's why he's set out to make more than a horror movie. He's contributing to a long tradition of reflexive films, going back as far as the turn of the century.",2000-01-01,17135,Scream +Susan Wloszczyna,rotten,0117571,USA Today,"While Scream has its frights, it feels more like one of those solve-the -mystery jigsaw puzzles than a real movie.",2000-01-01,17135,Scream +Roger Ebert,fresh,0117571,Chicago Sun-Times,"I liked it. I liked the in-jokes and the self-aware characters. At the same time, I was aware of the incredible level of gore in this film.",2000-01-01,17135,Scream +James Berardinelli,fresh,0117571,ReelViews,Scream is a rarity: a horror movie spoof that succeeds almost as well at provoking scares as laughs.,2000-01-01,17135,Scream +Owen Gleiberman,fresh,0117571,Entertainment Weekly,"Poised on the knife edge between parody and homage, Wes Craven's Scream is a deft, funny, shrewdly unsettling tribute to such slasher-exploitation thrillers as Terror Train, New Year's Evil, and Craven's own A Nightmare on Elm Street.",1996-12-20,17135,Scream +Owen Gleiberman,fresh,0104691,Entertainment Weekly,,2011-09-07,14752,The Last of the Mohicans +Lisa Nesselson,none,0104691,Variety,,2008-08-08,14752,The Last of the Mohicans +Geoff Andrew,none,0104691,Time Out,,2006-06-24,14752,The Last of the Mohicans +Janet Maslin,none,0104691,New York Times,,2004-08-30,14752,The Last of the Mohicans +Peter Travers,fresh,0104691,Rolling Stone,...the action is richly detailed and thrillingly staged.,2001-05-12,14752,The Last of the Mohicans +Roger Ebert,fresh,0104691,Chicago Sun-Times,...not as authentic and uncompromised as it claims to be - more of a matinee fantasy than it wants to admit - but it is probably more entertaining as a result.,2000-01-01,14752,The Last of the Mohicans +Charles Taylor,fresh,0104691,Salon.com,He conceives of the story as if it were a gigantic piece of mood music.,2000-01-01,14752,The Last of the Mohicans +James Berardinelli,fresh,0104691,ReelViews,"...big, bold, and gloriously sweeping.",2000-01-01,14752,The Last of the Mohicans +Desson Thomson,fresh,0104691,Washington Post,"Mann wasn't thinking story, he was thinking scheme. Keep the eyes and ears dazzled, he reasons, and the substance will follow.",2000-01-01,14752,The Last of the Mohicans +Rita Kempley,fresh,0104691,Washington Post,"Painstakingly, breathtakingly re-created by director Michael Mann, this landscape makes room for heroes with principles greater than the circumference of their biceps.",2000-01-01,14752,The Last of the Mohicans +,fresh,0104691,Entertainment Weekly,,1992-09-25,14752,The Last of the Mohicans +Ben Kenigsberg,fresh,0465538,Time Out,,2011-11-18,770671488,Michael Clayton +Joshua Rothkopf,fresh,0465538,Time Out,,2011-11-17,770671488,Michael Clayton +Bob Mondello,fresh,0465538,NPR.org,[A] smoldering corporate thriller.,2008-10-18,770671488,Michael Clayton +Joshua Rothkopf,fresh,0465538,Time Out New York,"By now, George Clooney is so smooth, he could be a brand name like Gillette or Ex-Lax.",2008-01-18,770671488,Michael Clayton +Lisa Kennedy,fresh,0465538,Denver Post,"Confident in the story's power and the moviegoers' intelligence, Gilroy uses only one explosion to own our rapt attention.",2007-10-13,770671488,Michael Clayton +Colin Covert,fresh,0465538,Minneapolis Star Tribune,"A throwback to trim, intelligent moral thrillers like The Verdict and Absence of Malice.",2007-10-13,770671488,Michael Clayton +J. R. Jones,fresh,0465538,Chicago Reader,"This doesn't begin to deserve the Oscar nominations it's likely to get, but I had a good time with it nonetheless.",2007-10-11,770671488,Michael Clayton +Bill Goodykoontz,fresh,0465538,Arizona Republic,"Smart and exciting, Michael Clayton takes the audience on a ride whose pleasures almost sneak up on you and are all the more satisfying because of it.",2007-10-11,770671488,Michael Clayton +Roger Moore,fresh,0465538,Orlando Sentinel,"Stop printing the ballots. Don't waste money on those ""for your consideration"" Oscar ads. There is but one contender for best supporting actor this year, and it is Tom Wilkinson in Michael Clayton.",2007-10-11,770671488,Michael Clayton +Richard Schickel,fresh,0465538,TIME Magazine,Full of plausible characters who are capable of surprising - and surpassing - your expectations.,2007-10-09,770671488,Michael Clayton +Richard Roeper,fresh,0465538,Ebert & Roeper,One of my favorite movies of the year.,2007-10-08,770671488,Michael Clayton +Claudia Puig,fresh,0465538,USA Today,This is unequivocally a thriller for adults,2007-10-05,770671488,Michael Clayton +Geoff Pevere,fresh,0465538,Toronto Star,"While the plot is complex in the telling, it unfolds onscreen with propulsive fascination.",2007-10-05,770671488,Michael Clayton +Moira MacDonald,fresh,0465538,Seattle Times,This is Gilroy's first film as director; I can't wait to see what he's got next.,2007-10-05,770671488,Michael Clayton +Mick LaSalle,fresh,0465538,San Francisco Chronicle,The ultimate showcase for the defining male lead of our time.,2007-10-05,770671488,Michael Clayton +Stephen Whitty,fresh,0465538,Newark Star-Ledger,It's about issues of personal responsibility and moral duty.,2007-10-05,770671488,Michael Clayton +Lou Lumenick,fresh,0465538,New York Post,There are more than ample rewards for discerning adults: Some of the best dialogue in a recent movie and a gallery of unforgettable performances.,2007-10-05,770671488,Michael Clayton +Jack Mathews,fresh,0465538,New York Daily News,Every performance in this film is spot-on.,2007-10-05,770671488,Michael Clayton +Rene Rodriguez,fresh,0465538,Miami Herald,"The movie's plot may be familiar, but its hero is a unique and memorable creation.",2007-10-05,770671488,Michael Clayton +Chris Vognar,fresh,0465538,Dallas Morning News,"If Michael Clayton's particular mix of law and commerce gets a little murky, that murkiness also gives the film a shadowy aura.",2007-10-05,770671488,Michael Clayton +Lisa Schwarzbaum,rotten,0116240,Entertainment Weekly,,2011-09-07,11288,The Evening Star +Emanuel Levy,none,0116240,Variety,,2009-03-27,11288,The Evening Star +,none,0116240,Time Out,,2006-01-26,11288,The Evening Star +Janet Maslin,none,0116240,New York Times,,2003-05-20,11288,The Evening Star +Jeff Strickler,none,0116240,Minneapolis Star Tribune,,2002-11-06,11288,The Evening Star +Mick LaSalle,rotten,0116240,San Francisco Chronicle,,2002-06-18,11288,The Evening Star +Desson Thomson,none,0116240,Washington Post,,2002-01-22,11288,The Evening Star +,rotten,0116240,USA Today,"Harking back to wince-inducing sequels like The Sting II and Texasville, this DOA boo-boo needlessly expands upon Terms of Endearment.",2000-01-01,11288,The Evening Star +James Berardinelli,rotten,0116240,ReelViews,,2000-01-01,11288,The Evening Star +Roger Ebert,rotten,0116240,Chicago Sun-Times,,2000-01-01,11288,The Evening Star +Susan Stark,fresh,0116240,Detroit News,,2000-01-01,11288,The Evening Star +,rotten,0116240,Entertainment Weekly,,1996-06-01,11288,The Evening Star +Desson Thomson,rotten,0116477,Washington Post,There are many ... instances when you want to run screaming from Elsinore Castle.,2002-09-25,12690,Hamlet +Kevin Thomas,fresh,0116477,Los Angeles Times,"With his handsome and compelling Hamlet, Kenneth Branagh brings the Bard's greatest tragedy passionately alive on the screen.",2002-08-15,12690,Hamlet +Rick Groen,fresh,0116477,Globe and Mail,"This Hamlet may not be perfect, but it is perfectly engrossing.",2002-04-12,12690,Hamlet +Janet Maslin,fresh,0116477,New York Times,"As star and ringmaster, Branagh gets to the heart of Hamlet and goes to admirable lengths to take his audience there, too.",2000-01-01,12690,Hamlet +Lloyd Rose,rotten,0116477,Washington Post,The film equivalent of a lushly illustrated coffee-table book.,2000-01-01,12690,Hamlet +James Berardinelli,fresh,0116477,ReelViews,"I have seen dozens of versions of this play (either on screen or on stage), and none has ever held me in such a grip of awe.",2000-01-01,12690,Hamlet +Jeff Millar,fresh,0116477,Houston Chronicle,"By looking to the box office and the classroom with equal respect, [Branagh] has kept himself a friend of Shakespeare.",2000-01-01,12690,Hamlet +Susan Stark,fresh,0116477,Detroit News,"Kenneth Branagh directs and stars in a vibrant, full-text, full-hearted film from Shakespeare's most complex tragedy.",2000-01-01,12690,Hamlet +Stanley Kauffmann,fresh,0116477,The New Republic,Branagh confirms what was known from the opening shot of Henry V: he has fine cinematic skills.,2000-01-01,12690,Hamlet +Mike Clark,fresh,0116477,USA Today,"Glorious as it is, this unexpurgated workout is ultimately a movie of moments.",2000-01-01,12690,Hamlet +Joe Baltake,fresh,0116477,Sacramento Bee,Moviegoers who applauded the vigilante justice in such recent films as Joel Schumacher's A Time To Kill and Barry Levinson's Sleepers should be totally in sync with the action and have no trouble surmounting the verbiage.,2000-01-01,12690,Hamlet +Scott Rosenberg,rotten,0116477,Salon.com,Every little triumph seems to inspire in Branagh some accompanying act of bad taste or judgment.,2000-01-01,12690,Hamlet +Roger Ebert,fresh,0116477,Chicago Sun-Times,"Branagh's version moved me, entertained me and made me feel for the first time at home in that doomed royal court.",2000-01-01,12690,Hamlet +Mick LaSalle,fresh,0116477,San Francisco Chronicle,"A vigorous, four-hour adaptation that's 100 percent Shakespeare and 100 percent cinema.",2000-01-01,12690,Hamlet +,none,0117690,Variety,,2012-02-23,247550459,Some Mother's Son +Lisa Schwarzbaum,fresh,0117690,Entertainment Weekly,,2011-09-07,247550459,Some Mother's Son +Todd McCarthy,none,0117690,Variety,,2009-03-26,247550459,Some Mother's Son +Derek Adams,none,0117690,Time Out,,2006-06-24,247550459,Some Mother's Son +Stephen Holden,none,0117690,New York Times,,2003-05-20,247550459,Some Mother's Son +,rotten,0117690,Globe and Mail,,2002-04-12,247550459,Some Mother's Son +Jack Mathews,none,0117690,Los Angeles Times,,2001-02-14,247550459,Some Mother's Son +Susan Stark,rotten,0117690,Detroit News,,2000-01-01,247550459,Some Mother's Son +Roger Ebert,fresh,0117690,Chicago Sun-Times,,2000-01-01,247550459,Some Mother's Son +Stanley Kauffmann,none,0117690,The New Republic,,2000-01-01,247550459,Some Mother's Son +,none,0117690,Houston Chronicle,,2000-01-01,247550459,Some Mother's Son +James Berardinelli,fresh,0117690,ReelViews,,2000-01-01,247550459,Some Mother's Son +Edward Guthmann,none,0117690,San Francisco Chronicle,,2000-01-01,247550459,Some Mother's Son +Susan Wloszczyna,rotten,0117690,USA Today,"If Son were as strong in its storytelling as its characters are in their convictions, it would be more than well-acted political soap.",2000-01-01,247550459,Some Mother's Son +Joe Baltake,none,0117690,Sacramento Bee,,2000-01-01,247550459,Some Mother's Son +,fresh,0117690,Entertainment Weekly,,1996-12-27,247550459,Some Mother's Son +Owen Gleiberman,fresh,0118163,Entertainment Weekly,,2011-09-07,11012,The Whole Wide World +Todd McCarthy,none,0118163,Variety,,2009-03-26,11012,The Whole Wide World +,none,0118163,Time Out,,2006-01-26,11012,The Whole Wide World +Stephen Holden,none,0118163,New York Times,,2004-08-30,11012,The Whole Wide World +,rotten,0118163,Globe and Mail,,2002-04-12,11012,The Whole Wide World +Desson Thomson,none,0118163,Washington Post,,2002-01-22,11012,The Whole Wide World +Jack Mathews,none,0118163,Los Angeles Times,,2001-02-14,11012,The Whole Wide World +Susan Wloszczyna,fresh,0118163,USA Today,"Invest some patience and you'll be richly rewarded with rolling frontier vistas, butterscotch sunsets and a sweet, melancholy romance that will sneak up on you and grab your heart.",2000-01-01,11012,The Whole Wide World +James Berardinelli,fresh,0118163,ReelViews,,2000-01-01,11012,The Whole Wide World +Mick LaSalle,none,0118163,San Francisco Chronicle,,2000-01-01,11012,The Whole Wide World +Roger Ebert,fresh,0118163,Chicago Sun-Times,,2000-01-01,11012,The Whole Wide World +,none,0323298,Arizona Republic,,2004-10-19,14534,The Mother +Eleanor Ringel Gillespie,fresh,0323298,Atlanta Journal-Constitution,A troubling film about the need to be wanted.,2004-08-26,14534,The Mother +Peter Rainer,fresh,0323298,New York Magazine,"There is in The Mother a rich understanding of where old age takes you. Along with the myth that seniors don't have sex drives, the film dispels a larger one: that the years bring wisdom.",2004-08-07,14534,The Mother +Jay Boyar,fresh,0323298,Orlando Sentinel,"It challenges you to figure out how you feel about the people on the screen -- emotionally, intellectually, morally.",2004-07-23,14534,The Mother +Marta Barber,fresh,0323298,Miami Herald,The Mother never fails to engage.,2004-07-09,14534,The Mother +Terry Lawson,fresh,0323298,Detroit Free Press,"It sounds like the stuff of soap operas or bad porn, but Kureishi's script is too intelligent and empathetic to titillate.",2004-07-09,14534,The Mother +,fresh,0323298,Philadelphia Inquirer,,2004-07-03,14534,The Mother +Geoff Pevere,fresh,0323298,Toronto Star,Uses the surface familiarity of its situation ... to smuggle an elegantly carved Trojan horse full of messy emotional spillover into the theatre.,2004-07-02,14534,The Mother +Jennie Punter,fresh,0323298,Globe and Mail,The complications of its story are found in the deep complexities of emotions and family relationships.,2004-07-02,14534,The Mother +Desson Thomson,fresh,0323298,Washington Post,Bracing but superb.,2004-06-25,14534,The Mother +Stephen Hunter,fresh,0323298,Washington Post,"You may not enjoy The Mother (I certainly didn't), but it's a movie so heavy on truth, its spell cannot be denied.",2004-06-25,14534,The Mother +Joe Baltake,fresh,0323298,Sacramento Bee,What sets The Mother apart from your typical daytime serial is the caliber of both the writing and the acting.,2004-06-25,14534,The Mother +Bruce Westbrook,fresh,0323298,Houston Chronicle,"Though their selfishness is repellent, the characters feel strikingly real.",2004-06-18,14534,The Mother +Roger Ebert,fresh,0323298,Chicago Sun-Times,"It shows how people play a role and grow comfortable with it, and how that role is confused with the real person inside. And then it shows the person inside, frightened and pitiful and fighting for survival.",2004-06-18,14534,The Mother +Robert Denerstein,fresh,0323298,Denver Rocky Mountain News,"A drama that's unafraid of pain, complexity and ambiguity.",2004-06-18,14534,The Mother +Philip Wuntch,fresh,0323298,Dallas Morning News,"It neither reassures nor insults its audience. These days, a film that doesn't insult your intelligence is absolutely refreshing.",2004-06-17,14534,The Mother +Andrew Sarris,fresh,0323298,New York Observer,Reid's magnificent portrayal of the indomitable May has been insufficiently appreciated both here and in England. She is nothing short of uncanny.,2004-06-17,14534,The Mother +Michael Wilmington,fresh,0323298,Chicago Tribune,A soap opera with guts: a movie that takes a familiar situation ... and turns it into something rawer and more sexy.,2004-06-17,14534,The Mother +Ruthe Stein,fresh,0323298,San Francisco Chronicle,[Michell] shows what can be accomplished on a small budget with a brilliant script and a cast that rarely makes a false move.,2004-06-04,14534,The Mother +Jeff Shannon,rotten,0323298,Seattle Times,"A well-intentioned but flawed British drama that presents a sexual relationship between a sixtysome-thing widow and a much-younger man, then sidesteps nearly all the issues it's pretending to address.",2004-06-04,14534,The Mother +Leonard Klady,none,0118100,Variety,,2009-03-26,381421990,Les voleurs +,none,0118100,Time Out,,2006-01-26,381421990,Les voleurs +Janet Maslin,none,0118100,New York Times,,2003-05-20,381421990,Les voleurs +Kevin Thomas,none,0118100,Los Angeles Times,,2002-08-15,381421990,Les voleurs +Mike Clark,fresh,0118100,USA Today,"Deneuve gives one of her best performances ever, though she's not exactly the movie's focus. Of the many pleasures here, one is trying to guess just who the dramatic focal point is.",2000-01-01,381421990,Les voleurs +Edward Guthmann,none,0118100,San Francisco Chronicle,,2000-01-01,381421990,Les voleurs +James Berardinelli,fresh,0118100,ReelViews,,2000-01-01,381421990,Les voleurs +Jonathan Rosenbaum,fresh,0118100,Chicago Reader,,2000-01-01,381421990,Les voleurs +Roger Ebert,fresh,0118100,Chicago Sun-Times,"Techine involves us in a subtle, gradual process of discovery; each piece changes the relationship of the others. He is so wise about these criminals, he makes the bad guys in most American films look like cartoon characters.",2000-01-01,381421990,Les voleurs +Joe Baltake,none,0118100,Sacramento Bee,,2000-01-01,381421990,Les voleurs +Rita Kempley,none,0118100,Washington Post,,2000-01-01,381421990,Les voleurs +Owen Gleiberman,rotten,0116250,Entertainment Weekly,,2011-09-07,10176,Evita +Todd McCarthy,none,0116250,Variety,,2009-03-04,10176,Evita +,none,0116250,Time Out,,2006-01-26,10176,Evita +Amy M. Spindler,none,0116250,New York Times,,2003-05-21,10176,Evita +Jeff Strickler,none,0116250,Minneapolis Star Tribune,,2002-11-06,10176,Evita +Octavio Roca,fresh,0116250,San Francisco Chronicle,,2002-06-18,10176,Evita +Peter Travers,none,0116250,Rolling Stone,,2001-05-11,10176,Evita +Kenneth Turan,none,0116250,Los Angeles Times,,2001-02-14,10176,Evita +Stanley Kauffmann,none,0116250,The New Republic,,2000-01-01,10176,Evita +,none,0116250,Houston Chronicle,,2000-01-01,10176,Evita +Susan Stark,rotten,0116250,Detroit News,,2000-01-01,10176,Evita +,none,0116250,Washington Post,,2000-01-01,10176,Evita +Roger Ebert,fresh,0116250,Chicago Sun-Times,,2000-01-01,10176,Evita +Laura Miller,none,0116250,Salon.com,,2000-01-01,10176,Evita +James Berardinelli,fresh,0116250,ReelViews,,2000-01-01,10176,Evita +Joe Baltake,none,0116250,Sacramento Bee,,2000-01-01,10176,Evita +Mike Clark,fresh,0116250,USA Today,"With one of the most dazzling screen chassis in years, Evita is definitely worth a look -- maybe even two. But don't look under the hood.",2000-01-01,10176,Evita +,rotten,0116250,Entertainment Weekly,,1996-12-14,10176,Evita +Lisa Schwarzbaum,fresh,0117364,Entertainment Weekly,,2011-09-07,12501,The Portrait of a Lady +Todd McCarthy,none,0117364,Variety,,2009-03-27,12501,The Portrait of a Lady +Derek Adams,none,0117364,Time Out,,2006-06-24,12501,The Portrait of a Lady +David Denby,none,0117364,New York Magazine,,2002-09-26,12501,The Portrait of a Lady +Edward Guthmann,none,0117364,San Francisco Chronicle,,2002-06-18,12501,The Portrait of a Lady +,rotten,0117364,Globe and Mail,,2002-04-12,12501,The Portrait of a Lady +Kenneth Turan,none,0117364,Los Angeles Times,,2001-02-14,12501,The Portrait of a Lady +,none,0117364,Washington Post,,2000-01-01,12501,The Portrait of a Lady +Mike Clark,rotten,0117364,USA Today,"Intelligent but exasperating, its monotonous tone will wear down even viewers who started out in its corner.",2000-01-01,12501,The Portrait of a Lady +Joe Baltake,none,0117364,Sacramento Bee,,2000-01-01,12501,The Portrait of a Lady +Stanley Kauffmann,none,0117364,The New Republic,,2000-01-01,12501,The Portrait of a Lady +Janet Maslin,none,0117364,New York Times,,2000-01-01,12501,The Portrait of a Lady +James Berardinelli,fresh,0117364,ReelViews,,2000-01-01,12501,The Portrait of a Lady +Susan Stark,rotten,0117364,Detroit News,,2000-01-01,12501,The Portrait of a Lady +Roger Ebert,fresh,0117364,Chicago Sun-Times,,2000-01-01,12501,The Portrait of a Lady +,fresh,0117364,Entertainment Weekly,,1996-12-24,12501,The Portrait of a Lady +A.O. Scott,none,0067959,New York Times,,2010-10-12,13501,Walkabout +,none,0067959,Entertainment Weekly,,2010-05-06,13501,Walkabout +,none,0067959,Variety,,2008-12-01,13501,Walkabout +,none,0067959,Time Out,,2006-01-26,13501,Walkabout +James Berardinelli,fresh,0067959,ReelViews,"For the most part, Walkabout is an involving, occasionally hypnotic, motion picture.",2000-01-01,13501,Walkabout +Roger Ebert,fresh,0067959,Chicago Sun-Times,"Is it a parable about noble savages and the crushed spirits of city dwellers? That's what the film's surface seems to suggest, but I think it's also about something deeper and more elusive: The mystery of communication.",2000-01-01,13501,Walkabout +Edward Guthmann,fresh,0067959,San Francisco Chronicle,Roeg intercuts images of modern life with the lushness of nature -- offering a stunning fable about the importance of respecting the earth.,2000-01-01,13501,Walkabout +Lisa Schwarzbaum,fresh,0119731,Entertainment Weekly,,2011-09-07,14227,Murder at 1600 +Emanuel Levy,none,0119731,Variety,,2009-03-26,14227,Murder at 1600 +Derek Adams,none,0119731,Time Out,,2006-06-24,14227,Murder at 1600 +Jeff Strickler,none,0119731,Minneapolis Star Tribune,,2002-11-06,14227,Murder at 1600 +Mick LaSalle,none,0119731,San Francisco Chronicle,,2002-06-18,14227,Murder at 1600 +,rotten,0119731,Globe and Mail,,2002-04-12,14227,Murder at 1600 +Desson Thomson,none,0119731,Washington Post,,2002-01-22,14227,Murder at 1600 +Kenneth Turan,none,0119731,Los Angeles Times,,2001-02-14,14227,Murder at 1600 +Roger Ebert,rotten,0119731,Chicago Sun-Times,,2000-01-01,14227,Murder at 1600 +Janet Maslin,none,0119731,New York Times,,2000-01-01,14227,Murder at 1600 +Susan Wloszczyna,rotten,0119731,USA Today,"Murder is a fairly diverting game of whodunit, like a big-screen version of Clue, until it sinks into routine thriller antics and wraps up preposterously.",2000-01-01,14227,Murder at 1600 +Susan Stark,rotten,0119731,Detroit News,,2000-01-01,14227,Murder at 1600 +James Berardinelli,rotten,0119731,ReelViews,,2000-01-01,14227,Murder at 1600 +,fresh,0119731,Entertainment Weekly,,1997-04-18,14227,Murder at 1600 +Leonard Klady,none,0119115,Variety,,2009-03-26,10993,Fierce Creatures +,none,0119115,Time Out,,2006-01-26,10993,Fierce Creatures +Jeff Strickler,none,0119115,Minneapolis Star Tribune,,2002-11-06,10993,Fierce Creatures +Desson Thomson,none,0119115,Washington Post,,2002-01-22,10993,Fierce Creatures +Peter Travers,none,0119115,Rolling Stone,,2001-05-12,10993,Fierce Creatures +Jack Mathews,none,0119115,Los Angeles Times,,2001-02-14,10993,Fierce Creatures +Joe Baltake,none,0119115,Sacramento Bee,,2000-01-01,10993,Fierce Creatures +Roger Ebert,rotten,0119115,Chicago Sun-Times,,2000-01-01,10993,Fierce Creatures +,none,0119115,Houston Chronicle,,2000-01-01,10993,Fierce Creatures +James Berardinelli,fresh,0119115,ReelViews,,2000-01-01,10993,Fierce Creatures +Susan Stark,rotten,0119115,Detroit News,,2000-01-01,10993,Fierce Creatures +Janet Maslin,none,0119115,New York Times,,2000-01-01,10993,Fierce Creatures +Peter Stack,none,0119115,San Francisco Chronicle,,2000-01-01,10993,Fierce Creatures +Scott Rosenberg,none,0119115,Salon.com,,2000-01-01,10993,Fierce Creatures +Susan Wloszczyna,rotten,0119115,USA Today,"The spirited cast of Jamie Lee Curtis, Kevin Kline and Monty Pythonites John Cleese and Michael Palin is willing. But this tossed-together trifle about an unassuming British zoo taken over by a money-mad Murdochian media mogul is weak.",2000-01-01,10993,Fierce Creatures +,rotten,0119115,Entertainment Weekly,,1997-01-24,10993,Fierce Creatures +Lawrence Van Gelder,none,0120550,New York Times,,2003-05-20,11918,Zeus and Roxanne +Jeff Strickler,none,0120550,Minneapolis Star Tribune,,2002-11-06,11918,Zeus and Roxanne +Peter Stack,rotten,0120550,San Francisco Chronicle,,2002-06-18,11918,Zeus and Roxanne +Kevin Thomas,none,0120550,Los Angeles Times,,2001-02-14,11918,Zeus and Roxanne +Desson Thomson,none,0120550,Washington Post,,2000-01-01,11918,Zeus and Roxanne +Leonard Klady,none,0120390,Variety,,2009-03-26,747034018,Turbulence +,none,0120390,Time Out,,2006-02-09,747034018,Turbulence +Stephen Holden,none,0120390,New York Times,,2003-05-20,747034018,Turbulence +Kevin McManus,none,0120390,Washington Post,,2002-01-22,747034018,Turbulence +Mick LaSalle,none,0120390,San Francisco Chronicle,,2001-08-01,747034018,Turbulence +,none,0120390,Houston Chronicle,,2001-08-01,747034018,Turbulence +Susan Wloszczyna,rotten,0120390,USA Today,"Fasten your seat belts, folks. It's going to be a cliche-cluttered ride.",2001-08-01,747034018,Turbulence +Joe Baltake,none,0120390,Sacramento Bee,,2001-08-01,747034018,Turbulence +Susan Stark,rotten,0120390,Detroit News,,2001-08-01,747034018,Turbulence +Kenneth Turan,none,0120390,Los Angeles Times,,2001-08-01,747034018,Turbulence +Roger Ebert,rotten,0120390,Chicago Sun-Times,,2001-08-01,747034018,Turbulence +James Berardinelli,rotten,0120390,ReelViews,,2001-08-01,747034018,Turbulence +Lisa Schwarzbaum,fresh,0116704,Entertainment Weekly,,2011-09-07,12785,Ging chaat goo si 4: Ji gaan daan yam mo +,none,0116704,Time Out,,2006-01-26,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Stephen Holden,none,0116704,New York Times,,2004-08-30,12785,Ging chaat goo si 4: Ji gaan daan yam mo +,rotten,0116704,Globe and Mail,,2002-04-12,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Richard Harrington,none,0116704,Washington Post,,2002-01-22,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Kevin Thomas,none,0116704,Los Angeles Times,,2001-02-14,12785,Ging chaat goo si 4: Ji gaan daan yam mo +,none,0116704,Houston Chronicle,,2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Roger Ebert,fresh,0116704,Chicago Sun-Times,,2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Mick LaSalle,none,0116704,San Francisco Chronicle,,2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Joe Baltake,none,0116704,Sacramento Bee,,2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +James Berardinelli,rotten,0116704,ReelViews,,2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +Susan Wloszczyna,fresh,0116704,USA Today,"There's definitely more than three rings' worth of death-defying feats, high-flying slapstick and even a few well-trained animal acts.",2000-01-01,12785,Ging chaat goo si 4: Ji gaan daan yam mo +,rotten,0320691,Time Out,"These vampires have no teeth -- hell, they don't even fly.",2006-06-24,13036,Underworld +Peter Travers,rotten,0320691,Rolling Stone,"'Your incompetence is most taxing,' says the chief vampire (Bill Nighy). A line that pretty much nails this rusty Blade.",2003-09-25,13036,Underworld +Owen Gleiberman,rotten,0320691,Entertainment Weekly,The sort of movie in which the head vampire telegraphs his evil by using a cell phone and dressing like the Kinks' Ray Davies in the early '80s.,2003-09-24,13036,Underworld +Richard Roeper,fresh,0320691,Ebert & Roeper,I've been waiting a long time to see a Shakespearean werewolf vampire movie and here it is.,2003-09-22,13036,Underworld +David Edelstein,rotten,0320691,Slate,125 minutes is a long time to stare at a movie that's basically in bleached blue-and-white with occasional splotches of brick red.,2003-09-20,13036,Underworld +Andrew O'Hehir,rotten,0320691,Salon.com,"By any reasonable standard, this dark vampire epic -- all massive overacting, cologne-commercial design and sexy cat suits -- sucks.",2003-09-20,13036,Underworld +Desson Thomson,rotten,0320691,Washington Post,It needs a wooden stake and a silver bullet through its script.,2003-09-19,13036,Underworld +Ann Hornaday,rotten,0320691,Washington Post,"For all its slick, neo-noir style, Underworld brings very little that's new to a hoary genre, except for the cliches and conventions of other hoary genres.",2003-09-19,13036,Underworld +Claudia Puig,rotten,0320691,USA Today,Features some of the year's most laughable dialogue.,2003-09-19,13036,Underworld +Peter Howell,rotten,0320691,Toronto Star,Wiseman ... seems vastly more concerned with making a fashion statement than scaring the bejesus out of us.,2003-09-19,13036,Underworld +Mary Brennan,fresh,0320691,Seattle Times,A weirdly compelling blend of corny sentiment and bloodthirsty ballet.,2003-09-19,13036,Underworld +Peter Hartlaub,rotten,0320691,San Francisco Chronicle,"Could use script transfusion, or at least a few quarts of levity.",2003-09-19,13036,Underworld +Jay Boyar,rotten,0320691,Orlando Sentinel,"Somewhere out there, Dracula is turning over in his grave.",2003-09-19,13036,Underworld +John Anderson,rotten,0320691,Newsday,"Pure hooey, but it certainly has a sense of humor (at least it seems like humor).",2003-09-19,13036,Underworld +Stephen Whitty,rotten,0320691,Newark Star-Ledger,"The whole thing's more art-directed than directed, and the actors are clearly on their own.",2003-09-19,13036,Underworld +Jonathan Foreman,rotten,0320691,New York Post,Sometimes talent and good looks just aren't enough -- [Beckinsale] lacks the movie star presence needed to give life to a supernatural hero in a B-genre film.,2003-09-19,13036,Underworld +Jami Bernard,fresh,0320691,New York Daily News,"The movie is stylish and cruel, and mightily entertaining for certain covens out there.",2003-09-19,13036,Underworld +Bruce Westbrook,fresh,0320691,Houston Chronicle,"A vampire film for the new millennium -- bold, galvanizing and darkly stylish.",2003-09-19,13036,Underworld +Liam Lacey,rotten,0320691,Globe and Mail,It's hard to recall a more sexless vampire flick.,2003-09-19,13036,Underworld +Tom Long,rotten,0320691,Detroit News,"A noisy, tiresome affair that can't manage one moment of wit or real tension.",2003-09-19,13036,Underworld +Leonard Klady,none,0118708,Variety,,2009-03-26,11203,Beverly Hills Ninja +Stephen Holden,none,0118708,New York Times,,2003-05-20,11203,Beverly Hills Ninja +Rita Kempley,rotten,0118708,Washington Post,"Farley, a real lightweight compared to such late, great predecessors John Belushi and John Candy, brings none of Belushi's edgy intelligence, nor Candy's gentle pathos to this comic caricature.",2002-01-22,11203,Beverly Hills Ninja +Kevin Thomas,fresh,0118708,Los Angeles Times,"A satisfying and sturdy vehicle for Farley that ought to please his fans, youngsters especially.",2001-02-14,11203,Beverly Hills Ninja +Mick LaSalle,fresh,0118708,San Francisco Chronicle,"A silly movie, with silly jokes and a silly story. But the talents at work in it are not silly.",2000-01-01,11203,Beverly Hills Ninja +Jeff Millar,rotten,0118708,Houston Chronicle,The humor the premise throws off is supposed to be funny. It just isn't.,2000-01-01,11203,Beverly Hills Ninja +Susan Stark,fresh,0118708,Detroit News,,2000-01-01,11203,Beverly Hills Ninja +James Berardinelli,rotten,0118708,ReelViews,"Farley might want to be like John Candy, but, while Candy knew how to make an audience laugh, Farley keeps missing the mark.",2000-01-01,11203,Beverly Hills Ninja +John Hartl,rotten,0118708,Film.com,"This formulaic tale of a ninja klutz trying to break a counterfeit ring can be recommended only to undemanding children, and even they may find it a drag.",2000-01-01,11203,Beverly Hills Ninja +,rotten,0118708,Entertainment Weekly,,1997-01-17,11203,Beverly Hills Ninja +Lisa Schwarzbaum,rotten,0119664,Entertainment Weekly,,2011-09-07,15996,Metro +Howard Feinstein,none,0119664,Variety,,2009-03-26,15996,Metro +David Ansen,none,0119664,Newsweek,,2008-04-07,15996,Metro +,none,0119664,Atlanta Journal-Constitution,,2006-07-08,15996,Metro +Derek Adams,none,0119664,Time Out,,2006-06-24,15996,Metro +Stephen Holden,none,0119664,New York Times,,2003-05-20,15996,Metro +,none,0119664,Washington Post,,2002-08-22,15996,Metro +Rick Groen,rotten,0119664,Globe and Mail,A renter with some mileage on it.,2002-04-12,15996,Metro +Kevin Thomas,rotten,0119664,Los Angeles Times,By-the-numbers doesn't begin to describe how cliche-ridden Randy Feldman's script is.,2001-02-14,15996,Metro +Mick LaSalle,rotten,0119664,San Francisco Chronicle,"Murphy is fresh, as usual, but Metro is not.",2000-01-01,15996,Metro +Susan Wloszczyna,rotten,0119664,USA Today,"Despite Murphy's consistently strong performance, Metro meanders into a rather unremarkable cat-and-mouse territory.",2000-01-01,15996,Metro +Joe Baltake,rotten,0119664,Sacramento Bee,Metro isn't a movie. It's bumper cars.,2000-01-01,15996,Metro +Kevin McManus,rotten,0119664,Washington Post,Anyone seeking a fresh characterization of clever plot twist ought not to buy a ride of this Murphy vehicle.,2000-01-01,15996,Metro +Roger Ebert,fresh,0119664,Chicago Sun-Times,"The big action scenes are cleverly staged and Eddie Murphy is back on his game again, with a high-energy performance and crisp dialogue.",2000-01-01,15996,Metro +James Berardinelli,rotten,0119664,ReelViews,Metro is about as generic as action pictures come.,2000-01-01,15996,Metro +,rotten,0119664,Entertainment Weekly,,1997-01-17,15996,Metro +Todd McCarthy,none,0268695,Variety,,2009-03-27,10794,The Time Machine +Geoff Andrew,none,0268695,Time Out,,2006-06-24,10794,The Time Machine +Jeff Strickler,rotten,0268695,Minneapolis Star Tribune,"If H.G. Wells had a time machine and could take a look at his kin's reworked version, what would he say? 'It looks good, Sonny, but you missed the point.'",2002-11-06,10794,The Time Machine +Michael Wilmington,rotten,0268695,Chicago Tribune,"One of those staggeringly well-produced, joylessly extravagant pictures that keep whooshing you from one visual marvel to the next, hastily, emptily.",2002-07-20,10794,The Time Machine +Dennis Lim,rotten,0268695,Village Voice,"If it's remembered at all, it will be as a time capsule of early-21st-century blockbuster cowardice and redundancy.",2002-03-12,10794,The Time Machine +,none,0268695,St. Louis Post-Dispatch,,2002-03-09,10794,The Time Machine +Bill Muller,rotten,0268695,Arizona Republic,They gave The Time Machine a major overhaul and ended up with a clunker.,2002-03-09,10794,The Time Machine +Manohla Dargis,rotten,0268695,L.A. Weekly,"In the new film, it's personal tragedy that provokes the journey, not social upheaval or even scientific curiosity -- which, predictably, makes for a story that's at once more familiar and less interesting.",2002-03-09,10794,The Time Machine +Desson Thomson,rotten,0268695,Washington Post,Amazingly stilted before accelerating into its exciting finish.,2002-03-08,10794,The Time Machine +Stephen Hunter,rotten,0268695,Washington Post,The film is weirdly disjointed and uncertain as to tone.,2002-03-08,10794,The Time Machine +Mike Clark,rotten,0268695,USA Today,"Simon Wells, whose other films include the animated The Prince of Egypt and Balto, manages to gut all the gee-whiz from the practically foolproof time-travel genre -- despite being H.G.'s real-life great-grandson.",2002-03-08,10794,The Time Machine +Peter Howell,rotten,0268695,Toronto Star,"Midway through the movie, just when it seems that it might amount to something interesting, we're suddenly transported to the set of a very bad remake of Planet Of The Apes.",2002-03-08,10794,The Time Machine +Moira MacDonald,rotten,0268695,Seattle Times,"... unlike the shiny machine at its center, its timing is off, and it never quite soars.",2002-03-08,10794,The Time Machine +Mick LaSalle,rotten,0268695,San Francisco Chronicle,"... there's something wrong with a time-travel movie that allows an audience's interest to drift so that we have time to worry over where he's parked, and whether he remembered to take his key.",2002-03-08,10794,The Time Machine +Charles Taylor,fresh,0268695,Salon.com,... an agreeable time-wasting device -- but George Pal's low-tech 1960 version still rules the epochs.,2002-03-08,10794,The Time Machine +Joe Baltake,rotten,0268695,Sacramento Bee,It's doubtful there will be a Time Machine 2 in our movie future.,2002-03-08,10794,The Time Machine +Roger Moore,rotten,0268695,Orlando Sentinel,"The worst news isn't that this Time Machine is lacking in humanity. It's that screenwriter John Logan has been given the job of writing the next Star Trek movie, Nemesis. That is bad news for the Enterprise gang.",2002-03-08,10794,The Time Machine +John Anderson,fresh,0268695,Newsday,"Not exactly H.G. Wells, but sturdy and effective.",2002-03-08,10794,The Time Machine +Jonathan Foreman,rotten,0268695,New York Post,"Everything else that the filmmakers have done in their thoughtless, lazy way to 'improve' the original formula serves only to leach the drama and excitement out of the underlying story.",2002-03-08,10794,The Time Machine +Rene Rodriguez,rotten,0268695,Miami Herald,"The Time Machine isn't so much an adaptation of H.G. Wells' seminal novel as it is an appropriation. The film borrows liberally from the book, but doesn't treat it with much respect or affection or even understanding.",2002-03-08,10794,The Time Machine +Hank Sartin,fresh,0482606,Time Out,,2011-11-17,678555400,The Strangers +Claudia Puig,rotten,0482606,USA Today,"The Strangers has a couple of scares, but it's not anywhere near as frightening as advertised. The creepy folks of the title are more fumbling than fiendish.",2008-10-18,678555400,The Strangers +Nigel Floyd,rotten,0482606,Time Out,"This suspense film by first-time writer-director Bryan Bertino initially squeezes some surprisingly effective scares out of familiar elements. Sadly, the scenario quickly becomes attenuated and unbelievable.",2008-08-29,678555400,The Strangers +Amy Biancolli,rotten,0482606,Houston Chronicle,At least it's short.,2008-07-18,678555400,The Strangers +Bob Mondello,rotten,0482606,NPR.org,"A sadistic, unmotivated home-invasion flick.",2008-06-02,678555400,The Strangers +,rotten,0482606,Ebert & Roeper,"Don't let the attractive cast, the slick look or the 'inspired by true events' nonsense mislead you. The Strangers is a despicable and mean-spirited practical joke.",2008-06-02,678555400,The Strangers +Kyle Smith,rotten,0482606,New York Post,Kind of like what The Shining might be if you took out the ESP. And the ghosts. And the chilling atmosphere. So call it The Sucking.,2008-05-31,678555400,The Strangers +Stephen Hunter,rotten,0482606,Washington Post,"I like watching snakes eat mice just as much as the next fella, maybe even more, but The Strangers turns the gobble-'em-up into an ordeal. It's a fraud from start to finish.",2008-05-30,678555400,The Strangers +Susan Walker,rotten,0482606,Toronto Star,"With no plot to speak of, no character development whatsoever, no theme and precious little intrigue, what we have here is simply a pileup of effects. And not especially special effects.",2008-05-30,678555400,The Strangers +Jeff Shannon,rotten,0482606,Seattle Times,Bertino relies too heavily on occasionally nonsensical terror tricks that every horror buff has seen a million times since John Carpenter's Halloween set the standard for domestic fright-night mayhem.,2008-05-30,678555400,The Strangers +Mick LaSalle,rotten,0482606,San Francisco Chronicle,"Let's give writer-director Bryan Bertino credit. He knows how to frame a shot to make characters seem vulnerable. Now for his next trick, he just needs to turn his talents toward something that isn't repulsive.",2008-05-30,678555400,The Strangers +James Berardinelli,fresh,0482606,ReelViews,"It's intense but not necessarily fun and may disappoint less sophisticated horror fans. However, for die-hard supporters of unsettling peeks into the dark side of human nature, this is a welcome excursion.",2008-05-30,678555400,The Strangers +Roger Moore,fresh,0482606,Orlando Sentinel,"Fans of the 'pitiless/merciless killers' school of horror should get a jolt out of The Strangers, a harrowing real-time tale of an assault on a remote country home.",2008-05-30,678555400,The Strangers +Rafer Guzman,rotten,0482606,Newsday,"Writer and first-time director Bryan Bertino wastes his taut, tense premise -- two lovers, three villains, one house -- by depending on wearingly familiar tricks.",2008-05-30,678555400,The Strangers +Stephen Whitty,rotten,0482606,Newark Star-Ledger,"Unfolding with an almost startling lack of self-awareness, young filmmaker Bryan Bertino's debut is such a careful, straight-faced knockoff of '70s exploitation films it plays like a parody.",2008-05-30,678555400,The Strangers +Elizabeth Weitzman,fresh,0482606,New York Daily News,"Every silence, pause and sudden noise startles -- and the results, frankly, are more frightening than the graphic torture scenes in movies like Hostel and Saw.",2008-05-30,678555400,The Strangers +Rene Rodriguez,rotten,0482606,Miami Herald,"After a while, the suspense starts seeping out of The Strangers, because you realize that's all there's going to be to the movie.",2008-05-30,678555400,The Strangers +Michael Rechtshaffen,fresh,0482606,Hollywood Reporter,A frightfully effective chiller.,2008-05-30,678555400,The Strangers +Owen Gleiberman,fresh,0482606,Entertainment Weekly,"It sounds stupid enough, and ultimately is, but the director, Bryan Bertino, stages The Strangers' early scenes with spooky panache.",2008-05-30,678555400,The Strangers +Tom Long,fresh,0482606,Detroit News,"It's an efficiently made, appropriately terrifying film, downright minimalist in approach and all the more horrifying for it. It's so basic it's believable.",2008-05-30,678555400,The Strangers +Owen Gleiberman,rotten,0118928,Entertainment Weekly,,2011-09-07,12764,Dante's Peak +Todd McCarthy,none,0118928,Variety,,2009-03-26,12764,Dante's Peak +David Ansen,none,0118928,Newsweek,,2008-03-31,12764,Dante's Peak +,none,0118928,Time Out,,2006-06-24,12764,Dante's Peak +Jeff Strickler,none,0118928,Minneapolis Star Tribune,,2002-11-06,12764,Dante's Peak +Mick LaSalle,rotten,0118928,San Francisco Chronicle,,2002-06-18,12764,Dante's Peak +,rotten,0118928,Globe and Mail,,2002-04-12,12764,Dante's Peak +Kenneth Turan,none,0118928,Los Angeles Times,,2001-02-14,12764,Dante's Peak +Mike Clark,rotten,0118928,USA Today,A $100 million piece of piffle.,2000-01-01,12764,Dante's Peak +Janet Maslin,none,0118928,New York Times,,2000-01-01,12764,Dante's Peak +Susan Stark,rotten,0118928,Detroit News,,2000-01-01,12764,Dante's Peak +Joe Baltake,none,0118928,Sacramento Bee,,2000-01-01,12764,Dante's Peak +Roger Ebert,rotten,0118928,Chicago Sun-Times,,2000-01-01,12764,Dante's Peak +James Berardinelli,rotten,0118928,ReelViews,,2000-01-01,12764,Dante's Peak +,none,0118928,Houston Chronicle,,2000-01-01,12764,Dante's Peak +,none,0118928,Washington Post,,2000-01-01,12764,Dante's Peak +,rotten,0118928,Entertainment Weekly,,1997-02-07,12764,Dante's Peak +Leonard Klady,none,0119644,Variety,,2009-04-15,15103,Meet Wally Sparks +Stephen Holden,none,0119644,New York Times,,2003-05-20,15103,Meet Wally Sparks +Edward Guthmann,fresh,0119644,San Francisco Chronicle,,2002-06-18,15103,Meet Wally Sparks +,none,0119644,Globe and Mail,,2002-04-12,15103,Meet Wally Sparks +James Berardinelli,rotten,0119644,ReelViews,,2000-01-01,15103,Meet Wally Sparks +Owen Gleiberman,rotten,0106266,Entertainment Weekly,,2011-09-07,12692,Amos & Andrew +Lawrence Cohn,rotten,0106266,Variety,A one-joke sketch that doesn't work as a feature.,2008-09-16,12692,Amos & Andrew +Jonathan Rosenbaum,rotten,0106266,Chicago Reader,"Cage is the only actor allowed to do riffs on his assigned part, something he takes full advantage of; the others are stuck with their two-dimensional satirical profiles, which grow increasingly tiresome and unyielding.",2008-09-16,12692,Amos & Andrew +Vincent Canby,rotten,0106266,New York Times,"A hhandicapped satirical farce whose roots are not in life but in other, better movies and sitcoms.",2003-05-20,12692,Amos & Andrew +Hal Hinson,fresh,0106266,Washington Post,"A very funny little film with big pleasures, and a most promising debut.",2000-01-01,12692,Amos & Andrew +Roger Ebert,rotten,0106266,Chicago Sun-Times,"Although the movie strives mightily to teach its lesson, which is that you cannot judge a man by the color of his skin, the humor is undermined by the sadness of the basic situation.",2000-01-01,12692,Amos & Andrew +Desson Thomson,rotten,0106266,Washington Post,"Cage is a font of funny character weirdness. This movie marks the least of his offerings. Jackson, as the relative straight man, has little to work with.",2000-01-01,12692,Amos & Andrew +James Berardinelli,rotten,0106266,ReelViews,"If nothing else, at least the movie offers laughs without being offensive.",2000-01-01,12692,Amos & Andrew +,rotten,0106266,Entertainment Weekly,,1993-03-05,12692,Amos & Andrew +Owen Gleiberman,fresh,0106387,Entertainment Weekly,,2011-09-07,10219,Benny & Joon +Emanuel Levy,fresh,0106387,Variety,"As the outsider who courts the mentally ill Mary Stuart Masterson, Johnny Depp renders a startling performance that elevates the romantic fable way above its writing and directing shortcomings; look for the young Julianne Moore in a small part.",2006-04-08,10219,Benny & Joon +Wally Hammond,rotten,0106387,Time Out,"It's acted out in the secondary emotional register of the glass menagerie: whimsical, delicate, idiosyncratic, barmy.",2006-01-26,10219,Benny & Joon +Janet Maslin,fresh,0106387,New York Times,"Mr. Depp may look nothing like Buster Keaton, but there are times when he genuinely seems to become the Great Stone Face, bringing Keaton's mannerisms sweetly and magically to life.",2003-05-20,10219,Benny & Joon +Peter Travers,rotten,0106387,Rolling Stone,The cast is defeated by a cloying Barry Berman script that Jeremiah Chechik directs with the same flair for the obvious he brought to National Lampoon's Christmas Vacation.,2001-05-12,10219,Benny & Joon +Roger Ebert,fresh,0106387,Chicago Sun-Times,"The movie suggests that love and magic can overcome madness, and for at least the length of the film I was prepared to accept that. Much of the credit for that goes to Depp...",2000-01-01,10219,Benny & Joon +Desson Thomson,rotten,0106387,Washington Post,Riddled with insufferably contrived zaniness ... it deals as deeply with mental illness as The Sound of Music explored the genocidal advance of the Third Reich.,2000-01-01,10219,Benny & Joon +Rita Kempley,rotten,0106387,Washington Post,"[Chechik] has crafted Benny & Joon not as a seamless whole but as a tumble of scenes. Unfortunately, too many of them are inspired by Charlie Chaplin, Harold Lloyd or Buster Keaton, and they seem to spill from the screen like Bozos from a kiddie car.",2000-01-01,10219,Benny & Joon +James Berardinelli,rotten,0106387,ReelViews,"Benny & Joon tries to get by on quirkiness alone, and, while something this offbeat frequently carries a unique kind of appeal, it needs stronger characters than Sam and Joon.",2000-01-01,10219,Benny & Joon +,fresh,0106387,Entertainment Weekly,,1993-01-01,10219,Benny & Joon +Lisa Schwarzbaum,rotten,0119937,Entertainment Weekly,,2011-09-07,10325,Prefontaine +Todd McCarthy,fresh,0119937,Variety,Prefontaine gets to the finish line in reasonable shape despite plenty of sloppy running along the way.,2007-03-14,10325,Prefontaine +Janet Maslin,rotten,0119937,New York Times,Disappointingly colorless and squeaky-clean.,2003-05-20,10325,Prefontaine +Jeff Strickler,none,0119937,Minneapolis Star Tribune,,2002-11-06,10325,Prefontaine +Kenneth Turan,rotten,0119937,Los Angeles Times,"Though it is always pleasant and agreeable, this film has the bland and undemanding texture that characterizes movies made for network TV.",2001-02-14,10325,Prefontaine +James Berardinelli,rotten,0119937,ReelViews,"James tries too hard to bring closure to Pre's life, and, as a result, strays a little too far into melodrama. The tearful reminiscences at the end, not to mention some of the stuff at the funeral, lay it on thickly.",2000-01-01,10325,Prefontaine +Mike Clark,fresh,0119937,USA Today,The Super-16mm film stock gives the film a grainy look that blends in artfully with the vintage videotape of ABC's '72 Olympics coverage.,2000-01-01,10325,Prefontaine +Gary Kamiya,fresh,0119937,Salon.com,"Even through Prefontaine's obviousness, we feel its force.",2000-01-01,10325,Prefontaine +Roger Ebert,fresh,0119937,Chicago Sun-Times,"Here is a sports movie in the tradition of the best sportswriting, where athletes are portrayed warts and all. You do not have to be nice to win races, but you have to be good.",2000-01-01,10325,Prefontaine +Peter Stack,fresh,0119937,San Francisco Chronicle,"With hypnotic blue eyes and dirty blond hair, Leto captures the rock-star style Prefontaine affected, and he looks natural in fiery performances on the track, as well as off, where Pre affected a brash, confrontational style.",2000-01-01,10325,Prefontaine +,rotten,0119937,Entertainment Weekly,,1997-01-24,10325,Prefontaine +David Stratton,none,0109949,Variety,,2009-03-26,19901,Guantanamera +Derek Adams,none,0109949,Time Out,,2006-06-24,19901,Guantanamera +,rotten,0109949,Globe and Mail,,2002-04-12,19901,Guantanamera +Peter Stack,fresh,0109949,San Francisco Chronicle,,2001-02-14,19901,Guantanamera +Stephen Holden,none,0109949,New York Times,,2001-02-14,19901,Guantanamera +Joe Baltake,none,0109949,Sacramento Bee,,2001-02-14,19901,Guantanamera +Kevin Thomas,none,0109949,Los Angeles Times,,2001-02-14,19901,Guantanamera +Roger Ebert,fresh,0109949,Chicago Sun-Times,,2001-02-14,19901,Guantanamera +Stanley Kauffmann,none,0109949,The New Republic,,2001-02-14,19901,Guantanamera +Leonard Klady,rotten,0119640,Variety,"A ham-fisted, fitfully amusing lark that quickly runs aground.",2008-05-15,11113,McHale's Navy +Jeff Strickler,none,0119640,Minneapolis Star Tribune,,2002-11-06,11113,McHale's Navy +Mick LaSalle,rotten,0119640,San Francisco Chronicle,"By the end, this soporific comedy makes 105 minutes feel more like a two-year hitch.",2002-06-18,11113,McHale's Navy +Liam Lacey,rotten,0119640,Globe and Mail,"A useless movie. Not funny, suspenseful, moving or even offensive enough to want to torpedo. Just devoid of any conceivable value.",2002-04-12,11113,McHale's Navy +Stephen Holden,rotten,0119640,New York Times,Leaky PT-boat of a comedy.,2000-01-01,11113,McHale's Navy +Jeff Millar,rotten,0119640,Houston Chronicle,"I didn't laugh once, not even giggle.",2000-01-01,11113,McHale's Navy +Susan Stark,rotten,0119640,Detroit News,,2000-01-01,11113,McHale's Navy +James Berardinelli,rotten,0119640,ReelViews,Suitable only for movie-goers who have undergone frontal lobotomies.,2000-01-01,11113,McHale's Navy +Lisa Schwarzbaum,fresh,0116790,Entertainment Weekly,,2011-09-07,11806,Kolja +David Rooney,none,0116790,Variety,,2009-03-26,11806,Kolja +,none,0116790,Time Out,,2006-02-09,11806,Kolja +Edward Guthmann,fresh,0116790,San Francisco Chronicle,,2002-06-18,11806,Kolja +,fresh,0116790,Globe and Mail,,2002-04-12,11806,Kolja +Desson Thomson,none,0116790,Washington Post,,2002-01-22,11806,Kolja +Kevin Thomas,none,0116790,Los Angeles Times,,2001-02-14,11806,Kolja +Stanley Kauffmann,none,0116790,The New Republic,,2000-01-01,11806,Kolja +James Berardinelli,fresh,0116790,ReelViews,,2000-01-01,11806,Kolja +Susan Stark,fresh,0116790,Detroit News,,2000-01-01,11806,Kolja +Janet Maslin,none,0116790,New York Times,,2000-01-01,11806,Kolja +Joe Baltake,none,0116790,Sacramento Bee,,2000-01-01,11806,Kolja +Mike Clark,fresh,0116790,USA Today,"As an Oscar nominee, Kolya lacks the cinematic dazzle of France's Ridicule. But no one can claim that its emotional clout isn't earned.",2000-01-01,11806,Kolja +Roger Ebert,fresh,0116790,Chicago Sun-Times,,2000-01-01,11806,Kolja +,none,0116790,Houston Chronicle,,2000-01-01,11806,Kolja +Owen Gleiberman,fresh,0119225,Entertainment Weekly,,2011-09-07,16416,Gridlock'd +Todd McCarthy,fresh,0119225,Variety,"An engaging look at a mangy day in the lives of two junkies trying to kick, Gridlock'd would have been a good mid-level B.O. performer even without the interest surrounding it, due to the recent death of co-star Tupac Shakur.",2008-05-02,16416,Gridlock'd +Derek Adams,fresh,0119225,Time Out,"The film has a fairly uninteresting narrative motor in its thriller subplot, but hits on an edgy black comic tone for Stretch and Spoon's increasingly pained dealings with the unsympathetic representatives of authority.",2006-02-09,16416,Gridlock'd +Jeff Strickler,none,0119225,Minneapolis Star Tribune,,2002-11-06,16416,Gridlock'd +Peter Stack,rotten,0119225,San Francisco Chronicle,The film seems so fresh it's almost possible to forget that it is a fraud in its description of the culture of hard drugs.,2002-06-18,16416,Gridlock'd +Rick Groen,fresh,0119225,Globe and Mail,"The movie's appeal lies largely in its capacity for surprise, riffing off tired characters and pooped genres to produce, intermittently at least, a fresh new tone. Call it junkie humour.",2002-04-12,16416,Gridlock'd +Jack Mathews,fresh,0119225,Los Angeles Times,"Cast against type as the gentler of two musician junkies trying to burrow through the bureaucracy to enter a rehab clinic in Detroit, Shakur has the relaxed screen presence of a young Wesley Snipes and plays perfectly off the delirious Tim Roth.",2001-02-14,16416,Gridlock'd +Jennie Yabroff,fresh,0119225,Salon.com,A surprisingly light-hearted comedy about what happens when two self-imposed exiles from society decide to go straight and look to the system for a little help.,2000-01-01,16416,Gridlock'd +Joe Baltake,none,0119225,Sacramento Bee,,2000-01-01,16416,Gridlock'd +Roger Ebert,fresh,0119225,Chicago Sun-Times,"This is grim material, but surprisingly entertaining, and it is more cause to mourn the recent death of Shakur, who gives his best performance as Spoon, a musician who wants to get off drugs.",2000-01-01,16416,Gridlock'd +James Berardinelli,fresh,0119225,ReelViews,"Gridlock'd is refreshing because it's different. The subject matter isn't new, but the approach and tone are.",2000-01-01,16416,Gridlock'd +Janet Maslin,fresh,0119225,New York Times,"A smart, well-made buddy film about two junkies desperate to kick the habit.",2000-01-01,16416,Gridlock'd +Richard Harrington,none,0119225,Washington Post,,2000-01-01,16416,Gridlock'd +Susan Stark,fresh,0119225,Detroit News,,2000-01-01,16416,Gridlock'd +,fresh,0119225,Entertainment Weekly,,1997-01-31,16416,Gridlock'd +Jonathan Rosenbaum,rotten,0118111,Chicago Reader,"This 1997 comedy may be amusing if you feel a pressing need to feel superior to somebody, but the aim is too broad and scattershot to add up to much beyond an acknowledgment of small-town desperation.",2008-08-12,13152,Waiting for Guffman +Owen Gleiberman,fresh,0118111,Entertainment Weekly,A madcap gem.,2007-02-27,13152,Waiting for Guffman +,fresh,0118111,Time Out,The comedy has the slow burn of a richly nuanced and non-judgmental character study.,2006-01-26,13152,Waiting for Guffman +Daniel M. Kimmel,rotten,0118111,Variety,"Where This Is Spinal Tap took rock music and the media as its focus - fat, juicy targets just asking to be lampooned - Guest's target here is small-town provincials.",2004-05-14,13152,Waiting for Guffman +Patricia S. McCormick,none,0118111,New York Times,,2003-04-21,13152,Waiting for Guffman +Liam Lacey,fresh,0118111,Globe and Mail,"A very funny, very unusual ensemble comedy that falls somewhere between slapdash and brilliant, an improvised comedy with more hits than misses.",2002-04-12,13152,Waiting for Guffman +Peter Travers,fresh,0118111,Rolling Stone,Priceless.,2001-05-11,13152,Waiting for Guffman +Kenneth Turan,fresh,0118111,Los Angeles Times,"A sly and gleeful comedy showcase that pokes clever fun at the American musical, amateur theatricals and anything else that's not nailed down.",2001-02-14,13152,Waiting for Guffman +Ruthe Stein,fresh,0118111,San Francisco Chronicle,"The originality and audacity of the film, written by Guest and Levy, is what holds us. They never lose the conceit that the documentary filmmakers, and not themselves, are the ones who made this movie.",2000-01-01,13152,Waiting for Guffman +Susan Stark,fresh,0118111,Detroit News,,2000-01-01,13152,Waiting for Guffman +James Berardinelli,fresh,0118111,ReelViews,"There is such a thing as comic momentum, and Guest has a good sense of what that means. Comic momentum doesn't refer to nonstop jokes, but to an atmosphere that is always ripe for humor.",2000-01-01,13152,Waiting for Guffman +Susan Wloszczyna,fresh,0118111,USA Today,The nonstop amusing mockumentary Waiting for Guffman does to small-town acting troupes what This Is Spinal Tap did to heavy-metal bands.,2000-01-01,13152,Waiting for Guffman +Roger Ebert,fresh,0118111,Chicago Sun-Times,"Attention is paid not simply to funny characters and punch lines, but to small nudges at human nature.",2000-01-01,13152,Waiting for Guffman +Lisa Schwarzbaum,fresh,0116754,Entertainment Weekly,,2011-09-07,14448,Kavkazskiy plennik +Derek Adams,none,0116754,Time Out,,2006-02-09,14448,Kavkazskiy plennik +Lisa Alspector,none,0116754,Chicago Reader,,2005-02-19,14448,Kavkazskiy plennik +Janet Maslin,none,0116754,New York Times,,2004-10-06,14448,Kavkazskiy plennik +Rick Groen,fresh,0116754,Globe and Mail,"Once our disbelief gets suspended, a spell is definitely cast.",2002-04-12,14448,Kavkazskiy plennik +Desson Thomson,fresh,0116754,Washington Post,"The outcome of this movie isn't exactly Hollywood material, but it stirs thoughts and feelings that outlast all too many American studio releases.",2002-01-22,14448,Kavkazskiy plennik +Kenneth Turan,fresh,0116754,Los Angeles Times,"Simple, powerful, convincing.",2001-02-14,14448,Kavkazskiy plennik +Roger Ebert,fresh,0116754,Chicago Sun-Times,A thoughtful and moving film about war.,2000-01-01,14448,Kavkazskiy plennik +Joe Baltake,fresh,0116754,Sacramento Bee,"A terse, poetic look at the intimacy of war -- when enemies come face to face.",2000-01-01,14448,Kavkazskiy plennik +Peter Stack,fresh,0116754,San Francisco Chronicle,Bodrov's movie turns this barren no man's land into an extraordinary stage.,2000-01-01,14448,Kavkazskiy plennik +Stanley Kauffmann,none,0116754,The New Republic,,2000-01-01,14448,Kavkazskiy plennik +Andrew Ross,fresh,0116754,Salon.com,"The performances that Bodrov drew from a mostly amateur cast of Muslim villagers -- most of whom have never seen running hot water, let alone a movie camera -- are alone worth the price of admission.",2000-01-01,14448,Kavkazskiy plennik +James Berardinelli,fresh,0116754,ReelViews,"Lyrical and evocative, Prisoner of the Mountains represents a balanced and telling examination of the absurdity of war.",2000-01-01,14448,Kavkazskiy plennik +Jonathan Rosenbaum,fresh,0118691,Chicago Reader,"Manages to be sweet and likable, largely because Kwapis directs the actors well and treats the sub-Lubitsch material as if he actually believed in it.",2010-04-07,11295,The Beautician and the Beast +Emanuel Levy,none,0118691,Variety,,2009-03-26,11295,The Beautician and the Beast +Stephen Holden,none,0118691,New York Times,,2003-05-20,11295,The Beautician and the Beast +Jeff Strickler,none,0118691,Minneapolis Star Tribune,,2002-11-06,11295,The Beautician and the Beast +Rita Kempley,none,0118691,Washington Post,,2002-01-22,11295,The Beautician and the Beast +,none,0118691,Houston Chronicle,,2000-01-01,11295,The Beautician and the Beast +James Berardinelli,rotten,0118691,ReelViews,,2000-01-01,11295,The Beautician and the Beast +Susan Wloszczyna,rotten,0118691,USA Today,Listening to Fran Drescher's nasal squawk for an entire movie is the price you'll pay to see The Beautician and the Beast. Imagine having your ear canal scoured with Brillo. Only more abrasive.,2000-01-01,11295,The Beautician and the Beast +Joe Baltake,none,0118691,Sacramento Bee,,2000-01-01,11295,The Beautician and the Beast +Peter Stack,none,0118691,San Francisco Chronicle,,2000-01-01,11295,The Beautician and the Beast +Roger Ebert,rotten,0118691,Chicago Sun-Times,,2000-01-01,11295,The Beautician and the Beast +Susan Stark,rotten,0118691,Detroit News,,2000-01-01,11295,The Beautician and the Beast +,rotten,0118691,Entertainment Weekly,,1997-02-07,11295,The Beautician and the Beast +Lisa Schwarzbaum,fresh,0120238,Entertainment Weekly,,2011-09-07,404622612,SubUrbia +Godfrey Cheshire,none,0120238,Variety,,2008-12-10,404622612,SubUrbia +Geoff Andrew,none,0120238,Time Out,,2006-02-09,404622612,SubUrbia +Janet Maslin,none,0120238,New York Times,,2003-05-20,404622612,SubUrbia +Jeff Strickler,none,0120238,Minneapolis Star Tribune,,2002-11-06,404622612,SubUrbia +,rotten,0120238,Globe and Mail,,2002-04-12,404622612,SubUrbia +Rita Kempley,none,0120238,Washington Post,,2002-01-22,404622612,SubUrbia +Peter Travers,none,0120238,Rolling Stone,,2001-05-11,404622612,SubUrbia +Jack Mathews,none,0120238,Los Angeles Times,,2001-02-14,404622612,SubUrbia +Scott Rosenberg,none,0120238,Salon.com,,2000-01-01,404622612,SubUrbia +Mike Clark,fresh,0120238,USA Today,Linklater's finessing of acting ensembles is very proficient -- again.,2000-01-01,404622612,SubUrbia +James Berardinelli,rotten,0120238,ReelViews,,2000-01-01,404622612,SubUrbia +Peter Stack,none,0120238,San Francisco Chronicle,,2000-01-01,404622612,SubUrbia +,none,0120238,Houston Chronicle,,2000-01-01,404622612,SubUrbia +Susan Stark,rotten,0120238,Detroit News,,2000-01-01,404622612,SubUrbia +Roger Ebert,fresh,0120238,Chicago Sun-Times,,2000-01-01,404622612,SubUrbia +,fresh,0120238,Entertainment Weekly,,1997-02-07,404622612,SubUrbia +Ken Eisner,none,0116565,Variety,,2012-02-23,770670045,Hotel de Love +Derek Adams,none,0116565,Time Out,,2006-02-09,770670045,Hotel de Love +Bruce Walker,none,0116565,Washington Post,,2002-01-22,770670045,Hotel de Love +Kevin Thomas,none,0116565,Los Angeles Times,,2001-02-14,770670045,Hotel de Love +Ruthe Stein,none,0116565,San Francisco Chronicle,,2000-01-01,770670045,Hotel de Love +James Berardinelli,rotten,0116565,ReelViews,,2000-01-01,770670045,Hotel de Love +Stephen Holden,none,0116565,New York Times,,2000-01-01,770670045,Hotel de Love +Susan Stark,rotten,0116565,Detroit News,,2000-01-01,770670045,Hotel de Love +Roger Ebert,rotten,0116565,Chicago Sun-Times,,2000-01-01,770670045,Hotel de Love +Joe Leydon,rotten,0119887,Variety,"Pic exists solely to showcase Leguizamo's wild and crazy antics, which are very much an acquired taste.",2009-03-27,11005,The Pest +Stephen Holden,rotten,0119887,New York Times,"When Mr. Leguizamo isn't doing third-rate ethnic parody, he is wallowing in scatological jokes that are so poorly prepared and executed that they make similar antics by Mr. Carrey play like classic routines.",2004-08-30,11005,The Pest +Kevin Thomas,rotten,0119887,Los Angeles Times,"Talented and versatile actor-comedian John Leguizamo indulges himself so totally with incessant mugging, mimicking and all-around showing off that he begins to wear out his welcome before the opening credit sequence is over.",2001-02-14,11005,The Pest +Susan Stark,rotten,0119887,Detroit News,,2000-01-01,11005,The Pest +Jeff Millar,fresh,0119887,Houston Chronicle,This film is utterly without discipline or focus in a way that -- to one's shame --one eventually finds oddly endearing.,2000-01-01,11005,The Pest +Mick LaSalle,rotten,0119887,San Francisco Chronicle,"Obviously, someone must have told Leguizamo he's a comic genius. Whoever did that isn't his friend.",2000-01-01,11005,The Pest +James Berardinelli,rotten,0119887,ReelViews,It's the kind of movie where every paying customer deserves to receive a handwritten apology from the producers.,2000-01-01,11005,The Pest +Todd McCarthy,none,0119141,Variety,,2008-10-18,12611,Fools Rush In +,none,0119141,Time Out,,2006-01-26,12611,Fools Rush In +Mick LaSalle,rotten,0119141,San Francisco Chronicle,,2002-06-18,12611,Fools Rush In +,rotten,0119141,Globe and Mail,,2002-04-12,12611,Fools Rush In +Kevin Thomas,none,0119141,Los Angeles Times,,2001-02-14,12611,Fools Rush In +Susan Stark,rotten,0119141,Detroit News,,2000-01-01,12611,Fools Rush In +Janet Maslin,none,0119141,New York Times,,2000-01-01,12611,Fools Rush In +,none,0119141,Washington Post,,2000-01-01,12611,Fools Rush In +Mike Clark,rotten,0119141,USA Today,"Take away the ethnic/pregnancy angles, and we've seen this premise countless times -- all the way back to the spate of post-World War II romances about returning veterans and the mates they married in a blink.",2000-01-01,12611,Fools Rush In +Joe Baltake,none,0119141,Sacramento Bee,,2000-01-01,12611,Fools Rush In +James Berardinelli,fresh,0119141,ReelViews,,2000-01-01,12611,Fools Rush In +Roger Ebert,fresh,0119141,Chicago Sun-Times,,2000-01-01,12611,Fools Rush In +,rotten,0119141,Entertainment Weekly,,1997-02-14,12611,Fools Rush In +Todd McCarthy,none,0120357,Variety,,2012-02-23,16729,Touch +Janet Maslin,none,0120357,New York Times,,2003-05-20,16729,Touch +Desson Thomson,none,0120357,Washington Post,,2002-01-22,16729,Touch +,none,0120357,Los Angeles Times,,2001-02-14,16729,Touch +James Berardinelli,rotten,0120357,ReelViews,,2000-01-01,16729,Touch +Edward Guthmann,none,0120357,San Francisco Chronicle,,2000-01-01,16729,Touch +Susan Stark,rotten,0120357,Detroit News,,2000-01-01,16729,Touch +Meg Cohen Ragas,none,0120357,Salon.com,,2000-01-01,16729,Touch +,none,0120357,Houston Chronicle,,2000-01-01,16729,Touch +Roger Ebert,rotten,0120357,Chicago Sun-Times,The experience of seeing the film is subduing; the movie plays in a muted key.,2000-01-01,16729,Touch +Owen Gleiberman,rotten,0118548,Entertainment Weekly,,2011-09-07,13603,Absolute Power +Richard Corliss,fresh,0118548,TIME Magazine,"The plot is a doomsday version of Bill Clinton's Paula Jones problem, but the theme is impending mortality--settling scores before time's up.",2008-08-22,13603,Absolute Power +Geoff Andrew,fresh,0118548,Time Out,"Doesn't rank with Eastwood's best work as actor/director, but it's nevertheless solidly enjoyable.",2006-06-24,13603,Absolute Power +Janet Maslin,rotten,0118548,New York Times,"Mr. Hackman languishes in the smallish role of a White House buffoon, with Judy Davis equally cartoonish as his witchy chief of staff.",2003-05-20,13603,Absolute Power +Mick LaSalle,fresh,0118548,San Francisco Chronicle,"A first-rate thriller about arrogance at the top, a showdown between two kinds of Americans: the evil, omnipotent bureaucrat and the enterprising, mind-his- own-business loner.",2002-06-18,13603,Absolute Power +Rick Groen,rotten,0118548,Globe and Mail,"Ultimately, this is a thriller in vain search of credible thrills.",2002-04-12,13603,Absolute Power +Kenneth Turan,fresh,0118548,Los Angeles Times,"Almost a drawing room thriller, unhurried and genteel but enlivened with suspense and surprising bursts of sly, even biting, humor.",2001-02-14,13603,Absolute Power +Mike Clark,rotten,0118548,USA Today,Unintentional yuks litter an otherwise somber political thriller adapted from David Baldacci's novel.,2000-01-01,13603,Absolute Power +Charles Taylor,rotten,0118548,Salon.com,The picture might have gotten by if Eastwood had given it some impudent wit. But he directs to the rhythm of his facial muscles.,2000-01-01,13603,Absolute Power +Roger Ebert,fresh,0118548,Chicago Sun-Times,"Not many thrillers slow down to notice relationships, but this one does.",2000-01-01,13603,Absolute Power +James Berardinelli,fresh,0118548,ReelViews,A fairly routine thriller that gets high marks as a result of tight pacing and top-notch acting.,2000-01-01,13603,Absolute Power +,rotten,0118548,Entertainment Weekly,,1997-02-14,13603,Absolute Power +Lisa Alspector,fresh,0120434,Chicago Reader,"The subplots involving D'Angelo and Newton and Ethan Embry -- the Griswolds' son, who can't stop winning -- have their charms.",2009-07-21,11530,Vegas Vacation +Todd McCarthy,rotten,0120434,Variety,A tepid fourth entry in the popular 1980s series that is decidedly showing its age.,2009-03-26,11530,Vegas Vacation +Lawrence Van Gelder,none,0120434,New York Times,To the legions who have returned as losers from the glitzy playgrounds of the Nevada desert can now be added the people responsible for Vegas Vacation.,2003-05-20,11530,Vegas Vacation +Bruce Walker,rotten,0120434,Washington Post,I'll lay you 3-to-1 odds that by the end of this flick even fans will be thinking that this wasn't a trip worth taking.,2002-01-22,11530,Vegas Vacation +Jack Mathews,rotten,0120434,Los Angeles Times,There is nothing more memorable about Vegas Vacation than the flatness of the writing in Elisa Bell's script and the uninspired direction of first-timer Stephen Kessler.,2001-02-14,11530,Vegas Vacation +John Hartl,rotten,0120434,Film.com,The first half hour in particular is clogged with wheezing routines that appear to have no punchlines.,2000-01-01,11530,Vegas Vacation +James Berardinelli,rotten,0120434,ReelViews,Full of jokes that fall flat.,2000-01-01,11530,Vegas Vacation +Jeff Millar,rotten,0120434,Houston Chronicle,"The film's only life is provided by Randy Quaid, back as Ellen's redneck cousin.",2000-01-01,11530,Vegas Vacation +Sean Means,rotten,0120434,Film.com,"Chase unrolls his tired collection of mugs and stumbles, while some truly funny performers - particularly Sid Caesar and the usually reliable Wallace Shawn - are wasted in do-nothing roles.",2000-01-01,11530,Vegas Vacation +Mick LaSalle,rotten,0120434,San Francisco Chronicle,"Why, if [Chevy] Chase is such a funny guy, does he make such unfunny movies?",2000-01-01,11530,Vegas Vacation +Susan Stark,rotten,0120434,Detroit News,Retracing overly traveled roads.,2000-01-01,11530,Vegas Vacation +,none,0120318,Entertainment Weekly,,2009-11-06,11151,That Old Feeling +Geoff Andrew,none,0120318,Time Out,,2006-06-24,11151,That Old Feeling +Roger Ebert,rotten,0120318,Chicago Sun-Times,,2000-01-01,11151,That Old Feeling +Mike Clark,fresh,0120318,USA Today,Reiner benefits from divine intervention from no less than Miss M herself. Bette Midler flings the usual zingers with fang-baring zeal in a part that plays to her brassy strengths.,2000-01-01,11151,That Old Feeling +Lawrence Van Gelder,none,0120318,New York Times,,2000-01-01,11151,That Old Feeling +James Berardinelli,rotten,0120318,ReelViews,,2000-01-01,11151,That Old Feeling +Ruthe Stein,none,0120318,San Francisco Chronicle,,2000-01-01,11151,That Old Feeling +,none,0120318,Washington Post,,2000-01-01,11151,That Old Feeling +Susan Stark,fresh,0120318,Detroit News,,2000-01-01,11151,That Old Feeling +Joe Baltake,none,0120318,Sacramento Bee,,2000-01-01,11151,That Old Feeling +Owen Gleiberman,fresh,0116922,Entertainment Weekly,,2011-09-07,16879,Lost Highway +Geoff Andrew,none,0116922,Time Out,,2006-06-24,16879,Lost Highway +Jeff Strickler,none,0116922,Minneapolis Star Tribune,,2002-11-06,16879,Lost Highway +Edward Guthmann,none,0116922,San Francisco Chronicle,,2002-06-18,16879,Lost Highway +,rotten,0116922,Globe and Mail,,2002-04-12,16879,Lost Highway +Desson Thomson,none,0116922,Washington Post,,2002-01-22,16879,Lost Highway +,none,0116922,Los Angeles Times,,2001-02-14,16879,Lost Highway +Mike Clark,rotten,0116922,USA Today,"Visually arresting, the movie does keep you going until the finale confirms suspicions that Lynch has painted himself into a corner.",2000-01-01,16879,Lost Highway +,none,0116922,Houston Chronicle,,2000-01-01,16879,Lost Highway +James Berardinelli,rotten,0116922,ReelViews,,2000-01-01,16879,Lost Highway +Susan Stark,fresh,0116922,Detroit News,,2000-01-01,16879,Lost Highway +Joe Baltake,none,0116922,Sacramento Bee,,2000-01-01,16879,Lost Highway +Stephanie Zacharek,none,0116922,Salon.com,,2000-01-01,16879,Lost Highway +Jonathan Rosenbaum,none,0116922,Chicago Reader,,2000-01-01,16879,Lost Highway +Janet Maslin,none,0116922,New York Times,,2000-01-01,16879,Lost Highway +Roger Ebert,rotten,0116922,Chicago Sun-Times,,2000-01-01,16879,Lost Highway +,fresh,0116922,Entertainment Weekly,,1997-02-21,16879,Lost Highway +Owen Gleiberman,fresh,0120036,Entertainment Weekly,,2011-09-07,13514,Rosewood +Richard Schickel,fresh,0120036,TIME Magazine,"Rhames' gravity and grace, Voight's pinched anguish as he wills himself to do right, the moving work of actors like Don Cheadle and Esther Rolle do much to redeem this film for human if not historical reality.",2010-04-28,13514,Rosewood +Todd McCarthy,fresh,0120036,Variety,"Although it increasingly succumbs to a tendency toward conventional movie heroics, John Singleton's fourth film tells a story of rare interest and tragedy...",2008-10-18,13514,Rosewood +,rotten,0120036,Globe and Mail,,2002-04-12,13514,Rosewood +Kenneth Turan,fresh,0120036,Los Angeles Times,"The need to bear witness against atrocity, to testify that something wicked this way came, is the powerful drive that animates Rosewood, the story of an American tragedy so horrific no one talked about it for more than half a century.",2001-02-14,13514,Rosewood +Peter Stack,rotten,0120036,San Francisco Chronicle,"Rosewood is startling, infuriating, painful history played out as a not-very-satisfying, overly ambitious and overlong movie.",2000-01-01,13514,Rosewood +Janet Maslin,rotten,0120036,New York Times,Neither the film's smug white bigots nor its uniformly noble blacks are well served by such oversimplification.,2000-01-01,13514,Rosewood +Susan Wloszczyna,fresh,0120036,USA Today,It's doubtful a viewer of any race will be unshaken by this horrifying look back during Black History Month.,2000-01-01,13514,Rosewood +Susan Stark,fresh,0120036,Detroit News,,2000-01-01,13514,Rosewood +Roger Ebert,fresh,0120036,Chicago Sun-Times,"If the movie were simply the story of this event, it would be no more than a sad record. What makes it more is the way it shows how racism breeds and feeds, and is taught by father to son.",2000-01-01,13514,Rosewood +,none,0120036,Washington Post,,2000-01-01,13514,Rosewood +James Berardinelli,fresh,0120036,ReelViews,An epic that stands alone in the latter weeks of a dismal movie winter.,2000-01-01,13514,Rosewood +,fresh,0120036,Entertainment Weekly,,1997-02-21,13514,Rosewood +Owen Gleiberman,fresh,0119008,Entertainment Weekly,,2011-09-07,16820,Donnie Brasco +A.O. Scott,none,0119008,New York Times,,2011-02-22,16820,Donnie Brasco +Todd McCarthy,fresh,0119008,Variety,"Although perhaps familiar in its outer trappings, Pacino's fine work is the key to the film succeeding to the extent that it does.",2008-11-20,16820,Donnie Brasco +,fresh,0119008,Time Out,"A tense, sharp and compelling character study, Newell's film is a worthy addition to the Mob-movie canon.",2006-01-26,16820,Donnie Brasco +Rita Kempley,rotten,0119008,Washington Post,"Unfortunately, the story isn't inventive and Newell's methodical approach to it verges on monotony.",2002-08-14,16820,Donnie Brasco +Mick LaSalle,fresh,0119008,San Francisco Chronicle,"A first-class Mafia thriller that is also, in its way, a love story.",2002-06-18,16820,Donnie Brasco +Rick Groen,fresh,0119008,Globe and Mail,"In the tired figure of Lefty, manifest in the craggy icon of Pacino, our sympathies are definitely enlisted, and the theme rings a poignant note.",2002-04-12,16820,Donnie Brasco +Peter Travers,fresh,0119008,Rolling Stone,"Pacino and Depp are a match made in acting heaven, riffing off each other with astonishing subtlety and wit.",2001-05-11,16820,Donnie Brasco +Kenneth Turan,rotten,0119008,Los Angeles Times,"Though the outline of what the film has tried to do is visible, so little feels at stake emotionally that anyone intending to care about these characters would be well advised, for want of a better phrase, to simply fhuggedaboudit.",2001-02-14,16820,Donnie Brasco +Jeff Millar,fresh,0119008,Houston Chronicle,"Depp is as good as I've seen him, and Pacino is simply astonishing.",2000-01-01,16820,Donnie Brasco +Roger Ebert,fresh,0119008,Chicago Sun-Times,The movie has many human qualities and contains what will be remembered as one of Pacino's finest scenes.,2000-01-01,16820,Donnie Brasco +Charles Taylor,fresh,0119008,Salon.com,A consistently absorbing and intelligent adult entertainment.,2000-01-01,16820,Donnie Brasco +Susan Stark,fresh,0119008,Detroit News,"You get something far richer, if more unsettling, here than conventional crime drama's romanticism and easy analogies.",2000-01-01,16820,Donnie Brasco +Joe Baltake,rotten,0119008,Sacramento Bee,Remains a bore for much of its running time.,2000-01-01,16820,Donnie Brasco +Desson Thomson,rotten,0119008,Washington Post,"For all its treacheries, twists and turns, nothing really comes as a surprise.",2000-01-01,16820,Donnie Brasco +James Berardinelli,fresh,0119008,ReelViews,"Takes us into a world that the movies frequently open to us, but somehow this trip seems more real and less glamorized than most.",2000-01-01,16820,Donnie Brasco +Janet Maslin,fresh,0119008,New York Times,"An affirmation that the director, Mike Newell, has a gift for talkative, intelligent films that make his actors shine.",2000-01-01,16820,Donnie Brasco +Susan Wloszczyna,fresh,0119008,USA Today,Pacino cans the showboating bluster and gives a gently nuanced portrait of a simple man in decline.,2000-01-01,16820,Donnie Brasco +,fresh,0119008,Entertainment Weekly,,1997-02-28,16820,Donnie Brasco +Leonard Klady,none,0118750,Variety,,2009-03-26,15333,Booty Call +,rotten,0118750,Entertainment Weekly,,2008-12-17,15333,Booty Call +,none,0118750,Time Out,,2006-06-24,15333,Booty Call +,rotten,0118750,Globe and Mail,,2002-04-12,15333,Booty Call +Bruce Walker,none,0118750,Washington Post,,2002-01-22,15333,Booty Call +Mick LaSalle,none,0118750,San Francisco Chronicle,,2000-01-01,15333,Booty Call +Stephen Holden,none,0118750,New York Times,,2000-01-01,15333,Booty Call +Susan Stark,fresh,0118750,Detroit News,,2000-01-01,15333,Booty Call +James Berardinelli,rotten,0118750,ReelViews,,2000-01-01,15333,Booty Call +Susan Wloszczyna,rotten,0118750,USA Today,Anyone seeking a good time that involves wit and logic will consider the film a definite wrong number.,2000-01-01,15333,Booty Call +Roger Ebert,fresh,0118750,Chicago Sun-Times,,2000-01-01,15333,Booty Call +Emanuel Levy,fresh,0118762,Variety,"Strand's anthology of four gay short films is terrifically entertaining, and while each is interesting, the best is no doubt is Alkalai by Christopher, who shows great promise as feature director.",2005-06-11,770688997,Boys Life 2 +Stephen Holden,none,0118762,New York Times,,2003-05-20,770688997,Boys Life 2 +,none,0118762,Houston Chronicle,,2000-01-01,770688997,Boys Life 2 +Edward Guthmann,fresh,0118762,San Francisco Chronicle,,2000-01-01,770688997,Boys Life 2 +Lisa Schwarzbaum,rotten,0118859,Entertainment Weekly,,2011-09-07,14613,City of Industry +Emanuel Levy,rotten,0118859,Variety,"Like other Irvin films, this noir saga (more of an urban Western) is burdened with a philosophical layer that's incongruous with the basic tale, though acting by Keitel, Dorff, and others is good.",2007-04-27,14613,City of Industry +,none,0118859,Time Out,,2006-06-24,14613,City of Industry +Jeff Strickler,none,0118859,Minneapolis Star Tribune,,2002-11-06,14613,City of Industry +,fresh,0118859,Globe and Mail,,2002-04-12,14613,City of Industry +Rita Kempley,none,0118859,Washington Post,,2002-01-22,14613,City of Industry +Kenneth Turan,none,0118859,Los Angeles Times,,2001-02-14,14613,City of Industry +Mike Clark,rotten,0118859,USA Today,"Slight, solemn, borderline silly but watchable.",2000-01-01,14613,City of Industry +Susan Stark,rotten,0118859,Detroit News,,2000-01-01,14613,City of Industry +Roger Ebert,rotten,0118859,Chicago Sun-Times,,2000-01-01,14613,City of Industry +Mick LaSalle,none,0118859,San Francisco Chronicle,,2000-01-01,14613,City of Industry +Stephen Holden,none,0118859,New York Times,,2000-01-01,14613,City of Industry +Joe Baltake,none,0118859,Sacramento Bee,,2000-01-01,14613,City of Industry +,none,0118859,Houston Chronicle,,2000-01-01,14613,City of Industry +James Berardinelli,rotten,0118859,ReelViews,,2000-01-01,14613,City of Industry +Roger Ebert,fresh,0206634,Chicago Sun-Times,"Cuaron fulfills the promise of futuristic fiction; characters do not wear strange costumes or visit the moon, and the cities are not plastic hallucinations, but look just like today, except tired and shabby.",2007-10-05,326459204,Children of Men +Joshua Rothkopf,fresh,0206634,Time Out New York,"You feel as if you're accompanying a war photographer who's lost a bet. Slogging unflinchingly through humanity's worst hours, the movie laces the narrative's forays into science-fiction grandstanding with a gut-wrenching dynamic.",2007-02-03,326459204,Children of Men +Andrew Sarris,rotten,0206634,New York Observer,What I find particularly irksome about it is its pseudo-humanism and its calculating political correctness.,2007-01-17,326459204,Children of Men +David Edelstein,fresh,0206634,New York Magazine,It's a wow.,2007-01-06,326459204,Children of Men +Roger Moore,fresh,0206634,Orlando Sentinel,A superior sci-fi thriller and the best doomsday drama since 28 Days Later.,2007-01-05,326459204,Children of Men +Rene Rodriguez,fresh,0206634,Miami Herald,"Despite the bleakness of its vision, Children of Men is also thrilling, both for its groundbreaking style (there are action sequences here unlike any filmed before) and its complex, vividly realized ideas.",2007-01-05,326459204,Children of Men +Amy Biancolli,fresh,0206634,Houston Chronicle,"Cuaron does lowdown takes on high concept better than anyone; no matter what genre he touches, he brings grit and loose-limbed humor along with the hand-held camera jangles.",2007-01-05,326459204,Children of Men +Tom Long,fresh,0206634,Detroit News,"Darkly poetic throughout, the film starts with an explosion and ends drifting in fog with no clear resolution in sight. How brave and oddly satisfying.",2007-01-05,326459204,Children of Men +Terry Lawson,fresh,0206634,Detroit Free Press,"Fasten your seat belt; you're in for a bumpy, provocative ride.",2007-01-05,326459204,Children of Men +Robert Denerstein,fresh,0206634,Denver Rocky Mountain News,"You can see it now or wait 20 years until the movie has found a niche among equally visionary movies that have the capacity to compel, alarm and shake things up.",2007-01-05,326459204,Children of Men +Lisa Kennedy,fresh,0206634,Denver Post,"Based on a novel by British mystery writer P.D. James, Children of Men is a filmmaking feat. In the midst of mayhem, director Alfonso Cuaron delivers subtle and jarring images, while exploring complex emotional rhythms.",2007-01-05,326459204,Children of Men +Steven Rea,fresh,0206634,Philadelphia Inquirer,"[A] dark, terrifying and sometimes very funny film.",2007-01-04,326459204,Children of Men +Stephen Whitty,rotten,0206634,Newark Star-Ledger,A stylish mish-mash of dystopian cliches.,2007-01-04,326459204,Children of Men +Peter Rainer,fresh,0206634,Christian Science Monitor,"At times the film is so supercharged that it glosses over the story's thematic richness and turns into a very high-grade action picture. But if that's the worst thing you can say about a movie, you're doing all right.",2007-01-04,326459204,Children of Men +Colin Covert,fresh,0206634,Minneapolis Star Tribune,"Cuaron also pulls us deep into the engrossing universe he has created. There is a stark absence of gadget porn in this futuristic adventure; the most advanced device we see is a video game, innovation at its most trivial.",2007-01-04,326459204,Children of Men +Lisa Schwarzbaum,fresh,0206634,Entertainment Weekly,"Thrilling, important, and invigoratingly bleak, Children of Men is one of the very best movies to come out in 2006.",2007-01-03,326459204,Children of Men +Anthony Lane,fresh,0206634,New Yorker,"Even if you don't buy the main conceit, the scumbled texture of the movie makes it feel not just plausible but recognizable, and Cuaron takes care never to paint the future as consolingly different.",2007-01-02,326459204,Children of Men +Joe Morgenstern,rotten,0206634,Wall Street Journal,"Bloated adaptation of P.D. James's thoughtful, compact novel.",2006-12-29,326459204,Children of Men +Peter Hartlaub,fresh,0206634,San Francisco Chronicle,"While it's best to know as little as possible about this movie going into the theater, the story is so fast-paced that you won't be thinking about this review or any other.",2006-12-29,326459204,Children of Men +Peter Travers,fresh,0206634,Rolling Stone,"A second viewing, which Children of Men richly rewards, deepens our understanding.",2006-12-29,326459204,Children of Men +Lisa Schwarzbaum,rotten,0119432,Entertainment Weekly,,2011-09-07,11230,Jungle 2 Jungle +Lisa Alspector,fresh,0119432,Chicago Reader,Gently humorous and moving.,2009-07-28,11230,Jungle 2 Jungle +Kevin McManus,rotten,0119432,Washington Post,"Roughly half of Tim Allen's latest comedy is hilarious-stupid, and the rest is monotonous-stupid.",2009-07-28,11230,Jungle 2 Jungle +Leonard Klady,rotten,0119432,Variety,"Simple truths are often the most effective, but in this instance they are only banal and mildly amusing.",2009-03-26,11230,Jungle 2 Jungle +Trevor Johnston,rotten,0119432,Time Out,"Typically for Disney, the villains aren't made of very stern stuff, nor indeed is fey spear-carrying Mimi-Siku.",2006-06-24,11230,Jungle 2 Jungle +Mick LaSalle,rotten,0119432,San Francisco Chronicle,"Mildly caustic, sentimental and slow.",2002-06-18,11230,Jungle 2 Jungle +,rotten,0119432,Globe and Mail,,2002-04-12,11230,Jungle 2 Jungle +Kevin Thomas,fresh,0119432,Los Angeles Times,"Huntington is wonderful at conveying Mimi's combination of naivete and intelligence, and Allen is a marvel.",2001-02-14,11230,Jungle 2 Jungle +Roger Ebert,rotten,0119432,Chicago Sun-Times,No one is allowed to think in this movie. Not one single event in the entire plot can possibly take place unless every character in the cast has brains made of Bac-o-Bits.,2000-01-01,11230,Jungle 2 Jungle +Janet Maslin,fresh,0119432,New York Times,"Jungle 2 Jungle still finds time to appreciate Mr. Allen's easy way with a child actor, an audience or a heavily tranquilized pet cat.",2000-01-01,11230,Jungle 2 Jungle +Mike Clark,rotten,0119432,USA Today,"For all his talent, Martin Short has been consistently snakebitten in his choice of movies, a streak now extended by Disney's Jungle 2 Jungle.",2000-01-01,11230,Jungle 2 Jungle +Rita Kempley,rotten,0119432,Washington Post,"Ashes to ashes, dust to dust, Jungle 2 Jungle.",2000-01-01,11230,Jungle 2 Jungle +Susan Stark,rotten,0119432,Detroit News,,2000-01-01,11230,Jungle 2 Jungle +James Berardinelli,rotten,0119432,ReelViews,I for one am sick and tired of the unappealingly unoriginal fare that Disney releases on a constant basis.,2000-01-01,11230,Jungle 2 Jungle +,rotten,0119432,Entertainment Weekly,,1997-03-07,11230,Jungle 2 Jungle +Owen Gleiberman,fresh,0116743,Entertainment Weekly,,2011-09-07,17011,Kama Sutra: A Tale of Love +Todd McCarthy,none,0116743,Variety,,2008-10-18,17011,Kama Sutra: A Tale of Love +Geoff Andrew,none,0116743,Time Out,,2006-06-24,17011,Kama Sutra: A Tale of Love +Edward Guthmann,fresh,0116743,San Francisco Chronicle,,2002-06-18,17011,Kama Sutra: A Tale of Love +Desson Thomson,none,0116743,Washington Post,,2002-01-22,17011,Kama Sutra: A Tale of Love +Kevin Thomas,none,0116743,Los Angeles Times,,2001-02-14,17011,Kama Sutra: A Tale of Love +,none,0116743,Houston Chronicle,,2000-01-01,17011,Kama Sutra: A Tale of Love +Roger Ebert,rotten,0116743,Chicago Sun-Times,,2000-01-01,17011,Kama Sutra: A Tale of Love +Laura Miller,none,0116743,Salon.com,,2000-01-01,17011,Kama Sutra: A Tale of Love +James Berardinelli,rotten,0116743,ReelViews,,2000-01-01,17011,Kama Sutra: A Tale of Love +Janet Maslin,none,0116743,New York Times,,2000-01-01,17011,Kama Sutra: A Tale of Love +Stanley Kauffmann,none,0116743,The New Republic,,2000-01-01,17011,Kama Sutra: A Tale of Love +Susan Stark,rotten,0116743,Detroit News,,2000-01-01,17011,Kama Sutra: A Tale of Love +,fresh,0116743,Entertainment Weekly,,1996-09-11,17011,Kama Sutra: A Tale of Love +Todd McCarthy,none,0119572,Variety,,2009-03-26,13207,Love Jones +,rotten,0119572,Entertainment Weekly,,2008-12-17,13207,Love Jones +Geoff Andrew,none,0119572,Time Out,,2006-06-24,13207,Love Jones +Esther Iverem,none,0119572,Washington Post,,2002-01-22,13207,Love Jones +Jack Mathews,none,0119572,Los Angeles Times,,2001-02-14,13207,Love Jones +James Berardinelli,fresh,0119572,ReelViews,,2000-01-01,13207,Love Jones +Susan Stark,fresh,0119572,Detroit News,,2000-01-01,13207,Love Jones +Mick LaSalle,none,0119572,San Francisco Chronicle,,2000-01-01,13207,Love Jones +Roger Ebert,fresh,0119572,Chicago Sun-Times,,2000-01-01,13207,Love Jones +Janet Maslin,none,0119572,New York Times,,2000-01-01,13207,Love Jones +,fresh,0119572,USA Today,The two leads click throughout in a movie that's just good enough to engender curiosity over filmmaker Witcher's follow-up effort.,2000-01-01,13207,Love Jones +Stanley Kauffmann,none,0119572,The New Republic,,2000-01-01,13207,Love Jones +Joe Baltake,none,0119572,Sacramento Bee,,2000-01-01,13207,Love Jones +,none,0119572,Houston Chronicle,,2000-01-01,13207,Love Jones +Todd McCarthy,rotten,0120053,Variety,A generic suspenser that doesn't taste bad at first bite but becomes increasingly hard to swallow.,2008-05-20,10410,The Saint +Lisa Alspector,rotten,0120053,Chicago Reader,"This insufferable romance-adventure includes vague comedy as well as unintentional humor, and its target audience seems to be preadolescents who won't notice the calculated enthusiasm with which it sidesteps sexuality.",2008-05-20,10410,The Saint +Derek Adams,rotten,0120053,Time Out,Eminently forgettable.,2006-06-24,10410,The Saint +Peter Travers,rotten,0120053,Rolling Stone,Love redeems this profiteer; it also renders him conventional.,2005-03-06,10410,The Saint +Rita Kempley,rotten,0120053,Washington Post,Reinvention in the hands of Hollywood is seldom cause for celebration.,2002-06-26,10410,The Saint +Edward Guthmann,fresh,0120053,San Francisco Chronicle,"There isn't a contemporary film actor more crafty than Val Kilmer -- or one who reveals less of his true self. That's why Kilmer is so perfectly cast as Simon Templar, the master thief and elusive disguise artist of The Saint.",2002-06-18,10410,The Saint +Liam Lacey,fresh,0120053,Globe and Mail,"More entertaining than Mission: Impossible or the last Bond film, Goldeneye, it brings back the humour and sang-froid that makes the genre work.",2002-04-12,10410,The Saint +Kenneth Turan,rotten,0120053,Los Angeles Times,"Whereas something like Clear and Present Danger was briskly all of a piece, ""The Saint"" has difficulty making us believe that its diverse elements belong in the same motion picture.",2001-02-14,10410,The Saint +Charles Taylor,rotten,0120053,Salon.com,A soulless piece of claptrap.,2000-01-01,10410,The Saint +Roger Ebert,rotten,0120053,Chicago Sun-Times,"Compared with the sensational stunts and special effects in the Bond series, The Saint seems positively leisurely.",2000-01-01,10410,The Saint +James Berardinelli,rotten,0120053,ReelViews,"The Saint is lightly entertaining, but there's very little here worth getting excited about.",2000-01-01,10410,The Saint +Tom Long,rotten,0120053,Detroit News,A piece of mass-market movie bubblegum that stretches incredulity and then snaps apart.,2000-01-01,10410,The Saint +Louis B. Parks,rotten,0120053,Houston Chronicle,The Saint is all glitz and comic-book spy plot with no more than a passing hint that Templar has a real personality behind the disguises.,2000-01-01,10410,The Saint +Mike Clark,rotten,0120053,USA Today,Anyone looking for a religious experience at the multiplex this weekend will do better checking out Dennis Rodman's hair hues in Double Team.,2000-01-01,10410,The Saint +Desson Thomson,fresh,0120053,Washington Post,"[Noyce] keeps things moving at a kinetic, involving pace.",2000-01-01,10410,The Saint +Janet Maslin,rotten,0120053,New York Times,"Loud, frantic, ridiculously overproduced and featuring a preening performance by Val Kilmer as a supposedly brilliant master of disguise, The Saint is sheer overkill.",2000-01-01,10410,The Saint +Lisa Schwarzbaum,rotten,0120152,Entertainment Weekly,,2011-09-07,14827,Smilla's Sense of Snow +David Stratton,none,0120152,Variety,,2008-06-13,14827,Smilla's Sense of Snow +Derek Adams,none,0120152,Time Out,,2006-06-24,14827,Smilla's Sense of Snow +,rotten,0120152,Globe and Mail,,2002-04-12,14827,Smilla's Sense of Snow +Kenneth Turan,none,0120152,Los Angeles Times,,2001-02-14,14827,Smilla's Sense of Snow +Ruthe Stein,none,0120152,San Francisco Chronicle,,2000-01-01,14827,Smilla's Sense of Snow +Jonathan Rosenbaum,rotten,0120152,Chicago Reader,,2000-01-01,14827,Smilla's Sense of Snow +James Berardinelli,fresh,0120152,ReelViews,,2000-01-01,14827,Smilla's Sense of Snow +Robin Dougherty,none,0120152,Salon.com,,2000-01-01,14827,Smilla's Sense of Snow +Susan Stark,fresh,0120152,Detroit News,,2000-01-01,14827,Smilla's Sense of Snow +Mike Clark,fresh,0120152,USA Today,"This tough-to-peg whodunit keeps you going for two hours, despite a few James Bond-ish (or Jane Bond-ish) turns that play less preposterously than you might assume were they to be divulged.",2000-01-01,14827,Smilla's Sense of Snow +,none,0120152,Washington Post,,2000-01-01,14827,Smilla's Sense of Snow +Janet Maslin,none,0120152,New York Times,,2000-01-01,14827,Smilla's Sense of Snow +Roger Ebert,fresh,0120152,Chicago Sun-Times,,2000-01-01,14827,Smilla's Sense of Snow +Joe Baltake,none,0120152,Sacramento Bee,,2000-01-01,14827,Smilla's Sense of Snow +,rotten,0120152,Entertainment Weekly,,1997-02-28,14827,Smilla's Sense of Snow +Christy Lemire,fresh,0375679,Associated Press,"Haggis moves seamlessly between all these stories and has structured them in such a way that his characters reach a crisis point simultaneously, followed by melancholy clarity.",2013-02-15,12,Crash +Ken Tucker,fresh,0375679,New York Magazine,"It's smart, therefore, that Haggis has written such novel, precisely observed, often unpleasant characters as the ones Bullock, Dillon, and Cheadle inhabit.",2005-12-09,12,Crash +Andrew Sun,fresh,0375679,Hollywood Reporter,Enjoy the wonderful performances by a cast very committed to the cause.,2005-08-30,12,Crash +Geoff Andrew,rotten,0375679,Time Out,"An already over-eventful narrative -- what, another crash? -- teeters into melodramatic implausibility.",2005-08-11,12,Crash +Jonathan Rosenbaum,fresh,0375679,Chicago Reader,"[Has a] spirited and talented ensemble cast, which Haggis directs with sensitivity.",2005-05-13,12,Crash +Andrew Sarris,rotten,0375679,New York Observer,Too facile.,2005-05-12,12,Crash +Desson Thomson,fresh,0375679,Washington Post,"Haggis's drama is about much more than interlocking front-end collisions. It's about the way we learn, often badly, about one another and how it may take a bad confrontation to peel away the misperceptions.",2005-05-06,12,Crash +Stephen Hunter,fresh,0375679,Washington Post,"This is the rare American film really about something, and almost all the performances are riveting. It asks tough questions, and lets its audience struggle with the answers.",2005-05-06,12,Crash +Geoff Pevere,fresh,0375679,Toronto Star,The best parts of Crash are as good as they are because they confront us with behaviour we might be capable of under the same circumstances. And we're not bad people. Are we?,2005-05-06,12,Crash +Stephanie Zacharek,rotten,0375679,Salon.com,"And so Crash raises the question: If racism is so pervasive in our society, why do we need such an elaborately contrived plot to drive home the message? In other words: How many racists does it take to screw in the point?",2005-05-06,12,Crash +Moira MacDonald,fresh,0375679,Seattle Times,"Crash, Paul Haggis' flawed but riveting tale of racism in contemporary Los Angeles, has moments so powerful they're instantly seared into your memory; you'll watch without blinking, barely breathing.",2005-05-06,12,Crash +Roger Moore,fresh,0375679,Orlando Sentinel,"Its emotional lows and wicked below-the-belt punches make it a soul-searching film, a manipulative movie with a lot of stars and a writer-director staying on message throughout: We need to know each other better than this.",2005-05-06,12,Crash +Stephen Whitty,fresh,0375679,Newark Star-Ledger,"Crash isn't set half-a-century ago, in some place of dusty roads and Skoal-spitting sheriffs. It takes place now, in Los Angeles, that most modern of American cities.",2005-05-06,12,Crash +Peter Debruge,rotten,0375679,Miami Herald,"Contrived, obvious and overstated, Crash is basically just one white man's righteous attempt to make other white people feel as if they've confronted the problem of racism head-on.",2005-05-06,12,Crash +Eric Harrison,fresh,0375679,Houston Chronicle,"An ambitious and often wonderful movie, an expansive look at urban life -- the fractious, noisy whole of it -- filled with witty, biting and insightful writing.",2005-05-06,12,Crash +Rick Groen,fresh,0375679,Globe and Mail,"Haggis bends back one full day to unravel the tangled threads leading to the crash, and, in turn, the tangle justifies the existence of his varied and polyglot ensemble.",2005-05-06,12,Crash +Lisa Kennedy,fresh,0375679,Denver Post,One of the finest American movies to engage our diverse richness and our casual and not-so-casual ethnic hostility.,2005-05-06,12,Crash +Ty Burr,rotten,0375679,Boston Globe,"Characters come straight from the assembly line of screenwriting archetypes, and too often they act in ways that archetypes, rather than human beings, do.",2005-05-06,12,Crash +Mick LaSalle,rotten,0375679,San Francisco Chronicle,"The characters and individual dramas remain interesting in a personal way, but the overall conception of Crash is hackneyed.",2005-05-06,12,Crash +David Edelstein,rotten,0375679,Slate,"The theme is racism. Let me say that again: The theme is racism. I could say it 500 more times because that's how many times the movie says it, in every single scene.",2005-05-06,12,Crash +Owen Gleiberman,fresh,0116041,Entertainment Weekly,,2011-09-07,16693,The Daytrippers +David Ansen,none,0116041,Newsweek,,2008-11-20,16693,The Daytrippers +Emanuel Levy,fresh,0116041,Variety,"A spirited cast, including old pros Amma Meara and younger talent Parker Posey and Stanley Tucci, elevates this claustrophobic sitcom (most of whiche is set in a car) into something fluffier and funnier than it actually is.",2006-06-10,16693,The Daytrippers +,none,0116041,Time Out,,2006-01-26,16693,The Daytrippers +Mick LaSalle,fresh,0116041,San Francisco Chronicle,,2002-06-18,16693,The Daytrippers +Desson Thomson,none,0116041,Washington Post,,2002-01-22,16693,The Daytrippers +,none,0116041,Houston Chronicle,,2000-01-01,16693,The Daytrippers +Roger Ebert,rotten,0116041,Chicago Sun-Times,,2000-01-01,16693,The Daytrippers +Janet Maslin,none,0116041,New York Times,,2000-01-01,16693,The Daytrippers +Stanley Kauffmann,none,0116041,The New Republic,,2000-01-01,16693,The Daytrippers +Robin Dougherty,none,0116041,Salon.com,,2000-01-01,16693,The Daytrippers +James Berardinelli,fresh,0116041,ReelViews,,1997-03-05,16693,The Daytrippers +Owen Gleiberman,fresh,0119528,Entertainment Weekly,,2011-09-07,12169,Liar Liar +Todd McCarthy,fresh,0119528,Variety,"Close to an ideal jumping-off point for Carrey, who spends the better part of an hour grotesquely physicalizing his scummy lawyer's struggle with being obliged to utter cold, hard facts.",2008-11-21,12169,Liar Liar +Geoff Andrew,fresh,0119528,Time Out,"Pretty rudimentary, but it keeps Carrey's occasional over-exuberance in check and delivers likeable, effective, but decidedly mainstream comedy.",2006-06-24,12169,Liar Liar +Rita Kempley,fresh,0119528,Washington Post,"Like Robin Williams, Carrey has learned to do his side-splitting shtick in character. He's not only under control, but funnier than ever as the truth-impaired Fletcher Reede.",2003-04-26,12169,Liar Liar +Jeff Strickler,fresh,0119528,Minneapolis Star Tribune,...Liar Liar stands to make a liar out of those who predicted that Carrey's career was on the skids.,2002-11-06,12169,Liar Liar +Peter Stack,fresh,0119528,San Francisco Chronicle,...Jim Carrey makes a wild and remarkable comeback to cheerfulness...,2002-06-18,12169,Liar Liar +Rick Groen,rotten,0119528,Globe and Mail,"As Carrey's celebrated rubber does its patented act, the flick turns into a gyrational marathon -- mildly funny but seriously exhausting.",2002-04-12,12169,Liar Liar +Kenneth Turan,fresh,0119528,Los Angeles Times,"...as Liar Liar proves one more time, there is probably no more consistently funny performer working in film today.",2001-02-14,12169,Liar Liar +Susan Wloszczyna,fresh,0119528,USA Today,"Truth be told, the rapid-fire Liar, directed with unfussy flair by Tom Shadyac, is a one-joke movie. But it's a doozy.",2000-01-01,12169,Liar Liar +Roger Ebert,fresh,0119528,Chicago Sun-Times,"I am gradually developing a suspicion, or perhaps it is a fear, that Jim Carrey is growing on me.",2000-01-01,12169,Liar Liar +Joe Baltake,rotten,0119528,Sacramento Bee,"Essentially, the actor is miscast here. Unlike [Robin] Williams, he isn't good with children. In fact, you don't even sense that he likes his child co-star. There's no apparent rapport.",2000-01-01,12169,Liar Liar +James Berardinelli,fresh,0119528,ReelViews,"All-in-all, Liar Liar is pretty good fun, and it represents one of Carrey's most entertaining movies to date.",2000-01-01,12169,Liar Liar +Desson Thomson,fresh,0119528,Washington Post,It's a magnificent comic experience.,2000-01-01,12169,Liar Liar +Susan Stark,fresh,0119528,Detroit News,"This is Carrey's most mature (and mainstream) comic turn, with flashes of introspection and tenderness.",2000-01-01,12169,Liar Liar +Bruce Westbrook,fresh,0119528,Houston Chronicle,"Its premise is flimsy, but its payoff is riotously funny.",2000-01-01,12169,Liar Liar +Janet Maslin,fresh,0119528,New York Times,"Well into his tumultuous career, Mr. Carrey finally turns up in a straightforward comic vehicle, and the results are much wilder and funnier than this mundane material should have allowed.",2000-01-01,12169,Liar Liar +,fresh,0119528,Entertainment Weekly,,1997-06-01,12169,Liar Liar +Lisa Schwarzbaum,fresh,0117422,Entertainment Weekly,,2011-09-07,770723154,The Quiet Room +David Stratton,none,0117422,Variety,,2009-03-26,770723154,The Quiet Room +Derek Adams,none,0117422,Time Out,,2006-02-09,770723154,The Quiet Room +Stephen Holden,none,0117422,New York Times,,2004-08-30,770723154,The Quiet Room +Lisa Schwarzbaum,fresh,0120094,Entertainment Weekly,,2011-09-07,10473,Selena +Todd McCarthy,fresh,0120094,Variety,"Selena surmounts its connect-the-dots approach to its heroine's life to create an appealing, energetic look at a too-briefly soaring musical star.",2009-03-27,10473,Selena +Stephen Holden,rotten,0120094,New York Times,"By the end of the film, Selena has been all but canonized.",2003-05-20,10473,Selena +Edward Guthmann,rotten,0120094,San Francisco Chronicle,"Nava, who started his feature-film career with El Norte, is a good director who invariably finds a strong rapport with his actors. He's not much of a writer, though, and he should think twice about creating dialogue for his future projects.",2002-06-18,10473,Selena +Peter Travers,rotten,0120094,Rolling Stone,Missing is a sense of the interior life behind the smiling face that Selena showed the world. What of the drive that led her to music? What comfort did she find in it? What pain?,2001-05-11,10473,Selena +Susan Stark,fresh,0120094,Detroit News,,2000-01-01,10473,Selena +James Berardinelli,fresh,0120094,ReelViews,"This is a simple story of hope and triumph, of one girl with the drive to succeed defying the odds and following her dream. It's not an original tale -- movies like this abound -- but Nava's point-of-view is fresh.",2000-01-01,10473,Selena +Mike Clark,fresh,0120094,USA Today,"Selena Quintanilla Perez's life was too short to fill a screen bio with traditional dramatic components, yet Selena infectiously salutes the Tejano singer who had a rapturous fan base when she was slain in 1995.",2000-01-01,10473,Selena +Roger Ebert,fresh,0120094,Chicago Sun-Times,"Selena succeeds, through Lopez's performance, in evoking the magic of a sweet and talented young woman.",2000-01-01,10473,Selena +,fresh,0120094,Entertainment Weekly,,1997-03-21,10473,Selena +Todd McCarthy,none,0118972,Variety,,2009-03-26,16804,The Devil's Own +,none,0118972,Time Out,,2006-06-24,16804,The Devil's Own +,rotten,0118972,Globe and Mail,,2002-07-12,16804,The Devil's Own +Ruthe Stein,fresh,0118972,San Francisco Chronicle,,2002-06-18,16804,The Devil's Own +Peter Travers,none,0118972,Rolling Stone,,2001-05-11,16804,The Devil's Own +Kenneth Turan,none,0118972,Los Angeles Times,,2001-02-14,16804,The Devil's Own +Joe Baltake,none,0118972,Sacramento Bee,,2000-01-01,16804,The Devil's Own +Roger Ebert,rotten,0118972,Chicago Sun-Times,,2000-01-01,16804,The Devil's Own +Mike Clark,rotten,0118972,USA Today,"Though Hour 2's heavy emphasis on physical and emotional confrontations stimulates dramatic momentum, this respectable superstar meeting is finally, of all things, ordinary.",2000-01-01,16804,The Devil's Own +Janet Maslin,none,0118972,New York Times,,2000-01-01,16804,The Devil's Own +James Berardinelli,rotten,0118972,ReelViews,,2000-01-01,16804,The Devil's Own +Susan Stark,rotten,0118972,Detroit News,,2000-01-01,16804,The Devil's Own +,none,0118972,Washington Post,,2000-01-01,16804,The Devil's Own +Charles Taylor,none,0118972,Salon.com,,2000-01-01,16804,The Devil's Own +Stanley Kauffmann,none,0118972,The New Republic,,2000-01-01,16804,The Devil's Own +,fresh,0118972,Entertainment Weekly,,1997-03-26,16804,The Devil's Own +Todd McCarthy,none,0118829,Variety,,2009-03-26,9702,Cats Don't Dance +Lawrence Van Gelder,none,0118829,New York Times,,2003-05-20,9702,Cats Don't Dance +,fresh,0118829,Globe and Mail,,2002-04-12,9702,Cats Don't Dance +Jack Mathews,none,0118829,Los Angeles Times,,2001-02-14,9702,Cats Don't Dance +Mike Clark,rotten,0118829,USA Today,"Cats Don't Dance, nor do they enchant.",2000-01-01,9702,Cats Don't Dance +Susan Stark,fresh,0118829,Detroit News,,2000-01-01,9702,Cats Don't Dance +Peter Stack,none,0118829,San Francisco Chronicle,,2000-01-01,9702,Cats Don't Dance +Rita Kempley,none,0118829,Washington Post,,2000-01-01,9702,Cats Don't Dance +,none,0118829,Houston Chronicle,,2000-01-01,9702,Cats Don't Dance +Roger Ebert,fresh,0118829,Chicago Sun-Times,,2000-01-01,9702,Cats Don't Dance +Lisa Schwarzbaum,rotten,0118663,Entertainment Weekly,,2011-09-07,11306,B*A*P*S +Lisa Alspector,fresh,0118663,Chicago Reader,t's a celebration of bonds that are thicker than blood and demonstrates above all that fame-and-fortune fantasies can blur divisions of race and class as persuasively as they can exaggerate them.,2009-07-21,11306,B*A*P*S +Emanuel Levy,rotten,0118663,Variety,"Formulaic and distastefully fake, Townsend's modern fairy tale unsuccessfuly tries to combine the premise of Pretty Woman with the formats of the fish-out-of-water and culture-collision.",2006-04-26,11306,B*A*P*S +,rotten,0118663,Time Out,"You can see how the black, modern-day Pygmalion-type story could work, just, but not with this heap of cabbage leaves for a script, and not with such desperately goofy acting from Berry and Desselle.",2006-01-26,11306,B*A*P*S +James Berardinelli,rotten,0118663,ReelViews,"Paying movie-goers deserve more, especially from someone who has previously shown signs of genuine comic aptitude.",2000-01-01,11306,B*A*P*S +Janet Maslin,rotten,0118663,New York Times,It's good for a half-hour of humor before the fun starts to dissolve.,2000-01-01,11306,B*A*P*S +Esther Iverem,fresh,0118663,Washington Post,A very funny movie.,2000-01-01,11306,B*A*P*S +Roger Ebert,rotten,0118663,Chicago Sun-Times,"Jaw-droppingly bad, a movie so misconceived I wonder why anyone involved wanted to make it.",2000-01-01,11306,B*A*P*S +Susan Stark,rotten,0118663,Detroit News,,2000-01-01,11306,B*A*P*S +Mike Clark,rotten,0118663,USA Today,"It's the kind of movie they don't make anymore -- and when they did, it was at the bottom of the bill after onscreen ads for local merchants.",2000-01-01,11306,B*A*P*S +Edward Guthmann,fresh,0118663,San Francisco Chronicle,"They both do good work, but it's Desselle who steals the film and grabs the major laughs.",2000-01-01,11306,B*A*P*S +Lisa Schwarzbaum,rotten,0116931,Entertainment Weekly,,2011-09-07,586584408,Love and Other Catastrophes +David Stratton,none,0116931,Variety,,2009-03-26,586584408,Love and Other Catastrophes +Geoff Andrew,none,0116931,Time Out,,2006-02-09,586584408,Love and Other Catastrophes +Janet Maslin,none,0116931,New York Times,,2003-05-20,586584408,Love and Other Catastrophes +,rotten,0116931,Globe and Mail,,2002-04-12,586584408,Love and Other Catastrophes +Desson Thomson,none,0116931,Washington Post,,2002-01-22,586584408,Love and Other Catastrophes +Kenneth Turan,none,0116931,Los Angeles Times,,2001-02-14,586584408,Love and Other Catastrophes +,none,0116931,Houston Chronicle,,2000-01-01,586584408,Love and Other Catastrophes +Ruthe Stein,none,0116931,San Francisco Chronicle,,2000-01-01,586584408,Love and Other Catastrophes +James Berardinelli,rotten,0116931,ReelViews,,2000-01-01,586584408,Love and Other Catastrophes +Roger Ebert,rotten,0116931,Chicago Sun-Times,,2000-01-01,586584408,Love and Other Catastrophes +Joe Baltake,none,0116931,Sacramento Bee,,2000-01-01,586584408,Love and Other Catastrophes +,fresh,0120389,Hollywood Reporter,A high-spirited fantasy adventure.,2008-05-14,12077,Turbo: A Power Rangers Movie +Joe Leydon,rotten,0120389,Variety,"Like the TV series, the pic features makeup and special-effects gimmickry that are far less persuasive than what might be found at second-rate theme-park attractions.",2008-05-14,12077,Turbo: A Power Rangers Movie +Lisa Alspector,rotten,0120389,Chicago Reader,"With minimalist and universal fantasies as their points of departure, the superheroic deeds evolve only incrementally beyond the realistic -- a deeply satisfying process.",2008-05-14,12077,Turbo: A Power Rangers Movie +Lawrence Van Gelder,rotten,0120389,New York Times,Five-year-olds who have read their Shakespeare will recognize that Turbo is a lot of sound and fury signifying nothing.,2003-05-20,12077,Turbo: A Power Rangers Movie +Jane Horwitz,rotten,0120389,Washington Post,A purgatory of low-budget interplanetary adventure.,2002-01-22,12077,Turbo: A Power Rangers Movie +Kevin Thomas,fresh,0120389,Los Angeles Times,Turbo is a solid follow-up to the entertaining 1995 Mighty Morphin Power Rangers.,2001-02-14,12077,Turbo: A Power Rangers Movie +Peter Stack,rotten,0120389,San Francisco Chronicle,It's cheesy-looking and convoluted and has as much character as a bus tire.,2000-01-01,12077,Turbo: A Power Rangers Movie +Susan Stark,rotten,0120389,Detroit News,,2000-01-01,12077,Turbo: A Power Rangers Movie +,none,0026071,Variety,,2009-03-26,20094,Anna Karenina +Geoff Andrew,none,0026071,Time Out,,2006-06-24,20094,Anna Karenina +Andre Sennwald,none,0026071,New York Times,,2006-03-25,20094,Anna Karenina +Dave Kehr,none,0026071,Chicago Reader,,2001-04-26,20094,Anna Karenina +Emanuel Levy,none,0119013,Variety,,2009-03-26,15163,Double Team +,none,0119013,Time Out,,2006-01-26,15163,Double Team +,rotten,0119013,Globe and Mail,,2002-04-12,15163,Double Team +Desson Thomson,none,0119013,Washington Post,,2002-01-22,15163,Double Team +Kevin Thomas,none,0119013,Los Angeles Times,,2001-02-14,15163,Double Team +James Berardinelli,rotten,0119013,ReelViews,,2000-01-01,15163,Double Team +Roger Ebert,rotten,0119013,Chicago Sun-Times,,2000-01-01,15163,Double Team +Janet Maslin,none,0119013,New York Times,,2000-01-01,15163,Double Team +Susan Stark,rotten,0119013,Detroit News,,2000-01-01,15163,Double Team +Mick LaSalle,none,0119013,San Francisco Chronicle,,2000-01-01,15163,Double Team +Mike Clark,rotten,0119013,USA Today,"Rodman is more fun to watch here than either co-star, given his array of earrings and nose rings, plus hair that changes color more frequently than the first lady changes her do.",2000-01-01,15163,Double Team +Lisa Schwarzbaum,rotten,0119381,Entertainment Weekly,,2011-09-07,13617,Inventing the Abbotts +Emanuel Levy,rotten,0119381,Variety,"Cast of newcomers is appealing, but this small-town melodrama is so old-fashioned and out-of-touch with contemporary youth that it feels as if it were made the same time that its story is set, in 1957.",2007-08-08,13617,Inventing the Abbotts +Geoff Andrew,none,0119381,Time Out,,2006-06-24,13617,Inventing the Abbotts +,rotten,0119381,Globe and Mail,,2002-04-12,13617,Inventing the Abbotts +Peter Travers,none,0119381,Rolling Stone,,2001-05-11,13617,Inventing the Abbotts +Jack Mathews,none,0119381,Los Angeles Times,,2001-02-14,13617,Inventing the Abbotts +,none,0119381,Houston Chronicle,,2000-01-01,13617,Inventing the Abbotts +Janet Maslin,none,0119381,New York Times,,2000-01-01,13617,Inventing the Abbotts +Susan Stark,fresh,0119381,Detroit News,,2000-01-01,13617,Inventing the Abbotts +James Berardinelli,fresh,0119381,ReelViews,,2000-01-01,13617,Inventing the Abbotts +Desson Thomson,none,0119381,Washington Post,,2000-01-01,13617,Inventing the Abbotts +Jonathan Rosenbaum,none,0119381,Chicago Reader,,2000-01-01,13617,Inventing the Abbotts +Mike Clark,rotten,0119381,USA Today,Would be a lot more fun were it a trashy Troy Donahue-Diane McBain vehicle ground out by Warner Bros. in 1960.,2000-01-01,13617,Inventing the Abbotts +Stanley Kauffmann,none,0119381,The New Republic,,2000-01-01,13617,Inventing the Abbotts +Joe Baltake,none,0119381,Sacramento Bee,,2000-01-01,13617,Inventing the Abbotts +Roger Ebert,rotten,0119381,Chicago Sun-Times,,2000-01-01,13617,Inventing the Abbotts +Peter Stack,none,0119381,San Francisco Chronicle,,2000-01-01,13617,Inventing the Abbotts +,rotten,0119381,Entertainment Weekly,,1997-04-04,13617,Inventing the Abbotts +Lisa Schwarzbaum,fresh,0118615,Entertainment Weekly,"Anaconda, directed by Luis Llosa with all of the subtlety of a snake-oil salesman, is in the great tradition of cinematic cheese, as processed as Kraft Singles slices.",2010-07-06,11782,Anaconda +Joe Leydon,rotten,0118615,Variety,A silly and plodding Jaws rip-off about a 40-foot man-eating snake on the prowl in the Brazilian rain forest.,2008-10-18,11782,Anaconda +Derek Adams,rotten,0118615,Time Out,"One never questions the realism of the remarkable animatronic and computer-generated effects, but it's hard to credit a snake that screams.",2006-02-09,11782,Anaconda +Mick LaSalle,rotten,0118615,San Francisco Chronicle,Anaconda is about a snake that eats everybody. That about says it all.,2002-06-18,11782,Anaconda +,rotten,0118615,Globe and Mail,,2002-04-12,11782,Anaconda +Kenneth Turan,fresh,0118615,Los Angeles Times,Anaconda is such a classic combination of feckless dramaturgy and rampant excess that giving way to giggles is the only sane response.,2001-02-14,11782,Anaconda +Stephen Holden,fresh,0118615,New York Times,A trashily entertaining reptilian version of Jaws set in the steaming heart of the Amazon rain forest.,2000-01-01,11782,Anaconda +Mike Clark,fresh,0118615,USA Today,"It isn't art, but it'll crush your bones.",2000-01-01,11782,Anaconda +Roger Ebert,fresh,0118615,Chicago Sun-Times,"It's a slick, scary, funny Creature Feature, beautifully photographed and splendidly acted in high adventure style.",2000-01-01,11782,Anaconda +James Berardinelli,rotten,0118615,ReelViews,"Anaconda is trying to be a Jaws for the '90s, but, like last year's The Ghost and the Darkness, it falls short in several key areas.",2000-01-01,11782,Anaconda +Susan Stark,rotten,0118615,Detroit News,,2000-01-01,11782,Anaconda +Lisa Schwarzbaum,fresh,0119229,Entertainment Weekly,,2011-09-07,12957,Grosse Pointe Blank +Roger Moore,none,0119229,Orlando Sentinel,,2011-09-02,12957,Grosse Pointe Blank +,fresh,0119229,Miami Herald,,2011-09-02,12957,Grosse Pointe Blank +Stephen Whitty,none,0119229,Newark Star-Ledger,,2011-07-30,12957,Grosse Pointe Blank +Stephen Holden,none,0119229,New York Times,,2011-07-29,12957,Grosse Pointe Blank +J. Hoberman,none,0119229,Village Voice,,2011-07-27,12957,Grosse Pointe Blank +Jonathan Rosenbaum,rotten,0119229,Chicago Reader,"Despite some early indications from the two Cusacks and Arkin that it's going to be funny, it winds up an unholy mess that becomes steadily more incoherent -- morally, dramatically, and conceptually.",2009-11-06,12957,Grosse Pointe Blank +Leonard Klady,fresh,0119229,Variety,Cusack is charming and assured in the film.,2009-03-26,12957,Grosse Pointe Blank +Susan Stark,fresh,0119229,Detroit News,,2008-10-18,12957,Grosse Pointe Blank +Derek Adams,fresh,0119229,Time Out,"For what is essentially a one-joke movie, this has an awful lot going for it.",2006-06-24,12957,Grosse Pointe Blank +Mick LaSalle,rotten,0119229,San Francisco Chronicle,"A soggy, all-over-the- place mess.",2002-06-18,12957,Grosse Pointe Blank +Rick Groen,fresh,0119229,Globe and Mail,"An entertaining oddity, an amiably black comedy whose bared teeth double as an engaging smile: It takes a satiric bite and leaves you laughing through the pain. For that, we can thank the writers.",2002-04-12,12957,Grosse Pointe Blank +Peter Travers,fresh,0119229,Rolling Stone,A bright burst of action and comedy with a cast that makes for rousing good company.,2001-05-11,12957,Grosse Pointe Blank +Kenneth Turan,fresh,0119229,Los Angeles Times,"Clever enough to make jokes about Greco-Roman wrestling and make them funny, Grosse Pointe Blank's greatest success is the way it maintains its comic attitude.",2001-02-14,12957,Grosse Pointe Blank +Jeff Millar,fresh,0119229,Houston Chronicle,What makes us laugh at this dark comedy is the insolence its creators hold for the very bones of their narrative.,2000-01-01,12957,Grosse Pointe Blank +James Berardinelli,fresh,0119229,ReelViews,"The film offers sufficient small pleasures to make it worth enduring the less effective elements. As a result, while Grosse Pointe Blank fails to deliver a fullisade, at least the chamber's not empty, either.",2000-01-01,12957,Grosse Pointe Blank +Roger Ebert,fresh,0119229,Chicago Sun-Times,The film takes the form but not the feel of a comic thriller. It's quirkier than that.,2000-01-01,12957,Grosse Pointe Blank +Janet Maslin,fresh,0119229,New York Times,"Directed jauntily by George Armitage, it has the jokey, winsome tone of his earlier Miami Blues and enough wild-card energy to keep it bright and surprising.",2000-01-01,12957,Grosse Pointe Blank +Stephanie Zacharek,rotten,0119229,Salon.com,"It's a sad day when an actor who's totally, beautifully in touch with his dark side finds himself stuck in a movie that's scared of its own shadow.",2000-01-01,12957,Grosse Pointe Blank +Susan Wloszczyna,fresh,0119229,USA Today,"With a breezy unpredictability that belies a darker underside, Grosse Pointe Blank, directed by George Armitage, is the kind of quirky, character-driven comedy they don't make much anymore.",2000-01-01,12957,Grosse Pointe Blank +Todd McCarthy,none,0116762,Variety,,2009-03-26,16821,Keys to Tulsa +Geoff Andrew,none,0116762,Time Out,,2006-06-24,16821,Keys to Tulsa +Jeff Strickler,none,0116762,Minneapolis Star Tribune,,2002-11-06,16821,Keys to Tulsa +Edward Guthmann,none,0116762,San Francisco Chronicle,,2002-06-18,16821,Keys to Tulsa +Kevin Thomas,none,0116762,Los Angeles Times,,2001-02-14,16821,Keys to Tulsa +James Berardinelli,rotten,0116762,ReelViews,,2000-01-01,16821,Keys to Tulsa +Joe Baltake,none,0116762,Sacramento Bee,,2000-01-01,16821,Keys to Tulsa +Leonard Klady,none,0118541,Variety,,2009-03-26,15292,8 Heads in a Duffel Bag +,none,0118541,Time Out,,2006-01-26,15292,8 Heads in a Duffel Bag +Jeff Strickler,none,0118541,Minneapolis Star Tribune,,2002-11-06,15292,8 Heads in a Duffel Bag +,rotten,0118541,Globe and Mail,,2002-04-12,15292,8 Heads in a Duffel Bag +Kevin Thomas,none,0118541,Los Angeles Times,,2001-02-14,15292,8 Heads in a Duffel Bag +Ruthe Stein,none,0118541,San Francisco Chronicle,,2000-01-01,15292,8 Heads in a Duffel Bag +James Berardinelli,rotten,0118541,ReelViews,,2000-01-01,15292,8 Heads in a Duffel Bag +Rita Kempley,none,0118541,Washington Post,,2000-01-01,15292,8 Heads in a Duffel Bag +Janet Maslin,none,0118541,New York Times,,2000-01-01,15292,8 Heads in a Duffel Bag +Joe Baltake,none,0118541,Sacramento Bee,,2000-01-01,15292,8 Heads in a Duffel Bag +Roger Ebert,rotten,0118541,Chicago Sun-Times,,2000-01-01,15292,8 Heads in a Duffel Bag +,rotten,0118541,Entertainment Weekly,,1997-04-18,15292,8 Heads in a Duffel Bag +Deborah Young,none,0113314,Variety,,2009-03-26,770790082,Hollow Reed +Derek Adams,none,0113314,Time Out,,2006-06-24,770790082,Hollow Reed +,rotten,0113314,Globe and Mail,,2002-04-12,770790082,Hollow Reed +Stephen Hunter,none,0113314,Washington Post,,2002-01-22,770790082,Hollow Reed +Kevin Thomas,none,0113314,Los Angeles Times,,2001-02-14,770790082,Hollow Reed +Susan Stark,fresh,0113314,Detroit News,,2000-01-01,770790082,Hollow Reed +James Berardinelli,fresh,0113314,ReelViews,,2000-01-01,770790082,Hollow Reed +Edward Guthmann,none,0113314,San Francisco Chronicle,,2000-01-01,770790082,Hollow Reed +Stanley Kauffmann,none,0113314,The New Republic,,2000-01-01,770790082,Hollow Reed +Stephen Holden,none,0113314,New York Times,,2000-01-01,770790082,Hollow Reed +Charles Taylor,none,0113314,Salon.com,,2000-01-01,770790082,Hollow Reed +Lisa Schwarzbaum,rotten,0119859,Entertainment Weekly,,2011-09-07,14771,Paradise Road +Emanuel Levy,rotten,0119859,Variety,"A large cast of gifted actress, including Glenn Close and Frances McDormand, is largely wasted in Beresford's honroable but failed effort to pay tribute to a group of disparate women held captive by the Japanese in WWII.",2007-06-21,14771,Paradise Road +Derek Adams,none,0119859,Time Out,,2006-02-09,14771,Paradise Road +,rotten,0119859,Globe and Mail,,2002-04-12,14771,Paradise Road +Peter Travers,none,0119859,Rolling Stone,,2001-05-11,14771,Paradise Road +Kenneth Turan,none,0119859,Los Angeles Times,,2001-02-14,14771,Paradise Road +Susan Wloszczyna,rotten,0119859,USA Today,"Even with its grueling pageant of torture and abuse at the hands of monstrously inhuman Japanese officers, Road never reaches the heart.",2000-01-01,14771,Paradise Road +Stephen Holden,none,0119859,New York Times,,2000-01-01,14771,Paradise Road +Joe Baltake,none,0119859,Sacramento Bee,,2000-01-01,14771,Paradise Road +,none,0119859,Houston Chronicle,,2000-01-01,14771,Paradise Road +James Berardinelli,fresh,0119859,ReelViews,,2000-01-01,14771,Paradise Road +Susan Stark,fresh,0119859,Detroit News,,2000-01-01,14771,Paradise Road +Roger Ebert,rotten,0119859,Chicago Sun-Times,,2000-01-01,14771,Paradise Road +Peter Stack,none,0119859,San Francisco Chronicle,,2000-01-01,14771,Paradise Road +,rotten,0119859,Entertainment Weekly,,1997-04-11,14771,Paradise Road +Peter Howell,rotten,0907680,Toronto Star,Dated and obvious.,2007-12-07,770680426,Walk All Over Me +Owen Gleiberman,fresh,0118783,Entertainment Weekly,,2011-09-07,16696,A Brother's Kiss +Leonard Klady,none,0118783,Variety,,2008-10-16,16696,A Brother's Kiss +Lisa Alspector,none,0118783,Chicago Reader,,2002-04-03,16696,A Brother's Kiss +Stephen Holden,none,0118783,New York Times,,2000-01-01,16696,A Brother's Kiss +Roger Ebert,fresh,0118783,Chicago Sun-Times,,2000-01-01,16696,A Brother's Kiss +,fresh,0118783,Entertainment Weekly,,1996-12-31,16696,A Brother's Kiss +Lisa Alspector,none,0117050,Chicago Reader,,2004-10-20,770808945,Shekvarebuli kulinaris ataserti retsepti +Jeff Strickler,none,0117050,Minneapolis Star Tribune,,2002-11-06,770808945,Shekvarebuli kulinaris ataserti retsepti +,rotten,0117050,Globe and Mail,,2002-04-12,770808945,Shekvarebuli kulinaris ataserti retsepti +Desson Thomson,none,0117050,Washington Post,,2002-01-22,770808945,Shekvarebuli kulinaris ataserti retsepti +Kenneth Turan,none,0117050,Los Angeles Times,,2001-02-14,770808945,Shekvarebuli kulinaris ataserti retsepti +Roger Ebert,fresh,0117050,Chicago Sun-Times,,2000-01-01,770808945,Shekvarebuli kulinaris ataserti retsepti +,none,0117050,Houston Chronicle,,2000-01-01,770808945,Shekvarebuli kulinaris ataserti retsepti +Mick LaSalle,none,0117050,San Francisco Chronicle,,2000-01-01,770808945,Shekvarebuli kulinaris ataserti retsepti +James Berardinelli,rotten,0117050,ReelViews,,2000-01-01,770808945,Shekvarebuli kulinaris ataserti retsepti +Stephen Holden,none,0117050,New York Times,,2000-01-01,770808945,Shekvarebuli kulinaris ataserti retsepti +Lisa Schwarzbaum,rotten,0120032,Entertainment Weekly,,2011-09-07,13484,Romy and Michele's High School Reunion +Geoff Andrew,none,0120032,Time Out,,2006-06-24,13484,Romy and Michele's High School Reunion +Jeff Strickler,none,0120032,Minneapolis Star Tribune,,2002-11-06,13484,Romy and Michele's High School Reunion +,rotten,0120032,Globe and Mail,,2002-04-12,13484,Romy and Michele's High School Reunion +Peter Travers,fresh,0120032,Rolling Stone,Kudrow's Michele is a deadpan delight.,2001-05-11,13484,Romy and Michele's High School Reunion +Jack Mathews,fresh,0120032,Los Angeles Times,Beneath the endless silliness of the movie beats a real heart,2001-02-14,13484,Romy and Michele's High School Reunion +Sean Means,fresh,0120032,Film.com,"Isn't so much a movie as an overly long pilot episode of some new ""Must See TV'' sitcom.",2000-01-01,13484,Romy and Michele's High School Reunion +John Hartl,rotten,0120032,Film.com,"For all its bright moments, 91 minutes turns out to be more than this joke can sustain.",2000-01-01,13484,Romy and Michele's High School Reunion +Susan Stark,rotten,0120032,Detroit News,,2000-01-01,13484,Romy and Michele's High School Reunion +Robin Dougherty,fresh,0120032,Salon.com,A one-joke story that's better crafted than it really deserves to be.,2000-01-01,13484,Romy and Michele's High School Reunion +James Berardinelli,fresh,0120032,ReelViews,At its best when it's being lighthearted and at its weakest when it takes a halfhearted stab at semi-seriousness.,2000-01-01,13484,Romy and Michele's High School Reunion +Janet Maslin,fresh,0120032,New York Times,"Cheerful, giddy fun",2000-01-01,13484,Romy and Michele's High School Reunion +Desson Thomson,fresh,0120032,Washington Post,"A delicious comedy about bitchiness, oneupwomanship and those emotional scars left from high school days.",2000-01-01,13484,Romy and Michele's High School Reunion +Louis B. Parks,rotten,0120032,Houston Chronicle,Staged more like a TV sitcom than a movie,2000-01-01,13484,Romy and Michele's High School Reunion +Susan Wloszczyna,rotten,0120032,USA Today,"Writer Robin Schiff, expanding on minor characters in a play, fails to find enough for her ditsy and ditsier pair to do.",2000-01-01,13484,Romy and Michele's High School Reunion +Ruthe Stein,fresh,0120032,San Francisco Chronicle,A frothy comedy with the most adorable buddies since Butch Cassidy and the Sundance Kid.,2000-01-01,13484,Romy and Michele's High School Reunion +Roger Ebert,fresh,0120032,Chicago Sun-Times,Sorvino and Kudrow work easily and wickedly together.,2000-01-01,13484,Romy and Michele's High School Reunion +Joe Baltake,rotten,0120032,Sacramento Bee,What laughs there are in the movie -- and there are a lot of them -- are mitigated by the rampant negativity.,2000-01-01,13484,Romy and Michele's High School Reunion +,rotten,0120032,Entertainment Weekly,,1997-04-25,13484,Romy and Michele's High School Reunion +Derek Elley,none,0116295,Variety,,2009-03-26,13596,Feng yue +Geoff Andrew,none,0116295,Time Out,,2006-06-24,13596,Feng yue +,rotten,0116295,Globe and Mail,,2002-04-12,13596,Feng yue +Kevin Thomas,none,0116295,Los Angeles Times,,2001-02-14,13596,Feng yue +Susan Stark,fresh,0116295,Detroit News,,2000-01-01,13596,Feng yue +,none,0116295,Washington Post,,2000-01-01,13596,Feng yue +Edward Guthmann,none,0116295,San Francisco Chronicle,,2000-01-01,13596,Feng yue +Roger Ebert,rotten,0116295,Chicago Sun-Times,,2000-01-01,13596,Feng yue +Joe Baltake,none,0116295,Sacramento Bee,,2000-01-01,13596,Feng yue +James Berardinelli,fresh,0116295,ReelViews,,2000-01-01,13596,Feng yue +,none,0116295,Houston Chronicle,,2000-01-01,13596,Feng yue +Stephen Holden,none,0116295,New York Times,,2000-01-01,13596,Feng yue +,rotten,0116295,Entertainment Weekly,,1997-06-13,13596,Feng yue +Owen Gleiberman,fresh,0120461,Entertainment Weekly,,2011-09-07,11078,Volcano +David Rooney,none,0120461,Hollywood Reporter,,2011-05-17,11078,Volcano +Todd McCarthy,rotten,0120461,Variety,"Never generates a head of true excitement, partly because the characters remain constructs designed to perform defined functions, and partly due to the time-worn hokiness of the whole disaster-film format.",2009-03-26,11078,Volcano +,rotten,0120461,Time Out,"Jones and Heche work hard to dig up an emotional rapport from next to nothing, while the slow but inexorable progress of the lava makes for more suspense than the usual slam bang firework display.",2006-01-26,11078,Volcano +Mick LaSalle,none,0120461,San Francisco Chronicle,"A host of characters is introduced in the opening scenes, but Volcano doesn't know what to do with them. It can't make us care.",2002-06-18,11078,Volcano +,rotten,0120461,Globe and Mail,,2002-04-12,11078,Volcano +Kenneth Turan,fresh,0120461,Los Angeles Times,"The coast may be toast, but it's the lava, covering everything like a malevolent tide of melted butter, that makes this a disaster picture that's tastier than usual.",2001-02-14,11078,Volcano +Janet Maslin,rotten,0120461,New York Times,"Like the substantially better Twister, this film insists on a thunderous, exhausting pace that inevitably becomes deflating.",2000-01-01,11078,Volcano +Gary Kamiya,rotten,0120461,Salon.com,A flatulent blast of superheated air from the seething bowels of Hollywood...,2000-01-01,11078,Volcano +Mike Clark,rotten,0120461,USA Today,Hundreds of screen technicians obviously slaved on the effects -- and for what? A dopey subplot about a bogus arrest. Soap opera involving Jones' injured daughter.,2000-01-01,11078,Volcano +Roger Ebert,rotten,0120461,Chicago Sun-Times,"Volcano is an absolutely standard, assembly-line undertaking; no wonder one of the extras is reading a paperback titled ""Screenwriting Made Easy.""",2000-01-01,11078,Volcano +Susan Stark,rotten,0120461,Detroit News,,2000-01-01,11078,Volcano +James Berardinelli,fresh,0120461,ReelViews,This is one of the best pure disaster movies ever made (not that it has much competition). Congratulations to director Mick Jackson for a job well done.,2000-01-01,11078,Volcano +,fresh,0120461,Entertainment Weekly,,1997-04-25,11078,Volcano +Lisa Schwarzbaum,fresh,0115886,Entertainment Weekly,,2011-09-07,15998,Children of the Revolution +Janet Maslin,none,0115886,New York Times,,2003-05-20,15998,Children of the Revolution +Peter Travers,none,0115886,Rolling Stone,,2001-05-11,15998,Children of the Revolution +Kenneth Turan,none,0115886,Los Angeles Times,,2001-02-14,15998,Children of the Revolution +Susan Stark,fresh,0115886,Detroit News,,2000-01-01,15998,Children of the Revolution +Laura Miller,none,0115886,Salon.com,,2000-01-01,15998,Children of the Revolution +Ruthe Stein,none,0115886,San Francisco Chronicle,,2000-01-01,15998,Children of the Revolution +,none,0115886,Washington Post,,2000-01-01,15998,Children of the Revolution +Jonathan Rosenbaum,fresh,0115886,Chicago Reader,,2000-01-01,15998,Children of the Revolution +James Berardinelli,fresh,0115886,ReelViews,,2000-01-01,15998,Children of the Revolution +Roger Ebert,rotten,0115886,Chicago Sun-Times,,2000-01-01,15998,Children of the Revolution +Mike Clark,rotten,0115886,USA Today,Uneven but also unflaggingly lively.,2000-01-01,15998,Children of the Revolution +,fresh,0115886,Entertainment Weekly,,1997-05-02,15998,Children of the Revolution +Owen Gleiberman,fresh,0118655,Entertainment Weekly,,2011-09-07,10711,Austin Powers: International Man of Mystery +John F. Kelly,fresh,0118655,Washington Post,"We may not need as many Austin Powers movies as there are James Bond pictures, but one or two more might be nice.",2008-04-01,10711,Austin Powers: International Man of Mystery +Jonathan Rosenbaum,fresh,0118655,Chicago Reader,Jay Roach directed with just the right amount of period tackiness.,2008-04-01,10711,Austin Powers: International Man of Mystery +Rita Kempley,rotten,0118655,Washington Post,"The originals were spoofs in their own way, too, unless you really believe that secret agents look more like Sean Connery than Aldrich Ames.",2008-04-01,10711,Austin Powers: International Man of Mystery +Leonard Klady,fresh,0118655,Variety,"A loving paean to Bond, Flint, Helm and their ilk (as well as a myriad of outlandish villains), the film knows its turf and only missteps when it ventures into more contemporary territory.",2008-04-01,10711,Austin Powers: International Man of Mystery +Trevor Johnston,fresh,0118655,Time Out,It would take a stone face not to crumple at Austin's dodgy catchphrases and irrepressible sexual desperation.,2006-06-24,10711,Austin Powers: International Man of Mystery +Mick LaSalle,fresh,0118655,San Francisco Chronicle,"Spy movie parodies are common, but Myers is observant enough to notice things that others haven't.",2002-06-18,10711,Austin Powers: International Man of Mystery +Rick Groen,rotten,0118655,Globe and Mail,"Mike Myers may be a connoisseur of the old spy-and-sex genre, but the result is less a screenplay than a manic quote machine.",2002-04-12,10711,Austin Powers: International Man of Mystery +Sean Means,rotten,0118655,Film.com,Tasteless and humorless!,2000-01-01,10711,Austin Powers: International Man of Mystery +Roger Ebert,fresh,0118655,Chicago Sun-Times,A funny movie that only gets funnier.,2000-01-01,10711,Austin Powers: International Man of Mystery +Laura Miller,rotten,0118655,Salon.com,The movie fails to live up to its promise.,2000-01-01,10711,Austin Powers: International Man of Mystery +Joe Baltake,rotten,0118655,Sacramento Bee,"Its plot notwithstanding, it has nothing to do with Bond -- and it misrepresents the poor '60s as well.",2000-01-01,10711,Austin Powers: International Man of Mystery +Susan Wloszczyna,fresh,0118655,USA Today,"[Myer's] affection for the era and its gaudy, bawdy movies inject this bit of fluff with giddy energy.",2000-01-01,10711,Austin Powers: International Man of Mystery +Janet Maslin,fresh,0118655,New York Times,The film's singlemindedness is so dauntless and just plain nutty that it's hard to resist.,2000-01-01,10711,Austin Powers: International Man of Mystery +Jeff Millar,rotten,0118655,Houston Chronicle,"Even at its best, it's not very funny.",2000-01-01,10711,Austin Powers: International Man of Mystery +James Berardinelli,fresh,0118655,ReelViews,Austin Powers is worth a look and will definitely boost Myers' career.,2000-01-01,10711,Austin Powers: International Man of Mystery +Susan Stark,rotten,0118655,Detroit News,,2000-01-01,10711,Austin Powers: International Man of Mystery +,fresh,0118655,Entertainment Weekly,,1997-05-02,10711,Austin Powers: International Man of Mystery +,none,0095675,Variety,,2008-06-09,15186,Mujeres al borde de un ataque de nervios +Michael Wilmington,fresh,0095675,Chicago Tribune,A feminist comedy with real bite; it always brings down the house.,2006-08-31,15186,Mujeres al borde de un ataque de nervios +,none,0095675,Time Out,,2006-01-26,15186,Mujeres al borde de un ataque de nervios +Vincent Canby,fresh,0095675,New York Times,"In Women on the Verge of a Nervous Breakdown, Mr. Almodovar sets out to charm rather than shock. That he succeeds should not come as a surprise.",2003-05-20,15186,Mujeres al borde de un ataque de nervios +Rita Kempley,fresh,0095675,Washington Post,"This is painless sexual politics, a fiendish comedy full of prickles and pain and the bright shiny pinks of a matador's cape.",2000-01-01,15186,Mujeres al borde de un ataque de nervios +Desson Thomson,fresh,0095675,Washington Post,"Women slinks devilishly (and expertly) between farce, absurdism and tragedy.",2000-01-01,15186,Mujeres al borde de un ataque de nervios +Andrea Gronvall,fresh,0772157,Chicago Reader,"How Posey's neurotic, self-destructive heroine finds her way to healing is the core of this generous film, whose moral is that happiness can't begin unless you're open to its possibility.",2008-01-03,528343842,Broken English +,none,0772157,St. Louis Post-Dispatch,,2007-08-18,528343842,Broken English +Roger Moore,rotten,0772157,Orlando Sentinel,A likable but wan romance.,2007-08-09,528343842,Broken English +Peter Debruge,fresh,0772157,Miami Herald,"Filmmaking is a family affair for the Cassavetes, and Zoe inherits the unpretentious, performance-driven style from her father, John, while delivering a love story that's accessible enough for mainstream audiences, a trick learned from her brother Nick.",2007-07-27,528343842,Broken English +Bruce Westbrook,fresh,0772157,Houston Chronicle,"Cassavetes supplies no easy answers or easy laughs, forgoing romantic-comedy beats in respect for Nora's desperation. Call this confection a romantic-dramedy with humor on wry.",2007-07-20,528343842,Broken English +Roger Ebert,rotten,0772157,Chicago Sun-Times,"Broken English establishes a sympathetic character, gets Parker Posey to make her real, and then grinds her in the gears of a plot we cannot believe.",2007-07-20,528343842,Broken English +Michael Phillips,fresh,0772157,Chicago Tribune,A promising first film with moments exceeding that promise.,2007-07-19,528343842,Broken English +Ann Hornaday,fresh,0772157,Washington Post,"A welcome chance to see Posey at her flighty, edgy best. Is there an actress alive better able to convey the neuroses and self-doubts of the typical over-educated, under-challenged American woman?",2007-07-19,528343842,Broken English +Richard Roeper,fresh,0772157,Ebert & Roeper,"This is a very uneven effort, it lost me a couple of times, but then I got back into it due to the performances, the understated directing and the writing.",2007-07-16,528343842,Broken English +Moira MacDonald,fresh,0772157,Seattle Times,"Posey's comedic performances have always had a nervous vulnerability to them; here, she strips away just enough of the comedy to break our hearts.",2007-07-13,528343842,Broken English +Tom Long,fresh,0772157,Detroit News,...there's a resolutely indie spirit at work here that keeps things interesting even when they shouldn't be.,2007-07-13,528343842,Broken English +John Monaghan,fresh,0772157,Detroit Free Press,"...there are reasons to catch Broken English, chief among them Posey's winning performance as a woman unsure whether to trust her romantic instincts.",2007-07-13,528343842,Broken English +David Fear,fresh,0772157,Time Out New York,"The fence-straddling would be fatal if it weren't for Posey, who takes what's essentially a character sketch and turns it into a three-dimensional mess in a dress.",2007-07-13,528343842,Broken English +Colin Covert,fresh,0772157,Minneapolis Star Tribune,"Although it's conventionally filmed and rather flat looking, the first dramatic feature written and directed by Zoe Cassavetes displays a good deal of her father John's appreciation for unembellished honesty.",2007-07-12,528343842,Broken English +Carrie Rickey,fresh,0772157,Philadelphia Inquirer,"As a director, Cassavetes is a keen observer of character and social interaction.",2007-07-12,528343842,Broken English +Ruthe Stein,none,0772157,San Francisco Chronicle,"Broken English doesn't break any code or offer original insights on the subject. But there's a spark whenever Posey and Poupaud are together, and Paris and Manhattan glisten in the background.",2007-07-06,528343842,Broken English +Ty Burr,rotten,0772157,Boston Globe,Broken English is a conventional New York-lonely hearts story made watchable by one element and one element only: Parker Posey.,2007-07-06,528343842,Broken English +Matt Zoller Seitz,rotten,0772157,New York Times,The low-key comedy Broken English is a textbook example of an Indiewood film: a Hollywood fantasy wrapped in plain brown paper.,2007-06-22,528343842,Broken English +Lou Lumenick,fresh,0772157,New York Post,"Posey is a delight throughout, and Zoe Cassavetes is clearly a filmmaker to watch.",2007-06-22,528343842,Broken English +Elizabeth Weitzman,rotten,0772157,New York Daily News,The director doesn't have the confidence to veer too far from the norm. Her touchingly quirky screenplay eventually turns into a disappointingly conventional fairy tale.,2007-06-22,528343842,Broken English +Roger Moore,rotten,0049833,Orlando Sentinel,,2009-05-13,9686,The Ten Commandments +Jonathan Rosenbaum,fresh,0049833,Chicago Reader,"With a running time of nearly four hours, Cecil B. De Mille's last feature and most extravagant blockbuster is full of the absurdities and vulgarities one expects, but it isn't boring for a minute.",2008-03-04,9686,The Ten Commandments +,none,0049833,St. Louis Post-Dispatch,,2007-10-20,9686,The Ten Commandments +Variety Staff,fresh,0049833,Variety,DeMille remains conventional with the motion picture as an art form. The eyes of the onlooker are filled with spectacle. Emotional tug is sometimes lacking.,2007-10-19,9686,The Ten Commandments +Stephen Garrett,fresh,0049833,Time Out,"It's the gigantic vulgarity, the obsessive righteousness of the director himself, which keeps the show on the road and suffuses the movie with its daft power.",2006-02-09,9686,The Ten Commandments +Bosley Crowther,rotten,0049833,New York Times,"The crammed contents are linked ponderously in a long, warning movie sermon that has authority but little power.",2003-05-20,9686,The Ten Commandments +Owen Gleiberman,rotten,0117482,Entertainment Weekly,,2011-09-07,770705684,Ripe +Todd McCarthy,none,0117482,Variety,,2009-03-26,770705684,Ripe +Stephen Holden,none,0117482,New York Times,,2003-05-20,770705684,Ripe +Kevin Thomas,none,0117482,Los Angeles Times,,2001-02-14,770705684,Ripe +Lori Leibovich,none,0117482,Salon.com,,2000-01-01,770705684,Ripe +Ruthe Stein,none,0117482,San Francisco Chronicle,,2000-01-01,770705684,Ripe +James Berardinelli,rotten,0117482,ReelViews,,2000-01-01,770705684,Ripe +,rotten,0117482,Entertainment Weekly,,1800-01-01,770705684,Ripe +Lisa Schwarzbaum,rotten,0120383,Entertainment Weekly,,2011-09-07,16250,"Truth or Consequences, N.M." +Godfrey Cheshire,none,0120383,Variety,,2009-03-26,16250,"Truth or Consequences, N.M." +,rotten,0120383,Globe and Mail,,2003-04-25,16250,"Truth or Consequences, N.M." +Kevin Thomas,none,0120383,Los Angeles Times,,2001-02-14,16250,"Truth or Consequences, N.M." +Stephen Holden,none,0120383,New York Times,,2000-01-01,16250,"Truth or Consequences, N.M." +,none,0120383,Houston Chronicle,,2000-01-01,16250,"Truth or Consequences, N.M." +,rotten,0120383,Entertainment Weekly,,1997-05-02,16250,"Truth or Consequences, N.M." +,none,0120479,Time Out,,2006-01-26,12304,Warriors of Virtue +,rotten,0120479,Globe and Mail,,2002-04-12,12304,Warriors of Virtue +James Berardinelli,rotten,0120479,ReelViews,"Warriors of Virtue is a great title. Unfortunately, it's not a great movie.",2000-01-01,12304,Warriors of Virtue +Peter Stack,none,0120479,San Francisco Chronicle,,2000-01-01,12304,Warriors of Virtue +Kevin McManus,none,0120479,Washington Post,,2000-01-01,12304,Warriors of Virtue +Lawrence Van Gelder,none,0120479,New York Times,,2000-01-01,12304,Warriors of Virtue +Roger Ebert,rotten,0120479,Chicago Sun-Times,,2000-01-01,12304,Warriors of Virtue +Susan Stark,rotten,0120479,Detroit News,,2000-01-01,12304,Warriors of Virtue +,none,0120479,Houston Chronicle,,2000-01-01,12304,Warriors of Virtue +Owen Gleiberman,rotten,0119109,Entertainment Weekly,,2011-09-07,309967861,Fathers' Day +Todd McCarthy,none,0119109,Variety,,2011-06-10,309967861,Fathers' Day +Derek Elley,none,0119109,Variety,,2009-03-26,309967861,Fathers' Day +,none,0119109,Time Out,,2006-02-11,309967861,Fathers' Day +Jeff Strickler,none,0119109,Minneapolis Star Tribune,,2002-11-06,309967861,Fathers' Day +,rotten,0119109,Globe and Mail,,2002-04-12,309967861,Fathers' Day +Kenneth Turan,none,0119109,Los Angeles Times,,2001-02-14,309967861,Fathers' Day +Joe Baltake,none,0119109,Sacramento Bee,,2000-01-01,309967861,Fathers' Day +James Berardinelli,rotten,0119109,ReelViews,,2000-01-01,309967861,Fathers' Day +Roger Ebert,rotten,0119109,Chicago Sun-Times,,2000-01-01,309967861,Fathers' Day +Janet Maslin,none,0119109,New York Times,,2000-01-01,309967861,Fathers' Day +,none,0119109,Houston Chronicle,,2000-01-01,309967861,Fathers' Day +Peter Stack,none,0119109,San Francisco Chronicle,,2000-01-01,309967861,Fathers' Day +,none,0119109,Washington Post,,2000-01-01,309967861,Fathers' Day +Mike Clark,fresh,0119109,USA Today,"No masterpiece but undeniably heavy on laughs, the movie is put over by the buffed, lubricated dynamics of two leads who substantially transcend what is otherwise a borderline tepid dose of family values.",2000-01-01,309967861,Fathers' Day +Susan Stark,fresh,0119109,Detroit News,,2000-01-01,309967861,Fathers' Day +,rotten,0119109,Entertainment Weekly,,1997-05-09,309967861,Fathers' Day +Owen Gleiberman,fresh,0119116,Entertainment Weekly,,2011-09-07,10557,The Fifth Element +Todd McCarthy,rotten,0119116,Variety,A hodgepodge of elements that don't comfortably coalesce.,2008-09-04,10557,The Fifth Element +Geoff Andrew,rotten,0119116,Time Out,Besson's futuristic fable is flawed by a messy narrative which strains to incorporate far too many grotesque and eccentric characters.,2006-01-26,10557,The Fifth Element +Mick LaSalle,fresh,0119116,San Francisco Chronicle,"The Fifth Element has to be the most creative visualization since Tim Burton's first Batman in 1989. On top of that, it's a whole lot of fun.",2002-06-18,10557,The Fifth Element +,rotten,0119116,Globe and Mail,,2002-04-12,10557,The Fifth Element +Kevin Thomas,fresh,0119116,Los Angeles Times,"There's no doubt about it, when it comes to saving the world, Bruce Willis is your man. He does it with smarts and style, humor and courage.",2001-02-14,10557,The Fifth Element +Janet Maslin,rotten,0119116,New York Times,"Mr. Besson directs with ceaseless flamboyance and with an obvious enthusiasm for his film's comic book conceits. But the tone of The Fifth Element is often terribly shrill, especially when attention shifts to grating minor characters.",2000-01-01,10557,The Fifth Element +Roger Ebert,fresh,0119116,Chicago Sun-Times,One of the great goofy movies -- a film so preposterous I wasn't surprised to discover it was written by a teenage boy.,2000-01-01,10557,The Fifth Element +Susan Wloszczyna,rotten,0119116,USA Today,An overblown cosmic comic book.,2000-01-01,10557,The Fifth Element +Scott Rosenberg,rotten,0119116,Salon.com,"As you sit through the interminable two-hours-plus that constitute The Fifth Element -- a colossally stupid, overbearingly pompous new movie by Luc Besson -- you can expect to become acquainted with boredom on the most elemental level.",2000-01-01,10557,The Fifth Element +James Berardinelli,rotten,0119116,ReelViews,"A lot of money was spent on this film, but $100 million doesn't guarantee a good product. Maybe someone should have thought of spending a few more dollars on a better script.",2000-01-01,10557,The Fifth Element +,fresh,0119116,Entertainment Weekly,,1997-05-09,10557,The Fifth Element +Geoff Andrew,none,0116643,Time Out,,2006-06-24,770797864,Intimate Relations +,rotten,0116643,Globe and Mail,,2002-04-12,770797864,Intimate Relations +Peter Stack,none,0116643,San Francisco Chronicle,,2000-01-01,770797864,Intimate Relations +Roger Ebert,rotten,0116643,Chicago Sun-Times,,2000-01-01,770797864,Intimate Relations +Janet Maslin,none,0116643,New York Times,,2000-01-01,770797864,Intimate Relations +James Berardinelli,rotten,0116643,ReelViews,,2000-01-01,770797864,Intimate Relations +,none,0116643,Houston Chronicle,,2000-01-01,770797864,Intimate Relations +Derek Elley,none,0161860,Variety,,2008-06-19,680048,Nirgendwo in Afrika +,none,0161860,Time Out,,2006-01-26,680048,Nirgendwo in Afrika +Jeff Strickler,none,0161860,Minneapolis Star Tribune,,2004-05-19,680048,Nirgendwo in Afrika +Richard Nilsen,fresh,0161860,Arizona Republic,"Everything in the film rings true, is deeply moving, richly photographed, and wonderfully acted.",2003-06-26,680048,Nirgendwo in Afrika +Eric Harrison,fresh,0161860,Houston Chronicle,The acting is excellent.,2003-05-16,680048,Nirgendwo in Afrika +Vic Vogler,fresh,0161860,Denver Post,The film has the glorious sweep of an epic.,2003-05-09,680048,Nirgendwo in Afrika +Robert Denerstein,fresh,0161860,Denver Rocky Mountain News,Link creates a complex and fascinating portrait of a marriage under the enormous stress of geographical dislocation and historical trauma.,2003-05-09,680048,Nirgendwo in Afrika +Joe Baltake,fresh,0161860,Sacramento Bee,There's a wealth of material here -- all sorts of fascinating details -- that more than fill up the film's generous two-hours-plus running time.,2003-05-02,680048,Nirgendwo in Afrika +Tom Long,fresh,0161860,Detroit News,One very fine film.,2003-04-25,680048,Nirgendwo in Afrika +David Edelstein,fresh,0161860,Slate,"The pacing of Nowhere in Africa is a mite drowsy, but there are payoffs for the director's uninsistent touch.",2003-04-22,680048,Nirgendwo in Afrika +Jane Sumner,fresh,0161860,Dallas Morning News,"A worthy, complex and nuanced film.",2003-04-17,680048,Nirgendwo in Afrika +Jay Boyar,fresh,0161860,Orlando Sentinel,"Nowhere in Africa is a movie of many moods and nuances. In addition to being a Holocaust saga, it's a girl's story, a woman's story and the story of a marriage.",2003-04-11,680048,Nirgendwo in Afrika +Peter Howell,fresh,0161860,Toronto Star,"Superbly acted and brilliantly lensed, Nowhere In Africa is that hard-to-achieve movie where the small picture counts for more than the bigger one.",2003-04-05,680048,Nirgendwo in Afrika +Edward Guthmann,rotten,0161860,San Francisco Chronicle,"A well-acted, exquisitely photographed, plot-jammed movie that sinks into melodrama and reveals too little about the African culture and landscape in which it's set.",2003-04-04,680048,Nirgendwo in Afrika +,none,0161860,St. Louis Post-Dispatch,,2003-04-04,680048,Nirgendwo in Afrika +Glenn Lovell,fresh,0161860,San Jose Mercury News,An instant family classic to be shared and enjoyed by parents and mature teens.,2003-04-03,680048,Nirgendwo in Afrika +Erik Lundegaard,fresh,0161860,Seattle Times,"If there's a love story here, it's the Redlichs' -- and the director's -- love for the stark beauty of Africa.",2003-03-28,680048,Nirgendwo in Afrika +Ty Burr,fresh,0161860,Boston Globe,"There's a lot more to Nowhere in Africa -- too much, actually ... Yet even if the movie has at least one act too many, the question that runs through it -- of whether belonging to a place is a matter of time or of will -- remains consistent.",2003-03-28,680048,Nirgendwo in Afrika +Eve Zibart,fresh,0161860,Washington Post,What rescues the film is ... the quality of the acting.,2003-03-28,680048,Nirgendwo in Afrika +Rita Kempley,fresh,0161860,Washington Post,This consistently absorbing family saga is primarily a safari of the soul.,2003-03-28,680048,Nirgendwo in Afrika +Leonard Klady,none,0116920,Variety,,2009-03-26,721107802,Losing Chase +Caryn James,none,0116920,New York Times,,2003-05-20,721107802,Losing Chase +Jeff Strickler,none,0116920,Minneapolis Star Tribune,,2002-11-06,721107802,Losing Chase +Kevin Thomas,none,0116920,Los Angeles Times,,2001-02-14,721107802,Losing Chase +Lawrence Van Gelder,none,0120190,New York Times,,2003-05-20,15400,Sprung +,rotten,0120190,Globe and Mail,,2002-04-12,15400,Sprung +Stephen Hunter,none,0120190,Washington Post,,2002-01-22,15400,Sprung +Roger Ebert,rotten,0120190,Chicago Sun-Times,,2000-01-01,15400,Sprung +James Berardinelli,rotten,0120190,ReelViews,,2000-01-01,15400,Sprung +Peter Stack,none,0120190,San Francisco Chronicle,,2000-01-01,15400,Sprung +Susan Stark,rotten,0120190,Detroit News,,2000-01-01,15400,Sprung +Joe Morgenstern,none,0117398,Wall Street Journal,,2011-10-28,20964,La promesse +Derek Adams,none,0117398,Time Out,,2006-06-24,20964,La promesse +,fresh,0117398,Globe and Mail,,2002-04-12,20964,La promesse +Jeff Millar,fresh,0117398,Houston Chronicle,"The film is entirely within the caught-on-the-run tradition of cinema verite, which makes it all the grittier and its conclusion all the more wrenching.",2001-02-21,20964,La promesse +Jonathan Rosenbaum,fresh,0117398,Chicago Reader,,2001-02-21,20964,La promesse +Kenneth Turan,fresh,0117398,Los Angeles Times,"The conflicts involved are intense and absorbing, proving that compelling moral dilemmas make for the most dramatic cinema.",2001-02-21,20964,La promesse +Stanley Kauffmann,fresh,0117398,The New Republic,"The Dardenne brothers, as shown by their empathic casting, their very choice of theme, have confessed to a burden. They believe in hope.",2001-02-21,20964,La promesse +John Hartl,fresh,0117398,Film.com,Ranks with the great European art-house classics about childhood betrayed and innocence lost.,2001-02-21,20964,La promesse +James Berardinelli,fresh,0117398,ReelViews,Speaks volumes about how we treat other human beings and what it means to truly grow up.,2001-02-21,20964,La promesse +Stephen Holden,fresh,0117398,New York Times,Almost everyone should be able to identify with the wrenching moral quandary facing Igor.,2001-02-21,20964,La promesse +,none,0058985,Time Out,,2006-02-09,770673837,Le bonheur +A.H. Weiler,none,0058985,New York Times,,2005-05-09,770673837,Le bonheur +Jonathan Rosenbaum,none,0058985,Chicago Reader,,2000-01-01,770673837,Le bonheur +Lisa Schwarzbaum,fresh,0119578,Entertainment Weekly,,2011-09-07,13973,Love! Valour! Compassion! +Jeremy Gerard,none,0119578,Variety,,2009-03-26,13973,Love! Valour! Compassion! +Emanuel Levy,fresh,0119578,Variety,"Terrence McNally's Tony award-winning play, a perceptive, often hilarious look and love and life in the AIDS era, is so sharply written and bluntly entertaining that it almost overcomes Joe Mantell's static direction, which is too theatrical.",2007-01-24,13973,Love! Valour! Compassion! +Geoff Andrew,none,0119578,Time Out,,2006-06-24,13973,Love! Valour! Compassion! +Jeff Strickler,none,0119578,Minneapolis Star Tribune,,2002-11-06,13973,Love! Valour! Compassion! +Ruthe Stein,none,0119578,San Francisco Chronicle,,2002-06-18,13973,Love! Valour! Compassion! +,rotten,0119578,Globe and Mail,,2002-04-12,13973,Love! Valour! Compassion! +Desson Thomson,none,0119578,Washington Post,,2002-01-22,13973,Love! Valour! Compassion! +Roger Ebert,fresh,0119578,Chicago Sun-Times,,2000-01-01,13973,Love! Valour! Compassion! +James Berardinelli,fresh,0119578,ReelViews,,2000-01-01,13973,Love! Valour! Compassion! +Susan Stark,fresh,0119578,Detroit News,,2000-01-01,13973,Love! Valour! Compassion! +Stephen Holden,none,0119578,New York Times,,2000-01-01,13973,Love! Valour! Compassion! +Stanley Kauffmann,none,0119578,The New Republic,,2000-01-01,13973,Love! Valour! Compassion! +Mike Clark,rotten,0119578,USA Today,"Outdoor settings alone do not a movie make, though director Joe Mantello (who also directed the play) seems to be trying.",2000-01-01,13973,Love! Valour! Compassion! +,fresh,0119578,Entertainment Weekly,,1997-05-16,13973,Love! Valour! Compassion! +Owen Gleiberman,fresh,0117615,Entertainment Weekly,,2011-09-07,270611556,Shall we dansu? +,none,0117615,Time Out,,2007-08-25,270611556,Shall we dansu? +,none,0117615,Houston Chronicle,,2006-11-18,270611556,Shall we dansu? +,none,0117615,Hollywood Reporter,,2004-09-27,270611556,Shall we dansu? +Kevin Thomas,none,0117615,Los Angeles Times,,2001-02-14,270611556,Shall we dansu? +James Berardinelli,fresh,0117615,ReelViews,,2000-01-01,270611556,Shall we dansu? +Roger Ebert,fresh,0117615,Chicago Sun-Times,,2000-01-01,270611556,Shall we dansu? +Stephen Hunter,none,0117615,Washington Post,,2000-01-01,270611556,Shall we dansu? +Mike Clark,rotten,0117615,USA Today,This leisurely little import has its moments - but far too many of them. It runs two hours and seems to end five times.,2000-01-01,270611556,Shall we dansu? +Janet Maslin,fresh,0117615,New York Times,Shall We Dance?' holds forth the sunny possibility that beyond the most timid exterior there may be a tangoing Walter Mitty to be found.,2000-01-01,270611556,Shall we dansu? +Ruthe Stein,none,0117615,San Francisco Chronicle,,2000-01-01,270611556,Shall we dansu? +,fresh,0117615,Entertainment Weekly,,1997-07-11,270611556,Shall we dansu? +Derek Elley,none,0120394,Variety,,2009-03-26,157943716,Twin Town +Geoff Andrew,none,0120394,Time Out,,2006-06-24,157943716,Twin Town +,rotten,0120394,Globe and Mail,,2003-04-25,157943716,Twin Town +Jeff Strickler,none,0120394,Minneapolis Star Tribune,,2002-11-06,157943716,Twin Town +Desson Thomson,none,0120394,Washington Post,,2002-01-22,157943716,Twin Town +Kevin Thomas,none,0120394,Los Angeles Times,,2001-02-14,157943716,Twin Town +Roger Ebert,rotten,0120394,Chicago Sun-Times,,2000-01-01,157943716,Twin Town +Mick LaSalle,none,0120394,San Francisco Chronicle,,2000-01-01,157943716,Twin Town +Susan Stark,fresh,0120394,Detroit News,,2000-01-01,157943716,Twin Town +Lawrence Van Gelder,none,0120394,New York Times,,2000-01-01,157943716,Twin Town +James Berardinelli,rotten,0120394,ReelViews,,2000-01-01,157943716,Twin Town +Charles Taylor,none,0120394,Salon.com,,2000-01-01,157943716,Twin Town +,none,0120394,Houston Chronicle,,2000-01-01,157943716,Twin Town +Neil Young,none,0118556,Hollywood Reporter,,2010-11-01,14675,Addicted to Love +Leonard Klady,none,0118556,Variety,,2008-07-22,14675,Addicted to Love +Geoff Andrew,none,0118556,Time Out,,2006-06-24,14675,Addicted to Love +Stephen Holden,none,0118556,New York Times,,2003-05-20,14675,Addicted to Love +Jeff Strickler,none,0118556,Minneapolis Star Tribune,,2002-11-06,14675,Addicted to Love +Ella Taylor,none,0118556,L.A. Weekly,,2002-10-01,14675,Addicted to Love +Kevin Thomas,none,0118556,Los Angeles Times,,2001-02-14,14675,Addicted to Love +Ruthe Stein,none,0118556,San Francisco Chronicle,,2000-01-01,14675,Addicted to Love +Joe Baltake,none,0118556,Sacramento Bee,,2000-01-01,14675,Addicted to Love +Roger Ebert,rotten,0118556,Chicago Sun-Times,,2000-01-01,14675,Addicted to Love +James Berardinelli,fresh,0118556,ReelViews,,2000-01-01,14675,Addicted to Love +Susan Stark,fresh,0118556,Detroit News,,2000-01-01,14675,Addicted to Love +,none,0118556,Houston Chronicle,,2000-01-01,14675,Addicted to Love +Laura Miller,none,0118556,Salon.com,,2000-01-01,14675,Addicted to Love +Susan Wloszczyna,fresh,0118556,USA Today,This twisted romance possesses the soul and edgy atmosphere of an independent film but not quite the conviction.,2000-01-01,14675,Addicted to Love +,rotten,0118556,Entertainment Weekly,,1997-05-23,14675,Addicted to Love +Lisa Schwarzbaum,fresh,0115744,Entertainment Weekly,,2011-09-07,13333,Brassed Off +,fresh,0115744,Time Out,"Writer/director Herman pulls off a popular, proletarian comedy which might actually appeal to the people it's about.",2006-06-24,13333,Brassed Off +,rotten,0115744,Globe and Mail,,2002-04-12,13333,Brassed Off +James Berardinelli,fresh,0115744,ReelViews,,2000-01-01,13333,Brassed Off +Roger Ebert,fresh,0115744,Chicago Sun-Times,"""Brassed Off'' is a sweet film with a lot of anger at its core.",2000-01-01,13333,Brassed Off +Peter Stack,fresh,0115744,San Francisco Chronicle,The characters are beautifully drawn in this bittersweet melodrama written and directed by Mark Herman.,2000-01-01,13333,Brassed Off +Susan Stark,rotten,0115744,Detroit News,,2000-01-01,13333,Brassed Off +Susan Wloszczyna,fresh,0115744,USA Today,A shining ensemble cast that hits all the right notes makes Brassed Off toot sweet.,2000-01-01,13333,Brassed Off +Stephen Holden,fresh,0115744,New York Times,"Shamelessly manipulative and sentimental, but in an agreeably familiar way.",2000-01-01,13333,Brassed Off +,none,0115744,Washington Post,,2000-01-01,13333,Brassed Off +,fresh,0115744,Entertainment Weekly,"The cast is ardent as all get-out, but the most authentic emotional lift comes from the real-life Grimethorpe Colliery Brass Band, blowing their hearts out.",1997-05-23,13333,Brassed Off +Owen Gleiberman,rotten,0118964,Entertainment Weekly,,2011-09-07,770688956,The Designated Mourner +Derek Elley,none,0118964,Variety,,2009-03-26,770688956,The Designated Mourner +,none,0118964,Time Out,,2006-01-26,770688956,The Designated Mourner +,fresh,0118964,Globe and Mail,,2002-07-12,770688956,The Designated Mourner +Kevin Thomas,none,0118964,Los Angeles Times,,2001-02-14,770688956,The Designated Mourner +Ruthe Stein,fresh,0118964,San Francisco Chronicle,,2000-01-01,770688956,The Designated Mourner +Stephen Holden,none,0118964,New York Times,,2000-01-01,770688956,The Designated Mourner +James Berardinelli,fresh,0118964,ReelViews,,2000-01-01,770688956,The Designated Mourner +Roger Ebert,fresh,0118964,Chicago Sun-Times,,2000-01-01,770688956,The Designated Mourner +Stanley Kauffmann,none,0118964,The New Republic,,2000-01-01,770688956,The Designated Mourner +,rotten,0118964,Entertainment Weekly,,1997-05-02,770688956,The Designated Mourner +Owen Gleiberman,fresh,0119567,Entertainment Weekly,,2011-09-07,11605,The Lost World: Jurassic Park +Leonard Klady,rotten,0119567,Variety,"The dinosaur creations are even better than those in the first film --- credible, breathtaking and frightening. As for the rest, every department pales by comparison.",2008-11-05,11605,The Lost World: Jurassic Park +Geoff Andrew,rotten,0119567,Time Out,"In short, what you'd expect, and no more.",2006-06-24,11605,The Lost World: Jurassic Park +Mick LaSalle,rotten,0119567,San Francisco Chronicle,"The Lost World has the vibe of 'obligatory sequel,' just what director Steven Spielberg probably wanted to avoid.",2002-06-18,11605,The Lost World: Jurassic Park +Rick Groen,rotten,0119567,Globe and Mail,"Special effects demand dino closeups, but the technical miracles seem sadly mundane.",2002-04-12,11605,The Lost World: Jurassic Park +Kevin Thomas,fresh,0119567,Los Angeles Times,"Many people will find much to divert them in The Lost World, and not worry whether or not it falls short of Jurassic Park.",2001-02-21,11605,The Lost World: Jurassic Park +Susan Stark,fresh,0119567,Detroit News,,2000-01-01,11605,The Lost World: Jurassic Park +Mike Clark,rotten,0119567,USA Today,"Offers less screen rapture for your raptor than its predecessor did, unless your sole priority is dino-mighty effects.",2000-01-01,11605,The Lost World: Jurassic Park +James Berardinelli,fresh,0119567,ReelViews,"Repetitiveness notwithstanding, The Lost World boasts several edge-of-the-seat moments.",2000-01-01,11605,The Lost World: Jurassic Park +Desson Thomson,fresh,0119567,Washington Post,"Militaristic bounty hunters...intend to capture these animals, ship them to San Diego and make a profitable spectacle out of them.",2000-01-01,11605,The Lost World: Jurassic Park +Roger Ebert,rotten,0119567,Chicago Sun-Times,"Where is the awe? Where is the sense that if dinosaurs really walked the earth, a film about them would be more than a monster movie? Where are the ooohs and ahhhs?",2000-01-01,11605,The Lost World: Jurassic Park +Louis B. Parks,rotten,0119567,Houston Chronicle,"There are many more dinosaurs this time around, taking up much more screen time...But don't expect to be wowed as much as you were by Jurassic Park.",2000-01-01,11605,The Lost World: Jurassic Park +Stephen Holden,fresh,0119567,New York Times,"The Lost World, while terrifically entertaining, is also structurally out of kilter.",2000-01-01,11605,The Lost World: Jurassic Park +Bill Stamets,rotten,0119567,Chicago Reader,"Spielberg's dinos, manipulated by a small army of puppeteers, are watchable enough. But these artificial critters have little reason to be resurrected in our era, let alone on 3,300 screens over Memorial Day weekend.",2000-01-01,11605,The Lost World: Jurassic Park +,fresh,0119567,Entertainment Weekly,,1997-05-23,11605,The Lost World: Jurassic Park +Lisa Schwarzbaum,fresh,0117359,Entertainment Weekly,,2011-09-07,19139,Ponette +David Stratton,none,0117359,Variety,,2009-04-07,19139,Ponette +Derek Adams,none,0117359,Time Out,,2006-02-09,19139,Ponette +Jeff Strickler,none,0117359,Minneapolis Star Tribune,,2002-11-06,19139,Ponette +Kevin Thomas,none,0117359,Los Angeles Times,,2001-02-14,19139,Ponette +Roger Ebert,fresh,0117359,Chicago Sun-Times,,2000-01-01,19139,Ponette +,none,0117359,Houston Chronicle,,2000-01-01,19139,Ponette +Rita Kempley,none,0117359,Washington Post,,2000-01-01,19139,Ponette +Stanley Kauffmann,none,0117359,The New Republic,,2000-01-01,19139,Ponette +Stephen Holden,none,0117359,New York Times,,2000-01-01,19139,Ponette +James Berardinelli,fresh,0117359,ReelViews,,2000-01-01,19139,Ponette +Jonathan Rosenbaum,none,0117359,Chicago Reader,,2000-01-01,19139,Ponette +,fresh,0117359,Entertainment Weekly,,1997-05-23,19139,Ponette +,none,0117561,Variety,,2012-02-23,21176,Schizopolis +Todd McCarthy,none,0117561,Variety,,2009-03-26,21176,Schizopolis +Derek Adams,none,0117561,Time Out,,2006-02-09,21176,Schizopolis +Janet Maslin,rotten,0117561,New York Times,"Exasperating as it is, Schizopolis has a deliberateness almost interesting enough to offset its sophomoric streak.",2003-05-20,21176,Schizopolis +Kevin Thomas,rotten,0117561,Los Angeles Times,Schizopolis represents a minor act of self-indulgence on the part of the sometimes eccentric Steven Soderbergh but results in major tedium for the viewer.,2001-02-14,21176,Schizopolis +Mick LaSalle,fresh,0117561,San Francisco Chronicle,"It's fresh, unexpected and goofy. It's not a smart career move, just a film that its director wanted to make for some crazy reason, and he made it.",2000-01-01,21176,Schizopolis +Richard Roeper,rotten,0472175,Ebert & Roeper,... I felt as if I were being preached to throughout this film.,2006-05-24,646801615,Saving Shiloh +,fresh,0472175,Entertainment Weekly,,2006-05-20,646801615,Saving Shiloh +Stephen Whitty,rotten,0472175,Newark Star-Ledger,Boring as porridge.,2006-05-12,646801615,Saving Shiloh +Lou Lumenick,rotten,0472175,New York Post,An OK kids movie passing through on the way to video.,2006-05-12,646801615,Saving Shiloh +Elizabeth Weitzman,rotten,0472175,New York Daily News,"You won't find the pragmatic intelligence of Naylor's original stories here, but even cynics may be touched by the film's remarkably wholesome lessons about friendship, family and forgiveness.",2006-05-12,646801615,Saving Shiloh +Roger Ebert,fresh,0472175,Chicago Sun-Times,"It's a family film that deals with real problems and teaches real values, and yet is exciting and entertaining.",2006-05-12,646801615,Saving Shiloh +Sheri Linden,fresh,0472175,Hollywood Reporter,Plain and simple but never simple-minded.,2006-05-12,646801615,Saving Shiloh +Anita Gates,fresh,0472175,New York Times,"Saving Shiloh is touching, intelligent and admirably thoughtful.",2006-05-11,646801615,Saving Shiloh +Bill Muller,rotten,0472175,Arizona Republic,"Two major issues here: The boy, Marty (Jason Dolley), is a patronizing do-gooder, and the dog, a beagle-looking fella, doesn't do much that's special.",2006-05-11,646801615,Saving Shiloh +John Anderson,fresh,0472175,Variety,"Saving Shiloh, the third in the dog-hero trilogy drawn from the Phyllis Reynolds Naylor books, may be naive and narratively simple, but it's prime fare for the always underserved family aud.",2006-05-11,646801615,Saving Shiloh +Chuck Wilson,rotten,0472175,L.A. Weekly,The latest film to be drawn from Phyllis Reynolds Naylor's best-selling young-adult trilogy about a frisky West Virginia beagle with a knack for bringing people together.,2006-05-11,646801615,Saving Shiloh +David Stratton,none,0114303,Variety,,2009-03-26,12808,Rough Magic +Geoff Andrew,none,0114303,Time Out,,2006-02-09,12808,Rough Magic +Jeff Strickler,none,0114303,Minneapolis Star Tribune,,2002-11-06,12808,Rough Magic +Mike Clark,rotten,0114303,USA Today,Rough going.,2000-01-01,12808,Rough Magic +Stephen Holden,none,0114303,New York Times,,2000-01-01,12808,Rough Magic +James Berardinelli,rotten,0114303,ReelViews,,2000-01-01,12808,Rough Magic +Joe Baltake,none,0114303,Sacramento Bee,,2000-01-01,12808,Rough Magic +Peter Stack,none,0114303,San Francisco Chronicle,,2000-01-01,12808,Rough Magic +Roger Ebert,rotten,0114303,Chicago Sun-Times,,2000-01-01,12808,Rough Magic +Leonard Klady,none,0120373,Variety,,2009-03-26,12043,Trial and Error +Geoff Andrew,none,0120373,Time Out,,2006-06-24,12043,Trial and Error +,rotten,0120373,Globe and Mail,,2002-04-12,12043,Trial and Error +,none,0120373,Los Angeles Times,,2001-02-14,12043,Trial and Error +Janet Maslin,none,0120373,New York Times,,2000-01-01,12043,Trial and Error +James Berardinelli,rotten,0120373,ReelViews,,2000-01-01,12043,Trial and Error +Joe Baltake,none,0120373,Sacramento Bee,,2000-01-01,12043,Trial and Error +,none,0120373,Houston Chronicle,,2000-01-01,12043,Trial and Error +Roger Ebert,fresh,0120373,Chicago Sun-Times,,2000-01-01,12043,Trial and Error +,none,0120373,Washington Post,,2000-01-01,12043,Trial and Error +Mike Clark,rotten,0120373,USA Today,"There are chuckles to be had, but get your own continuance by waiting for the video.",2000-01-01,12043,Trial and Error +Susan Stark,fresh,0120373,Detroit News,,2000-01-01,12043,Trial and Error +Edward Guthmann,none,0120373,San Francisco Chronicle,,2000-01-01,12043,Trial and Error +,fresh,0120373,Entertainment Weekly,,1997-05-30,12043,Trial and Error +Owen Gleiberman,rotten,0118787,Entertainment Weekly,,2011-09-07,12179,Buddy +,none,0118787,Variety,,2007-06-01,12179,Buddy +Jeff Strickler,none,0118787,Minneapolis Star Tribune,,2002-11-06,12179,Buddy +,fresh,0118787,Globe and Mail,,2002-04-12,12179,Buddy +,none,0118787,Washington Post,,2000-01-01,12179,Buddy +Janet Maslin,none,0118787,New York Times,,2000-01-01,12179,Buddy +Joe Baltake,none,0118787,Sacramento Bee,,2000-01-01,12179,Buddy +Edward Guthmann,none,0118787,San Francisco Chronicle,,2000-01-01,12179,Buddy +,rotten,0118787,USA Today,"Stifled by quaint Masterpiece Theatre-for-tykes pretensions, Buddy only comes alive when its quartet of real-life chimps go ape.",2000-01-01,12179,Buddy +,none,0118787,Houston Chronicle,,2000-01-01,12179,Buddy +James Berardinelli,rotten,0118787,ReelViews,,2000-01-01,12179,Buddy +Susan Stark,fresh,0118787,Detroit News,,2000-01-01,12179,Buddy +Roger Ebert,rotten,0118787,Chicago Sun-Times,,2000-01-01,12179,Buddy +,rotten,0118787,Entertainment Weekly,,1997-06-06,12179,Buddy +Owen Gleiberman,rotten,0118880,Entertainment Weekly,,2011-09-07,13119,Con Air +,none,0118880,Houston Chronicle,,2008-10-18,13119,Con Air +Susan Stark,rotten,0118880,Detroit News,,2008-10-18,13119,Con Air +,none,0118880,Washington Post,,2008-10-18,13119,Con Air +Todd McCarthy,fresh,0118880,Variety,"Rosenberg's sarcastic, tough-guy dialogue is full of lean-and-mean one-liners, and the superbly cast actors know how to milk them for all they're worth.",2008-09-18,13119,Con Air +,fresh,0118880,Time Out,"Very cool, but also very cold.",2006-06-24,13119,Con Air +Peter Travers,rotten,0118880,Rolling Stone,They're 'the worst of the worst.' So's the movie.,2001-05-11,13119,Con Air +Kenneth Turan,rotten,0118880,Los Angeles Times,"Numbing but not boring, it's finally more dispiriting than exhilarating, like a wild night of debauchery that leaves only a fearsome hangover for a souvenir.",2001-02-14,13119,Con Air +Mick LaSalle,rotten,0118880,San Francisco Chronicle,"I kept thinking that if their budget were cut in half, they would have made a better picture. If the special effects department were put on a much stricter budget, the show might have had to develop the characters beyond caricature.",2000-01-01,13119,Con Air +James Berardinelli,rotten,0118880,ReelViews,Sitting through this movie is like watching a dog running in circles chasing its tail -- the amusement factor dies quickly as the situation become repetitive.,2000-01-01,13119,Con Air +Roger Ebert,fresh,0118880,Chicago Sun-Times,"The movie is essentially a series of quick setups, brisk dialogue and elaborate action sequences.",2000-01-01,13119,Con Air +,rotten,0118880,USA Today,"Massaging every demographic, this admittedly fast, funny and robustly acted progeny of The Rock exploits actions of killers and rapists -- then cynically sells family values with a lengthy wrap-up ballad.",2000-01-01,13119,Con Air +Janet Maslin,fresh,0118880,New York Times,"All of the principals normally work in films more interesting and human than this one, which gives Con Air a touch of the subversive and turns it into a big-budget lark.",2000-01-01,13119,Con Air +Charles Taylor,rotten,0118880,Salon.com,"How's the movie? Big, loud, brutal and stupid, that's how it is.",2000-01-01,13119,Con Air +,rotten,0118880,Entertainment Weekly,,1997-06-06,13119,Con Air +David Stratton,fresh,0114134,Variety,At first daunting but ultimately awesomely impressive and beautiful.,2009-03-26,18494,The Pillow Book +Derek Adams,fresh,0114134,Time Out,"A very intimate, sensual film, and a torrid, lurid melodrama, full of passion, jealousy, hatred and revenge.",2006-06-24,18494,The Pillow Book +Roger Ebert,fresh,0114134,Chicago Sun-Times,"A seductive and elegant story that combines a millennium of Japanese art and fetishes with the story of a neurotic modern woman who tells a lover: ""Treat me like the pages of a book.""",2004-04-09,18494,The Pillow Book +Desson Thomson,rotten,0114134,Washington Post,"Greenaway, whose mind is one of the most impressive, complicated organs that ever sat on the shoulders of a filmmaker, seems to be playing connect the dots to himself, almost dumbing himself down to be commercial.",2002-01-22,18494,The Pillow Book +Kenneth Turan,rotten,0114134,Los Angeles Times,"Despite its arresting visual style, its wave after wave of creative and hypnotic images, ""The Pillow Book,"" as its name hints, slowly but inexorably leads to sleep.",2001-02-14,18494,The Pillow Book +Janet Maslin,fresh,0114134,New York Times,"''The Pillow Book'' finds the filmmaker at his most atypically seductive, creating a spellbinding web of cruel elegance and intricate gamesmanship, exploring the exotic, haunting beauty of the bizarre.",2000-01-01,18494,The Pillow Book +James Berardinelli,fresh,0114134,ReelViews,,2000-01-01,18494,The Pillow Book +Ruthe Stein,rotten,0114134,San Francisco Chronicle,"Such Greenaway films as ""The Cook, The Thief, His Wife & Her Lover,"" ""Prospero's Books"" and now this make one wonder if they're really as deep as they pretend to be. Perhaps, as his actors, this emperor has no clothes.",2000-01-01,18494,The Pillow Book +,fresh,0114134,Entertainment Weekly,"I can't say that I've ever entertained fantasies of writing on someone's body. But Peter Greenaway's The Pillow Book does, at least, succeed in making it look like an erotic activity.",1997-06-06,18494,The Pillow Book +,none,0117775,Variety,,2009-03-26,770692079,Sudden Manhattan +Stephen Holden,none,0117775,New York Times,,2002-11-18,770692079,Sudden Manhattan +,none,0117775,L.A. Weekly,,2002-11-12,770692079,Sudden Manhattan +Brendan Kelly,none,0118127,Variety,,2009-03-26,15923,Wedding Bell Blues +Janet Maslin,none,0118127,New York Times,,2003-05-20,15923,Wedding Bell Blues +Jeff Strickler,none,0118127,Minneapolis Star Tribune,,2002-11-06,15923,Wedding Bell Blues +,rotten,0118127,Globe and Mail,,2002-04-12,15923,Wedding Bell Blues +,none,0118127,Houston Chronicle,,2000-01-01,15923,Wedding Bell Blues +Lisa Schwarzbaum,rotten,0118688,Entertainment Weekly,"By now, the dispatching of various comic-book meanies is the least satisfying part of the deal, no matter how many disco scenes or gizmos are thrown onto the screen.",2010-07-07,11169,Batman & Robin +Jonathan Rosenbaum,rotten,0118688,Chicago Reader,"Loud, uninspired, and interminable.",2007-04-16,11169,Batman & Robin +Todd McCarthy,rotten,0118688,Variety,"The villains, Arnold Schwarzenegger and especially Uma Thurman in this instance, remain the highlights here, as the rest of the gargantuan production lacks the dash and excitement that would have given the franchise a boost in its eighth year.",2007-04-16,11169,Batman & Robin +,rotten,0118688,Time Out,The fourth Bat-flick finds this juvenile franchise running on empty.,2006-01-26,11169,Batman & Robin +Liam Lacey,rotten,0118688,Globe and Mail,"Campy costumes can't disguise the incoherent plot, confused performances and lame script that send this star vehicle spiralling downward.",2002-11-15,11169,Batman & Robin +Jeff Strickler,rotten,0118688,Minneapolis Star Tribune,"[Schumacher's] storytelling is limp, and the characters lack energy.",2002-11-06,11169,Batman & Robin +Mick LaSalle,rotten,0118688,San Francisco Chronicle,"George Clooney is the big zero of the film, and should go down in history as the George Lazenby of the series.",2001-07-24,11169,Batman & Robin +Jeff Millar,fresh,0118688,Houston Chronicle,"If you like 'em busy, this sequel is for you.",2001-07-24,11169,Batman & Robin +Mike Clark,fresh,0118688,USA Today,Some nifty celestial surfing and a good finale compensate for a dead midsection.,2001-07-24,11169,Batman & Robin +Joe Baltake,rotten,0118688,Sacramento Bee,"A mishmash of prolonged, confused action sequences, which are, admittedly, brilliantly staged but don't make much sense.",2001-07-24,11169,Batman & Robin +Susan Stark,rotten,0118688,Detroit News,"Apart from its eye-appeal, though, Batman & Robin is a virtually joyless exercise, a lumbering saga of a city under assault on two fronts.",2001-07-24,11169,Batman & Robin +Kenneth Turan,rotten,0118688,Los Angeles Times,"Like stumbling into the world's longest coming attractions trailer, or a product reel for a special-effects house.",2001-07-24,11169,Batman & Robin +Desson Thomson,rotten,0118688,Washington Post,"Please, supervillains, you mutter quietly. Deliver us from the bland.",2001-07-24,11169,Batman & Robin +Roger Ebert,rotten,0118688,Chicago Sun-Times,"Wonderful to look at, and has nothing authentic at its core.",2001-07-24,11169,Batman & Robin +Robin Dougherty,rotten,0118688,Salon.com,"Holy creative breakdown, Batman!",2001-07-24,11169,Batman & Robin +James Berardinelli,rotten,0118688,ReelViews,"Pointless, plodding plotting; asinine action; clueless, comatose characterization; and dumb dialogue.",2001-07-24,11169,Batman & Robin +Janet Maslin,fresh,0118688,New York Times,"As played by Uma Thurman, Poison Ivy is perfect, flaunting great looks, a mocking attitude and madly flamboyant disguises.",2001-07-24,11169,Batman & Robin +Dennis Harvey,none,0119019,Variety,,2009-03-26,15763,Dream with the Fishes +,none,0119019,Time Out,,2006-01-26,15763,Dream with the Fishes +Jeff Strickler,none,0119019,Minneapolis Star Tribune,,2002-11-06,15763,Dream with the Fishes +Jack Mathews,none,0119019,Los Angeles Times,,2001-02-14,15763,Dream with the Fishes +,none,0119019,Houston Chronicle,,2000-01-01,15763,Dream with the Fishes +Roger Ebert,fresh,0119019,Chicago Sun-Times,,2000-01-01,15763,Dream with the Fishes +Mick LaSalle,none,0119019,San Francisco Chronicle,,2000-01-01,15763,Dream with the Fishes +James Berardinelli,fresh,0119019,ReelViews,,2000-01-01,15763,Dream with the Fishes +Janet Maslin,none,0119019,New York Times,,2000-01-01,15763,Dream with the Fishes +Susan Stark,rotten,0119019,Detroit News,,2000-01-01,15763,Dream with the Fishes +Lisa Schwarzbaum,rotten,0120034,Entertainment Weekly,,2011-09-07,11229,Roseanna's Grave +Todd McCarthy,none,0120034,Variety,,2009-03-26,11229,Roseanna's Grave +Geoff Andrew,none,0120034,Time Out,,2006-01-26,11229,Roseanna's Grave +,fresh,0120034,Globe and Mail,,2002-04-12,11229,Roseanna's Grave +James Berardinelli,rotten,0120034,ReelViews,,2000-01-01,11229,Roseanna's Grave +Janet Maslin,none,0120034,New York Times,,2000-01-01,11229,Roseanna's Grave +Roger Ebert,fresh,0120034,Chicago Sun-Times,,2000-01-01,11229,Roseanna's Grave +,rotten,0120034,Entertainment Weekly,,1997-06-18,11229,Roseanna's Grave +Desson Thomson,rotten,0119282,Washington Post,"[An] insipid, lifeless, animated feature.",2009-11-16,9754,Hercules +Susan Stark,fresh,0119282,Detroit News,,2008-10-18,9754,Hercules +Rita Kempley,rotten,0119282,Washington Post,"Chock-full of celeb cameos, puns and contemporary camp, the movie is annoyingly hip.",2008-10-18,9754,Hercules +Richard Corliss,fresh,0119282,TIME Magazine,"This is a bright movie, in both senses of the word.",2008-09-01,9754,Hercules +Leonard Klady,fresh,0119282,Variety,"It's a winning tall tale, cleverly told and wonderfully voiced...",2008-09-01,9754,Hercules +Derek Adams,fresh,0119282,Time Out,Another benchmark achievement for the Aladdin team of Musker and Clements.,2006-02-09,9754,Hercules +Peter Stack,fresh,0119282,San Francisco Chronicle,What fun!,2002-06-18,9754,Hercules +Kenneth Turan,fresh,0119282,Los Angeles Times,"Light on its feet and continually amusing, this free-spirited show-biz version of Greek mythology ranks with the best of modern Disney animation.",2001-02-14,9754,Hercules +Janet Maslin,fresh,0119282,New York Times,"On any level, earthly or otherwise, the ingenious new animated Hercules is pretty divine.",2000-01-01,9754,Hercules +Roger Ebert,fresh,0119282,Chicago Sun-Times,"Jumps into the ancient legends feet-first, cheerfully tossing out what won't fit and combining what's left into a new look and a lighthearted style.",2000-01-01,9754,Hercules +James Berardinelli,fresh,0119282,ReelViews,Hercules has the dubious distinction of being the least-enchanting cartoon Disney has fashioned in over a decade.,2000-01-01,9754,Hercules +Susan Wloszczyna,fresh,0119282,USA Today,Furiously fast and fiendishly funny.,2000-01-01,9754,Hercules +Charles Taylor,rotten,0119282,Salon.com,Pretty appalling.,2000-01-01,9754,Hercules +Owen Gleiberman,fresh,0119282,Entertainment Weekly,A Disney fable savvy enough not to let its sincerity get in the way of its zippy multimedia charm.,1997-06-15,9754,Hercules +Dennis Harvey,none,0119502,Variety,,2009-03-26,14723,The Last Time I Committed Suicide +Geoff Andrew,none,0119502,Time Out,,2006-02-09,14723,The Last Time I Committed Suicide +Kevin Thomas,none,0119502,Los Angeles Times,,2001-02-14,14723,The Last Time I Committed Suicide +Stephen Holden,none,0119502,New York Times,,2000-01-01,14723,The Last Time I Committed Suicide +Edward Guthmann,none,0119502,San Francisco Chronicle,,2000-01-01,14723,The Last Time I Committed Suicide +Owen Gleiberman,rotten,0119738,Entertainment Weekly,We don't feel much of anything.,2009-02-03,12712,My Best Friend's Wedding +Lisa Alspector,rotten,0119738,Chicago Reader,The draggy narrative of this 1997 comedy is tough to sit through -- there are even several overproduced musical numbers -- but it does have an intriguing subversive element that I don't want to give away.,2009-02-03,12712,My Best Friend's Wedding +Leonard Klady,fresh,0119738,Variety,"Anchored by skilled comedienne Julia Roberts, this skewered variation on jealousy and the wrong woman doing battle in the aisles is a winning balance of the familiar and the novel.",2009-02-03,12712,My Best Friend's Wedding +,rotten,0119738,Time Out,The film's brazen amorality gradually freezes the smile on your face.,2006-02-09,12712,My Best Friend's Wedding +Rita Kempley,rotten,0119738,Washington Post,A misbegotten attempt to update the genre that only proves the enduring -- if not downright inviolable -- appeal of the boy-meets-girl scenario.,2002-08-29,12712,My Best Friend's Wedding +Ruthe Stein,fresh,0119738,San Francisco Chronicle,[Julia Roberts] is at her vibrant best.,2002-06-18,12712,My Best Friend's Wedding +Rick Groen,fresh,0119738,Globe and Mail,"Every once in a long while, along comes a refreshing change like My Best Friend's Wedding, a movie whose appeal rests largely on its knack for defying our expectations by riffing off, even undermining, a familiar genre.",2002-04-12,12712,My Best Friend's Wedding +Peter Travers,fresh,0119738,Rolling Stone,Roberts puts her heart into this one. Audiences are likely to return the favor.,2001-05-11,12712,My Best Friend's Wedding +Kenneth Turan,fresh,0119738,Los Angeles Times,"My Best Friend's Wedding feels repetitive at times, but its star power and willingness to undercut convention come through at the end.",2001-02-14,12712,My Best Friend's Wedding +Stephen Hunter,rotten,0119738,Washington Post,A romantic comedy conspicuously lacking either romance or comedy.,2000-01-01,12712,My Best Friend's Wedding +Susan Stark,rotten,0119738,Detroit News,"Emotionally, this is a movie that just doesn't compute. You leave feeling cross, as if you've been tricked.",2000-01-01,12712,My Best Friend's Wedding +Janet Maslin,rotten,0119738,New York Times,"[An] obtuse, prettily decorative comedy.",2000-01-01,12712,My Best Friend's Wedding +Gina Fattore,fresh,0119738,Chicago Reader,"In the eleventh hour, a little romance creeps into this distinctly unromantic comedy.",2000-01-01,12712,My Best Friend's Wedding +James Berardinelli,fresh,0119738,ReelViews,My Best Friend's Wedding has a bit of an edge and enough intelligence to keep it from drowning in the kind of mawkish sentimentality that often makes this sort of movie hard-to-swallow.,2000-01-01,12712,My Best Friend's Wedding +Susan Wloszczyna,fresh,0119738,USA Today,"After too long dulling down in duds like Mary Reilly, [Roberts] dazzles again.",2000-01-01,12712,My Best Friend's Wedding +Roger Ebert,fresh,0119738,Chicago Sun-Times,"The screenplay has never been on autopilot; it just fooled us into thinking it was, in order to sneak up on the unpredictability.",2000-01-01,12712,My Best Friend's Wedding +Stanley Kauffmann,rotten,0119738,The New Republic,"A farce-comedy, it must thrive, if it's to do so, on sparkle. But the bubbles are sparse, partly because of Roberts's low fizz level.",2000-01-01,12712,My Best Friend's Wedding +Joe Baltake,fresh,0119738,Sacramento Bee,A wonderful commingling of talent both on-screen and off.,2000-01-01,12712,My Best Friend's Wedding +Stephen Holden,none,0105569,New York Times,,2000-01-01,15457,Tetsuo II: Body Hammer +Mick LaSalle,none,0105569,San Francisco Chronicle,,2000-01-01,15457,Tetsuo II: Body Hammer +Roger Ebert,fresh,0105569,Chicago Sun-Times,,2000-01-01,15457,Tetsuo II: Body Hammer +Lisa Schwarzbaum,fresh,0115856,Entertainment Weekly,,2011-09-07,573373161,Chacun cherche son chat +,none,0115856,Time Out,,2006-02-09,573373161,Chacun cherche son chat +Ruthe Stein,none,0115856,San Francisco Chronicle,,2002-06-18,573373161,Chacun cherche son chat +Janet Maslin,none,0115856,New York Times,,2000-01-01,573373161,Chacun cherche son chat +,none,0115856,Houston Chronicle,,2000-01-01,573373161,Chacun cherche son chat +Joe Baltake,none,0115856,Sacramento Bee,,2000-01-01,573373161,Chacun cherche son chat +James Berardinelli,fresh,0115856,ReelViews,,2000-01-01,573373161,Chacun cherche son chat +Roger Ebert,fresh,0115856,Chicago Sun-Times,,2000-01-01,573373161,Chacun cherche son chat +Charles Taylor,none,0115856,Salon.com,,2000-01-01,573373161,Chacun cherche son chat +Stanley Kauffmann,none,0115856,The New Republic,,2000-01-01,573373161,Chacun cherche son chat +,fresh,0115856,Entertainment Weekly,,1996-06-01,573373161,Chacun cherche son chat +Stephanie Zacharek,fresh,0057345,Village Voice,Possibly Godard's most melancholy film and probably his most beautiful ...,2013-09-03,19272,Le mépris +Ben Kenigsberg,fresh,0057345,Time Out,,2011-11-18,19272,Le mépris +Joshua Rothkopf,fresh,0057345,Time Out,,2011-11-17,19272,Le mépris +Owen Gleiberman,fresh,0057345,Entertainment Weekly,,2011-09-07,19272,Le mépris +,none,0057345,Variety,,2009-03-26,19272,Le mépris +Ty Burr,fresh,0057345,Boston Globe,"What's the price of selling out? Contempt asks the question of its characters, its audience, and its own director.",2008-04-11,19272,Le mépris +Joshua Rothkopf,fresh,0057345,Time Out New York,"Godard has finally dared to get serious, achieving not mock pathos but a perfect tragedy.",2008-03-14,19272,Le mépris +,fresh,0057345,Entertainment Weekly,,2008-03-14,19272,Le mépris +Derek Adams,none,0057345,Time Out,,2006-02-09,19272,Le mépris +Bosley Crowther,rotten,0057345,New York Times,"Godard sets interesting scenes, with provocative color combinations and a suggestive pictorial flow. But out of it all comes nothing -- or very little that tells you why this wife is so contemptuous of her husband. Maybe he should be contemptuous of her!",2003-05-20,19272,Le mépris +Kenneth Turan,none,0057345,Los Angeles Times,,2001-02-13,19272,Le mépris +Jonathan Rosenbaum,fresh,0057345,Chicago Reader,I would argue that Godard's eclecticism must be acknowledged and understood before one can genuinely appreciate the film.,2000-01-01,19272,Le mépris +Charles Taylor,fresh,0057345,Salon.com,It emerges as one of Godard's most emotional films.,2000-01-01,19272,Le mépris +Jeff Millar,fresh,0057345,Houston Chronicle,"This one has too much forced intellectualism to it, even though it is an engrossing time capsule.",2000-01-01,19272,Le mépris +Joe Baltake,none,0057345,Sacramento Bee,,2000-01-01,19272,Le mépris +Edward Guthmann,fresh,0057345,San Francisco Chronicle,"It takes its artistic agenda seriously, but also luxuriates in the sensuality and plasticity of film images.",2000-01-01,19272,Le mépris +Roger Ebert,fresh,0057345,Chicago Sun-Times,"Contempt was Jean-Luc Godard's 1963 attempt at a big-budget, big- star production, and more or less satisfied his curiosity.",2000-01-01,19272,Le mépris +Ty Burr,rotten,0460791,Boston Globe,,2011-11-24,770686760,The Fall +Joshua Rothkopf,fresh,0460791,Time Out,,2011-11-17,770686760,The Fall +Owen Gleiberman,rotten,0460791,Entertainment Weekly,,2011-09-07,770686760,The Fall +Mark Bourne,fresh,0460791,Film.com,"...a movie that not only expected me to pay attention, it assumed that I could.",2009-02-02,770686760,The Fall +Bill Stamets,fresh,0460791,Chicago Reader,"The girl and the hospital patients and staff also turn up in his improvised adventure, extravagantly garbed by costume designer Eiko Ishioka.",2008-12-17,770686760,The Fall +,fresh,0460791,St. Louis Post-Dispatch,,2008-10-18,770686760,The Fall +Trevor Johnston,fresh,0460791,Time Out,"The pacing drags and the cliched tussle between childhood innocence and adult disillusionment can only go one way. Better to experience it than think about it, fair to say.",2008-10-03,770686760,The Fall +John Hartl,rotten,0460791,Seattle Times,"Pace and Untaru generate an unforced chemistry that makes them pleasant company for a couple of hours, but they almost work against the movie's need to establish narrative tension. They appear to be having such a good time that Roy's self-destructive impu",2008-05-30,770686760,The Fall +Peter Hartlaub,fresh,0460791,San Francisco Chronicle,"An achingly beautiful movie and a triumph of location scouting, with more cosmopolitan spectacle than the past three Indiana Jones and James Bond movies combined.",2008-05-30,770686760,The Fall +James Berardinelli,rotten,0460791,ReelViews,"Sometimes, looking good isn't enough.",2008-05-30,770686760,The Fall +Roger Moore,rotten,0460791,Orlando Sentinel,"That's the trouble with candy, the eye kind or the tooth-decaying variety. It's only after you've made a glutton of yourself that you realize you haven't devoured anything particularly filling.",2008-05-30,770686760,The Fall +Kathie Smith,rotten,0460791,Minneapolis Star Tribune,"The Fall is a technically dazzling film that instantly gratifies the eye, but falls short of appeasing the head or the heart with its visual excesses.",2008-05-30,770686760,The Fall +Rene Rodriguez,rotten,0460791,Miami Herald,"This is a stunning coffee-table book, but it's not really a movie.",2008-05-30,770686760,The Fall +Amy Biancolli,fresh,0460791,Houston Chronicle,"A bewitching movie, rich in ideas and humanity, and it reminds us that fiction is real to the one who imagines it. Adults might read with detachment, but kids know the truth: It matters who lives and who dies in a story. It matters for them, and for us.",2008-05-30,770686760,The Fall +Tom Long,fresh,0460791,Detroit News,"The Fall may indeed stumble at times, and it's certainly hard to categorize. But it's also exhilarating in reach and vision while admirable in execution. If only more films aspired to such wonder.",2008-05-30,770686760,The Fall +Roger Ebert,fresh,0460791,Chicago Sun-Times,"Tarsem's The Fall is a mad folly, an extravagant visual orgy, a free-fall from reality into uncharted realms. Surely it is one of the wildest indulgences a director has ever granted himself.",2008-05-30,770686760,The Fall +Steven Rea,fresh,0460791,Philadelphia Inquirer,"Dazzling and delirious, The Fall is a celebration of cinema, of old-fashioned storytelling and globe-hopping spectacle.",2008-05-30,770686760,The Fall +Michael Phillips,rotten,0460791,Chicago Tribune,"Some filmmakers can imagine everything and select nothing, and while it's clear as a bell Tarsem has more talent than almost any 10 directors put together, in The Fall he's basically showing off with every new wondrous image.",2008-05-29,770686760,The Fall +Richard Roeper,rotten,0460791,Ebert & Roeper,It really adds up to a whole lot of nothing.,2008-05-12,770686760,The Fall +Claudia Puig,fresh,0460791,USA Today,The Fall is aptly named not only because it pertains to a tragic descent but because viewers will feel as if they have plunged headlong into an alternate universe with this dazzling adult fairy tale.,2008-05-09,770686760,The Fall +Owen Gleiberman,fresh,0116384,Entertainment Weekly,,2011-09-07,770688772,Gabbeh +Godfrey Cheshire,none,0116384,Variety,,2009-03-26,770688772,Gabbeh +,none,0116384,Time Out,,2006-02-09,770688772,Gabbeh +Kevin Thomas,fresh,0116384,Los Angeles Times,A work of shimmering beauty.,2001-02-14,770688772,Gabbeh +Jonathan Rosenbaum,fresh,0116384,Chicago Reader,,2000-01-01,770688772,Gabbeh +Peter Stack,fresh,0116384,San Francisco Chronicle,Visually enchanting.,2000-01-01,770688772,Gabbeh +Joe Baltake,fresh,0116384,Sacramento Bee,"Has visual eloquence to spare, a rhythm that pulls you along and a sense of yearning not too often encountered in movies.",2000-01-01,770688772,Gabbeh +Stanley Kauffmann,fresh,0116384,The New Republic,There is hardly a composition in the film that couldn't be extracted and framed.,2000-01-01,770688772,Gabbeh +Roger Ebert,fresh,0116384,Chicago Sun-Times,"Movies such as this work like meditation or music, to nudge us toward the important.",2000-01-01,770688772,Gabbeh +Lawrence Van Gelder,fresh,0116384,New York Times,"Like its subject, Gabbeh is woven with art.",2000-01-01,770688772,Gabbeh +,fresh,0116384,Entertainment Weekly,,1996-09-13,770688772,Gabbeh +Dave Kehr,fresh,0119654,New York Daily News,Its attitude is poised somewhere between the deadpan ghoulishness of the Coen brothers and a Letterman-like sense of the absurdity of life in New York's rich ethnic stew.,2013-08-02,12656,Men in Black +John Hartl,rotten,0119654,Seattle Times,"Men in Black is moderately amusing, well-constructed and mercifully short, but it fails to deliver on the zaniness of its first half.",2013-07-31,12656,Men in Black +Jay Boyar,fresh,0119654,Orlando Sentinel,"This spaced-out comedy may not be bliss, but it sure is fun.",2013-04-14,12656,Men in Black +Gene Siskel,fresh,0119654,Chicago Tribune,"A smart, funny and hip adventure film in a summer of car wrecks and explosions.",2013-04-14,12656,Men in Black +Owen Gleiberman,rotten,0119654,Entertainment Weekly,"Every time the film makes you chuckle, you may also feel it's zapped you with a neuralizer.",2010-07-06,12656,Men in Black +Todd McCarthy,fresh,0119654,Variety,A wild knuckleball of a movie that keeps dancing in and out of the strike zone.,2008-07-07,12656,Men in Black +David Edelstein,fresh,0119654,Slate,"The smartest, funniest, and best-looking sci-fi comedy since the movies learned to morph.",2007-06-05,12656,Men in Black +Desson Thomson,fresh,0119654,Washington Post,It's just the best yuk of the week.,2007-04-17,12656,Men in Black +Derek Adams,fresh,0119654,Time Out,"It's so much fun, in fact, that it's almost over before you realise that you've been watching a great idea for a movie in desperate search of a plot.",2006-02-09,12656,Men in Black +Jeff Strickler,fresh,0119654,Minneapolis Star Tribune,"As ragged as the humor is, there still are more hits than misses.",2002-11-06,12656,Men in Black +Mick LaSalle,rotten,0119654,San Francisco Chronicle,"At times, it may succeed at manipulating you, but you won't like it.",2002-06-18,12656,Men in Black +Rick Groen,fresh,0119654,Globe and Mail,"The result is a rich picture with a winning personality, as modest in theme as it is in style.",2002-04-12,12656,Men in Black +Peter Travers,fresh,0119654,Rolling Stone,"To quote the film's wisest alien, who just happens to be occupying the body of an ugly-ass pug dog, 'You don't like it, you can kiss my furry little butt.'",2001-05-11,12656,Men in Black +Kenneth Turan,fresh,0119654,Los Angeles Times,"Though its charm is in its attitude and premise (and Danny Elfman's rousing score), Men in Black does have a serviceable plot that kicks in when a rusty flying saucer crash-lands in a rural area.",2001-02-14,12656,Men in Black +Joe Baltake,fresh,0119654,Sacramento Bee,"Like the Fiorentino character, you may not remember much. But you'll remember having fun.",2000-01-01,12656,Men in Black +Jonathan Rosenbaum,fresh,0119654,Chicago Reader,"...thanks to Solomon's sparkling dialogue, Sonnenfeld's graceful economy, and a steady visual inventiveness, Men in Black takes the radical step of assuming that its audience is hip and smart, and it shines with that generous act of complicity.",2000-01-01,12656,Men in Black +Jeff Millar,fresh,0119654,Houston Chronicle,"It's smart, it looks sensational and it's funny -- sneaky-funny.",2000-01-01,12656,Men in Black +Roger Ebert,fresh,0119654,Chicago Sun-Times,"Men in Black continues this summer's tradition, already established by Con Air and Batman and Robin, of big-budget action pictures that at least have the wit to know how silly they are.",2000-01-01,12656,Men in Black +Susan Stark,rotten,0119654,Detroit News,,2000-01-01,12656,Men in Black +Janet Maslin,fresh,0119654,New York Times,The film's technical team reflects exceptional stylistic harmony.,2000-01-01,12656,Men in Black +,none,0119848,Variety,,2012-02-23,11090,Out to Sea +Lisa Schwarzbaum,fresh,0119848,Entertainment Weekly,,2011-09-07,11090,Out to Sea +Joe Leydon,none,0119848,Variety,,2009-03-26,11090,Out to Sea +Jeff Strickler,none,0119848,Minneapolis Star Tribune,,2002-11-06,11090,Out to Sea +,rotten,0119848,Globe and Mail,,2002-04-12,11090,Out to Sea +Kevin Thomas,none,0119848,Los Angeles Times,,2001-02-14,11090,Out to Sea +Ruthe Stein,none,0119848,San Francisco Chronicle,,2000-01-01,11090,Out to Sea +James Berardinelli,rotten,0119848,ReelViews,,2000-01-01,11090,Out to Sea +Joe Baltake,none,0119848,Sacramento Bee,,2000-01-01,11090,Out to Sea +Janet Maslin,none,0119848,New York Times,,2000-01-01,11090,Out to Sea +,none,0119848,Washington Post,,2000-01-01,11090,Out to Sea +Mike Clark,rotten,0119848,USA Today,Sporadically engaging.,2000-01-01,11090,Out to Sea +,fresh,0119848,Entertainment Weekly,,1997-07-02,11090,Out to Sea +Owen Gleiberman,rotten,0120512,Entertainment Weekly,,2011-09-07,11286,Wild America +Leonard Klady,none,0120512,Variety,,2008-10-18,11286,Wild America +,rotten,0120512,Globe and Mail,,2002-04-12,11286,Wild America +Kevin Thomas,none,0120512,Los Angeles Times,,2001-02-14,11286,Wild America +Susan Stark,rotten,0120512,Detroit News,,2000-01-01,11286,Wild America +,none,0120512,Washington Post,,2000-01-01,11286,Wild America +James Berardinelli,rotten,0120512,ReelViews,,2000-01-01,11286,Wild America +Susan Wloszczyna,rotten,0120512,USA Today,Wild America often feels like a MMMBop-ish Hanson brothers music video redone for the Discovery Channel.,2000-01-01,11286,Wild America +Peter Stack,none,0120512,San Francisco Chronicle,,2000-01-01,11286,Wild America +,none,0120512,Houston Chronicle,,2000-01-01,11286,Wild America +Joe Baltake,none,0120512,Sacramento Bee,,2000-01-01,11286,Wild America +Stephen Holden,none,0120512,New York Times,,2000-01-01,11286,Wild America +,rotten,0120512,Entertainment Weekly,,1997-07-02,11286,Wild America +Derek Adams,none,0120133,Time Out,,2006-06-24,12351,A Simple Wish +,rotten,0120133,Globe and Mail,,2002-04-12,12351,A Simple Wish +Kenneth Turan,none,0120133,Los Angeles Times,,2001-02-14,12351,A Simple Wish +,none,0120133,Washington Post,,2000-01-01,12351,A Simple Wish +James Berardinelli,rotten,0120133,ReelViews,,2000-01-01,12351,A Simple Wish +Ruthe Stein,none,0120133,San Francisco Chronicle,,2000-01-01,12351,A Simple Wish +Roger Ebert,rotten,0120133,Chicago Sun-Times,,2000-01-01,12351,A Simple Wish +Lawrence Van Gelder,none,0120133,New York Times,,2000-01-01,12351,A Simple Wish +Lisa Schwarzbaum,fresh,0118884,Entertainment Weekly,,2011-09-07,10172,Contact +Richard Schickel,rotten,0118884,TIME Magazine,Something like one of those mysterious asteroids that get the astronomers all worked up: a large body of gaseous matter surrounding a relatively small core of solid substance.,2011-02-16,10172,Contact +,rotten,0118884,Newsweek,"When it's good, it's very good. And when it's not, it can be as silly and self-important as a bad '50s sci-fi movie.",2011-02-16,10172,Contact +Todd McCarthy,fresh,0118884,Variety,"Like Jodie Foster's hopeful space voyager in the picture, ""Contact"" may not travel quite as far as it hopes to go, but the trip is worth taking nonetheless.",2009-03-26,10172,Contact +,rotten,0118884,Washington Post,"Begins with a big bang, gradually falls into a lull and finally succumbs to entropy.",2007-06-09,10172,Contact +Rita Kempley,rotten,0118884,Washington Post,Contact takes forever to lift off.,2007-06-08,10172,Contact +,rotten,0118884,Time Out,"Features heavy-handed exposition, repetitive, maudlin flashbacks, uneven performances and endless sermonising.",2006-06-24,10172,Contact +Mick LaSalle,rotten,0118884,San Francisco Chronicle,"When it tries to personify the struggle between skepticism and faith in the relationship between Ellie and her theologian boyfriend, it becomes flat and obvious.",2002-06-18,10172,Contact +Liam Lacey,rotten,0118884,Globe and Mail,"Contact, which aims for awe, ends up with piffle.",2002-04-12,10172,Contact +Peter Travers,fresh,0118884,Rolling Stone,An exhilarating adventure.,2001-05-11,10172,Contact +Desson Thomson,rotten,0118884,Washington Post,"While the movie doesn't qualify as an awful waste of space by any means, it has so many creative black holes, you'll have to weigh the entertainment odds before making this journey.",2000-01-01,10172,Contact +Stephen Holden,fresh,0118884,New York Times,Contact is at its most relaxed when it sheds its intellectual pretensions and reveals its media-wise sense of humor.,2000-01-01,10172,Contact +Roger Ebert,fresh,0118884,Chicago Sun-Times,Zemeckis uses special effects to suggest the climactic events without upstaging them.,2000-01-01,10172,Contact +Jonathan Rosenbaum,rotten,0118884,Chicago Reader,"The movie's CNN strategy, whereby credibility is measured in TV exposure, proves fatal, often throwing the proceedings into a laughable tailspin.",2000-01-01,10172,Contact +Mike Clark,rotten,0118884,USA Today,"For an aspiring ultimate trip, Contact has a flimsy dramatic grip.",2000-01-01,10172,Contact +Susan Stark,fresh,0118884,Detroit News,,2000-01-01,10172,Contact +Robin Dougherty,rotten,0118884,Salon.com,"Faithful to Sagan's brand of popularized science, the film never reaches beyond Hollywood spectacle and sentimentality.",2000-01-01,10172,Contact +James Berardinelli,fresh,0118884,ReelViews,This is the kind of motion picture that restores one's faith in what can be produced when a large budget is used wisely.,2000-01-01,10172,Contact +,fresh,0118884,Entertainment Weekly,,1997-07-11,10172,Contact +,none,0116930,Variety,,2012-02-23,16031,Love Serenade +Owen Gleiberman,fresh,0116930,Entertainment Weekly,,2011-09-07,16031,Love Serenade +David Stratton,none,0116930,Variety,,2009-03-26,16031,Love Serenade +Kenneth Turan,none,0116930,Los Angeles Times,,2001-02-14,16031,Love Serenade +,none,0116930,Houston Chronicle,,2000-01-01,16031,Love Serenade +James Berardinelli,fresh,0116930,ReelViews,,2000-01-01,16031,Love Serenade +Roger Ebert,fresh,0116930,Chicago Sun-Times,,2000-01-01,16031,Love Serenade +Susan Stark,rotten,0116930,Detroit News,,2000-01-01,16031,Love Serenade +Ruthe Stein,none,0116930,San Francisco Chronicle,,2000-01-01,16031,Love Serenade +Janet Maslin,none,0116930,New York Times,,2000-01-01,16031,Love Serenade +,fresh,0116930,Entertainment Weekly,,1997-08-01,16031,Love Serenade +Owen Gleiberman,fresh,0119173,Entertainment Weekly,,2011-09-07,13393,G.I. Jane +Todd McCarthy,none,0119173,Variety,,2008-10-18,13393,G.I. Jane +,none,0119173,Time Out,,2006-06-24,13393,G.I. Jane +,fresh,0119173,Globe and Mail,,2002-04-12,13393,G.I. Jane +Peter Travers,none,0119173,Rolling Stone,,2001-05-11,13393,G.I. Jane +Ruthe Stein,none,0119173,San Francisco Chronicle,,2000-01-01,13393,G.I. Jane +,none,0119173,Washington Post,,2000-01-01,13393,G.I. Jane +Susan Stark,rotten,0119173,Detroit News,,2000-01-01,13393,G.I. Jane +,none,0119173,Houston Chronicle,,2000-01-01,13393,G.I. Jane +Joe Baltake,none,0119173,Sacramento Bee,,2000-01-01,13393,G.I. Jane +James Berardinelli,rotten,0119173,ReelViews,,2000-01-01,13393,G.I. Jane +Charles Taylor,none,0119173,Salon.com,,2000-01-01,13393,G.I. Jane +Susan Wloszczyna,rotten,0119173,USA Today,It ends up being an unfulfilling exercise in pseudo-feminism.,2000-01-01,13393,G.I. Jane +Roger Ebert,fresh,0119173,Chicago Sun-Times,,2000-01-01,13393,G.I. Jane +Janet Maslin,none,0119173,New York Times,,2000-01-01,13393,G.I. Jane +,fresh,0119173,Entertainment Weekly,,1997-08-22,13393,G.I. Jane +Chris Nashawaty,fresh,0082198,Entertainment Weekly,,2011-07-28,16016,Conan the Barbarian +,none,0082198,Variety,,2009-03-26,16016,Conan the Barbarian +,none,0082198,Time Out,,2006-06-24,16016,Conan the Barbarian +Roger Ebert,fresh,0082198,Chicago Sun-Times,Not since Bambi's mother was killed has there been a cannier movie for kids than Conan the Barbarian.,2004-10-23,16016,Conan the Barbarian +Vincent Canby,rotten,0082198,New York Times,"Conan the Barbarian is an extremely long, frequently incoherent, ineptly staged adventure-fantasy set in a prehistoric past.",2004-08-30,16016,Conan the Barbarian +James Berardinelli,fresh,0082198,ReelViews,"Even 17 years after its release, Conan the Barbarian still weaves a spell capable of ensorcelling fans of fantasy adventure.",2000-01-01,16016,Conan the Barbarian +Lisa Schwarzbaum,fresh,0119190,Entertainment Weekly,,2011-09-07,10567,George of the Jungle +Desson Thomson,fresh,0119190,Washington Post,Surprisingly pleasant.,2008-10-18,10567,George of the Jungle +Leonard Klady,fresh,0119190,Variety,"Not quite inspired lunacy, the film has a game, likable quality and strong sequel potential.",2008-07-23,10567,George of the Jungle +Wally Hammond,fresh,0119190,Time Out,The story is incidental -- the villain wants to abduct the talking ape for financial gain -- and thankfully the animatronics and computer effects aren't allowed to overwhelm the proceedings.,2006-02-09,10567,George of the Jungle +Mick LaSalle,fresh,0119190,San Francisco Chronicle,"A pleasant surprise, one of the most witty, entertaining family films to come out in some time.",2002-06-18,10567,George of the Jungle +Liam Lacey,rotten,0119190,Globe and Mail,"George George, George of the Jungle. Boom boom BOOM BOOM . . . Oh, please shut up.",2002-04-12,10567,George of the Jungle +Kenneth Turan,rotten,0119190,Los Angeles Times,There is not a banana's worth of plot in the Dana Olsen and Audrey Wells script to offer narrative nourishment.,2001-02-14,10567,George of the Jungle +Susan Stark,fresh,0119190,Detroit News,,2000-01-01,10567,George of the Jungle +Lawrence Van Gelder,fresh,0119190,New York Times,"George of the Jungle may be unsophisticated, but it is enjoyable.",2000-01-01,10567,George of the Jungle +James Berardinelli,rotten,0119190,ReelViews,"The comedy in George of the Jungle is not sophisticated, but it is frequently audacious and irreverent.",2000-01-01,10567,George of the Jungle +Rita Kempley,fresh,0119190,Washington Post,"Part screwball romance, part special-effects adventure.",2000-01-01,10567,George of the Jungle +Jonathan Rosenbaum,fresh,0119190,Chicago Reader,"An amiable, highly ingratiating piece of lowbrow entertainment, and the audience of mainly young children and parents I saw it with on Saturday night clearly had a ball. So did I.",2000-01-01,10567,George of the Jungle +Louis B. Parks,fresh,0119190,Houston Chronicle,"What really makes this work is Fraser, who plays it to the hilt.",2000-01-01,10567,George of the Jungle +Mike Clark,rotten,0119190,USA Today,"A few hip smarts get displayed here and there in this de facto, broadly comic Tarzan picture, which only reinforces the flailing feel that pervades a 92-minute running time.",2000-01-01,10567,George of the Jungle +Roger Ebert,fresh,0119190,Chicago Sun-Times,"The movie would meander along, not going anywhere, and then -- pow! -- there'd be an enormous laugh. More meandering, and then pow! again.",2000-01-01,10567,George of the Jungle +,fresh,0119190,Entertainment Weekly,,1997-07-16,10567,George of the Jungle +Owen Gleiberman,fresh,0118887,Entertainment Weekly,Mangold certainly knew what he was doing when he cast Keitel and De Niro.,2008-04-09,16382,Cop Land +David Edelstein,fresh,0118887,Slate,"Cop Land shares its leading man's slow-wittedness, but also his likability.",2008-04-09,16382,Cop Land +Jack Kroll,rotten,0118887,Newsweek,Mangold is something of a pseudo-Scorsese.,2008-04-09,16382,Cop Land +Paul Tatara,rotten,0118887,CNN.com,"It's pretty funny, actually, that Stallone gained 40 pounds to play this role, and what the movie needs more than anything else is to eat a salad and do some sit-ups.",2008-04-09,16382,Cop Land +Todd McCarthy,fresh,0118887,Variety,"Although too simplistic in its good-guys/bad-guys approach to morally and emotionally ambiguous material, Cop Land emerges as an absorbing and dramatic yarn about exposing the evil doings of some of New York's finest.",2008-04-09,16382,Cop Land +,fresh,0118887,Hollywood Reporter,A solidly entertaining drama that stays true to the independent spirit of its filmmakers,2008-04-09,16382,Cop Land +Stephen Hunter,fresh,0118887,Washington Post,"At its heart, the movie has a good story to tell: the lumbering oaf who's not nearly as stupid and not nearly as gutless as all the hot dogs from the big city think.",2008-04-09,16382,Cop Land +Lisa Alspector,fresh,0118887,Chicago Reader,"The movie's no roller-coaster ride, but there isn't a boring moment either.",2008-04-09,16382,Cop Land +,rotten,0118887,Time Out,"The mystery suspense elements, however, grind from implausibility (the set-up), to cliche (the climax), with too much back story in between.",2006-02-09,16382,Cop Land +Rick Groen,fresh,0118887,Globe and Mail,"This is a good filmthat could have been great if not for an act of well-intentioned, but misguided casting.",2002-04-12,16382,Cop Land +Peter Travers,fresh,0118887,Rolling Stone,"Nearly down for the count in the movie ring, Stallone isn't just back in the fight. He's a winner.",2001-05-11,16382,Cop Land +Mick LaSalle,fresh,0118887,San Francisco Chronicle,"Though at first Cop Land seems as if it will be an ensemble piece, it is, in fact, Stallone's movie.",2000-01-01,16382,Cop Land +James Berardinelli,fresh,0118887,ReelViews,"A compelling, if imperfect, motion picture.",2000-01-01,16382,Cop Land +Susan Stark,fresh,0118887,Detroit News,,2000-01-01,16382,Cop Land +,fresh,0118887,USA Today,The film is probably best taken as an ultimately slight but still compelling Eastern that plays like a vintage Western about personal redemption.,2000-01-01,16382,Cop Land +Roger Ebert,rotten,0118887,Chicago Sun-Times,"A movie with such a promising concept, so poorly executed, that it begs to be remade.",2000-01-01,16382,Cop Land +Janet Maslin,fresh,0118887,New York Times,"Whatever its limitations, Cop Land has talent to burn.",2000-01-01,16382,Cop Land +Stephanie Zacharek,rotten,0118887,Salon.com,"Oh, the tyranny of being serious about your art: It's a shame when an actor like Sylvester Stallone, who's always at his most appealing when he just hunkers down and lets himself be a big galoot, feels he has to make a bid for respectability.",2000-01-01,16382,Cop Land +Rita Kempley,rotten,0118887,Washington Post,"Written and directed by James Mangold, the drama is dense but misses the moral complexities and grit, not to mention the oomph, of its urban predecessors.",2000-01-01,16382,Cop Land +Owen Gleiberman,fresh,0119081,Entertainment Weekly,,2011-09-07,13353,Event Horizon +,none,0119081,Time Out,,2006-01-26,13353,Event Horizon +,rotten,0119081,Globe and Mail,,2002-04-12,13353,Event Horizon +Stephen Hunter,none,0119081,Washington Post,,2002-01-22,13353,Event Horizon +James Berardinelli,rotten,0119081,ReelViews,,2000-01-01,13353,Event Horizon +Susan Stark,rotten,0119081,Detroit News,,2000-01-01,13353,Event Horizon +Peter Stack,none,0119081,San Francisco Chronicle,,2000-01-01,13353,Event Horizon +Scott Rosenberg,none,0119081,Salon.com,,2000-01-01,13353,Event Horizon +Stephen Holden,none,0119081,New York Times,,2000-01-01,13353,Event Horizon +Roger Ebert,rotten,0119081,Chicago Sun-Times,,2000-01-01,13353,Event Horizon +,fresh,0119081,Entertainment Weekly,,1997-08-15,13353,Event Horizon +Owen Gleiberman,fresh,0120177,Entertainment Weekly,The film gives you the pleasurably junky sensation of living inside an apocalyptic videogame.,2010-07-06,13886,Spawn +Todd McCarthy,rotten,0120177,Variety,"A moodily malevolent, anything-goes revenge fantasy that relies more upon special visual and digitally animated effects for its intended appeal than any comics-derived sci-fier to date.",2009-03-26,13886,Spawn +Lisa Alspector,rotten,0120177,Chicago Reader,This hopelessly redundant action gross-out aspires to a form of hip vacuousness -- and may achieve it.,2007-04-26,13886,Spawn +,rotten,0120177,Time Out,"Dippe, an old SFX hand, needs to think about how to tell a story.",2006-06-24,13886,Spawn +Rita Kempley,rotten,0120177,Washington Post,"The nonsensical screenplay can barely stand-up to the hellzapoppin,' Beelzebubbin' effects mustered by first-time director Mark Dippe.",2002-01-22,13886,Spawn +Roger Ebert,fresh,0120177,Chicago Sun-Times,"As a visual experience, Spawn is unforgettable.",2000-01-01,13886,Spawn +Stephen Holden,rotten,0120177,New York Times,"... an incoherent blitz of noise, chintzy special effects and bargain-basement allegory.",2000-01-01,13886,Spawn +Andy Seiler,rotten,0120177,USA Today,"There's no suspense, no emotional involvement with the characters, and the cynical, sophomoric storytelling is confusing.",2000-01-01,13886,Spawn +Mick LaSalle,rotten,0120177,San Francisco Chronicle,"... a nonstop bombardment that recalls Judge Dredd, but with better diction.",2000-01-01,13886,Spawn +James Berardinelli,rotten,0120177,ReelViews,"As a comic book, Spawn may be first rate, but, as a movie, it's a retread.",2000-01-01,13886,Spawn +Leonard Klady,none,0118570,Variety,,2009-03-26,11069,Air Bud +Geoff Andrew,none,0118570,Time Out,,2006-02-09,11069,Air Bud +Jeff Strickler,none,0118570,Minneapolis Star Tribune,,2002-11-06,11069,Air Bud +Paul Malcolm,none,0118570,L.A. Weekly,,2002-10-02,11069,Air Bud +Mick LaSalle,none,0118570,San Francisco Chronicle,,2002-06-18,11069,Air Bud +,none,0118570,Los Angeles Times,,2001-02-14,11069,Air Bud +Susan Stark,fresh,0118570,Detroit News,,2000-01-01,11069,Air Bud +,none,0118570,Houston Chronicle,,2000-01-01,11069,Air Bud +Mike Clark,rotten,0118570,USA Today,Dull but harmless.,2000-01-01,11069,Air Bud +Roger Ebert,fresh,0118570,Chicago Sun-Times,,2000-01-01,11069,Air Bud +James Berardinelli,rotten,0118570,ReelViews,,2000-01-01,11069,Air Bud +Stephen Holden,none,0118570,New York Times,,2000-01-01,11069,Air Bud +Lisa Schwarzbaum,fresh,0119896,Entertainment Weekly,,2011-09-07,11552,Picture Perfect +Derek Adams,rotten,0119896,Time Out,"[Aniston] has the rare gift of getting you to root for her in the most trying of circumstances, a quality that will stand her in good stead when she progresses to better material.",2006-06-24,11552,Picture Perfect +Janet Maslin,fresh,0119896,New York Times,"[Aniston] at her best can recall young Barbra Streisand in her What's Up, Doc? days.",2003-05-20,11552,Picture Perfect +Peter Travers,rotten,0119896,Rolling Stone,"Aniston doesn't need dialogue to catch Kate's quicksilver moods. It's the sitcom lines, at the service of a contrived plot, that choke her.",2001-05-11,11552,Picture Perfect +Susan Wloszczyna,fresh,0119896,USA Today,"Insubstantial and oversweet, it still refreshes as a midsummer brain cooler.",2000-01-01,11552,Picture Perfect +Ruthe Stein,rotten,0119896,San Francisco Chronicle,Aniston comes across like an imitation of a movie star instead of the real thing. She gets less attractive as the film goes on.,2000-01-01,11552,Picture Perfect +Roger Ebert,rotten,0119896,Chicago Sun-Times,"It's a shame the plot is so contrived, because parts of this movie are really pretty good.",2000-01-01,11552,Picture Perfect +Charles Taylor,rotten,0119896,Salon.com,"What Picture Perfect sells as romance is a junior high school health class morality lecture we all got years ago. And it was a crock then, too.",2000-01-01,11552,Picture Perfect +Susan Stark,rotten,0119896,Detroit News,,2000-01-01,11552,Picture Perfect +James Berardinelli,rotten,0119896,ReelViews,There are times when a bad ending doesn't seriously damage a motion picture. This is not one of those.,2000-01-01,11552,Picture Perfect +,fresh,0119896,Entertainment Weekly,,1997-08-01,11552,Picture Perfect +Lisa Schwarzbaum,fresh,0119361,Entertainment Weekly,,2011-09-07,14703,In the Company of Men +,none,0119361,Washington Post,,2008-10-18,14703,In the Company of Men +David Edelstein,fresh,0119361,Slate,"A dazzling, repellent exercise in which the case against men is closed before it's opened.",2008-02-11,14703,In the Company of Men +Jeff Giles,fresh,0119361,Newsweek,"LaBute, a playwright and former drama teacher, has succeeded in creating a study of banal, everyday evil.",2008-02-11,14703,In the Company of Men +Dennis Harvey,fresh,0119361,Variety,"A dark, probing, truly disturbing exploration of yuppie angst and male anxieties as they manifest themselves in both the work and personal arenas.",2008-02-11,14703,In the Company of Men +Geoff Andrew,fresh,0119361,Time Out,"Cruel, cool and pleasingly provocative.",2006-02-09,14703,In the Company of Men +Rick Groen,fresh,0119361,Globe and Mail,Prepare for the conversation to grow heated.,2002-04-12,14703,In the Company of Men +Charles Taylor,rotten,0119361,Salon.com,"In the Company of Men is a singularly unpleasant movie. And from the point that Chad and Howard settle on Christine, it's an increasingly unbelievable one, too.",2000-01-01,14703,In the Company of Men +Roger Ebert,fresh,0119361,Chicago Sun-Times,"The kind of bold, uncompromising film that insists on being thought about afterward -- talked about, argued about, hated if necessary, but not ignored.",2000-01-01,14703,In the Company of Men +Janet Maslin,fresh,0119361,New York Times,"LaBute directs this low-budget film with such spareness and precision, using such minimal yet effective backdrops, that in retrospect his color film almost seems to have been in black and white. Its ideas are that stark.",2000-01-01,14703,In the Company of Men +Mike Clark,fresh,0119361,USA Today,"A provocative dissection of human dynamics, Men might just become the gotta-see-it August choice of adventurous filmgoers.",2000-01-01,14703,In the Company of Men +James Berardinelli,fresh,0119361,ReelViews,"One of those rarest of rare breeds -- a movie that doesn't just ignore Hollywood conventions, but openly flouts them.",2000-01-01,14703,In the Company of Men +Jonathan Rosenbaum,fresh,0119361,Chicago Reader,"The strength of LaBute's conception every step of the way is in forcing the issue of where we belong in this picture -- with Chad, with Howard, or with Christine.",2000-01-01,14703,In the Company of Men +Desson Thomson,fresh,0119361,Washington Post,"This is a fully realized movie, whose intelligence -- despite its grim findings -- dwarfs any Hollywood production. It's a film to admire -- even if it leaves you cold.",2000-01-01,14703,In the Company of Men +Ruthe Stein,fresh,0119361,San Francisco Chronicle,The three leads inhabit their roles in the way only unknown actors can. They really seem to become the characters they're playing.,2000-01-01,14703,In the Company of Men +,fresh,0119361,Entertainment Weekly,,1997-08-01,14703,In the Company of Men +Leonard Klady,none,0119152,Variety,,2009-03-26,2847461,Free Willy 3: The Rescue +,none,0119152,Time Out,,2006-01-26,2847461,Free Willy 3: The Rescue +,none,0119152,Houston Chronicle,,2003-01-29,2847461,Free Willy 3: The Rescue +Jane Horwitz,none,0119152,Washington Post,,2002-01-22,2847461,Free Willy 3: The Rescue +Kevin Thomas,none,0119152,Los Angeles Times,,2001-02-14,2847461,Free Willy 3: The Rescue +Anita Gates,none,0119152,New York Times,,2000-01-01,2847461,Free Willy 3: The Rescue +Peter Stack,none,0119152,San Francisco Chronicle,,2000-01-01,2847461,Free Willy 3: The Rescue +Roger Ebert,fresh,0119152,Chicago Sun-Times,,2000-01-01,2847461,Free Willy 3: The Rescue +Susan Stark,fresh,0119152,Detroit News,,2000-01-01,2847461,Free Willy 3: The Rescue +Lisa Schwarzbaum,fresh,0118818,Entertainment Weekly,,2011-09-07,15179,Career Girls +Todd McCarthy,none,0118818,Variety,,2009-03-26,15179,Career Girls +,none,0118818,Time Out,,2006-06-24,15179,Career Girls +,fresh,0118818,Globe and Mail,,2002-07-12,15179,Career Girls +Kenneth Turan,none,0118818,Los Angeles Times,,2001-02-14,15179,Career Girls +Stanley Kauffmann,none,0118818,The New Republic,,2000-01-01,15179,Career Girls +,none,0118818,Washington Post,,2000-01-01,15179,Career Girls +Susan Stark,fresh,0118818,Detroit News,,2000-01-01,15179,Career Girls +Janet Maslin,none,0118818,New York Times,,2000-01-01,15179,Career Girls +Roger Ebert,fresh,0118818,Chicago Sun-Times,,2000-01-01,15179,Career Girls +Laura Miller,none,0118818,Salon.com,,2000-01-01,15179,Career Girls +James Berardinelli,fresh,0118818,ReelViews,,2000-01-01,15179,Career Girls +Edward Guthmann,none,0118818,San Francisco Chronicle,,2000-01-01,15179,Career Girls +,fresh,0118818,Entertainment Weekly,,1997-08-08,15179,Career Girls +Lisa Schwarzbaum,fresh,0118883,Entertainment Weekly,,2011-09-07,13448,Conspiracy Theory +Todd McCarthy,none,0118883,Variety,,2009-03-26,13448,Conspiracy Theory +,none,0118883,Time Out,,2006-02-09,13448,Conspiracy Theory +,none,0118883,Washington Post,,2003-04-18,13448,Conspiracy Theory +Jeff Strickler,fresh,0118883,Minneapolis Star Tribune,"Donner directs with an efficient hand. He keeps the action moving briskly. But most important for this format, he knows how to slip in a quick joke or two without detracting from the tension of the suspenseful plot.",2002-11-06,13448,Conspiracy Theory +Mick LaSalle,rotten,0118883,San Francisco Chronicle,The film starts to sour after 20 minutes...,2002-06-18,13448,Conspiracy Theory +Rick Groen,rotten,0118883,Globe and Mail,"...more long-winded than cunningly elaborate, more simplistic than elegantly simple, and more nonsensical than anything else.",2002-04-12,13448,Conspiracy Theory +Peter Travers,rotten,0118883,Rolling Stone,...the strong impact that Gibson makes as damaged goods is diluted by selling Jerry as cute and redeemable.,2001-05-11,13448,Conspiracy Theory +Kenneth Turan,rotten,0118883,Los Angeles Times,"In the hands of stars in denial about their stardom and a director who can't be bothered to take things seriously, it has come out implausible and unsatisfying, a comic thriller that is not especially funny or thrilling.",2001-02-14,13448,Conspiracy Theory +Stephen Hunter,rotten,0118883,Washington Post,"Donner is slick and shallow, but somewhat off his game here.",2000-01-01,13448,Conspiracy Theory +James Berardinelli,rotten,0118883,ReelViews,...confused and disjointed...,2000-01-01,13448,Conspiracy Theory +Roger Ebert,rotten,0118883,Chicago Sun-Times,"Unfortunately, the parts of the movie that are truly good are buried beneath the deadening layers of thriller cliches and an unconvincing love story.",2000-01-01,13448,Conspiracy Theory +Jeff Millar,fresh,0118883,Houston Chronicle,"What makes Conspiracy Theory interesting beyond its cleverness and currency is how the filmmakers manipulate our feelings about its protagonist, Jerry, a New York City cab driver.",2000-01-01,13448,Conspiracy Theory +Janet Maslin,fresh,0118883,New York Times,"En route to this cynical fade-out, Conspiracy Theory does show off enough glossy style ... and incidental cleverness to keep viewers largely hooked.",2000-01-01,13448,Conspiracy Theory +Joe Baltake,fresh,0118883,Sacramento Bee,"There's nothing quite like a big, handsome, movie-star-driven Hollywood film when it's done right.",2000-01-01,13448,Conspiracy Theory +Susan Stark,fresh,0118883,Detroit News,"The plot is every bit as zany and far more elaborate than that of Face/Off, but here again, you just go along with the silliness to savor the performances.",2000-01-01,13448,Conspiracy Theory +Charles Taylor,rotten,0118883,Salon.com,...listening to Gibson's Jerry try to communicate what he's been through isn't suspenseful; it's exhausting.,2000-01-01,13448,Conspiracy Theory +,fresh,0118883,Entertainment Weekly,,1997-08-08,13448,Conspiracy Theory +Lisa Schwarzbaum,rotten,0118966,Entertainment Weekly,,2011-09-07,15116,Desperate Measures +Godfrey Cheshire,none,0118966,Variety,,2009-03-26,15116,Desperate Measures +,none,0118966,Time Out,,2006-01-26,15116,Desperate Measures +Janet Maslin,none,0118966,New York Times,,2003-05-20,15116,Desperate Measures +,rotten,0118966,Globe and Mail,,2002-04-12,15116,Desperate Measures +Jack Mathews,none,0118966,Los Angeles Times,,2001-02-14,15116,Desperate Measures +Roger Ebert,rotten,0118966,Chicago Sun-Times,,2000-01-01,15116,Desperate Measures +Joe Baltake,none,0118966,Sacramento Bee,,2000-01-01,15116,Desperate Measures +Peter Stack,none,0118966,San Francisco Chronicle,,2000-01-01,15116,Desperate Measures +Susan Stark,rotten,0118966,Detroit News,,2000-01-01,15116,Desperate Measures +James Berardinelli,rotten,0118966,ReelViews,,2000-01-01,15116,Desperate Measures +,rotten,0118966,USA Today,,2000-01-01,15116,Desperate Measures +,rotten,0118966,Entertainment Weekly,,1997-06-01,15116,Desperate Measures +,none,0098384,Variety,,2009-03-26,10067,Steel Magnolias +Derek Adams,none,0098384,Time Out,,2006-06-24,10067,Steel Magnolias +Vincent Canby,none,0098384,New York Times,,2003-05-20,10067,Steel Magnolias +Peter Travers,none,0098384,Rolling Stone,,2001-05-12,10067,Steel Magnolias +Desson Thomson,none,0098384,Washington Post,,2000-01-01,10067,Steel Magnolias +Roger Ebert,fresh,0098384,Chicago Sun-Times,,2000-01-01,10067,Steel Magnolias +Hal Hinson,none,0098384,Washington Post,,2000-01-01,10067,Steel Magnolias +Lisa Schwarzbaum,fresh,0120112,Entertainment Weekly,,2011-09-07,15433,She's So Lovely +Emanuel Levy,fresh,0120112,Variety,"Based on Cassavetes pere script, this Cassavetes fils meditation on love and madness is a truly curioisity item, lacking the master's profound ideas and rich subtext; 20 years ago, it would have starred Gena Rowlands, Ben Gazzara and Peter Falk.",2006-12-01,15433,She's So Lovely +Derek Adams,none,0120112,Time Out,,2006-02-09,15433,She's So Lovely +Janet Maslin,none,0120112,New York Times,,2003-05-20,15433,She's So Lovely +Jeff Strickler,none,0120112,Minneapolis Star Tribune,,2002-11-06,15433,She's So Lovely +Mick LaSalle,fresh,0120112,San Francisco Chronicle,,2002-06-18,15433,She's So Lovely +,rotten,0120112,Globe and Mail,,2002-04-12,15433,She's So Lovely +Peter Travers,none,0120112,Rolling Stone,,2001-05-11,15433,She's So Lovely +,none,0120112,Washington Post,,2000-01-01,15433,She's So Lovely +Roger Ebert,fresh,0120112,Chicago Sun-Times,,2000-01-01,15433,She's So Lovely +James Berardinelli,fresh,0120112,ReelViews,,2000-01-01,15433,She's So Lovely +Jonathan Rosenbaum,none,0120112,Chicago Reader,,2000-01-01,15433,She's So Lovely +Gary Kamiya,none,0120112,Salon.com,,2000-01-01,15433,She's So Lovely +,none,0120112,Houston Chronicle,,2000-01-01,15433,She's So Lovely +Joe Baltake,none,0120112,Sacramento Bee,,2000-01-01,15433,She's So Lovely +Susan Stark,fresh,0120112,Detroit News,,2000-01-01,15433,She's So Lovely +,fresh,0120112,Entertainment Weekly,,1997-08-29,15433,She's So Lovely +Owen Gleiberman,fresh,0119311,Entertainment Weekly,,2011-09-07,14577,Hoodlum +Jay Weissberg,none,0119311,Variety,,2009-07-10,14577,Hoodlum +,rotten,0119311,Globe and Mail,,2002-04-12,14577,Hoodlum +Roger Ebert,fresh,0119311,Chicago Sun-Times,,2000-01-01,14577,Hoodlum +Stephen Holden,none,0119311,New York Times,,2000-01-01,14577,Hoodlum +James Berardinelli,fresh,0119311,ReelViews,,2000-01-01,14577,Hoodlum +,none,0119311,Houston Chronicle,,2000-01-01,14577,Hoodlum +Susan Stark,fresh,0119311,Detroit News,,2000-01-01,14577,Hoodlum +,fresh,0119311,USA Today,"The Sting-like ending with its crosses and double-crosses could have been better handled, but there are plenty of other payoffs.",2000-01-01,14577,Hoodlum +,none,0119311,Washington Post,,2000-01-01,14577,Hoodlum +Mick LaSalle,none,0119311,San Francisco Chronicle,,2000-01-01,14577,Hoodlum +,fresh,0119311,Entertainment Weekly,,1997-08-27,14577,Hoodlum +Lisa Alspector,rotten,0119509,Chicago Reader,[The] dead-on imitations of some of the characters from the television series created by Bob Mosher and Joe Connelly will seem pointlessly stylized to viewers unfamiliar with the old sitcom.,2008-05-19,12532,Leave It to Beaver +Joe Leydon,rotten,0119509,Variety,Fuzzily conceived and blandly executed.,2008-05-19,12532,Leave It to Beaver +Liam Lacey,rotten,0119509,Globe and Mail,The Cleavers have come to represent the stereotype of the white-bread family.This reverent '90s remake doesn't do much to challenge it.,2002-04-12,12532,Leave It to Beaver +Mike Clark,rotten,0119509,USA Today,The result is depressingly halfhearted.,2000-01-01,12532,Leave It to Beaver +Jeff Millar,fresh,0119509,Houston Chronicle,Credit the makers of Leave It to Beaver for their kindliness.,2000-01-01,12532,Leave It to Beaver +Roger Ebert,fresh,0119509,Chicago Sun-Times,The film is disarmingly charming.,2000-01-01,12532,Leave It to Beaver +James Berardinelli,rotten,0119509,ReelViews,Why? That's the question foremost in my mind when I consider this latest motion picture retread of a defunct television series. Why was this movie made in the first place?,2000-01-01,12532,Leave It to Beaver +Susan Stark,rotten,0119509,Detroit News,,2000-01-01,12532,Leave It to Beaver +Edward Guthmann,rotten,0119509,San Francisco Chronicle,"Leave It to Beaver just stumbles about in a bland, irony-deprived suburbia that denies the movie any juice or bite and renders the Cleaver family even duller than it was.",2000-01-01,12532,Leave It to Beaver +Lawrence Van Gelder,rotten,0119509,New York Times,Leave It to Beaver is the sort of movie that could be described as good clean fun if it happened to be good or fun.,2000-01-01,12532,Leave It to Beaver +Owen Gleiberman,fresh,0119675,Entertainment Weekly,,2011-09-07,15120,Mimic +Todd McCarthy,none,0119675,Variety,,2009-03-26,15120,Mimic +Derek Adams,none,0119675,Time Out,,2006-06-24,15120,Mimic +Jeff Strickler,none,0119675,Minneapolis Star Tribune,,2002-11-06,15120,Mimic +Richard Harrington,none,0119675,Washington Post,,2002-01-22,15120,Mimic +,none,0119675,Houston Chronicle,,2000-01-01,15120,Mimic +James Berardinelli,rotten,0119675,ReelViews,,2000-01-01,15120,Mimic +Joe Baltake,none,0119675,Sacramento Bee,,2000-01-01,15120,Mimic +Susan Stark,rotten,0119675,Detroit News,,2000-01-01,15120,Mimic +Janet Maslin,none,0119675,New York Times,,2000-01-01,15120,Mimic +Mick LaSalle,fresh,0119675,San Francisco Chronicle,,2000-01-01,15120,Mimic +Susan Wloszczyna,rotten,0119675,USA Today,"A dark, dank and derivative horror ride only an Orkin man could truly love.",2000-01-01,15120,Mimic +Roger Ebert,fresh,0119675,Chicago Sun-Times,,2000-01-01,15120,Mimic +,fresh,0119675,Entertainment Weekly,,1997-08-22,15120,Mimic +Lisa Schwarzbaum,rotten,0119086,Entertainment Weekly,,2011-09-07,12056,Excess Baggage +,none,0119086,Time Out,,2006-01-26,12056,Excess Baggage +,rotten,0119086,Globe and Mail,,2002-04-12,12056,Excess Baggage +Stephen Holden,none,0119086,New York Times,,2000-01-01,12056,Excess Baggage +Roger Ebert,fresh,0119086,Chicago Sun-Times,,2000-01-01,12056,Excess Baggage +Mick LaSalle,none,0119086,San Francisco Chronicle,,2000-01-01,12056,Excess Baggage +Susan Stark,rotten,0119086,Detroit News,,2000-01-01,12056,Excess Baggage +James Berardinelli,rotten,0119086,ReelViews,,2000-01-01,12056,Excess Baggage +Desson Thomson,none,0119086,Washington Post,,2000-01-01,12056,Excess Baggage +,rotten,0119086,Entertainment Weekly,,1997-08-29,12056,Excess Baggage +Leonard Klady,none,0119484,Variety,,2009-03-26,11950,Kull the Conqueror +Jeff Strickler,none,0119484,Minneapolis Star Tribune,,2002-11-06,11950,Kull the Conqueror +,rotten,0119484,Globe and Mail,,2002-04-12,11950,Kull the Conqueror +James Berardinelli,rotten,0119484,ReelViews,,2000-01-01,11950,Kull the Conqueror +Lawrence Van Gelder,none,0119484,New York Times,,2000-01-01,11950,Kull the Conqueror +Peter Stack,none,0119484,San Francisco Chronicle,,2000-01-01,11950,Kull the Conqueror +Desson Thomson,none,0119484,Washington Post,,2000-01-01,11950,Kull the Conqueror +Susan Stark,rotten,0119484,Detroit News,,2000-01-01,11950,Kull the Conqueror +,rotten,0119484,Entertainment Weekly,,1997-08-29,11950,Kull the Conqueror +Owen Gleiberman,fresh,0118571,Entertainment Weekly,,2011-09-07,16823,Air Force One +Geoff Andrew,none,0118571,Time Out,,2006-06-24,16823,Air Force One +Jeff Strickler,none,0118571,Minneapolis Star Tribune,,2002-11-06,16823,Air Force One +Manohla Dargis,fresh,0118571,L.A. Weekly,Most of the time it's a kick.,2002-10-03,16823,Air Force One +,rotten,0118571,Globe and Mail,...it flies on and on until its power to hold us simply peters out.,2002-04-12,16823,Air Force One +Stephen Hunter,fresh,0118571,Washington Post,It's a great ride.,2002-01-22,16823,Air Force One +Desson Thomson,fresh,0118571,Washington Post,"Moments of silliness are more than balanced by Petersen's extraordinary ability to keep this movie flight-worthy, Ford's almost-executive presence and an outstanding performance from Oldman.",2002-01-22,16823,Air Force One +Peter Travers,fresh,0118571,Rolling Stone,Air Force One doesn't insult the audience. It is crafted by a film-maker who takes pride in the thrills and sly fun he packs into every frame.,2001-05-11,16823,Air Force One +Kenneth Turan,fresh,0118571,Los Angeles Times,A piece of expertly crafted entertainment that gets the job done with skill and panache,2001-02-14,16823,Air Force One +Todd McCarthy,fresh,0118571,Variety,Seeing the president of the United States as a kick-butt action hero pretty much sums up the appeal of Air Force One,2001-02-14,16823,Air Force One +Stanley Kauffmann,fresh,0118571,The New Republic,"Up to this moment, every detail ... has been exact ... But, because of that initial realism, audiences accept the fakery of what follows ... a president who, in physical prowess and stamina, makes Arnold Schwarzenegger look limp.",2000-01-01,16823,Air Force One +Janet Maslin,fresh,0118571,New York Times,"Petersen, known for the efficient and vigorously muscular action of Das Boot and In the Line of Fire, once again directs with galvanizing intensity, but the relentlessness of these thrills carries little in the way of surprise.",2000-01-01,16823,Air Force One +Roger Ebert,fresh,0118571,Chicago Sun-Times,"Harrison Ford is one of the most likable and convincing of movie stars, and he almost pulls off the impossible in Air Force One.' I don't mean he saves the day; I mean he almost saves the movie.",2000-01-01,16823,Air Force One +Joe Baltake,rotten,0118571,Sacramento Bee,Harrison Ford can't save Air Force One,2000-01-01,16823,Air Force One +Susan Stark,fresh,0118571,Detroit News,,2000-01-01,16823,Air Force One +Richard Schickel,fresh,0118571,TIME Magazine,The stalking struggle between reason and unreason that precedes it is much more gripping--and fun.,2000-01-01,16823,Air Force One +Mick LaSalle,fresh,0118571,San Francisco Chronicle,"It's a gamble. Air Force One goes against the current grain of presenting presidents in movies as evil or idiotic, or mock heroic, as in last year's 'Independence Day.'",2000-01-01,16823,Air Force One +James Berardinelli,fresh,0118571,ReelViews,"As it is, the movie is a roller coaster ride for those who prefer not to think once the theater lights have dimmed.",2000-01-01,16823,Air Force One +Charles Taylor,rotten,0118571,Salon.com,The two hours of this movie felt like such an eternity that I was certain my clothes were going to be out of style by the time it was over.,2000-01-01,16823,Air Force One +Jeff Millar,fresh,0118571,Houston Chronicle,Air Force One gets the job done.,2000-01-01,16823,Air Force One +Todd McCarthy,none,0118531,Variety,,2008-11-21,14212,One Eight Seven +,none,0118531,Time Out,,2006-01-26,14212,One Eight Seven +Kenneth Turan,none,0118531,Los Angeles Times,,2001-02-14,14212,One Eight Seven +Edward Guthmann,none,0118531,San Francisco Chronicle,,2000-01-01,14212,One Eight Seven +Janet Maslin,none,0118531,New York Times,,2000-01-01,14212,One Eight Seven +Susan Stark,rotten,0118531,Detroit News,,2000-01-01,14212,One Eight Seven +Mike Clark,fresh,0118531,USA Today,A combined psychological and vigilante drama.,2000-01-01,14212,One Eight Seven +Roger Ebert,rotten,0118531,Chicago Sun-Times,,2000-01-01,14212,One Eight Seven +James Berardinelli,rotten,0118531,ReelViews,,2000-01-01,14212,One Eight Seven +,none,0118531,Houston Chronicle,,2000-01-01,14212,One Eight Seven +,none,0118531,Washington Post,,2000-01-01,14212,One Eight Seven +,rotten,0118531,Entertainment Weekly,,1997-07-30,14212,One Eight Seven +Owen Gleiberman,fresh,0099810,Entertainment Weekly,,2011-09-07,11861,The Hunt for Red October +David Ansen,none,0099810,Newsweek,,2008-10-18,11861,The Hunt for Red October +,none,0099810,Time Out,,2006-02-09,11861,The Hunt for Red October +Vincent Canby,none,0099810,New York Times,,2003-05-20,11861,The Hunt for Red October +Roger Ebert,fresh,0099810,Chicago Sun-Times,"A skillful, efficient film.",2000-01-01,11861,The Hunt for Red October +Hal Hinson,rotten,0099810,Washington Post,"A leviathan bore, big, clunky and ponderously overplotted.",2000-01-01,11861,The Hunt for Red October +Desson Thomson,fresh,0099810,Washington Post,A Reagan youth's wet dream of underwater ballistics and East-West conflict.,2000-01-01,11861,The Hunt for Red October +,fresh,0099810,Entertainment Weekly,,1990-03-02,11861,The Hunt for Red October +Owen Gleiberman,fresh,0102494,Entertainment Weekly,,2011-09-07,13214,My Own Private Idaho +David Ansen,none,0102494,Newsweek,,2008-10-18,13214,My Own Private Idaho +Variety Staff,fresh,0102494,Variety,"One of those ambitious, over-reaching disappointments that is more interesting than some more conservative successes.",2008-07-03,13214,My Own Private Idaho +Derek Adams,fresh,0102494,Time Out,The film's uniqueness lies in its remarkable emotional open-heartedness.,2006-02-09,13214,My Own Private Idaho +Vincent Canby,fresh,0102494,New York Times,"The performances, especially by the two young stars, are as surprising as they are sure.",2003-05-20,13214,My Own Private Idaho +Peter Travers,fresh,0102494,Rolling Stone,An essential testament to the beauty and chops of the late River Phoenix...,2001-05-12,13214,My Own Private Idaho +Roger Ebert,fresh,0102494,Chicago Sun-Times,"The achievement of this film is that is wants to evoke that state of drifting need, and it does.",2000-01-01,13214,My Own Private Idaho +Desson Thomson,fresh,0102494,Washington Post,"Even though it falters toward the end, it soars above the fray.",2000-01-01,13214,My Own Private Idaho +Hal Hinson,none,0102494,Washington Post,,2000-01-01,13214,My Own Private Idaho +,fresh,0102494,Entertainment Weekly,,1991-10-18,13214,My Own Private Idaho +Dennis Harvey,none,0119465,Variety,,2008-11-26,16053,"Kiss Me, Guido" +Geoff Andrew,none,0119465,Time Out,,2006-06-24,16053,"Kiss Me, Guido" +Janet Maslin,none,0119465,New York Times,,2003-05-20,16053,"Kiss Me, Guido" +Jeff Strickler,none,0119465,Minneapolis Star Tribune,,2002-11-06,16053,"Kiss Me, Guido" +Michael O'Sullivan,none,0119465,Washington Post,,2002-01-22,16053,"Kiss Me, Guido" +Kevin Thomas,none,0119465,Los Angeles Times,,2001-02-14,16053,"Kiss Me, Guido" +James Berardinelli,rotten,0119465,ReelViews,,2000-01-01,16053,"Kiss Me, Guido" +,none,0119465,Houston Chronicle,,2000-01-01,16053,"Kiss Me, Guido" +Edward Guthmann,fresh,0119465,San Francisco Chronicle,,2000-01-01,16053,"Kiss Me, Guido" +Roger Ebert,rotten,0119465,Chicago Sun-Times,,2000-01-01,16053,"Kiss Me, Guido" +Susan Stark,rotten,0119465,Detroit News,,2000-01-01,16053,"Kiss Me, Guido" +,rotten,0119465,Entertainment Weekly,,1997-06-26,16053,"Kiss Me, Guido" +Lisa Schwarzbaum,rotten,0120197,Entertainment Weekly,,2011-09-07,770738156,Star Maps +Dennis Harvey,none,0120197,Variety,,2009-03-27,770738156,Star Maps +Eve Zibart,none,0120197,Washington Post,,2002-01-22,770738156,Star Maps +Kenneth Turan,none,0120197,Los Angeles Times,,2001-02-14,770738156,Star Maps +Susan Stark,rotten,0120197,Detroit News,,2000-01-01,770738156,Star Maps +Janet Maslin,none,0120197,New York Times,,2000-01-01,770738156,Star Maps +Roger Ebert,rotten,0120197,Chicago Sun-Times,,2000-01-01,770738156,Star Maps +James Berardinelli,rotten,0120197,ReelViews,,2000-01-01,770738156,Star Maps +,none,0120197,Houston Chronicle,,2000-01-01,770738156,Star Maps +Mick LaSalle,none,0120197,San Francisco Chronicle,,2000-01-01,770738156,Star Maps +,rotten,0120197,Entertainment Weekly,,1997-06-01,770738156,Star Maps +Lisa Alspector,fresh,0119360,Chicago Reader,Fast-moving and very funny.,2012-04-11,10460,In & Out +Desson Thomson,rotten,0119360,Washington Post,"Actually, the funniest parts of the movie are excerpts from the film that Cameron is originally nominated for.",2012-04-11,10460,In & Out +Todd McCarthy,rotten,0119360,Variety,Basically a one-joke farce that plays around with a once-delicate subject that by now is a mainstay even on TV.,2008-12-01,10460,In & Out +Andrew Sarris,fresh,0119360,New York Observer,The Hollywood stuff at the beginning with Glenn Close as an Oscar presenter and Matt Dillon as a puffed-up star on the rise is as funny and as nasty as anything in Libby Gelman-Waxner's columns.,2007-04-27,10460,In & Out +,rotten,0119360,Time Out,"Oz wants it both ways, though, and can't resist hammering home the message with a prolonged Spartacus-style climax quite as ludicrous as the Oscar winning film-within-the-film.",2006-06-24,10460,In & Out +Susan Wloszczyna,fresh,0119360,USA Today,One coming-out party that aims to please nearly everyone.,2000-01-01,10460,In & Out +Janet Maslin,fresh,0119360,New York Times,"[Delivers] laughs and skewer a few stereotypes, thanks to extremely sly wit and a fine cast.",2000-01-01,10460,In & Out +James Berardinelli,fresh,0119360,ReelViews,"From the very first scene, you know that In and Out has struck a rich satirical vein.",2000-01-01,10460,In & Out +Roger Ebert,fresh,0119360,Chicago Sun-Times,"In a year when good comedies seem as hard to make as ever, In and Out is one of the best.",2000-01-01,10460,In & Out +Rita Kempley,fresh,0119360,Washington Post,"For the most part, this hilarious caper's gay characters are knee-deep in the American mainstream.",2000-01-01,10460,In & Out +Edward Guthmann,rotten,0119360,San Francisco Chronicle,Never amounts to more than a thin sketch.,2000-01-01,10460,In & Out +Susan Stark,fresh,0119360,Detroit News,,2000-01-01,10460,In & Out +Lisa Schwarzbaum,fresh,0119360,Entertainment Weekly,"A truly funny, sophisticated, compassionate, mainstream Hollywood comedy about very modern homosexuality.",1997-09-19,10460,In & Out +Lisa Schwarzbaum,fresh,0119051,Entertainment Weekly,,2011-09-07,13371,The Edge +Todd McCarthy,none,0119051,Variety,,2008-08-08,13371,The Edge +,none,0119051,Time Out,,2006-01-26,13371,The Edge +,rotten,0119051,Globe and Mail,,2002-07-12,13371,The Edge +Kenneth Turan,fresh,0119051,Los Angeles Times,"...The Edge's fusion of Mametspeak with a true life adventure remains brawny entertainment, even it it is difficult to take as seriously as the filmmakers intend.",2001-02-14,13371,The Edge +Roger Ebert,fresh,0119051,Chicago Sun-Times,It's subtly funny in the way it toys with the cliches of the genre.,2000-01-01,13371,The Edge +Mick LaSalle,rotten,0119051,San Francisco Chronicle,"...The Edge is not only half-baked, warmed-over Hemingway.",2000-01-01,13371,The Edge +Stanley Kauffmann,none,0119051,The New Republic,,2000-01-01,13371,The Edge +Joe Baltake,rotten,0119051,Sacramento Bee,...even less intelligent than your average action flick.,2000-01-01,13371,The Edge +Janet Maslin,fresh,0119051,New York Times,The Edge succeeds ably in blending his famously acerbic dialogue with nerve-racking adventure scenes.,2000-01-01,13371,The Edge +Jeff Millar,rotten,0119051,Houston Chronicle,"But it's too predictable by half, and Mamet's profundities have more volume than mass.",2000-01-01,13371,The Edge +James Berardinelli,rotten,0119051,ReelViews,"I laughed frequently, but the problem is that I'm not sure the director intended there to be as much humor in his film as I uncovered.",2000-01-01,13371,The Edge +Gary Kamiya,fresh,0119051,Salon.com,...a solid man-against-nature tale...,2000-01-01,13371,The Edge +,none,0119051,Washington Post,,2000-01-01,13371,The Edge +Susan Stark,fresh,0119051,Detroit News,"Anthony Hopkins' first action movie casts him as a gentle, brainy tycoon stuck in the Alaskan wilderness with only voracious bears and, just as threatening, Alec Baldwin for company.",2000-01-01,13371,The Edge +,fresh,0119051,Entertainment Weekly,,1997-09-26,13371,The Edge +Owen Gleiberman,rotten,0119874,Entertainment Weekly,,2011-09-07,13893,The Peacemaker +Todd McCarthy,none,0119874,Variety,,2009-03-26,13893,The Peacemaker +Derek Adams,none,0119874,Time Out,,2006-02-09,13893,The Peacemaker +,rotten,0119874,Globe and Mail,,2003-04-25,13893,The Peacemaker +Jeff Strickler,none,0119874,Minneapolis Star Tribune,,2002-11-06,13893,The Peacemaker +Kenneth Turan,none,0119874,Los Angeles Times,,2001-02-14,13893,The Peacemaker +,none,0119874,Washington Post,,2000-01-01,13893,The Peacemaker +Susan Stark,rotten,0119874,Detroit News,,2000-01-01,13893,The Peacemaker +Charles Taylor,none,0119874,Salon.com,,2000-01-01,13893,The Peacemaker +,none,0119874,Houston Chronicle,,2000-01-01,13893,The Peacemaker +Janet Maslin,none,0119874,New York Times,,2000-01-01,13893,The Peacemaker +Mick LaSalle,none,0119874,San Francisco Chronicle,,2000-01-01,13893,The Peacemaker +Mike Clark,rotten,0119874,USA Today,Hops the globe like an old Bob Hope troop show in a futilely frenzied attempt to obscure script weaknesses.,2000-01-01,13893,The Peacemaker +Stanley Kauffmann,none,0119874,The New Republic,,2000-01-01,13893,The Peacemaker +James Berardinelli,rotten,0119874,ReelViews,,2000-01-01,13893,The Peacemaker +Joe Baltake,none,0119874,Sacramento Bee,,2000-01-01,13893,The Peacemaker +Roger Ebert,rotten,0119874,Chicago Sun-Times,,2000-01-01,13893,The Peacemaker +,rotten,0119874,Entertainment Weekly,,1997-09-26,13893,The Peacemaker +Owen Gleiberman,fresh,0119488,Entertainment Weekly,"With its plot that zigs and zags like knife slashes, its cynicism stoked to the melting point, the movie brings the thrill of corruption crackingly to life.",2011-09-07,12956,L.A. Confidential +David Ansen,fresh,0119488,Newsweek,"You have to pay close attention to follow the double-crossing intricacies of the plot, but the reward for your work is dark and dirty fun.",2008-04-09,12956,L.A. Confidential +David Edelstein,fresh,0119488,Slate,Stop reading. Put this review on hold until after you've seen L.A. Confidential.,2008-04-09,12956,L.A. Confidential +Todd McCarthy,fresh,0119488,Variety,An irresistible treat with enough narrative twists and memorable characters for a half-dozen films.,2008-04-09,12956,L.A. Confidential +Lisa Alspector,fresh,0119488,Chicago Reader,"This movie restores genre elements to a level of potency that's disturbing, satisfying, and rare as hell.",2008-04-09,12956,L.A. Confidential +Andrew Sarris,fresh,0119488,New York Observer,"A parlor game has already begun as to whether the supreme acting revelation in L.A. Confidential is provided by Mr. Crowe, Mr. Spacey or Mr. Pearce.",2007-04-27,12956,L.A. Confidential +,fresh,0119488,Time Out,"As the emotional nexus, a Veronica Lake lookalike trapped in a web of male desires, Basinger is arguably the pick of a perfect cast. Subtle, shocking, compelling and immensely assured.",2006-06-24,12956,L.A. Confidential +Liam Lacey,fresh,0119488,Globe and Mail,"A rattling good police story and a dark, laughing tone poem to the never-innocent city of illusions.",2002-04-12,12956,L.A. Confidential +Peter Travers,fresh,0119488,Rolling Stone,"Against all odds, L.A. Confidential succeeds brilliantly, right down to Jerry Goldsmith's score, which evokes his haunting theme from Chinatown without being haunted by it.",2001-05-11,12956,L.A. Confidential +Kenneth Turan,fresh,0119488,Los Angeles Times,"Its intricate plot is so nihilistic and cold around the heart, its nominal heroes so amoral, so willing to sell out anyone and everyone, that the film is as initially unnerving as it is finally irresistible.",2001-02-14,12956,L.A. Confidential +James Berardinelli,fresh,0119488,ReelViews,"Crooked cops. The mystery and allure of Hollywood in the '50s. Death, double-crossing, and secret alliances. Paparazzi waiting to get that one breakthrough picture.",2000-01-01,12956,L.A. Confidential +Mick LaSalle,fresh,0119488,San Francisco Chronicle,This is about one of the best crime dramas in years.,2000-01-01,12956,L.A. Confidential +Jeff Millar,fresh,0119488,Houston Chronicle,"Fun, if you have the stomach for it.",2000-01-01,12956,L.A. Confidential +Janet Maslin,fresh,0119488,New York Times,"Curtis Hanson's resplendently wicked L.A. Confidential is a tough, gorgeous, vastly entertaining throwback to the Hollywood that did things right.",2000-01-01,12956,L.A. Confidential +Joe Baltake,fresh,0119488,Sacramento Bee,"They all contribute to a movie that's unusually delicate, understated and searching -- a movie that catches us up in the faded '50s beauty of Los Angeles.",2000-01-01,12956,L.A. Confidential +John Hartl,fresh,0119488,Film.com,Hollywood filmmaking at its best.,2000-01-01,12956,L.A. Confidential +Dwight Garner,rotten,0119488,Salon.com,"It's the story of good white actors stranded, in the name of noir, in a movie that refuses to kick into gear until it's far too late.",2000-01-01,12956,L.A. Confidential +Sean Means,fresh,0119488,Film.com,"L.A. Confidential walks on the dark side, enticingly daring us to follow.",2000-01-01,12956,L.A. Confidential +Roger Ebert,fresh,0119488,Chicago Sun-Times,"L.A. Confidential is immersed in the atmosphere and lore of film noir, but it doesn't seem like a period picture--it believes its noir values and isn't just using them for decoration.",2000-01-01,12956,L.A. Confidential +Susan Stark,fresh,0119488,Detroit News,It's a film that has substance and sweep to match its high sense of style.,2000-01-01,12956,L.A. Confidential +Lisa Schwarzbaum,fresh,0120102,Entertainment Weekly,,2011-09-07,12759,Seven Years in Tibet +Derek Elley,none,0120102,Variety,,2008-10-18,12759,Seven Years in Tibet +Derek Adams,none,0120102,Time Out,,2006-06-24,12759,Seven Years in Tibet +Janet Maslin,none,0120102,New York Times,,2003-05-20,12759,Seven Years in Tibet +Jeff Strickler,none,0120102,Minneapolis Star Tribune,,2002-11-06,12759,Seven Years in Tibet +Peter Travers,none,0120102,Rolling Stone,,2001-05-11,12759,Seven Years in Tibet +Kenneth Turan,none,0120102,Los Angeles Times,,2001-02-14,12759,Seven Years in Tibet +Joe Baltake,none,0120102,Sacramento Bee,,2000-01-01,12759,Seven Years in Tibet +Roger Ebert,rotten,0120102,Chicago Sun-Times,,2000-01-01,12759,Seven Years in Tibet +,none,0120102,Houston Chronicle,,2000-01-01,12759,Seven Years in Tibet +Mike Clark,rotten,0120102,USA Today,Pitt is no disgrace but is blown off the screen by a bright-eyed adolescent actor.,2000-01-01,12759,Seven Years in Tibet +Susan Stark,fresh,0120102,Detroit News,,2000-01-01,12759,Seven Years in Tibet +Edward Guthmann,none,0120102,San Francisco Chronicle,,2000-01-01,12759,Seven Years in Tibet +,none,0120102,Washington Post,,2000-01-01,12759,Seven Years in Tibet +Dwight Garner,none,0120102,Salon.com,,2000-01-01,12759,Seven Years in Tibet +James Berardinelli,rotten,0120102,ReelViews,,2000-01-01,12759,Seven Years in Tibet +,fresh,0120102,Entertainment Weekly,,1997-10-08,12759,Seven Years in Tibet +Owen Gleiberman,rotten,0119468,Entertainment Weekly,,2011-09-07,13399,Kiss the Girls +Todd McCarthy,none,0119468,Variety,,2008-12-31,13399,Kiss the Girls +Geoff Andrew,none,0119468,Time Out,,2006-06-24,13399,Kiss the Girls +,rotten,0119468,Globe and Mail,,2002-04-12,13399,Kiss the Girls +Peter Stack,none,0119468,San Francisco Chronicle,,2000-01-01,13399,Kiss the Girls +Susan Stark,rotten,0119468,Detroit News,,2000-01-01,13399,Kiss the Girls +Joe Baltake,none,0119468,Sacramento Bee,,2000-01-01,13399,Kiss the Girls +Mike Clark,rotten,0119468,USA Today,Even those engrossed by the build-up here are likely to kiss off the rest after suffering through Girls' groaner of a wrap-up.,2000-01-01,13399,Kiss the Girls +Stephen Holden,none,0119468,New York Times,,2000-01-01,13399,Kiss the Girls +Roger Ebert,fresh,0119468,Chicago Sun-Times,,2000-01-01,13399,Kiss the Girls +James Berardinelli,fresh,0119468,ReelViews,,2000-01-01,13399,Kiss the Girls +,none,0119468,Washington Post,,2000-01-01,13399,Kiss the Girls +,rotten,0119468,Entertainment Weekly,,1997-10-03,13399,Kiss the Girls +Paul Tatara,rotten,0120169,CNN.com,An overt desire to please often leaves Tillman relying on force-feeding techniques.,2008-03-17,16831,Soul Food +Richard Corliss,rotten,0120169,TIME Magazine,"Soul Food aims to be a banquet of feelings, but mostly it serves up tripe.",2008-03-17,16831,Soul Food +Lisa Schwarzbaum,fresh,0120169,Entertainment Weekly,"The steaming platters of fried catfish, macaroni and cheese, sweet corn bread, and black-eyed peas that appear early and often in writer-director George Tillman Jr.'s sentimental family drama should be listed in the credits as costars.",2008-03-17,16831,Soul Food +Godfrey Cheshire,fresh,0120169,Variety,"Soul Food serves up family melodrama-cum-comedy that's tasty and satisfying, if not particularly profound or original.",2008-03-17,16831,Soul Food +Lisa Alspector,fresh,0120169,Chicago Reader,Tillman is tremendously skilled at bridging the vast shifts in tone.,2008-03-17,16831,Soul Food +,fresh,0120169,Time Out,"A hearty, old fashioned meal of a film.",2006-02-09,16831,Soul Food +Peter Stack,fresh,0120169,San Francisco Chronicle,"A warm, funny, touching African American family drama, the kind of bittersweet melodrama that critics tend to relegate as crowd-pleasing corn. We could use more when it's this well done.",2002-06-18,16831,Soul Food +Lonnae O'Neal Parker,rotten,0120169,Washington Post,"Tasty, but easily forgotten.",2002-01-22,16831,Soul Food +Kevin Thomas,fresh,0120169,Los Angeles Times,"Tillman drew inspiration from his own Milwaukee family, his beloved grandmother in particular. Humor, sentiment and melodrama strike a balance as he brings to life nine major characters and a host of others as well.",2001-02-14,16831,Soul Food +Susan Wloszczyna,fresh,0120169,USA Today,An attractive cast and lingering shots of artery-busting delights that amount to pigout pornography.,2000-01-01,16831,Soul Food +Janet Maslin,fresh,0120169,New York Times,"This new menu movie has a soapy plot, appealing stars, family values, down-home atmosphere and a conviction that there's rarely a problem fried chicken can't cure. There sure are worse ways of looking at the world than that.",2000-01-01,16831,Soul Food +Roger Ebert,fresh,0120169,Chicago Sun-Times,"George Tillman says Soul Food is based in part on his own family, and I believe him, because he seems to know the characters so well; by the film's end, so do we.",2000-01-01,16831,Soul Food +Susan Stark,fresh,0120169,Detroit News,,2000-01-01,16831,Soul Food +James Berardinelli,fresh,0120169,ReelViews,"There's a fine line between good, solid drama and the sudsiness of a soap opera, and, although there are times when Soul Food crosses over, the movie remains predominantly on the right side.",2000-01-01,16831,Soul Food +Todd McCarthy,none,0119457,Variety,,2009-03-26,16486,Kicked in the Head +Geoff Andrew,none,0119457,Time Out,,2006-02-09,16486,Kicked in the Head +Jeff Strickler,none,0119457,Minneapolis Star Tribune,,2002-11-06,16486,Kicked in the Head +Susan Stark,rotten,0119457,Detroit News,,2000-01-01,16486,Kicked in the Head +Mick LaSalle,rotten,0119457,San Francisco Chronicle,,2000-01-01,16486,Kicked in the Head +James Berardinelli,rotten,0119457,ReelViews,,2000-01-01,16486,Kicked in the Head +Janet Maslin,none,0119457,New York Times,,2000-01-01,16486,Kicked in the Head +Roger Ebert,rotten,0119457,Chicago Sun-Times,,2000-01-01,16486,Kicked in the Head +Owen Gleiberman,rotten,0120524,Entertainment Weekly,,2011-09-07,16304,Wishmaster +Joe Leydon,none,0120524,Variety,,2009-03-26,16304,Wishmaster +,none,0120524,Time Out,,2006-01-26,16304,Wishmaster +Lawrence Van Gelder,none,0120524,New York Times,,2003-05-20,16304,Wishmaster +Desson Thomson,fresh,0120524,Washington Post,Includes an all-star horror cast.,2000-01-01,16304,Wishmaster +James Berardinelli,rotten,0120524,ReelViews,My best advice to anyone reading this review -- even someone who considers himself or herself a fan of horror movies -- is to stay away.,2000-01-01,16304,Wishmaster +Peter Stack,rotten,0120524,San Francisco Chronicle,An extravaganza of bad special effects and worse acting,2000-01-01,16304,Wishmaster +Jeff Millar,rotten,0120524,Houston Chronicle,"It will be of interest to none but goreheads, who are likely to find the gore rather cheesy.",2000-01-01,16304,Wishmaster +,rotten,0120524,Entertainment Weekly,,1997-06-01,16304,Wishmaster +Jonathan Rosenbaum,rotten,0119174,Chicago Reader,"This 1997 thriller is fairly entertaining nonsense if all you're looking for is 128 minutes of diversion. But if you'd like something more from David Fincher, the director of Seven, don't get your hopes up.",2011-10-04,15651,The Game +Todd McCarthy,fresh,0119174,Variety,Regardless of how far one chooses to buy into The Game -- and the ending ambiguously suggests that it could go on and on -- there is no doubt as to Fincher's staggering expertise as a director and his almost clinical sense of precision.,2009-03-26,15651,The Game +Geoff Andrew,rotten,0119174,Time Out,The film's 'message' about complacency transformed by chaos and uncertainty is hackneyed...,2006-02-09,15651,The Game +,rotten,0119174,Globe and Mail,,2002-07-12,15651,The Game +Mick LaSalle,fresh,0119174,San Francisco Chronicle,"The picture provides Douglas with one of his best roles. If he doesn't quite reach the bizarre heights he achieved in Falling Down, The Game makes its own demands.",2002-06-18,15651,The Game +Mike Clark,fresh,0119174,USA Today,A crowd-pleasing pip most of the way.,2000-01-01,15651,The Game +Susan Stark,rotten,0119174,Detroit News,,2000-01-01,15651,The Game +Roger Ebert,fresh,0119174,Chicago Sun-Times,"Douglas is the right actor for the role. He can play smart, he can play cold, and he can play angry. He is also subtle enough that he never arrives at an emotional plateau before the film does, and never overplays the process of his inner change.",2000-01-01,15651,The Game +James Berardinelli,fresh,0119174,ReelViews,"As it's unspooling on screen, the film is hugely entertaining, but there are several significant plot holes that grow wider the more closely they're investigated.",2000-01-01,15651,The Game +Charles Taylor,rotten,0119174,Salon.com,Fincher is still working on the assumption that he has better things to do than entertain an audience. Which would be fine if he weren't drawn to such schlocky material.,2000-01-01,15651,The Game +Stephen Hunter,rotten,0119174,Washington Post,"It's like the most hideously overproduced episode of The Twilight Zone on record, complete with a last twist that pretty much reduces what came before to soap bubbles.",2000-01-01,15651,The Game +Janet Maslin,fresh,0119174,New York Times,"Douglas, who delivers a new shade of cruel elegance each time he plays another urbane monster, is the ideal star for this vigorously contrived thriller.",2000-01-01,15651,The Game +Owen Gleiberman,fresh,0119174,Entertainment Weekly,"The Game is an intensely exciting puzzle-gimmick thriller, the kind of movie that lets you know from the start that it's slyly aware of its own absurdity (which is why it can then get away with it).",1997-09-12,15651,The Game +Owen Gleiberman,rotten,0119123,Entertainment Weekly,,2011-09-07,14222,Fire Down Below +Leonard Klady,none,0119123,Variety,,2009-03-26,14222,Fire Down Below +Lawrence Van Gelder,none,0119123,New York Times,,2003-05-20,14222,Fire Down Below +Susan Stark,rotten,0119123,Detroit News,,2002-02-07,14222,Fire Down Below +Stephen Hunter,rotten,0119123,Washington Post,"As a movie, it's a piece of drivel.",2002-01-22,14222,Fire Down Below +James Berardinelli,rotten,0119123,ReelViews,"By-the-book stuff, but that's what's expected whenever the name 'Steven Seagal' tops the marquee.",2000-01-01,14222,Fire Down Below +Mick LaSalle,fresh,0119123,San Francisco Chronicle,"There are movies that you know can't be any good, so they'd better be great. Fire Down Below ... achieves that grand level of absurdity.",2000-01-01,14222,Fire Down Below +Sean Means,rotten,0119123,Film.com,Seagal barely works up a sweat... He certainly doesn't work up any drama.,2000-01-01,14222,Fire Down Below +Tom Keogh,rotten,0119123,Film.com,One big self-distraction and nothing that vaguely resembles a real film.,2000-01-01,14222,Fire Down Below +,rotten,0119123,Entertainment Weekly,,1997-09-05,14222,Fire Down Below +Owen Gleiberman,fresh,0120399,Entertainment Weekly,,2011-09-07,13671,U Turn +Todd McCarthy,fresh,0120399,Variety,The stylistic fun Stone has in dramatizing this crime of passion thoroughly revitalizes the well-worked genre.,2009-03-26,13671,U Turn +Geoff Andrew,fresh,0120399,Time Out,"Penn turns in a crisp, unfussy comic performance, Lopez vamps like a scorpion in heat, Nolte sustains a pretty good John Huston impression, and Thornton is mighty peculiar as the mechanic from hell.",2006-02-09,13671,U Turn +Rick Groen,rotten,0120399,Globe and Mail,It's a disappointing ride.,2003-04-25,13671,U Turn +Kenneth Turan,rotten,0120399,Los Angeles Times,"It's so empty emotionally it's difficult to see what the point is, unless it's the celebration of emptiness, an aim that has become so familiar recently it hardly seems worth the trouble everyone has gone to.",2001-02-21,13671,U Turn +Mick LaSalle,rotten,0120399,San Francisco Chronicle,It demonstrates a filmmaker in complete command of his craft and with little control over his impulses.,2000-01-01,13671,U Turn +Susan Stark,rotten,0120399,Detroit News,,2000-01-01,13671,U Turn +James Berardinelli,fresh,0120399,ReelViews,The film takes so many detours that at least one or two of them are bound to surprise even the most jaded movie-goer.,2000-01-01,13671,U Turn +Desson Thomson,rotten,0120399,Washington Post,"Although many of the performances -- particularly from Nolte, Penn and Thornton -- are enjoyable, the movie plunges so deeply into black comedic hell, all is lost.",2000-01-01,13671,U Turn +Michelle Goldberg,rotten,0120399,Salon.com,"Stone the propagandist was insufferable, but as a cynic he's even worse.",2000-01-01,13671,U Turn +Mike Clark,fresh,0120399,USA Today,A sometimes uproarious minor work.,2000-01-01,13671,U Turn +Roger Ebert,rotten,0120399,Chicago Sun-Times,"This is a repetitive, pointless exercise in genre filmmaking -- the kind of movie where you distract yourself by making a list of the sources.",2000-01-01,13671,U Turn +Jeff Millar,fresh,0120399,Houston Chronicle,"Stone has stretched this rubber band past the point where it should snap into parody, but it still holds the shape of a rubber band.",2000-01-01,13671,U Turn +Janet Maslin,fresh,0120399,New York Times,U-Turn becomes a showcase for the filmmaker's terrific arsenal of visual mannerisms and free-association imagery.,2000-01-01,13671,U Turn +,fresh,0120399,Entertainment Weekly,,1997-10-03,13671,U Turn +Variety Staff,fresh,0072848,Variety,"Magnificent production, combined with excellent casting and direction, make The Day of the Locust as fine a film (in a professional sense) as the basic material lets it be.",2008-06-12,15072,The Day of the Locust +Geoff Andrew,rotten,0072848,Time Out,The narrative is often confused and confusing.,2006-01-26,15072,The Day of the Locust +Vincent Canby,none,0072848,New York Times,,2005-05-09,15072,The Day of the Locust +Roger Ebert,fresh,0072848,Chicago Sun-Times,"Schlesinger has conceived his film as an epic, which was a daring thing to do with such slender material.",2004-10-23,15072,The Day of the Locust +Jonathan Rosenbaum,rotten,0072848,Chicago Reader,A painfully misconceived reduction and simplification.,2000-01-01,15072,The Day of the Locust +Lisa Schwarzbaum,rotten,0119632,Entertainment Weekly,,2011-09-07,15637,The MatchMaker +Todd McCarthy,none,0119632,Variety,,2009-03-26,15637,The MatchMaker +Jeff Strickler,none,0119632,Minneapolis Star Tribune,,2002-11-06,15637,The MatchMaker +,rotten,0119632,Globe and Mail,,2002-07-12,15637,The MatchMaker +Edward Guthmann,none,0119632,San Francisco Chronicle,,2000-01-01,15637,The MatchMaker +Susan Stark,fresh,0119632,Detroit News,,2000-01-01,15637,The MatchMaker +Roger Ebert,fresh,0119632,Chicago Sun-Times,,2000-01-01,15637,The MatchMaker +Stephen Holden,none,0119632,New York Times,,2000-01-01,15637,The MatchMaker +,none,0119632,Washington Post,,2000-01-01,15637,The MatchMaker +James Berardinelli,rotten,0119632,ReelViews,,2000-01-01,15637,The MatchMaker +Brendan Kelly,none,0118647,Variety,,2009-03-26,14942,The Assignment +Liam Lacey,rotten,0118647,Globe and Mail,"If there's a small saving grace to this crude thriller, it is the work of Montreal-born director Christian Duguay, who shows flashes of real flare.",2002-07-12,14942,The Assignment +Roger Ebert,fresh,0118647,Chicago Sun-Times,Intelligent and gripping.,2000-01-01,14942,The Assignment +Stephen Holden,rotten,0118647,New York Times,"If you believe that Elvis still lives or that a millennial invasion of flying saucers is imminent, you might buy the bogus premise.",2000-01-01,14942,The Assignment +Mick LaSalle,fresh,0118647,San Francisco Chronicle,"A film of real finesse, style and intelligence, an espionage thriller of the old school, with some modern technical embellishments.",2000-01-01,14942,The Assignment +,fresh,0118647,Entertainment Weekly,,1997-09-26,14942,The Assignment +Owen Gleiberman,fresh,0120402,Entertainment Weekly,,2011-09-07,15168,Ulee's Gold +Todd McCarthy,none,0120402,Variety,,2008-06-05,15168,Ulee's Gold +Geoff Andrew,fresh,0120402,Time Out,This low-key drama is played slow and sage.,2006-06-24,15168,Ulee's Gold +Liam Lacey,fresh,0120402,Globe and Mail,One of those unexpected pleasures that combines a low budget with a high emotional impact.,2003-04-25,15168,Ulee's Gold +Desson Thomson,fresh,0120402,Washington Post,A modest delight.,2002-01-22,15168,Ulee's Gold +Peter Travers,fresh,0120402,Rolling Stone,This is no bakery-grade honey.,2001-05-11,15168,Ulee's Gold +Kenneth Turan,fresh,0120402,Los Angeles Times,There is a quality about this film's use of deliberation that comes at times wonderfully close to magic.,2001-02-14,15168,Ulee's Gold +Susan Stark,fresh,0120402,Detroit News,,2000-01-01,15168,Ulee's Gold +Mike Clark,fresh,0120402,USA Today,An emotionally honest low-ebber that builds to a satisfying wrap-up.,2000-01-01,15168,Ulee's Gold +Jeff Millar,fresh,0120402,Houston Chronicle,Another of those quiet and affecting films from resolutely independent filmmaker Victor Nunez.,2000-01-01,15168,Ulee's Gold +James Berardinelli,fresh,0120402,ReelViews,"Nunez's script is thoughtful and intelligent, and it challenges his actors with fully-formed personalities for them to breathe life into...",2000-01-01,15168,Ulee's Gold +Mick LaSalle,rotten,0120402,San Francisco Chronicle,Shamelessly metaphorical in ways that will embarrass all but a few generous souls.,2000-01-01,15168,Ulee's Gold +Janet Maslin,fresh,0120402,New York Times,It would be accurate but barely adequate to call this the finest work of Mr. Fonda's career.,2000-01-01,15168,Ulee's Gold +Roger Ebert,fresh,0120402,Chicago Sun-Times,Peter Fonda here reveals a depth of talent we did not suspect.,2000-01-01,15168,Ulee's Gold +Jonathan Rosenbaum,fresh,0120402,Chicago Reader,The attentive way Nunez films his entire cast is as resourceful and evocative as the way he films his locations...,2000-01-01,15168,Ulee's Gold +,fresh,0120402,Entertainment Weekly,,1997-06-13,15168,Ulee's Gold +Owen Gleiberman,fresh,0119349,Entertainment Weekly,,2011-09-07,13634,The Ice Storm +Todd McCarthy,fresh,0119349,Variety,A well-observed and deftly performed examination of upper-middle-class emotional deep freeze...,2008-07-28,13634,The Ice Storm +Geoff Andrew,fresh,0119349,Time Out,A thoroughly enjoyable blend of comedy and melodrama...,2006-06-24,13634,The Ice Storm +Rick Groen,fresh,0119349,Globe and Mail,"A remarkable film that takes us straight into John Updike territory, duplicating on screen exactly what the writer achieves on the page.",2002-04-12,13634,The Ice Storm +Peter Travers,fresh,0119349,Rolling Stone,The best film about family so far this year. Just don't think Disney.,2001-05-11,13634,The Ice Storm +Kenneth Turan,rotten,0119349,Los Angeles Times,It's unfortunate that as capable a team as director Lee and screenwriter-producer Schamus should have become fascinated with such unpromising material.,2001-02-14,13634,The Ice Storm +Roger Ebert,fresh,0119349,Chicago Sun-Times,"Despite its mordant undertones, the film is often satirical and frequently very funny, and quietly observant in its performances.",2000-01-01,13634,The Ice Storm +Stanley Kauffmann,rotten,0119349,The New Republic,"Over and over again in Austen, [Lee's] framing, his course of action, his editing suited and amplified the essence of the scene. But here everything in his directing, absolutely everything, is banal.",2000-01-01,13634,The Ice Storm +Janet Maslin,fresh,0119349,New York Times,"Lee daringly chooses to keep his story's motivational mysteries unexplained, leaving this richly observed film open to the viewer's assessments. Yet the sense of imbalance is ever-present and strong.",2000-01-01,13634,The Ice Storm +Charles Taylor,rotten,0119349,Salon.com,I don't know when I've seen actors realize so many affecting moments in such a muddled conception. Lee's aestheticized approach is its own kind of ice storm.,2000-01-01,13634,The Ice Storm +Joe Baltake,fresh,0119349,Sacramento Bee,"This is one of those films in which nothing seems to be 'happening,' but in retrospect, when it's over, everything seems to have happened.",2000-01-01,13634,The Ice Storm +Susan Stark,fresh,0119349,Detroit News,"Perceptively detailed in both the directing and acting, The Ice Storm commands strictest attention from start to finish.",2000-01-01,13634,The Ice Storm +James Berardinelli,fresh,0119349,ReelViews,"The Ice Storm is perceptive about people, relationships, and human nature, and there's not a single moment in the entire 112 minute running length that rings false.",2000-01-01,13634,The Ice Storm +Edward Guthmann,fresh,0119349,San Francisco Chronicle,[An] impressive adaptation of the Rick Moody novel.,2000-01-01,13634,The Ice Storm +,fresh,0119349,Entertainment Weekly,,1997-09-26,13634,The Ice Storm +Brendan Kelly,none,0120192,Variety,,2009-03-26,270630193,Stag +,none,0120192,L.A. Weekly,,2003-11-05,270630193,Stag +Kevin Thomas,none,0120192,Los Angeles Times,,2001-02-14,270630193,Stag +Owen Gleiberman,fresh,0118842,Entertainment Weekly,Smith isn't just fooling around anymore.,2009-02-03,13118,Chasing Amy +,fresh,0118842,Hollywood Reporter,The third time out is the real charm for writer-director Kevin Smith.,2009-02-03,13118,Chasing Amy +Jonathan Rosenbaum,fresh,0118842,Chicago Reader,"Neither PC nor crudely anti-PC, this tough and tender movie, like its characters, is prepared to take emotional risks, and the comic book milieu is deftly sketched in.",2009-02-03,13118,Chasing Amy +Todd McCarthy,fresh,0118842,Variety,Amusing and appealing.,2008-09-05,13118,Chasing Amy +David Ansen,fresh,0118842,Newsweek,"Instead of cool twenty-something irony, Smith startles us with raw emotional honesty.",2008-03-31,13118,Chasing Amy +Geoff Andrew,fresh,0118842,Time Out,"The script moves beyond Smith's customary cataloguing of male adolescent ignorance and idiocy to offer sharp insights into the romanticism and pragmatism, pride and double standards that define the tangled threesome.",2006-06-24,13118,Chasing Amy +Eric Brace,rotten,0118842,Washington Post,Can a script exploring some truly deep questions about human sexuality and emotions be any shoddier and wooden? Will Miramax continue to fund one of the worst directors in the business? Don't stay tuned.,2002-01-22,13118,Chasing Amy +Peter Travers,fresh,0118842,Rolling Stone,"It's a rude blast of gleeful provocation, a farce about emotional pain, a drama about sexual slapstick.",2001-05-11,13118,Chasing Amy +Kevin Thomas,fresh,0118842,Los Angeles Times,Work of such fierce intelligence and emotional honesty that it blows away the competition when it comes to contemporary romantic comedy.,2001-02-14,13118,Chasing Amy +Roger Ebert,fresh,0118842,Chicago Sun-Times,"While the surface of his film sparkles with sharp, ironic dialogue, deeper issues are forming, and Chasing Amy develops into a film of touching insights.",2000-01-01,13118,Chasing Amy +James Berardinelli,fresh,0118842,ReelViews,"This movie is about something, and the deeper we get into it, the more we realize how emotionally on-target the script is.",2000-01-01,13118,Chasing Amy +Jeff Millar,fresh,0118842,Houston Chronicle,"As funny as the observational outrage humor of Clerks, but Smith is working harder.",2000-01-01,13118,Chasing Amy +Mary Brennan,fresh,0118842,Film.com,"It's too loud, sometimes, and it's always pushy, but it's got heart.",2000-01-01,13118,Chasing Amy +John Hartl,fresh,0118842,Film.com,The script eventually gets beyond the pop-culture jokes and starts dealing frankly and intelligently with the problems of three people who are defined by their pasts.,2000-01-01,13118,Chasing Amy +Janet Maslin,fresh,0118842,New York Times,"As Chasing Amy redefines the boy-meets-girl formula for a culture where anything goes, including perhaps another boy or girl, it thrives on Smith's dry, deadpan direction.",2000-01-01,13118,Chasing Amy +Sean Means,fresh,0118842,Film.com,"What Smith does best in Chasing Amy is write clever, raunchy and emotionally true-to-life dialogue, particularly in the arguments between Holden and Alyssa.",2000-01-01,13118,Chasing Amy +Susan Stark,fresh,0118842,Detroit News,Often funny but ultimately wrenching,2000-01-01,13118,Chasing Amy +Edward Guthmann,rotten,0118842,San Francisco Chronicle,"Lacks insight and finesse, and feels like a boldfaced Rorschach for Smith's own hang-ups.",2000-01-01,13118,Chasing Amy +Charles Taylor,fresh,0118842,Salon.com,It could prove to be as bad a date movie for some couples as it might be a real turn-on for others. Anyone with set ideas about sex roles or orientations is likely to get steamed.,2000-01-01,13118,Chasing Amy +Joe Baltake,fresh,0118842,Sacramento Bee,In-your-face with an attitude that's as tactless as it is honest.,2000-01-01,13118,Chasing Amy +Todd McCarthy,none,0119326,Variety,,2009-03-26,22561,How to Be a Player +,none,0119326,Time Out,,2006-02-09,22561,How to Be a Player +Kevin Thomas,none,0119326,Los Angeles Times,,2001-02-14,22561,How to Be a Player +Lawrence Van Gelder,none,0119326,New York Times,,2000-01-01,22561,How to Be a Player +Susan Stark,rotten,0119326,Detroit News,,2000-01-01,22561,How to Be a Player +Edward Guthmann,none,0119326,San Francisco Chronicle,,2000-01-01,22561,How to Be a Player +Bruce Walker,none,0119326,Washington Post,,2000-01-01,22561,How to Be a Player +Lisa Schwarzbaum,fresh,0119164,Entertainment Weekly,,2011-09-07,13301,The Full Monty +Derek Elley,none,0119164,Variety,,2008-10-18,13301,The Full Monty +,none,0119164,Time Out,,2006-01-26,13301,The Full Monty +Moira MacDonald,none,0119164,Seattle Times,,2003-12-31,13301,The Full Monty +,fresh,0119164,Globe and Mail,,2002-07-12,13301,The Full Monty +Ruthe Stein,fresh,0119164,San Francisco Chronicle,,2002-06-18,13301,The Full Monty +Peter Travers,none,0119164,Rolling Stone,,2001-05-11,13301,The Full Monty +Joe Baltake,none,0119164,Sacramento Bee,,2000-01-01,13301,The Full Monty +Janet Maslin,none,0119164,New York Times,,2000-01-01,13301,The Full Monty +Susan Stark,fresh,0119164,Detroit News,,2000-01-01,13301,The Full Monty +Roger Ebert,fresh,0119164,Chicago Sun-Times,,2000-01-01,13301,The Full Monty +Susan Wloszczyna,fresh,0119164,USA Today,It's a familiar show-biz routine but one that's spangled with happy surprises and sharp acting.,2000-01-01,13301,The Full Monty +,none,0119164,Houston Chronicle,,2000-01-01,13301,The Full Monty +Laura Miller,none,0119164,Salon.com,,2000-01-01,13301,The Full Monty +,none,0119164,Washington Post,,2000-01-01,13301,The Full Monty +James Berardinelli,fresh,0119164,ReelViews,,2000-01-01,13301,The Full Monty +,fresh,0119164,Entertainment Weekly,,1997-08-13,13301,The Full Monty +Geoff Andrew,none,0116631,Time Out,,2006-02-09,159371542,Indian Summer +Ernest Hardy,none,0116631,L.A. Weekly,,2002-10-03,159371542,Indian Summer +Kevin Thomas,none,0116631,Los Angeles Times,,2001-02-14,159371542,Indian Summer +Stanley Kauffmann,none,0116631,The New Republic,,2000-01-01,159371542,Indian Summer +Octavio Roca,fresh,0116631,San Francisco Chronicle,,2000-01-01,159371542,Indian Summer +,none,0116631,New York Times,,2000-01-01,159371542,Indian Summer +,none,0116631,Houston Chronicle,,2000-01-01,159371542,Indian Summer +Joe Baltake,none,0116631,Sacramento Bee,,2000-01-01,159371542,Indian Summer +,fresh,0116631,Entertainment Weekly,,1997-07-25,159371542,Indian Summer +Emanuel Levy,fresh,0119280,Variety,"Centering on a lesser-known chapter in the reign of Queen Victoria, this richly detailed drama about her intimate relationship with her servant that scandalized the country is extremely well-acted; Judi Dench deserves an Oscar nomination",2007-01-29,10621,Mrs Brown +,fresh,0119280,Time Out,"Dench is magnificent as Victoria, a toy-sized, black-suited, dough girl of despair, a woman slowly recovering her wits and her expectations.",2006-02-09,10621,Mrs Brown +,fresh,0119280,Globe and Mail,,2002-04-12,10621,Mrs Brown +Edward Guthmann,fresh,0119280,San Francisco Chronicle,,2000-01-01,10621,Mrs Brown +Janet Maslin,fresh,0119280,New York Times,''Mrs. Brown'' transcends its period setting not only with a keenly observed struggle between love and duty but also with the kind of controversy that envelops the Queen and her servant.,2000-01-01,10621,Mrs Brown +James Berardinelli,fresh,0119280,ReelViews,,2000-01-01,10621,Mrs Brown +Susan Stark,fresh,0119280,Detroit News,,2000-01-01,10621,Mrs Brown +,fresh,0119280,USA Today,,2000-01-01,10621,Mrs Brown +Roger Ebert,fresh,0119280,Chicago Sun-Times,,2000-01-01,10621,Mrs Brown +,rotten,0119280,Entertainment Weekly,"Even as the film teases us with the underlying ''sensuality'' of the relationship, it fails to portray it as a convincing human bond. Mrs. Brown is stately yet depressed, like Victoria.",1997-07-18,10621,Mrs Brown +Owen Gleiberman,fresh,0119345,Entertainment Weekly,,2011-09-07,14363,I Know What You Did Last Summer +Derek Elley,none,0119345,Variety,,2008-10-18,14363,I Know What You Did Last Summer +Geoff Andrew,none,0119345,Time Out,,2006-06-24,14363,I Know What You Did Last Summer +Mick LaSalle,rotten,0119345,San Francisco Chronicle,...competent but uninspired...,2002-06-18,14363,I Know What You Did Last Summer +Richard Harrington,fresh,0119345,Washington Post,"A smart, sharply drawn genre film with a moral center and a solid cast.",2002-01-22,14363,I Know What You Did Last Summer +Kevin Thomas,fresh,0119345,Los Angeles Times,"...fun, energetic and fairly scary.",2001-02-14,14363,I Know What You Did Last Summer +Susan Stark,rotten,0119345,Detroit News,Remember all those terrible slasher flicks from the '80s? This could be one of them. It certainly ain't no Scream.,2000-01-01,14363,I Know What You Did Last Summer +Lawrence Van Gelder,fresh,0119345,New York Times,"Like Williamson, Jim Gillespie, the director, respects the conventions of the genre.",2000-01-01,14363,I Know What You Did Last Summer +James Berardinelli,rotten,0119345,ReelViews,The characters aren't interesting enough for us to be scared for them.,2000-01-01,14363,I Know What You Did Last Summer +Joe Baltake,fresh,0119345,Sacramento Bee,"Teasing and taut, I Know What You Did Last Summer is a teen horror flick with a different kind of kick to it.",2000-01-01,14363,I Know What You Did Last Summer +Jeff Millar,rotten,0119345,Houston Chronicle,"The payoff is less effective. It involves several teen-scream modules, such as the $1.98 Startle Effect; the Hand on the Shoulder; and the Is He Dead Yet? gambit.",2000-01-01,14363,I Know What You Did Last Summer +Mike Clark,rotten,0119345,USA Today,"Predictably, the derivative title here is a jumping-off point for another derivative slasher-revenge pic.",2000-01-01,14363,I Know What You Did Last Summer +Roger Ebert,rotten,0119345,Chicago Sun-Times,The best shot in this film is the first one. Not a good sign.,2000-01-01,14363,I Know What You Did Last Summer +,fresh,0119345,Entertainment Weekly,,1997-10-17,14363,I Know What You Did Last Summer +Owen Gleiberman,fresh,0118971,Entertainment Weekly,,2011-09-07,22536,The Devil's Advocate +,none,0118971,Houston Chronicle,,2008-10-18,22536,The Devil's Advocate +Susan Stark,rotten,0118971,Detroit News,,2008-10-18,22536,The Devil's Advocate +,none,0118971,Washington Post,,2008-10-18,22536,The Devil's Advocate +Nigel Floyd,rotten,0118971,Time Out,"Regrettably, an overblown finale and redundant trick ending undercut the mild subversiveness of what's gone before.",2006-06-24,22536,The Devil's Advocate +Rick Groen,rotten,0118971,Globe and Mail,"[Hackford] seems stuck in a private limbo, unable to decide whether he's making a special-effects flick or a pop-philosophical tract.",2002-07-12,22536,The Devil's Advocate +Mick LaSalle,fresh,0118971,San Francisco Chronicle,The movie's greatest strength is that it becomes more complex and rewarding as it goes along.,2002-06-18,22536,The Devil's Advocate +Kenneth Turan,rotten,0118971,Los Angeles Times,"Although it's nice for a film to be ambitious, there is such a thing as overreaching.",2001-02-14,22536,The Devil's Advocate +Roger Ebert,rotten,0118971,Chicago Sun-Times,"The movie never fully engaged me; my mind raced ahead of the plot, and the John Grisham stuff clashed with the Exorcist stuff.",2000-01-01,22536,The Devil's Advocate +Mike Clark,rotten,0118971,USA Today,"As the movie approaches 2 1/4 hours, it begins feeling like eternal damnation.",2000-01-01,22536,The Devil's Advocate +Charles Taylor,rotten,0118971,Salon.com,"The picture starts off slick and amusing, gets convoluted, draggy and strange round about the midway point, and ends up just plain ludicrous.",2000-01-01,22536,The Devil's Advocate +James Berardinelli,fresh,0118971,ReelViews,"A highly enjoyable motion picture that's part character study, part supernatural thriller, and part morality play.",2000-01-01,22536,The Devil's Advocate +Janet Maslin,fresh,0118971,New York Times,Lurid advance ads for Devil's Advocate make it look ridiculous. It's not.,2000-01-01,22536,The Devil's Advocate +,fresh,0118971,Entertainment Weekly,,1997-10-17,22536,The Devil's Advocate +Lisa Schwarzbaum,rotten,0120029,Entertainment Weekly,,2011-09-07,12710,RocketMan +Joe Leydon,none,0120029,Variety,,2009-03-26,12710,RocketMan +,rotten,0120029,Globe and Mail,,2002-04-12,12710,RocketMan +,none,0120029,Los Angeles Times,,2001-02-14,12710,RocketMan +,none,0120029,Houston Chronicle,,2000-01-01,12710,RocketMan +Roger Ebert,fresh,0120029,Chicago Sun-Times,,2000-01-01,12710,RocketMan +Joe Baltake,none,0120029,Sacramento Bee,,2000-01-01,12710,RocketMan +Lawrence Van Gelder,none,0120029,New York Times,,2000-01-01,12710,RocketMan +Peter Stack,none,0120029,San Francisco Chronicle,,2000-01-01,12710,RocketMan +James Berardinelli,rotten,0120029,ReelViews,,2000-01-01,12710,RocketMan +Stephen Hunter,none,0120029,Washington Post,,2000-01-01,12710,RocketMan +Susan Stark,fresh,0120029,Detroit News,,2000-01-01,12710,RocketMan +,rotten,0120029,Entertainment Weekly,,1997-10-10,12710,RocketMan +Owen Gleiberman,rotten,0119906,Entertainment Weekly,,2011-09-07,15477,Playing God +Leonard Klady,none,0119906,Variety,,2009-03-26,15477,Playing God +Derek Adams,none,0119906,Time Out,,2006-06-24,15477,Playing God +,rotten,0119906,Globe and Mail,,2002-04-12,15477,Playing God +Jack Mathews,none,0119906,Los Angeles Times,,2001-02-14,15477,Playing God +Joe Baltake,none,0119906,Sacramento Bee,,2000-01-01,15477,Playing God +Stephen Holden,none,0119906,New York Times,,2000-01-01,15477,Playing God +Edward Guthmann,rotten,0119906,San Francisco Chronicle,,2000-01-01,15477,Playing God +Roger Ebert,fresh,0119906,Chicago Sun-Times,,2000-01-01,15477,Playing God +Mike Clark,rotten,0119906,USA Today,A medical-underworld thriller that teaches the star of TV's The X-Files something about Z-grade theatrical pics.,2000-01-01,15477,Playing God +,none,0119906,Houston Chronicle,,2000-01-01,15477,Playing God +James Berardinelli,rotten,0119906,ReelViews,,2000-01-01,15477,Playing God +Robin Dougherty,none,0119906,Salon.com,,2000-01-01,15477,Playing God +Susan Stark,fresh,0119906,Detroit News,,2000-01-01,15477,Playing God +,rotten,0119906,Entertainment Weekly,,1997-10-17,15477,Playing God +Owen Gleiberman,fresh,0119324,Entertainment Weekly,,2011-09-07,14202,The House of Yes +Richard Corliss,fresh,0119324,TIME Magazine,"Bujold has the frazzled hauteur of an aging, neglected star, and Spelling is nicely glazed, studiously artless. But the film is keyed to Posey's performance: perfectly brittle, faultlessly false.",2008-11-21,14202,The House of Yes +Dennis Harvey,fresh,0119324,Variety,"[Waters] manages to open up the text while maintaining its perilous mix of arch wit, pathos and suspense.",2008-11-21,14202,The House of Yes +Derek Adams,fresh,0119324,Time Out,"There's something quite lethal about Parker Posey in pearls, and for that inspiration director Mark Waters deserves our gratitude.",2006-02-09,14202,The House of Yes +Liam Lacey,fresh,0119324,Globe and Mail,"This is a definitive Posey performance: wide-eyed, smiling and ultrafeminine, but plastic and cold as a store mannequin.",2002-07-12,14202,The House of Yes +Stephen Holden,rotten,0119324,New York Times,There are many gaping holes between the funny moments.,2000-01-01,14202,The House of Yes +James Berardinelli,fresh,0119324,ReelViews,"Not every chance taken by Mark Waters works, but enough are successful to produce some memorable motion picture moments.",2000-01-01,14202,The House of Yes +Roger Ebert,rotten,0119324,Chicago Sun-Times,"When the film was over I was not particularly pleased that I had seen it; it was mostly behavior and contrivance. While it was running, I was not bored.",2000-01-01,14202,The House of Yes +Edward Guthmann,rotten,0119324,San Francisco Chronicle,"Presumably it worked far better onstage, where MacLeod's absurdist tale and self-conscious, Beckett-like wordplay probably found a friendlier context.",2000-01-01,14202,The House of Yes +,fresh,0119324,Entertainment Weekly,,1997-10-10,14202,The House of Yes +Owen Gleiberman,rotten,0119107,Entertainment Weekly,,2011-09-07,11801,"Fast, Cheap & Out of Control" +Joe Morgenstern,none,0119107,Wall Street Journal,,2011-07-16,11801,"Fast, Cheap & Out of Control" +Todd McCarthy,none,0119107,Variety,,2009-03-31,11801,"Fast, Cheap & Out of Control" +Andrew Sarris,none,0119107,New York Observer,,2007-04-27,11801,"Fast, Cheap & Out of Control" +,none,0119107,Time Out,,2006-01-26,11801,"Fast, Cheap & Out of Control" +,none,0119107,Los Angeles Times,,2001-02-14,11801,"Fast, Cheap & Out of Control" +Roger Ebert,fresh,0119107,Chicago Sun-Times,,2000-01-01,11801,"Fast, Cheap & Out of Control" +Jonathan Rosenbaum,fresh,0119107,Chicago Reader,,2000-01-01,11801,"Fast, Cheap & Out of Control" +Joe Baltake,none,0119107,Sacramento Bee,,2000-01-01,11801,"Fast, Cheap & Out of Control" +,none,0119107,Houston Chronicle,,2000-01-01,11801,"Fast, Cheap & Out of Control" +Janet Maslin,none,0119107,New York Times,,2000-01-01,11801,"Fast, Cheap & Out of Control" +Peter Stack,none,0119107,San Francisco Chronicle,,2000-01-01,11801,"Fast, Cheap & Out of Control" +James Berardinelli,fresh,0119107,ReelViews,,2000-01-01,11801,"Fast, Cheap & Out of Control" +Lisa Schwarzbaum,fresh,0120481,Entertainment Weekly,,2011-09-07,11378,Washington Square +Todd McCarthy,none,0120481,Variety,,2009-03-26,11378,Washington Square +Andrew Sarris,none,0120481,New York Observer,,2007-04-27,11378,Washington Square +,none,0120481,Time Out,,2006-01-26,11378,Washington Square +Jeff Strickler,none,0120481,Minneapolis Star Tribune,,2002-11-06,11378,Washington Square +,rotten,0120481,Globe and Mail,,2002-04-12,11378,Washington Square +Kenneth Turan,none,0120481,Los Angeles Times,,2001-02-14,11378,Washington Square +James Berardinelli,fresh,0120481,ReelViews,,2000-01-01,11378,Washington Square +Mike Clark,rotten,0120481,USA Today,"There's isn't much tension here, and, if anything, the film is stolen by Maggie Smith and Judith Ivey as Finney's sisters.",2000-01-01,11378,Washington Square +Edward Guthmann,none,0120481,San Francisco Chronicle,,2000-01-01,11378,Washington Square +Laura Miller,none,0120481,Salon.com,,2000-01-01,11378,Washington Square +Joe Baltake,none,0120481,Sacramento Bee,,2000-01-01,11378,Washington Square +Roger Ebert,fresh,0120481,Chicago Sun-Times,,2000-01-01,11378,Washington Square +Janet Maslin,none,0120481,New York Times,,2000-01-01,11378,Washington Square +Stanley Kauffmann,none,0120481,The New Republic,,2000-01-01,11378,Washington Square +Susan Stark,fresh,0120481,Detroit News,,2000-01-01,11378,Washington Square +,fresh,0120481,Entertainment Weekly,,1997-10-05,11378,Washington Square +Jay Boyar,fresh,0120303,Orlando Sentinel,The Hungarian angle gives the film a little distinctiveness.,2013-06-12,12259,Telling Lies in America +Lisa Schwarzbaum,rotten,0120303,Entertainment Weekly,,2011-09-07,12259,Telling Lies in America +Geoff Andrew,none,0120303,Time Out,,2006-06-24,12259,Telling Lies in America +,rotten,0120303,Globe and Mail,,2002-04-12,12259,Telling Lies in America +Kenneth Turan,none,0120303,Los Angeles Times,,2001-02-14,12259,Telling Lies in America +Peter Stack,fresh,0120303,San Francisco Chronicle,,2000-01-01,12259,Telling Lies in America +Susan Stark,rotten,0120303,Detroit News,,2000-01-01,12259,Telling Lies in America +James Berardinelli,rotten,0120303,ReelViews,,2000-01-01,12259,Telling Lies in America +Stephen Holden,none,0120303,New York Times,,2000-01-01,12259,Telling Lies in America +Joe Baltake,none,0120303,Sacramento Bee,,2000-01-01,12259,Telling Lies in America +Roger Ebert,fresh,0120303,Chicago Sun-Times,,2000-01-01,12259,Telling Lies in America +,none,0120303,Houston Chronicle,,2000-01-01,12259,Telling Lies in America +,rotten,0120303,Entertainment Weekly,,1997-10-17,12259,Telling Lies in America +Owen Gleiberman,rotten,0120539,Entertainment Weekly,,2011-09-07,770820594,Year of the Horse +Dennis Harvey,none,0120539,Variety,,2009-03-26,770820594,Year of the Horse +Geoff Andrew,none,0120539,Time Out,,2006-02-09,770820594,Year of the Horse +Janet Maslin,none,0120539,New York Times,,2003-05-20,770820594,Year of the Horse +,fresh,0120539,Globe and Mail,,2002-04-12,770820594,Year of the Horse +Peter Stack,fresh,0120539,San Francisco Chronicle,"This is an intimate, lyrical yet incendiary film, and it will please fans of both Young and Jarmusch.",2000-01-01,770820594,Year of the Horse +Roger Ebert,rotten,0120539,Chicago Sun-Times,"Plays like This Is Spinal Tap made from anti-matter. Both films are about aging rockers, but Year of the Horse removes the humor and energy.",2000-01-01,770820594,Year of the Horse +James Berardinelli,rotten,0120539,ReelViews,This is quite possibly the worst documentary I have ever had the displeasure of watching on the big screen.,2000-01-01,770820594,Year of the Horse +Tom Keogh,fresh,0120539,Film.com,Both a quirky little movie and a monument to one of rock 'n' roll's greatest noisemakers.,2000-01-01,770820594,Year of the Horse +Joe Baltake,fresh,0120539,Sacramento Bee,"Much like the subject himself, Jarmusch's film is decidedly not smooth and mellow, but it has the kick of a mule.",2000-01-01,770820594,Year of the Horse +John Hartl,fresh,0120539,Film.com,"If you've ever liked the 52-year-old Young's songs, you'll probably be hooked early on.",2000-01-01,770820594,Year of the Horse +,rotten,0120539,Entertainment Weekly,,1997-12-31,770820594,Year of the Horse +Lisa Alspector,rotten,0119177,Chicago Reader,"I didn't care enough about Hawke's character to ignore a big problem in the story's logic: if this future has such incredible biotechnology, why can't Law just get his damaged body parts fixed?",2007-06-05,10356,Gattaca +Emanuel Levy,fresh,0119177,Variety,"One of first Hollywood films about the effects of genetic engineering on human conduct, Andrew Niccol's directing debut is an intelligent and timely sci-fi that, despite some illogical plot contrivances, is emotionally engaging almost up to the end.",2006-07-05,10356,Gattaca +,rotten,0119177,Time Out,"Chilly, elegant, and a little bloodless.",2006-06-24,10356,Gattaca +Rick Groen,rotten,0119177,Globe and Mail,Designer babies rule dystopia in stylish SF thriller filled with recycled plot devices.,2002-04-12,10356,Gattaca +Jack Mathews,rotten,0119177,Los Angeles Times,It's far too serious to be taken seriously.,2001-02-14,10356,Gattaca +Janet Maslin,fresh,0119177,New York Times,An impressively fine-tuned first feature from Andrew Niccol.,2000-01-01,10356,Gattaca +Roger Ebert,fresh,0119177,Chicago Sun-Times,"At a time when we read about cloned sheep and tomatoes crossed with fish, the science in Gattaca is theoretically possible.",2000-01-01,10356,Gattaca +Susan Wloszczyna,fresh,0119177,USA Today,"If smart sci-fi is your vial of tea, Gattaca won't disappoint.",2000-01-01,10356,Gattaca +Mick LaSalle,rotten,0119177,San Francisco Chronicle,"The hero's struggle in Gattaca would have been more compelling were he an average fellow going up against geniuses, and not a healthy fellow going up against somewhat healthier specimens.",2000-01-01,10356,Gattaca +James Berardinelli,fresh,0119177,ReelViews,"Gattaca doesn't just function as a science fiction thriller, but as both a cautionary tale about the dangers of letting scientific ability outstrip ethics and as a morality play about the irrationality of bigotry.",2000-01-01,10356,Gattaca +Scott Rosenberg,rotten,0119177,Salon.com,"When they sculpted the DNA for the perfect race in Gattaca, somebody left out the gene for self-knowledge.",2000-01-01,10356,Gattaca +,fresh,0119177,Entertainment Weekly,,1997-10-24,10356,Gattaca +Derek Elley,none,0119095,Variety,,2009-03-26,10529,FairyTale: A True Story +,none,0119095,Time Out,,2007-08-16,10529,FairyTale: A True Story +,rotten,0119095,Globe and Mail,,2002-04-12,10529,FairyTale: A True Story +Stephen Hunter,none,0119095,Washington Post,,2002-01-22,10529,FairyTale: A True Story +,none,0119095,Los Angeles Times,,2001-02-14,10529,FairyTale: A True Story +Roger Ebert,fresh,0119095,Chicago Sun-Times,,2000-01-01,10529,FairyTale: A True Story +Joe Baltake,none,0119095,Sacramento Bee,,2000-01-01,10529,FairyTale: A True Story +Andrea Higbie,none,0119095,New York Times,,2000-01-01,10529,FairyTale: A True Story +Edward Guthmann,none,0119095,San Francisco Chronicle,,2000-01-01,10529,FairyTale: A True Story +Susan Wloszczyna,rotten,0119095,USA Today,"Flits, falters and falls flat.",2000-01-01,10529,FairyTale: A True Story +James Berardinelli,fresh,0119095,ReelViews,,2000-01-01,10529,FairyTale: A True Story +,none,0119095,Houston Chronicle,,2000-01-01,10529,FairyTale: A True Story +Susan Stark,fresh,0119095,Detroit News,,2000-01-01,10529,FairyTale: A True Story +,rotten,0119095,Entertainment Weekly,,1997-10-24,10529,FairyTale: A True Story +David Ansen,none,0293508,Newsweek,,2007-11-01,10017,The Phantom of the Opera +,none,0293508,Time Out,,2006-06-24,10017,The Phantom of the Opera +Desson Thomson,none,0293508,Washington Post,,2005-07-30,10017,The Phantom of the Opera +Andrew Sarris,rotten,0293508,New York Observer,My own reaction to the current version fashioned by Mr. Schumacher is one of pure stupefaction.,2005-01-27,10017,The Phantom of the Opera +Anthony Lane,rotten,0293508,New Yorker,The plot is impressively free of anything that does not smell of unpasteurized melodrama.,2005-01-15,10017,The Phantom of the Opera +Stephanie Zacharek,rotten,0293508,Salon.com,Takes everything that's wrong with Broadway and puts it on the big screen in a gaudy splat.,2004-12-27,10017,The Phantom of the Opera +Richard Roeper,rotten,0293508,Ebert & Roeper,"This guy's not the Phantom of the Opera, he's the Fashionably Scarred Stud of the Opera and that just doesn't work.",2004-12-27,10017,The Phantom of the Opera +Carrie Rickey,rotten,0293508,Philadelphia Inquirer,Joel Schumacher's film adaptation of Lloyd Webber's The Phantom of the Opera combines fingernails-on- blackboard audio agony with bamboo- under- fingernails physical torture.,2004-12-23,10017,The Phantom of the Opera +Owen Gleiberman,rotten,0293508,Entertainment Weekly,"The movie version of Lloyd Webber's swooning 1986 horror operetta has been directed, by Joel Schumacher, as if Schumacher were the world's hardest-working upholstery salesman.",2004-12-23,10017,The Phantom of the Opera +Philip Kennicott,fresh,0293508,Washington Post,The movie version of Lloyd Webber's smash hit does to the music what the music did to the words and story: It distracts the mind and cajoles the eyes to the point that one doesn't really care that everything the ears are hearing is pure nonsense.,2004-12-22,10017,The Phantom of the Opera +Claudia Puig,fresh,0293508,USA Today,"For those whose primary experience with musicals is on the screen, this melodramatic tale with the familiar soundtrack should hold substantial appeal.",2004-12-22,10017,The Phantom of the Opera +Peter Howell,rotten,0293508,Toronto Star,"The film overflows with overkill, from the amped-up orchestra that constantly threatens to submerge the singers to the ornate silliness of each and every scene involving the Phantom.",2004-12-22,10017,The Phantom of the Opera +Moira MacDonald,fresh,0293508,Seattle Times,"It's a shamelessly over-the-top wallow in romantic obsession, and a thoroughly enjoyable one.",2004-12-22,10017,The Phantom of the Opera +Ruthe Stein,rotten,0293508,San Francisco Chronicle,The movie misfires as often as it connects.,2004-12-22,10017,The Phantom of the Opera +Joe Baltake,fresh,0293508,Sacramento Bee,"Given the overall weakness of the material, director Joel Schumacher works beyond the call of duty to pull us into his musical fable.",2004-12-22,10017,The Phantom of the Opera +Roger Moore,rotten,0293508,Orlando Sentinel,It was the '80s. You really had to be there. Preferably with low expectations.,2004-12-22,10017,The Phantom of the Opera +Stephen Whitty,rotten,0293508,Newark Star-Ledger,"If you want something more from musicals than a single syrupy hit, though -- and have fond memories of the Phantom as our most romantic of monsters -- then seek out the old Lon Chaney silent instead, and put on your own darn music.",2004-12-22,10017,The Phantom of the Opera +Lou Lumenick,rotten,0293508,New York Post,"The falling chandelier, the signature moment of Phantom, has been moved from the end of the first act to the climax of the movie -- by which point non-devotees may need to be roused from their sleep by their companions.",2004-12-22,10017,The Phantom of the Opera +Sid Smith,rotten,0293508,Chicago Tribune,"Andrew Lloyd Webber's kitschy theatrical spectacle is now a kitschy theatrical movie, a mix of melodrama, horror, romance, mystery and melody heaped together into a cinematic smorgasbord, one heavy in starch.",2004-12-22,10017,The Phantom of the Opera +Jack Mathews,rotten,0293508,New York Daily News,Where's Homeland Security when you need it?,2004-12-22,10017,The Phantom of the Opera +Owen Gleiberman,rotten,0120257,Entertainment Weekly,,2011-09-07,11368,Swept from the Sea +Joe Morgenstern,none,0120257,Wall Street Journal,,2011-08-06,11368,Swept from the Sea +,rotten,0120257,Entertainment Weekly,,2010-12-25,11368,Swept from the Sea +Leonard Klady,none,0120257,Variety,,2009-03-26,11368,Swept from the Sea +Geoff Andrew,none,0120257,Time Out,,2006-06-24,11368,Swept from the Sea +,rotten,0120257,Globe and Mail,,2002-04-12,11368,Swept from the Sea +Kenneth Turan,none,0120257,Los Angeles Times,,2001-02-14,11368,Swept from the Sea +Susan Stark,rotten,0120257,Detroit News,,2000-01-01,11368,Swept from the Sea +,rotten,0120257,USA Today,,2000-01-01,11368,Swept from the Sea +,none,0120257,Houston Chronicle,,2000-01-01,11368,Swept from the Sea +Stephen Holden,none,0120257,New York Times,,2000-01-01,11368,Swept from the Sea +James Berardinelli,rotten,0120257,ReelViews,,2000-01-01,11368,Swept from the Sea +Roger Ebert,rotten,0120257,Chicago Sun-Times,,2000-01-01,11368,Swept from the Sea +Edward Guthmann,none,0120257,San Francisco Chronicle,,2000-01-01,11368,Swept from the Sea +Geoff Pevere,rotten,0335563,Toronto Star,Rarely has so much of so little consequence been so closely examined.,2003-10-24,13376,Wonderland +Jay Boyar,fresh,0335563,Orlando Sentinel,Sometimes Wonderland does make you wonder why you're wasting your time with these losers. But there's also a lot here that stays with you.,2003-10-24,13376,Wonderland +Liam Lacey,rotten,0335563,Globe and Mail,"The main interest here is the acting, which is, by turns, entertaining or just entertainingly bad, with lots of grungy seriousness and Method-trained twitching, but also some moments of real gusto.",2003-10-24,13376,Wonderland +Michael O'Sullivan,fresh,0335563,Washington Post,A film whose effects are as hard to wash away as blood.,2003-10-17,13376,Wonderland +Stephen Hunter,rotten,0335563,Washington Post,"Overblown, overheated, overdirected, overacted, overlong and over here, in the local bijoux.",2003-10-17,13376,Wonderland +Moira MacDonald,rotten,0335563,Seattle Times,Not quite the second coming of Boogie Nights.,2003-10-17,13376,Wonderland +Walter V. Addiego,rotten,0335563,San Francisco Chronicle,"If for some reason you are fascinated by the Wonderland murders, look up the Rolling Stone article of 1989 that brought national attention to the gruesome case. Otherwise, your local cineplex has lots of choices with more redeeming social value.",2003-10-17,13376,Wonderland +Joe Baltake,rotten,0335563,Sacramento Bee,A movie that manages to make both sex and violence dull.,2003-10-17,13376,Wonderland +Rene Rodriguez,rotten,0335563,Miami Herald,Wonderland never gives us a single reason to care about any of these people.,2003-10-17,13376,Wonderland +Tom Long,fresh,0335563,Detroit News,Wonderland may not be the feel-good movie of the year; in fact it feels pretty lousy most of the time. But it offers a dark story well-told with some truly fine performances.,2003-10-17,13376,Wonderland +Terry Lawson,fresh,0335563,Detroit Free Press,"An unsettling, sordid, overly stylized and intensely well-done drama.",2003-10-17,13376,Wonderland +Lisa Kennedy,rotten,0335563,Denver Post,"For all Wonderland's kinetic energy, the mind wanders.",2003-10-17,13376,Wonderland +Roger Ebert,rotten,0335563,Chicago Sun-Times,"True crime procedurals can have a certain fascination, but not when they're jumbled glimpses of what might or might not have happened involving a lot of empty people whose main claim to fame is that they're dead.",2003-10-17,13376,Wonderland +Ty Burr,rotten,0335563,Boston Globe,Wonderland skips lightly along the sewers of human depravity as if the trip alone was worth the telling.,2003-10-17,13376,Wonderland +Bill Muller,rotten,0335563,Arizona Republic,"A dry, forensic account, more suitable for a true-crime show on late-night cable.",2003-10-16,13376,Wonderland +Eric Harrison,rotten,0335563,Houston Chronicle,Muddled and largely unentertaining.,2003-10-16,13376,Wonderland +Philip Wuntch,rotten,0335563,Dallas Morning News,"Wonderland is in your face. Any deeper connections, like those to heart and mind, get lost in the splash.",2003-10-16,13376,Wonderland +Bruce Newman,rotten,0335563,San Jose Mercury News,"The film reveals no great truths about human nature or drug abuse, the dialogue is witless, the acting unconstrained.",2003-10-16,13376,Wonderland +Carrie Rickey,rotten,0335563,Philadelphia Inquirer,"Although Wonderland isn't much of a movie, it is a parade of exceptional acting.",2003-10-16,13376,Wonderland +Colin Covert,rotten,0335563,Minneapolis Star Tribune,Wonderland aspires to the grisly poetry of a James Ellroy novella but only achieves the ugliness of an 8-mm loop.,2003-10-16,13376,Wonderland +Owen Gleiberman,rotten,0119535,Entertainment Weekly,,2011-09-07,13837,A Life Less Ordinary +Derek Elley,none,0119535,Variety,,2009-02-26,13837,A Life Less Ordinary +Geoff Andrew,none,0119535,Time Out,,2006-06-24,13837,A Life Less Ordinary +,rotten,0119535,Globe and Mail,,2002-04-12,13837,A Life Less Ordinary +Stephen Hunter,none,0119535,Washington Post,,2002-01-22,13837,A Life Less Ordinary +Peter Travers,none,0119535,Rolling Stone,,2001-05-11,13837,A Life Less Ordinary +Kenneth Turan,none,0119535,Los Angeles Times,,2001-02-14,13837,A Life Less Ordinary +Susan Wloszczyna,rotten,0119535,USA Today,"Flippantly hip without any solid laughs, Life strains to be the flick more offbeat.",2000-01-01,13837,A Life Less Ordinary +Susan Stark,fresh,0119535,Detroit News,,2000-01-01,13837,A Life Less Ordinary +Janet Maslin,none,0119535,New York Times,,2000-01-01,13837,A Life Less Ordinary +Joe Baltake,none,0119535,Sacramento Bee,,2000-01-01,13837,A Life Less Ordinary +James Berardinelli,rotten,0119535,ReelViews,,2000-01-01,13837,A Life Less Ordinary +Stephanie Zacharek,none,0119535,Salon.com,,2000-01-01,13837,A Life Less Ordinary +,none,0119535,Houston Chronicle,,2000-01-01,13837,A Life Less Ordinary +Edward Guthmann,rotten,0119535,San Francisco Chronicle,,2000-01-01,13837,A Life Less Ordinary +Roger Ebert,rotten,0119535,Chicago Sun-Times,,2000-01-01,13837,A Life Less Ordinary +,rotten,0119535,Entertainment Weekly,,1997-10-24,13837,A Life Less Ordinary +,rotten,0174856,Time Out,Facile and unpersuasive.,2006-06-24,13539,The Hurricane +Peter Rainer,rotten,0174856,New York Magazine,"The movie's dogged humorlessness, and its sixties-style cant, don't do justice to all the political crosscurrents in this story.",2004-08-07,13539,The Hurricane +Liam Lacey,fresh,0174856,Globe and Mail,A reminder that there's still a lot to be said for the good old-fashioned inspirational Hollywood movie.,2003-04-25,13539,The Hurricane +Mick LaSalle,fresh,0174856,San Francisco Chronicle,Give director Norman Jewison credit for two things: 1) He made the movie; 2) He let Washington run away with it.,2002-06-18,13539,The Hurricane +Jay Carr,fresh,0174856,Boston Globe,"Its celebration of a spirit that refused to go down for the count is the important thing here, and Washington gets it shiningly right.",2000-01-01,13539,The Hurricane +Michael Wilmington,fresh,0174856,Chicago Tribune,The Hurricane has real mythic power.,2000-01-01,13539,The Hurricane +Kenneth Turan,fresh,0174856,Los Angeles Times,"The last great performance of 1999, and arguably the best of the lot as well.",2000-01-01,13539,The Hurricane +Roger Ebert,fresh,0174856,At the Movies,"One of Denzel Washington's great performances, on a par with his work in Malcolm X.",2000-01-01,13539,The Hurricane +Lou Lumenick,fresh,0174856,New York Post,"An expertly crafted, deeply moving film.",2000-01-01,13539,The Hurricane +Peter Brunette,fresh,0174856,Film.com,Occasionally riveting.,2000-01-01,13539,The Hurricane +Stephen Holden,fresh,0174856,New York Times,Stirring but schmaltzy.,2000-01-01,13539,The Hurricane +Bob Longino,fresh,0174856,Atlanta Journal-Constitution,Fashioned with the kind of classic Hollywood professionalism that's fast becoming a rarity at the movies.,2000-01-01,13539,The Hurricane +Owen Gleiberman,fresh,0174856,Entertainment Weekly,This movie about the nightmare of incarceration makes you taste the meaning of freedom.,2000-01-01,13539,The Hurricane +John Anderson,rotten,0174856,Newsday,"The story never radiates much beyond the corruption of Carter's lifelong enemy, Paterson detective Vincent Della Pesca.",2000-01-01,13539,The Hurricane +Paul Clinton (CNN.com),fresh,0174856,CNN.com,Jewison has delivered another excellent film.,2000-01-01,13539,The Hurricane +Jeff Millar,fresh,0174856,Houston Chronicle,It's a measure of Washington's strengths that he swims while the film sinks.,2000-01-01,13539,The Hurricane +Joe Baltake,fresh,0174856,Sacramento Bee,A truly inspirational film with a social conscience.,2000-01-01,13539,The Hurricane +Cody Clark,fresh,0174856,Mr. Showbiz,"Like broccoli, The Hurricane is good for you.",2000-01-01,13539,The Hurricane +Susan Stark,fresh,0174856,Detroit News,An extraordinary story by any measure.,2000-01-01,13539,The Hurricane +James Berardinelli,fresh,0174856,ReelViews,Beautifully crafted and uplifting.,2000-01-01,13539,The Hurricane +Lisa Schwarzbaum,fresh,0119080,Entertainment Weekly,,2011-09-07,13454,Eve's Bayou +Susan Stark,fresh,0119080,Detroit News,,2008-10-18,13454,Eve's Bayou +Lisa Alspector,fresh,0119080,Chicago Reader,"Subplots are woven stealthily into the story, taking the pressure off the central drama, allowing it to be affecting rather than melodramatic, and heightening the atmosphere of the lush Louisiana setting.",2008-03-19,13454,Eve's Bayou +Andrew Sarris,fresh,0119080,New York Observer,A sparkling directorial debut.,2007-04-27,13454,Eve's Bayou +Emanuel Levy,fresh,0119080,Variety,An intensely emotional drama that mixes elements of Southern Gothic with the kinds of characters and tensions that prevail in the plays of Southern writers like Tennessee Williams.,2006-06-24,13454,Eve's Bayou +,fresh,0119080,Time Out,"Writer/director Kasi Lemmons shows sweet judgment here, doesn't caricature or demonise the errant father, and elicits a host of nuanced performances from women of all ages.",2006-06-24,13454,Eve's Bayou +Mick LaSalle,rotten,0119080,San Francisco Chronicle,"A gothic and, for better or worse, poetic memoir about a young girl and her family of Creole aristocrats.",2002-06-18,13454,Eve's Bayou +Rick Groen,rotten,0119080,Globe and Mail,"In Eve's Bayou, Tennessee goes to Louisiana, and finds a familiar home. Tennessee Williams, that is.",2002-04-12,13454,Eve's Bayou +Kevin Thomas,fresh,0119080,Los Angeles Times,There has never been a film quite like Kasi Lemmons' shimmering Eve's Bayou.,2001-02-14,13454,Eve's Bayou +Jeff Millar,fresh,0119080,Houston Chronicle,"The direction is unobtrusive, and Lemmons' performers are up to speed. This is Lemmons' first time out as a director. I'll be interested in what she does next.",2000-01-01,13454,Eve's Bayou +Roger Ebert,fresh,0119080,Chicago Sun-Times,"For the viewer, it is a reminder that sometimes films can venture into the realms of poetry and dreams.",2000-01-01,13454,Eve's Bayou +Mike Clark,fresh,0119080,USA Today,"Smollett, however, is a find with a smile that illuminates the screen -- the dominant performer in a uniformly well-acted film.",2000-01-01,13454,Eve's Bayou +Desson Thomson,fresh,0119080,Washington Post,"A movie unto itself, a rousing, original yarn about family life that includes everyone.",2000-01-01,13454,Eve's Bayou +Stephen Holden,none,0119080,New York Times,,2000-01-01,13454,Eve's Bayou +James Berardinelli,fresh,0119080,ReelViews,"A fascinating tale of guilt, consequences, and voodoo.",2000-01-01,13454,Eve's Bayou +Cynthia Joyce,fresh,0119080,Salon.com,"It would be a shame if Eve's Bayou, Kasi Lemmons' beautiful first feature film, gets pigeonholed as a ""black"" movie just because it has no white characters.",2000-01-01,13454,Eve's Bayou +,fresh,0119080,Entertainment Weekly,,1996-06-01,13454,Eve's Bayou +Leonard Klady,none,0119210,Variety,,2009-03-27,14766,Switchback +Jeff Strickler,none,0119210,Minneapolis Star Tribune,,2002-11-06,14766,Switchback +Jack Mathews,none,0119210,Los Angeles Times,,2001-02-14,14766,Switchback +Mike Clark,rotten,0119210,USA Today,Quaid is a one-note sadsack here and no natural action hero.,2000-01-01,14766,Switchback +Stephen Holden,none,0119210,New York Times,,2000-01-01,14766,Switchback +Joe Baltake,none,0119210,Sacramento Bee,,2000-01-01,14766,Switchback +Roger Ebert,rotten,0119210,Chicago Sun-Times,,2000-01-01,14766,Switchback +Peter Stack,rotten,0119210,San Francisco Chronicle,,2000-01-01,14766,Switchback +James Berardinelli,fresh,0119210,ReelViews,,2000-01-01,14766,Switchback +Susan Stark,rotten,0119210,Detroit News,,2000-01-01,14766,Switchback +,rotten,0119210,Entertainment Weekly,,1997-10-31,14766,Switchback +Owen Gleiberman,rotten,0118900,Entertainment Weekly,,2011-09-07,14650,Gang Related +,none,0118900,Time Out,,2006-06-24,14650,Gang Related +Jeff Strickler,none,0118900,Minneapolis Star Tribune,,2002-11-06,14650,Gang Related +Stephen Hunter,none,0118900,Washington Post,,2002-01-22,14650,Gang Related +Kenneth Turan,none,0118900,Los Angeles Times,,2001-02-14,14650,Gang Related +Lawrence Van Gelder,none,0118900,New York Times,,2000-01-01,14650,Gang Related +Peter Stack,rotten,0118900,San Francisco Chronicle,,2000-01-01,14650,Gang Related +Susan Stark,rotten,0118900,Detroit News,,2000-01-01,14650,Gang Related +James Berardinelli,fresh,0118900,ReelViews,,2000-01-01,14650,Gang Related +Joe Baltake,none,0118900,Sacramento Bee,,2000-01-01,14650,Gang Related +,none,0118900,Houston Chronicle,,2000-01-01,14650,Gang Related +,none,0083131,Variety,,2009-03-26,14899,Stripes +,rotten,0083131,TIME Magazine,"Stripes will keep potential felons off the streets for two hours. Few people seem to be asking, these days, that movies do more.",2008-10-05,14899,Stripes +Dave Kehr,fresh,0083131,Chicago Reader,"The balance of the film consists of time-tested commercial material, most of which is still working fine.",2008-04-01,14899,Stripes +,fresh,0083131,Time Out,[Reitmam] manages a reasonable success rate at pulling off the numerous verbal and sight gags with which the script is peppered.,2006-02-09,14899,Stripes +Roger Ebert,fresh,0083131,Chicago Sun-Times,"An anarchic slob movie, a celebration of all that is irreverent, reckless, foolhardy, undisciplined, and occasionally scatological. It's a lot of fun.",2004-10-23,14899,Stripes +Janet Maslin,fresh,0083131,New York Times,Mr. Murray hasn't yet reached the point at which his routines can be sustained for more than 10 minutes at a time. But he has achieved a sardonically exaggerated calm that can be very entertaining.,2004-08-30,14899,Stripes +Lisa Schwarzbaum,fresh,0118689,Entertainment Weekly,,2011-09-07,12533,Bean +Lisa Alspector,rotten,0118689,Chicago Reader,Rowan Atkinson's recalcitrant TV character is the hub of this 1997 feature that will disappoint fans and nonfans alike.,2010-04-07,12533,Bean +David Stratton,none,0118689,Variety,,2008-08-21,12533,Bean +,none,0118689,Time Out,,2006-01-26,12533,Bean +Jeff Strickler,none,0118689,Minneapolis Star Tribune,,2002-11-06,12533,Bean +Peter Stack,fresh,0118689,San Francisco Chronicle,,2002-06-18,12533,Bean +,rotten,0118689,Globe and Mail,,2002-04-12,12533,Bean +Desson Thomson,none,0118689,Washington Post,,2002-01-22,12533,Bean +Jack Mathews,none,0118689,Los Angeles Times,,2001-02-14,12533,Bean +Susan Wloszczyna,rotten,0118689,USA Today,Goes beyond awful to surreally awful.,2000-01-01,12533,Bean +Charles Taylor,none,0118689,Salon.com,,2000-01-01,12533,Bean +Lawrence Van Gelder,none,0118689,New York Times,,2000-01-01,12533,Bean +Susan Stark,fresh,0118689,Detroit News,,2000-01-01,12533,Bean +Joe Baltake,none,0118689,Sacramento Bee,,2000-01-01,12533,Bean +,none,0118689,Houston Chronicle,,2000-01-01,12533,Bean +Roger Ebert,rotten,0118689,Chicago Sun-Times,,2000-01-01,12533,Bean +James Berardinelli,rotten,0118689,ReelViews,,2000-01-01,12533,Bean +,fresh,0118689,Entertainment Weekly,,1997-10-17,12533,Bean +Lisa Alspector,fresh,0119327,Chicago Reader,I groaned my way through this black -- and blue -- romantic comedy and then decided I liked it.,2013-05-01,15017,Hugo Pool +Michael Wilmington,rotten,0119327,Chicago Tribune,It's as if Downey Sr.'s irreverence and off-the-wall humor couldn't quite co-exist with the heartfelt tribute he intends to make here to his wife and her fellow Amyotrophic Lateral Sclerosis sufferers.,2013-05-01,15017,Hugo Pool +Owen Gleiberman,rotten,0119327,Entertainment Weekly,"Hugo Pool, the first film in six years from former counterculture director Robert Downey sets new standards in wacko charmlessness.",2011-09-07,15017,Hugo Pool +Emanuel Levy,rotten,0119327,Variety,The best thing about this bizarre love story (follie de grandeur) between a female pool cleaner and immobile man in wheelchair is that it puts icon Robert Downey behind the camera after long absence; with some luck Patrick Dempsey should become a lead man,2007-01-29,15017,Hugo Pool +Jack Mathews,rotten,0119327,Los Angeles Times,The audience seems limited to the director's inner circle.,2001-02-14,15017,Hugo Pool +James Berardinelli,fresh,0119327,ReelViews,"Like David Mamet and relative newcomer Quentin Tarantino, Downey writes some of the best dialogue around, and his script sparkles with it.",2000-01-01,15017,Hugo Pool +Stephen Holden,fresh,0119327,New York Times,"Although this flighty comic allegory about love and death in contemporary Los Angeles is wildly overacted, with loose ends flying everywhere, it still conveys an antic poignancy.",2000-01-01,15017,Hugo Pool +Emanuel Levy,rotten,0119592,Variety,This simplistic and obvious expose about the manipulative power of the news media (lazily acted by Travoilta and Hoffman) is so familiar that it's not going to upset or provoke anyone.,2006-08-21,12522,Mad City +Derek Adams,none,0119592,Time Out,,2006-06-24,12522,Mad City +Jeff Strickler,none,0119592,Minneapolis Star Tribune,,2002-11-06,12522,Mad City +Mick LaSalle,none,0119592,San Francisco Chronicle,,2002-06-18,12522,Mad City +,rotten,0119592,Globe and Mail,,2002-04-12,12522,Mad City +Kenneth Turan,none,0119592,Los Angeles Times,,2001-02-14,12522,Mad City +Roger Ebert,rotten,0119592,Chicago Sun-Times,,2000-01-01,12522,Mad City +Mike Clark,rotten,0119592,USA Today,A wanna-be event movie that merely reinvents the wheel.,2000-01-01,12522,Mad City +,none,0119592,Washington Post,,2000-01-01,12522,Mad City +James Berardinelli,rotten,0119592,ReelViews,,2000-01-01,12522,Mad City +Andrew O'Hehir,none,0119592,Salon.com,,2000-01-01,12522,Mad City +Janet Maslin,none,0119592,New York Times,,2000-01-01,12522,Mad City +Stanley Kauffmann,none,0119592,The New Republic,,2000-01-01,12522,Mad City +Susan Stark,fresh,0119592,Detroit News,,2000-01-01,12522,Mad City +,none,0119592,Houston Chronicle,,2000-01-01,12522,Mad City +Joe Baltake,none,0119592,Sacramento Bee,,2000-01-01,12522,Mad City +Lisa Schwarzbaum,rotten,0119832,Entertainment Weekly,,2011-09-07,15702,One Night Stand +David Rooney,none,0119832,Variety,,2009-03-27,15702,One Night Stand +Andrew Sarris,none,0119832,New York Observer,,2007-04-27,15702,One Night Stand +,none,0119832,Time Out,,2006-01-26,15702,One Night Stand +,rotten,0119832,Globe and Mail,,2002-04-12,15702,One Night Stand +Kenneth Turan,none,0119832,Los Angeles Times,,2001-02-14,15702,One Night Stand +Roger Ebert,fresh,0119832,Chicago Sun-Times,,2000-01-01,15702,One Night Stand +Charles Taylor,none,0119832,Salon.com,,2000-01-01,15702,One Night Stand +,none,0119832,Washington Post,,2000-01-01,15702,One Night Stand +James Berardinelli,rotten,0119832,ReelViews,,2000-01-01,15702,One Night Stand +Susan Wloszczyna,fresh,0119832,USA Today,The acting hits all the right notes.,2000-01-01,15702,One Night Stand +Janet Maslin,none,0119832,New York Times,,2000-01-01,15702,One Night Stand +,none,0119832,Houston Chronicle,,2000-01-01,15702,One Night Stand +Ruthe Stein,fresh,0119832,San Francisco Chronicle,,2000-01-01,15702,One Night Stand +Joe Baltake,none,0119832,Sacramento Bee,,2000-01-01,15702,One Night Stand +Susan Stark,rotten,0119832,Detroit News,,2000-01-01,15702,One Night Stand +,rotten,0119832,Entertainment Weekly,,1997-11-14,15702,One Night Stand +Lisa Schwarzbaum,fresh,0120275,Entertainment Weekly,,2011-09-07,144477696,The Tango Lesson +David Rooney,none,0120275,Variety,,2009-03-19,144477696,The Tango Lesson +,none,0120275,Time Out,,2006-06-24,144477696,The Tango Lesson +Jeff Strickler,none,0120275,Minneapolis Star Tribune,,2002-11-06,144477696,The Tango Lesson +,rotten,0120275,Globe and Mail,,2002-04-12,144477696,The Tango Lesson +Jack Mathews,none,0120275,Los Angeles Times,,2001-02-14,144477696,The Tango Lesson +Edward Guthmann,none,0120275,San Francisco Chronicle,,2000-01-01,144477696,The Tango Lesson +Janet Maslin,none,0120275,New York Times,,2000-01-01,144477696,The Tango Lesson +,none,0120275,Houston Chronicle,,2000-01-01,144477696,The Tango Lesson +James Berardinelli,rotten,0120275,ReelViews,,2000-01-01,144477696,The Tango Lesson +Joe Baltake,none,0120275,Sacramento Bee,,2000-01-01,144477696,The Tango Lesson +Roger Ebert,fresh,0120275,Chicago Sun-Times,,2000-01-01,144477696,The Tango Lesson +,fresh,0120275,Entertainment Weekly,,1997-11-14,144477696,The Tango Lesson +Lisa Schwarzbaum,fresh,0120490,Entertainment Weekly,,2011-09-07,14903,Welcome to Sarajevo +,fresh,0120490,Time Out,"A crisp, rigorously unsentimental director, Winterbottom was a good choice for this project.",2006-01-26,14903,Welcome to Sarajevo +Edward Guthmann,fresh,0120490,San Francisco Chronicle,A compelling but jumbled film that examines the line between journalistic detachment and passion.,2002-06-18,14903,Welcome to Sarajevo +James Berardinelli,fresh,0120490,ReelViews,Welcome to Sarajevo isn't just the story of an outsider's perspective of the conflict; it's a compelling examination of the role the media played in reporting and shaping the average person's views of the war.,2000-01-01,14903,Welcome to Sarajevo +Roger Ebert,rotten,0120490,Chicago Sun-Times,Too often we sense that the actors are drifting and the story is at sea.,2000-01-01,14903,Welcome to Sarajevo +Susan Stark,fresh,0120490,Detroit News,,2000-01-01,14903,Welcome to Sarajevo +Charles Taylor,fresh,0120490,Salon.com,"Messy and visceral, with an articulate, pointed anger that's recognizably British, ""Welcome to Sarajevo"" hits with an impact that's not diminished by the fact that Sarajevo's uneasy peace has held.",2000-01-01,14903,Welcome to Sarajevo +Janet Maslin,rotten,0120490,New York Times,"However closely they mirror the real experience of Mr. Nicholson and others, some of the shocks here are too sadly predictable.",2000-01-01,14903,Welcome to Sarajevo +Mike Clark,fresh,0120490,USA Today,"Loosely structured, it keeps its focus despite lots of dramatic wiggle room.",2000-01-01,14903,Welcome to Sarajevo +,fresh,0120490,Entertainment Weekly,,1997-11-26,14903,Welcome to Sarajevo +,none,0119527,Variety,,2012-02-23,15845,Deceiver +Owen Gleiberman,fresh,0119527,Entertainment Weekly,,2011-09-07,15845,Deceiver +David Rooney,none,0119527,Variety,,2009-03-26,15845,Deceiver +,none,0119527,Time Out,,2008-06-12,15845,Deceiver +Andrew Sarris,none,0119527,New York Observer,,2007-04-27,15845,Deceiver +,fresh,0119527,Globe and Mail,,2002-04-12,15845,Deceiver +David Kronke,none,0119527,Los Angeles Times,,2001-02-14,15845,Deceiver +,rotten,0119527,USA Today,,2000-01-01,15845,Deceiver +Susan Stark,rotten,0119527,Detroit News,,2000-01-01,15845,Deceiver +Janet Maslin,none,0119527,New York Times,,2000-01-01,15845,Deceiver +Roger Ebert,rotten,0119527,Chicago Sun-Times,,2000-01-01,15845,Deceiver +Peter Stack,fresh,0119527,San Francisco Chronicle,,2000-01-01,15845,Deceiver +Joe Baltake,none,0119527,Sacramento Bee,,2000-01-01,15845,Deceiver +James Berardinelli,fresh,0119527,ReelViews,,2000-01-01,15845,Deceiver +,fresh,0119527,Entertainment Weekly,,1998-01-30,15845,Deceiver +Lisa Schwarzbaum,rotten,0119978,Entertainment Weekly,,2011-09-07,10510,The Rainmaker +Todd McCarthy,fresh,0119978,Variety,"Coppola has never been particularly known for his comic touch, but here he seems bent on leavening the melodrama with as many laughs as possible, and they are generally honest and well-earned.",2008-06-09,10510,The Rainmaker +Geoff Andrew,fresh,0119978,Time Out,"This competent, anonymous legal drama (scripted by Michael Herr) is the best John Grisham adaptation yet.",2006-02-09,10510,The Rainmaker +Ruthe Stein,fresh,0119978,San Francisco Chronicle,"Coppola adapted the novel himself, and he's done a good job of paring it down.",2002-06-18,10510,The Rainmaker +Jack Mathews,fresh,0119978,Los Angeles Times,"Coppola has infused The Rainmaker with enough humor, character, honest emotion and storytelling style to make it one of the year's most entertaining movies.",2001-02-14,10510,The Rainmaker +Charles Taylor,fresh,0119978,Salon.com,"Satisfactory mainstream entertainment, with a handful of major actors in juicy minor roles tossed in for good measure.",2000-01-01,10510,The Rainmaker +Mike Clark,fresh,0119978,USA Today,Voight proves again what a great character actor he's become by stealing the film as a country club-type defense lawyer with a julep tongue.,2000-01-01,10510,The Rainmaker +Roger Ebert,fresh,0119978,Chicago Sun-Times,"Francis Ford Coppola, who wrote and directed the film, has made the most of Grisham's ground-level realism.",2000-01-01,10510,The Rainmaker +Susan Stark,fresh,0119978,Detroit News,,2000-01-01,10510,The Rainmaker +Janet Maslin,fresh,0119978,New York Times,"Despite Mr. Coppola's taste for moodier and more eclectic material, this mainstream opportunity pays off.",2000-01-01,10510,The Rainmaker +James Berardinelli,fresh,0119978,ReelViews,The intelligence and subtlety of The Rainmaker took me by surprise.,2000-01-01,10510,The Rainmaker +,rotten,0119978,Entertainment Weekly,,1997-11-20,10510,The Rainmaker +Jonathan Rosenbaum,rotten,0119978,Chicago Reader,,1997-11-20,10510,The Rainmaker +Owen Gleiberman,fresh,0118749,Entertainment Weekly,"Boogie Nights, an epic tale of porn, pleasure, and excess, offers a purer hit of exhilaration than any movie this year.",2010-02-04,14134,Boogie Nights +Andrew Sarris,fresh,0118749,New York Observer,Not since the mysteriously reclusive Terrence Malick has there been such an explosion of sheer talent on the American movie scene.,2007-04-27,14134,Boogie Nights +Emanuel Levy,fresh,0118749,Variety,"Considering the potentially explosive nature of the yarn, set in the porn world, Anderson's strategy is remarkably nonjudgmental and nonsensationalistic, largely due to his love and respect for all the characters and his impressive storytelling skills.",2006-05-01,14134,Boogie Nights +Wally Hammond,fresh,0118749,Time Out,"In terms of sweep, ambition and precocious cinematic competence, it heralds the arrival of a new talent.",2006-02-09,14134,Boogie Nights +Mick LaSalle,fresh,0118749,San Francisco Chronicle,"With Boogie Nights we know we're not just watching episodes from disparate lives but a panorama of recent social history, rendered in bold, exuberant colors.",2002-06-18,14134,Boogie Nights +Kenneth Turan,fresh,0118749,Los Angeles Times,"The film is bemused and entertained, as we are, by this pack of sexual extremists, and the eye it casts on them is both benevolent and wry.",2001-02-14,14134,Boogie Nights +Charles Taylor,fresh,0118749,Salon.com,"Boogie Nights is truly audacious because Anderson doesn't beat you over the head with his daring. In the first half, he goes about turning conventional morality on its head nonchalantly, almost sweetly.",2000-01-01,14134,Boogie Nights +Roger Ebert,fresh,0118749,Chicago Sun-Times,"As a writer and director, Paul Thomas Anderson is a skilled reporter who fills his screen with understated, authentic details.",2000-01-01,14134,Boogie Nights +Janet Maslin,fresh,0118749,New York Times,"Everything about Boogie Nights is interestingly unexpected, even the few seconds of darkness before the film's neon title blasts onto the screen. The director, Paul Thomas Anderson, [displays talent that] is as big and exuberant as skywriting.",2000-01-01,14134,Boogie Nights +,fresh,0118749,USA Today,"A concise, vigorously told yarn with a strong point of view and a deftly juggled cast containing at least a few familiar faces.",2000-01-01,14134,Boogie Nights +James Berardinelli,fresh,0118749,ReelViews,"Boogie Nights isn't just an expose of the porn industry -- it's a provocative and involving character study, as well.",2000-01-01,14134,Boogie Nights +Susan Stark,fresh,0118749,Detroit News,,2000-01-01,14134,Boogie Nights +Pauline Kael,rotten,0090329,New Yorker,"Weir, an Australian filming in this country for the first time, has succumbed to blandness.",2013-01-14,14194,Witness +Dave Kehr,fresh,0090329,Chicago Reader,"A moderately effective, highly affected thriller.",2013-01-14,14194,Witness +Variety Staff,fresh,0090329,Variety,"Witness warms up as the attraction builds between Ford, McGillis and Haas -- all performing excellently through this portion.",2010-07-06,14194,Witness +James Berardinelli,fresh,0090329,ReelViews,Playing John Book allowed viewers the opportunity to see Ford the actor instead of Ford the action/adventure icon. It is one of the few times he has been given the opportunity to play in a straight drama.,2008-06-10,14194,Witness +,fresh,0090329,Time Out,"Powerful, assured, full of beautiful imagery and thankfully devoid of easy moralising, it also offers a performance of surprising skill and sensitivity from Ford.",2006-01-26,14194,Witness +Roger Ebert,fresh,0090329,Chicago Sun-Times,Harrison Ford has never given a better performance in a movie.,2004-10-23,14194,Witness +Vincent Canby,rotten,0090329,New York Times,"It's pretty to look at and it contains a number of good performances, but there is something exhausting about its neat balancing of opposing manners and values.",2003-05-20,14194,Witness +Derek Elley,none,0119365,Variety,,2008-09-12,14681,Incognito +Geoff Andrew,none,0119365,Time Out,,2006-06-24,14681,Incognito +Joe Baltake,none,0119365,Sacramento Bee,,2002-01-16,14681,Incognito +Owen Gleiberman,fresh,0120201,Entertainment Weekly,,2011-09-07,13719,Starship Troopers +Todd McCarthy,none,0120201,Variety,,2008-11-05,13719,Starship Troopers +Derek Adams,none,0120201,Time Out,,2006-06-24,13719,Starship Troopers +Jeff Strickler,none,0120201,Minneapolis Star Tribune,,2002-11-06,13719,Starship Troopers +Robert Denerstein,none,0120201,Denver Rocky Mountain News,,2002-08-09,13719,Starship Troopers +Scott Rosenberg,rotten,0120201,Salon.com,Lacks the courage of the book's fascist conclusions.,2002-05-29,13719,Starship Troopers +Liam Lacey,rotten,0120201,Globe and Mail,"Lacking the sophistication of the average comic book, it compensates with panoramic attack sequences, reminiscent of the Japanese swarm attacks in American war movies.",2002-04-12,13719,Starship Troopers +Kenneth Turan,fresh,0120201,Los Angeles Times,"A jaw-dropping experience, so rigorously one-dimensional and free from even the pretense of intelligence it's hard not to be astonished and even mesmerized by what is on the screen.",2001-02-14,13719,Starship Troopers +James Berardinelli,fresh,0120201,ReelViews,Flawed but fun.,2000-01-01,13719,Starship Troopers +Susan Stark,fresh,0120201,Detroit News,May just be the bug movie to end all bug movies.,2000-01-01,13719,Starship Troopers +Bruce Westbrook,fresh,0120201,Houston Chronicle,The most audacious pop-cultural amalgam since Star Wars.,2000-01-01,13719,Starship Troopers +Jonathan Rosenbaum,rotten,0120201,Chicago Reader,,2000-01-01,13719,Starship Troopers +Mick LaSalle,fresh,0120201,San Francisco Chronicle,Manages to be both fun and shocking -- sometimes in the same shot.,2000-01-01,13719,Starship Troopers +Janet Maslin,rotten,0120201,New York Times,"As written by Ed Neumeier, who also wrote Verhoeven's much tighter Robocop, Starship Troopers never gets over its 180-degree swivel from teen-age love story to murderous destruction.",2000-01-01,13719,Starship Troopers +Joe Baltake,fresh,0120201,Sacramento Bee,Terrific entertainment.,2000-01-01,13719,Starship Troopers +Richard Schickel,rotten,0120201,TIME Magazine,Maybe the filmmakers are so lost in their slambang visual effects that they don't give a hoot about the movie's scariest implications.,2000-01-01,13719,Starship Troopers +Mike Clark,fresh,0120201,USA Today,Director Paul Verhoeven is back in his subversively nimble RoboCop groove with the uproariously cheeky Starship Troopers.,2000-01-01,13719,Starship Troopers +Roger Ebert,rotten,0120201,Chicago Sun-Times,"The action sequences are heavily laden with special effects, but curiously joyless.",2000-01-01,13719,Starship Troopers +,fresh,0120201,Entertainment Weekly,,1997-11-07,13719,Starship Troopers +Owen Gleiberman,fresh,0118901,Entertainment Weekly,,2011-09-07,15672,Critical Care +Todd McCarthy,none,0118901,Variety,,2009-03-26,15672,Critical Care +,none,0118901,Washington Post,,2007-08-18,15672,Critical Care +Andrew Sarris,fresh,0118901,New York Observer,"...it emerges as a magically entertaining blend of heart, soul, mind, wit, farce and, finally, an idyllic idealism.",2007-04-27,15672,Critical Care +Jeff Strickler,none,0118901,Minneapolis Star Tribune,,2002-11-06,15672,Critical Care +,rotten,0118901,Globe and Mail,,2002-04-12,15672,Critical Care +Jack Mathews,none,0118901,Los Angeles Times,,2001-02-14,15672,Critical Care +Peter Stack,fresh,0118901,San Francisco Chronicle,,2000-01-01,15672,Critical Care +Stanley Kauffmann,none,0118901,The New Republic,,2000-01-01,15672,Critical Care +Joe Baltake,none,0118901,Sacramento Bee,,2000-01-01,15672,Critical Care +James Berardinelli,rotten,0118901,ReelViews,,2000-01-01,15672,Critical Care +Jeff Millar,fresh,0118901,Houston Chronicle,"Lumet moves with confidence between satire and intriguing, heightened-reality spirituality.",2000-01-01,15672,Critical Care +Desson Thomson,fresh,0118901,Washington Post,...a drily funny satire about America's health care woes...,2000-01-01,15672,Critical Care +Stephen Holden,fresh,0118901,New York Times,...the performances are juicy and intelligent.,2000-01-01,15672,Critical Care +Roger Ebert,fresh,0118901,Chicago Sun-Times,,2000-01-01,15672,Critical Care +,fresh,0118901,Entertainment Weekly,,1997-10-31,15672,Critical Care +Geoff Andrew,none,0107282,Time Out,,2006-02-09,12964,The Joy Luck Club +Janet Maslin,fresh,0107282,New York Times,"Both sweeping and intimate, a lovely evocation of changing cultures and enduring family ties.",2003-05-20,12964,The Joy Luck Club +Peter Travers,fresh,0107282,Rolling Stone,"Four different actresses play the aunties in their youth, which sometimes keeps us struggling to keep the stories straight. That we do is a tribute to the power of Tan's theme about the miscommunication that separates one generation from another.",2001-05-12,12964,The Joy Luck Club +Roger Ebert,fresh,0107282,Chicago Sun-Times,One of the most touching and moving of the year's films.,2000-01-01,12964,The Joy Luck Club +Hal Hinson,rotten,0107282,Washington Post,"It's ravishing to look it, a truly gorgeous object. But it is not deep.",2000-01-01,12964,The Joy Luck Club +Desson Thomson,fresh,0107282,Washington Post,Gives refreshing -- and bittersweet -- dimension to the age-old clash between generations.,2000-01-01,12964,The Joy Luck Club +James Berardinelli,fresh,0107282,ReelViews,It's fascinating and satisfying the way the diverse threads are knitted together into a single tapestry.,2000-01-01,12964,The Joy Luck Club +,rotten,0107282,Entertainment Weekly,,1993-09-08,12964,The Joy Luck Club +Lisa Schwarzbaum,rotten,0118836,Entertainment Weekly,,2011-09-07,12389,Chairman of the Board +Glenn Lovell,none,0118836,Variety,,2009-03-26,12389,Chairman of the Board +David Kronke,none,0118836,Los Angeles Times,,2001-02-14,12389,Chairman of the Board +Joe Baltake,none,0118836,Sacramento Bee,,2000-01-01,12389,Chairman of the Board +Anita Gates,none,0118836,New York Times,,2000-01-01,12389,Chairman of the Board +Todd McCarthy,none,0120148,Variety,,2008-10-18,12988,Sliding Doors +Derek Adams,none,0120148,Time Out,,2006-06-24,12988,Sliding Doors +Jeff Strickler,none,0120148,Minneapolis Star Tribune,,2002-11-06,12988,Sliding Doors +Jack Mathews,none,0120148,Los Angeles Times,,2002-08-28,12988,Sliding Doors +Stephanie Zacharek,fresh,0120148,Salon.com,It's not so much the tale itself as the slippery interplay between characters that makes Sliding Doors enjoyable.,2002-06-18,12988,Sliding Doors +Rick Groen,rotten,0120148,Globe and Mail,"Ultimately, Sliding Doors becomes a victim of its own cleverness, shutting down all that early promise.",2002-04-12,12988,Sliding Doors +Stephen Holden,rotten,0120148,New York Times,"Once the movie throws in a jolting, late-in- the-game plot twist that could have been borrowed from City of Angels, it never regains its balance.",2000-01-01,12988,Sliding Doors +Joe Baltake,fresh,0120148,Sacramento Bee,"One of the most purely pleasurable, delicious films currently available.",2000-01-01,12988,Sliding Doors +Roger Ebert,rotten,0120148,Chicago Sun-Times,"Gwyneth Paltrow is engaging as the two Helens, and I have no complaints about her performance. Pity about the screenplay.",2000-01-01,12988,Sliding Doors +Mike Clark,rotten,0120148,USA Today,"Take a supernatural premise, sap cinematic magic of any kind and the result is Sliding Doors.",2000-01-01,12988,Sliding Doors +James Berardinelli,fresh,0120148,ReelViews,"The script is shrewd and inventive, combining wit, romance, and intelligent melodrama into a crowd-pleasing whole.",2000-01-01,12988,Sliding Doors +Mick LaSalle,rotten,0120148,San Francisco Chronicle,"Give the movie credit for being a different sort of romantic comedy, but still one has to regret the failure of imagination.",2000-01-01,12988,Sliding Doors +Jay Carr,rotten,0120148,Boston Globe,Deft enough to keep you wondering whether it's going to end on Track A or Track B.,2000-01-01,12988,Sliding Doors +Dennis Lim,rotten,0120148,Village Voice,"Unduly smug about its flashy conceit and otherwise utterly empty, the film plays like lobotomized Kieslowski, less Blind Chance than dumb luck.",2000-01-01,12988,Sliding Doors +Susan Stark,rotten,0120148,Detroit News,,2000-01-01,12988,Sliding Doors +,fresh,0120148,Entertainment Weekly,,1998-04-24,12988,Sliding Doors +Owen Gleiberman,rotten,0119707,Entertainment Weekly,,2011-09-07,10903,Mortal Kombat: Annihilation +Lisa Alspector,rotten,0119707,Chicago Reader,"The most stimulating, satisfying aspect of this action fantasy is the theme music.",2009-09-09,10903,Mortal Kombat: Annihilation +Derek Adams,rotten,0119707,Time Out,It's a toss up which aspect of this drivel is worst.,2009-02-27,10903,Mortal Kombat: Annihilation +Daniel M. Kimmel,rotten,0119707,Variety,Pic consists largely of choppily edited fight scenes (usually involving somersaults and back flips) combined with various computer graphic effects.,2004-05-14,10903,Mortal Kombat: Annihilation +Joe Baltake,rotten,0119707,Sacramento Bee,"A little more work is required, for instance, on four-arm technology.",2002-02-01,10903,Mortal Kombat: Annihilation +Bob Heisler,rotten,0119707,Los Angeles Times,"Quite serious, charmless and critic-proof.",2001-02-21,10903,Mortal Kombat: Annihilation +Mary Brennan,rotten,0119707,Film.com,There's a kind of grand awfulness about it.,2000-01-01,10903,Mortal Kombat: Annihilation +Peter Stack,rotten,0119707,San Francisco Chronicle,"Its dazzling special effects make its combatants flip and fly, spin and soar, all the while punching and kicking each other like jackhammers, only to leave viewers utterly unmoved.",2000-01-01,10903,Mortal Kombat: Annihilation +James Berardinelli,rotten,0119707,ReelViews,"It's just an excuse for a series of tedious, repetitious fight scenes that have been staged with no hint whatsoever of originality.",2000-01-01,10903,Mortal Kombat: Annihilation +Lawrence Van Gelder,rotten,0119707,New York Times,Here's the lowdown on the latest chapter in Mortal Kombat: deadly dull.,2000-01-01,10903,Mortal Kombat: Annihilation +,rotten,0119707,Entertainment Weekly,,1997-11-21,10903,Mortal Kombat: Annihilation +Jay Boyar,fresh,0120382,Orlando Sentinel,"The important thing is that Carrey and the filmmakers have taken pains to give Truman that soul -- which, in itself, provides a kind of depth. In any case, it gets you to care about how it's going to end.",2013-06-19,10679,The Truman Show +David Edelstein,fresh,0120382,Slate,"The movie might have been a soulless exercise without [Carrey]. With him, it has an authentic tremulousness, and also a dread, as if Pinocchio needed to take on Gepetto and Jiminy Crickett to become a real boy.",2013-06-19,10679,The Truman Show +Michael Wilmington,fresh,0120382,Chicago Tribune,It's a satire/comedy/fantasy about the future of television and the people caught in its omnipresent electronic net: a supremely intelligent jape about a man named Truman Burbank.,2013-06-19,10679,The Truman Show +Anthony Lane,fresh,0120382,New Yorker,"Carrey is on his mettle, but you wonder why thirty years of close observation have made Truman so funny; shouldn't he be a regular guy gone mad?",2013-06-19,10679,The Truman Show +Joe Morgenstern,fresh,0120382,Wall Street Journal,"Its essential strengths are more dramatic and emotional than topical or satirical. Truman is a touchingly gallant creation, the hero of someone else's existential burlesque.",2011-06-18,10679,The Truman Show +Andrew Sarris,fresh,0120382,New York Observer,"A good, intelligent, insightful movie...",2007-04-27,10679,The Truman Show +Geoff Andrew,fresh,0120382,Time Out,One movie you can pronounce a modern classic with absolute confidence.,2006-06-24,10679,The Truman Show +Peter Rainer,rotten,0120382,New York Magazine,"This is a profound movie for people who don't like to think, or perhaps for people who are in the media and of the media, and can't imagine any life outside it.",2004-08-07,10679,The Truman Show +,fresh,0120382,Globe and Mail,The result is a rarity on any screen: intelligent fun.,2002-07-12,10679,The Truman Show +Kenneth Turan,fresh,0120382,Los Angeles Times,"Adventurous, provocative, even daring.",2001-02-14,10679,The Truman Show +Todd McCarthy,fresh,0120382,Variety,A gemlike picture crafted with rare and immaculate precision...,2001-02-14,10679,The Truman Show +Sean Means,fresh,0120382,Film.com,"A brilliant and daring film that blends charming comedy, affecting drama, thought-provoking satire and even a touch of biblical parable.",2000-01-01,10679,The Truman Show +Tom Keogh,fresh,0120382,Film.com,"This is a film that can stay with one for a very long time after a viewing, and even slightly change the way one looks at life and the world.",2000-01-01,10679,The Truman Show +Jonathan Rosenbaum,rotten,0120382,Chicago Reader,One of those high-concept movies whose concept is both clever and dumb.,2000-01-01,10679,The Truman Show +Susan Stark,fresh,0120382,Detroit News,"A bracingly intelligent, provocative and witty mix of entertainment values and long thoughts.",2000-01-01,10679,The Truman Show +Owen Gleiberman,fresh,0120382,Entertainment Weekly,Carrey turns Truman into a postmodern Capra hero.,2000-01-01,10679,The Truman Show +Joe Baltake,fresh,0120382,Sacramento Bee,"Not even the more risk-taking alternative cinema, the Independent Film, has been so ruthless in its umbrella indictment of movies, television, music, advertising, commercials and infomercials.",2000-01-01,10679,The Truman Show +Roger Ebert,fresh,0120382,Chicago Sun-Times,"The underlying ideas made the movie more than just entertainment. Like Gattaca, the previous film written by Niccol, it brings into focus the new values that technology is forcing on humanity.",2000-01-01,10679,The Truman Show +Robert Horton,fresh,0120382,Film.com,"This is a smart, engaging movie.",2000-01-01,10679,The Truman Show +Janet Maslin,fresh,0120382,New York Times,"The latter part of the film, depicting Truman's rebellion and providing him with a perfect final line, is much more conventionally conceived than its splendid start.",2000-01-01,10679,The Truman Show +Owen Gleiberman,fresh,0120520,Entertainment Weekly,,2011-09-07,13068,The Wings of the Dove +David Stratton,none,0120520,Variety,,2008-10-18,13068,The Wings of the Dove +Andrew Sarris,none,0120520,New York Observer,,2007-04-27,13068,The Wings of the Dove +,none,0120520,Time Out,,2006-01-26,13068,The Wings of the Dove +,fresh,0120520,Globe and Mail,,2003-04-25,13068,The Wings of the Dove +Jeff Strickler,none,0120520,Minneapolis Star Tribune,,2002-11-06,13068,The Wings of the Dove +Kenneth Turan,none,0120520,Los Angeles Times,,2001-02-14,13068,The Wings of the Dove +Stephen Holden,none,0120520,New York Times,,2000-01-01,13068,The Wings of the Dove +Joe Baltake,none,0120520,Sacramento Bee,,2000-01-01,13068,The Wings of the Dove +,none,0120520,Houston Chronicle,,2000-01-01,13068,The Wings of the Dove +Laura Miller,none,0120520,Salon.com,,2000-01-01,13068,The Wings of the Dove +Roger Ebert,fresh,0120520,Chicago Sun-Times,,2000-01-01,13068,The Wings of the Dove +Stanley Kauffmann,none,0120520,The New Republic,,2000-01-01,13068,The Wings of the Dove +Susan Wloszczyna,fresh,0120520,USA Today,[An] exquisitely mounted romantic gem.,2000-01-01,13068,The Wings of the Dove +Edward Guthmann,fresh,0120520,San Francisco Chronicle,,2000-01-01,13068,The Wings of the Dove +Susan Stark,fresh,0120520,Detroit News,,2000-01-01,13068,The Wings of the Dove +James Berardinelli,fresh,0120520,ReelViews,,2000-01-01,13068,The Wings of the Dove +,fresh,0120520,Entertainment Weekly,,1997-11-07,13068,The Wings of the Dove +Lisa Schwarzbaum,fresh,0119723,Entertainment Weekly,Director Marleen Gorris and screenwriter Eileen Atkins have done a remarkable job of suggesting the inner mental jumble Woolf strove to convey and constructing an exterior narrative of luminous beauty.,2011-09-07,12660,Mrs Dalloway +Emanuel Levy,fresh,0119723,Variety,"A highly romantic, deeply melancholy drama, the film offers psychological and existential insights about the inevitable effects - and price - of life choices.",2009-03-26,12660,Mrs Dalloway +,none,0119723,Time Out,,2006-06-24,12660,Mrs Dalloway +,fresh,0119723,Globe and Mail,,2002-04-12,12660,Mrs Dalloway +Stanley Kauffmann,none,0119723,The New Republic,,2000-01-01,12660,Mrs Dalloway +Roger Ebert,fresh,0119723,Chicago Sun-Times,"The first act will be perplexing for those unfamiliar with the novel, but Redgrave's performance steers us through, and by the end we understand with complete, final clarity what the story was about.",2000-01-01,12660,Mrs Dalloway +James Berardinelli,fresh,0119723,ReelViews,,2000-01-01,12660,Mrs Dalloway +Joe Baltake,none,0119723,Sacramento Bee,,2000-01-01,12660,Mrs Dalloway +Jay Carr,fresh,0119723,Boston Globe,,2000-01-01,12660,Mrs Dalloway +,fresh,0119723,USA Today,,2000-01-01,12660,Mrs Dalloway +Edward Guthmann,rotten,0119723,San Francisco Chronicle,"Vanessa Redgrave is such a majestic screen presence -- so luminous and wise -- that even the stilted ""Mrs. Dalloway"" is hard-pressed to dim her radiance.",2000-01-01,12660,Mrs Dalloway +David Denby,fresh,0119723,New York Magazine,"The movie doesn't offer hash; it is well ordered, beautiful, and clear. But it does what movies do, not what Virginia Woolf does.",2000-01-01,12660,Mrs Dalloway +Janet Maslin,fresh,0119723,New York Times,"he film adaptation of ''Mrs. Dalloway'' is as elegantly wrought and reflective as the material allows (which is to say that in this case, a trip to the library makes for an invaluable part of the experience).",2000-01-01,12660,Mrs Dalloway +Lael Loewenstein,none,0116592,Variety,,2008-09-12,11964,"I Love You, I Love You Not" +Kevin Thomas,none,0116592,Los Angeles Times,,2001-02-14,11964,"I Love You, I Love You Not" +Janet Maslin,none,0116592,New York Times,,2000-01-01,11964,"I Love You, I Love You Not" +,none,0116592,Houston Chronicle,,2000-01-01,11964,"I Love You, I Love You Not" +Todd McCarthy,none,0119994,Variety,,2009-03-26,14934,Red Corner +Geoff Andrew,none,0119994,Time Out,,2006-02-09,14934,Red Corner +,rotten,0119994,Globe and Mail,,2002-04-12,14934,Red Corner +Kenneth Turan,none,0119994,Los Angeles Times,,2001-02-14,14934,Red Corner +Roger Ebert,rotten,0119994,Chicago Sun-Times,,2000-01-01,14934,Red Corner +Joe Baltake,none,0119994,Sacramento Bee,,2000-01-01,14934,Red Corner +Janet Maslin,none,0119994,New York Times,,2000-01-01,14934,Red Corner +Stanley Kauffmann,none,0119994,The New Republic,,2000-01-01,14934,Red Corner +Susan Stark,rotten,0119994,Detroit News,,2000-01-01,14934,Red Corner +Andrew O'Hehir,none,0119994,Salon.com,,2000-01-01,14934,Red Corner +Mick LaSalle,none,0119994,San Francisco Chronicle,,2000-01-01,14934,Red Corner +Mike Clark,fresh,0119994,USA Today,"Everything ... is dominated by actress Bai Ling, who creates a full-blooded character and role model for young girls.",2000-01-01,14934,Red Corner +James Berardinelli,rotten,0119994,ReelViews,,2000-01-01,14934,Red Corner +,rotten,0119994,Entertainment Weekly,,1997-10-31,14934,Red Corner +Owen Gleiberman,rotten,0119395,Entertainment Weekly,,2011-09-07,13495,The Jackal +Todd McCarthy,none,0119395,Variety,,2008-09-12,13495,The Jackal +Geoff Andrew,none,0119395,Time Out,,2006-02-09,13495,The Jackal +Jeff Strickler,none,0119395,Minneapolis Star Tribune,,2002-11-06,13495,The Jackal +Kenneth Turan,none,0119395,Los Angeles Times,,2001-02-14,13495,The Jackal +Susan Stark,rotten,0119395,Detroit News,,2000-01-01,13495,The Jackal +Roger Ebert,rotten,0119395,Chicago Sun-Times,,2000-01-01,13495,The Jackal +James Berardinelli,rotten,0119395,ReelViews,,2000-01-01,13495,The Jackal +Joe Baltake,none,0119395,Sacramento Bee,,2000-01-01,13495,The Jackal +Stephen Holden,none,0119395,New York Times,,2000-01-01,13495,The Jackal +Ruthe Stein,none,0119395,San Francisco Chronicle,,2000-01-01,13495,The Jackal +,none,0119395,Houston Chronicle,,2000-01-01,13495,The Jackal +,rotten,0119395,Entertainment Weekly,,1997-11-14,13495,The Jackal +Owen Gleiberman,fresh,0118617,Entertainment Weekly,,2011-09-07,9895,Anastasia +Susan Stark,fresh,0118617,Detroit News,,2008-10-18,9895,Anastasia +Todd McCarthy,rotten,0118617,Variety,"An ambitious, serious but not particularly stimulating musical feature that unconvincingly attempts to graft warm and cuddly family-film motifs onto turbulent aspects of modern history and mythology.",2008-09-01,9895,Anastasia +Geoff Andrew,fresh,0118617,Time Out,Bluth has rediscovered the ingredients of quality mainstream animation...,2006-02-09,9895,Anastasia +Peter Stack,fresh,0118617,San Francisco Chronicle,A gorgeous piece of work.,2002-06-18,9895,Anastasia +Kenneth Turan,fresh,0118617,Los Angeles Times,Any film that echoes the landscape of Doctor Zhivago is hard to dislike for too long.,2001-02-14,9895,Anastasia +Stephen Holden,rotten,0118617,New York Times,"Judging from their voices, about as close to Europe as most of these characters have ever gotten is probably Fresno.",2000-01-01,9895,Anastasia +Susan Wloszczyna,fresh,0118617,USA Today,"Flawed but not fatally, this ambitious epic's strength lies not just with its haunting melodies, pretty pictures, star voices and kid-friendly sidekicks -- the usual shtick that makes Disney tick.",2000-01-01,9895,Anastasia +Roger Ebert,fresh,0118617,Chicago Sun-Times,"A promising launch for Fox's new animation studio, which has declared war on Disney.",2000-01-01,9895,Anastasia +James Berardinelli,fresh,0118617,ReelViews,"The whole process of watching Anastasia is a thoroughly enjoyable one, and it proves that any studio willing to put forth the time, money, and effort can match Disney.",2000-01-01,9895,Anastasia +,fresh,0118617,Entertainment Weekly,,1997-11-14,9895,Anastasia +Lisa Schwarzbaum,fresh,0120483,Entertainment Weekly,,2011-09-07,10921,The Man Who Knew Too Little +Todd McCarthy,none,0120483,Variety,,2008-09-12,10921,The Man Who Knew Too Little +Derek Adams,none,0120483,Time Out,,2006-02-09,10921,The Man Who Knew Too Little +Jeff Strickler,none,0120483,Minneapolis Star Tribune,,2002-11-06,10921,The Man Who Knew Too Little +,rotten,0120483,Globe and Mail,,2002-04-12,10921,The Man Who Knew Too Little +Rita Kempley,none,0120483,Washington Post,,2002-01-22,10921,The Man Who Knew Too Little +Kevin Thomas,none,0120483,Los Angeles Times,,2001-02-14,10921,The Man Who Knew Too Little +Mike Clark,rotten,0120483,USA Today,A one-note mix-up.,2000-01-01,10921,The Man Who Knew Too Little +James Berardinelli,fresh,0120483,ReelViews,,2000-01-01,10921,The Man Who Knew Too Little +Roger Ebert,rotten,0120483,Chicago Sun-Times,,2000-01-01,10921,The Man Who Knew Too Little +Joe Baltake,none,0120483,Sacramento Bee,,2000-01-01,10921,The Man Who Knew Too Little +Stephanie Zacharek,none,0120483,Salon.com,,2000-01-01,10921,The Man Who Knew Too Little +Peter Stack,none,0120483,San Francisco Chronicle,,2000-01-01,10921,The Man Who Knew Too Little +Lawrence Van Gelder,none,0120483,New York Times,,2000-01-01,10921,The Man Who Knew Too Little +Susan Stark,rotten,0120483,Detroit News,,2000-01-01,10921,The Man Who Knew Too Little +,fresh,0120483,Entertainment Weekly,,1997-11-14,10921,The Man Who Knew Too Little +Owen Gleiberman,rotten,0118607,Entertainment Weekly,,2011-09-07,13122,Amistad +Andrew Sarris,none,0118607,New York Observer,,2007-04-27,13122,Amistad +Geoff Andrew,none,0118607,Time Out,,2006-06-24,13122,Amistad +Jeff Strickler,none,0118607,Minneapolis Star Tribune,,2002-11-06,13122,Amistad +Edward Guthmann,rotten,0118607,San Francisco Chronicle,"In Amistad, an admirable but disappointing effort...[Speilberg] veers between stoic political correctness and mushy Hollywood platitudes.",2002-06-18,13122,Amistad +Rick Groen,rotten,0118607,Globe and Mail,Spielberg seems to be dividing his filmmaking output into two distinct halves: in the summer months cranking out no-brainer dinosaur flicks...in the winter season unveiling his serious artistic stuff to edify the adults and woo the Oscar crowd.,2002-04-12,13122,Amistad +Kenneth Turan,none,0118607,Los Angeles Times,,2001-02-14,13122,Amistad +Susan Wloszczyna,fresh,0118607,USA Today,"As Spielberg vehicles go, Amistad -- part mystery, action thriller, courtroom drama, even culture-clash comedy -- lands between the disturbing lyricism of Schindler's List and the storybook artificiality of The Color Purple.",2000-01-01,13122,Amistad +Jeff Millar,fresh,0118607,Houston Chronicle,"Halfway into Amistad comes the point where Steven Spielberg pulls the lever, and the stink and horror and bestialities of slavery spill around our ankles. We can't look away.",2000-01-01,13122,Amistad +Joe Baltake,none,0118607,Sacramento Bee,,2000-01-01,13122,Amistad +Janet Maslin,fresh,0118607,New York Times,"The best parts of Amistad are those that simply bring their pride, fear and outrage to life.",2000-01-01,13122,Amistad +Roger Ebert,fresh,0118607,Chicago Sun-Times,"What is most valuable about Amistad is the way it provides faces and names for its African characters, whom the movies so often make into faceless victims.",2000-01-01,13122,Amistad +Susan Stark,fresh,0118607,Detroit News,,2000-01-01,13122,Amistad +Charles Taylor,rotten,0118607,Salon.com,Amistad is prestige filmmaking bereft of inspiration -- sometimes even of the nuts and bolts of craft.,2000-01-01,13122,Amistad +Stanley Kauffmann,none,0118607,The New Republic,,2000-01-01,13122,Amistad +James Berardinelli,fresh,0118607,ReelViews,"Thematically rich, impeccably crafted, and intellectually stimulating, the only area where this movie falls a little short is in its emotional impact.",2000-01-01,13122,Amistad +,rotten,0118607,Entertainment Weekly,,1997-12-12,13122,Amistad +Lisa Schwarzbaum,fresh,0118632,Entertainment Weekly,,2011-09-07,12164,The Apostle +Geoff Andrew,none,0118632,Time Out,,2006-06-24,12164,The Apostle +Emanuel Levy,fresh,0118632,Variety,"A labor of love coming to fruition after 13 years, this is Robert Duvall's third and best directorial effort, a sharply observed exploration of a preacher who embarks on a redemption odyssey after committing a crime.",2006-02-18,12164,The Apostle +Jeff Strickler,none,0118632,Minneapolis Star Tribune,,2002-11-06,12164,The Apostle +Edward Guthmann,fresh,0118632,San Francisco Chronicle,,2002-06-18,12164,The Apostle +,rotten,0118632,Globe and Mail,,2002-04-12,12164,The Apostle +David Denby,none,0118632,New York Magazine,,2002-02-17,12164,The Apostle +Kenneth Turan,none,0118632,Los Angeles Times,,2001-02-14,12164,The Apostle +Roger Ebert,fresh,0118632,Chicago Sun-Times,,2000-01-01,12164,The Apostle +Jay Carr,fresh,0118632,Boston Globe,,2000-01-01,12164,The Apostle +Jonathan Rosenbaum,fresh,0118632,Chicago Reader,,2000-01-01,12164,The Apostle +Janet Maslin,none,0118632,New York Times,,2000-01-01,12164,The Apostle +,fresh,0118632,USA Today,,2000-01-01,12164,The Apostle +,none,0118632,Houston Chronicle,,2000-01-01,12164,The Apostle +James Berardinelli,fresh,0118632,ReelViews,,2000-01-01,12164,The Apostle +Susan Stark,fresh,0118632,Detroit News,,2000-01-01,12164,The Apostle +Joe Baltake,none,0118632,Sacramento Bee,,2000-01-01,12164,The Apostle +Charles Taylor,none,0118632,Salon.com,,2000-01-01,12164,The Apostle +,fresh,0118632,Entertainment Weekly,,1998-01-30,12164,The Apostle +Derek Elley,none,0123385,Variety,,2009-03-26,14460,Artemisia +Geoff Andrew,none,0123385,Time Out,,2006-06-24,14460,Artemisia +,rotten,0123385,Globe and Mail,,2002-04-12,14460,Artemisia +Stephen Holden,none,0123385,New York Times,,2000-01-01,14460,Artemisia +Joe Baltake,none,0123385,Sacramento Bee,,2000-01-01,14460,Artemisia +Peter Stack,fresh,0123385,San Francisco Chronicle,,2000-01-01,14460,Artemisia +James Berardinelli,fresh,0123385,ReelViews,,2000-01-01,14460,Artemisia +Susan Stark,fresh,0123385,Detroit News,,2000-01-01,14460,Artemisia +Roger Ebert,fresh,0123385,Chicago Sun-Times,,2000-01-01,14460,Artemisia +,rotten,0123385,Entertainment Weekly,,1998-05-08,14460,Artemisia +Lisa Schwarzbaum,rotten,0118698,Entertainment Weekly,,2011-09-07,13734,Bent +Emanuel Levy,fresh,0118698,Variety,"The screen version of Sherman's play about homosexuals in Nazi Germany shows that tyro director Mathias doesn't know much about film for his erratic approach and inconsistent style bring out the play's weaknesses, though the acting is good.",2006-04-18,13734,Bent +,none,0118698,Time Out,,2006-01-26,13734,Bent +Stephen Holden,none,0118698,New York Times,,2003-05-20,13734,Bent +,rotten,0118698,Globe and Mail,,2002-04-12,13734,Bent +Kevin Thomas,none,0118698,Los Angeles Times,,2001-02-14,13734,Bent +James Berardinelli,rotten,0118698,ReelViews,,2000-01-01,13734,Bent +Edward Guthmann,none,0118698,San Francisco Chronicle,,2000-01-01,13734,Bent +Joe Baltake,none,0118698,Sacramento Bee,,2000-01-01,13734,Bent +Stanley Kauffmann,none,0118698,The New Republic,,2000-01-01,13734,Bent +Roger Ebert,rotten,0118698,Chicago Sun-Times,,2000-01-01,13734,Bent +,none,0118698,Houston Chronicle,,2000-01-01,13734,Bent +Jonathan Rosenbaum,none,0118698,Chicago Reader,,2000-01-01,13734,Bent +,rotten,0118698,Entertainment Weekly,,1997-11-26,13734,Bent +Brendan Kelly,none,0118764,Variety,,2012-02-23,17933,Les Boys +Lisa Alspector,rotten,0118804,Chicago Reader,"Director Neil Jordan and Patrick McCabe adapted McCabe's novel for this bland 1998 shocker that fails miserably as satire, character study, and anything else it might have aspired to.",2008-03-11,16941,The Butcher Boy +Geoff Andrew,fresh,0118804,Time Out,"Though the movie sometimes looks as if the authentic Irish wit, colour and blarney has been filtered through the sensibility of a Bunuel or Polanski, Jordan never allows the surreal/expressionist aspects to dominate.",2006-06-24,16941,The Butcher Boy +Emanuel Levy,fresh,0118804,Variety,"Neil Jordan's most accomplished and brilliant film to date, Butcher Boy is satisfying as faithful literary adaptation and inense cinematic experience that brings to mind in theme Kubrick's equally brilliant Cloakwork Orange.",2005-12-24,16941,The Butcher Boy +David Denby,fresh,0118804,New York Magazine,"I find myself in an embarrassing position: I think this is a great movie, but I'm not sure.",2004-08-07,16941,The Butcher Boy +Edward Guthmann,fresh,0118804,San Francisco Chronicle,"Instead of bathing his story in the warm, lyrical glow of an Irish lament, Jordan mixes domestic tragedy with fierce gallows humor and the stark horror of a Goya painting.",2002-06-18,16941,The Butcher Boy +,fresh,0118804,Globe and Mail,,2002-04-12,16941,The Butcher Boy +Kevin Thomas,fresh,0118804,Los Angeles Times,Jordan is remarkable in his ability to reveal people's inner lives and the interaction between everyday life and an individual's imagination and driving passions.,2001-02-14,16941,The Butcher Boy +Janet Maslin,fresh,0118804,New York Times,"Anecdotal and increasingly chilling, The Butcher Boy moves from its early prankster spirit into parts unknown with the help of many pungent background touches.",2000-01-01,16941,The Butcher Boy +James Berardinelli,fresh,0118804,ReelViews,"The Butcher Boy works best as a dark comedy and social satire, and is somewhat less successful as a character study of a deeply-troubled young boy whose violent impulses are fed by his unstable environment.",2000-01-01,16941,The Butcher Boy +Susan Stark,fresh,0118804,Detroit News,,2000-01-01,16941,The Butcher Boy +Andrew O'Hehir,fresh,0118804,Salon.com,Jordan's adaptation of The Butcher Boy (co-written with McCabe) remains a compelling exploration of the permeable border between normal childhood and full-on insanity.,2000-01-01,16941,The Butcher Boy +Jay Carr,fresh,0118804,Boston Globe,,2000-01-01,16941,The Butcher Boy +Roger Ebert,rotten,0118804,Chicago Sun-Times,"The movie held me outside; I didn't connect in the way I wanted to, and by the end I was out of sympathy with the material.",2000-01-01,16941,The Butcher Boy +,fresh,0118804,Entertainment Weekly,,1998-04-03,16941,The Butcher Boy +Owen Gleiberman,fresh,0118954,Entertainment Weekly,,2011-09-07,13690,Deconstructing Harry +David Stratton,none,0118954,Variety,,2008-11-26,13690,Deconstructing Harry +,none,0118954,Time Out,,2006-01-26,13690,Deconstructing Harry +Jeff Strickler,none,0118954,Minneapolis Star Tribune,,2002-11-06,13690,Deconstructing Harry +Kenneth Turan,none,0118954,Los Angeles Times,,2001-02-14,13690,Deconstructing Harry +Joe Baltake,none,0118954,Sacramento Bee,,2000-01-01,13690,Deconstructing Harry +,none,0118954,Houston Chronicle,,2000-01-01,13690,Deconstructing Harry +Stanley Kauffmann,none,0118954,The New Republic,,2000-01-01,13690,Deconstructing Harry +James Berardinelli,fresh,0118954,ReelViews,,2000-01-01,13690,Deconstructing Harry +Janet Maslin,none,0118954,New York Times,,2000-01-01,13690,Deconstructing Harry +Ruthe Stein,fresh,0118954,San Francisco Chronicle,,2000-01-01,13690,Deconstructing Harry +Andrew O'Hehir,none,0118954,Salon.com,,2000-01-01,13690,Deconstructing Harry +Susan Wloszczyna,rotten,0118954,USA Today,"The dialogue lacks snap, and Allen-the-actor's comic timing seems a beat off.",2000-01-01,13690,Deconstructing Harry +Susan Stark,rotten,0118954,Detroit News,,2000-01-01,13690,Deconstructing Harry +Roger Ebert,fresh,0118954,Chicago Sun-Times,,2000-01-01,13690,Deconstructing Harry +,fresh,0118954,Entertainment Weekly,,1997-12-12,13690,Deconstructing Harry +Owen Gleiberman,fresh,0119137,Entertainment Weekly,,2011-09-07,10758,Flubber +Joe Leydon,none,0119137,Variety,,2008-09-12,10758,Flubber +,none,0119137,Time Out,,2006-01-26,10758,Flubber +Jeff Strickler,none,0119137,Minneapolis Star Tribune,,2002-11-06,10758,Flubber +Edward Guthmann,rotten,0119137,San Francisco Chronicle,,2002-06-18,10758,Flubber +Janet Maslin,none,0119137,New York Times,,2000-01-01,10758,Flubber +Joe Baltake,none,0119137,Sacramento Bee,,2000-01-01,10758,Flubber +,none,0119137,Houston Chronicle,,2000-01-01,10758,Flubber +James Berardinelli,rotten,0119137,ReelViews,,2000-01-01,10758,Flubber +Susan Stark,rotten,0119137,Detroit News,,2000-01-01,10758,Flubber +Roger Ebert,rotten,0119137,Chicago Sun-Times,,2000-01-01,10758,Flubber +,none,0119137,Washington Post,,2000-01-01,10758,Flubber +Susan Wloszczyna,rotten,0119137,USA Today,Manage[s] to squeeze the very bounce out of what should have been a can't-miss update.,2000-01-01,10758,Flubber +,fresh,0119137,Entertainment Weekly,,1997-11-26,10758,Flubber +Lisa Schwarzbaum,rotten,0119142,Entertainment Weekly,,2011-09-07,10955,For Richer or Poorer +Leonard Klady,none,0119142,Variety,,2008-07-28,10955,For Richer or Poorer +Jeff Strickler,none,0119142,Minneapolis Star Tribune,,2002-11-06,10955,For Richer or Poorer +,rotten,0119142,Globe and Mail,,2002-04-12,10955,For Richer or Poorer +Kevin Thomas,none,0119142,Los Angeles Times,,2001-02-14,10955,For Richer or Poorer +James Berardinelli,rotten,0119142,ReelViews,,2000-01-01,10955,For Richer or Poorer +Lawrence Van Gelder,none,0119142,New York Times,,2000-01-01,10955,For Richer or Poorer +Roger Ebert,rotten,0119142,Chicago Sun-Times,,2000-01-01,10955,For Richer or Poorer +Susan Wloszczyna,rotten,0119142,USA Today,"for tube addicts who wish sitcoms were really, really long so they could be crammed with even more bedroom jokes, bathroom humor and 'nudge, nudge' line readings.",2000-01-01,10955,For Richer or Poorer +Susan Stark,rotten,0119142,Detroit News,,2000-01-01,10955,For Richer or Poorer +Joe Baltake,none,0119142,Sacramento Bee,,2000-01-01,10955,For Richer or Poorer +Peter Stack,none,0119142,San Francisco Chronicle,,2000-01-01,10955,For Richer or Poorer +Emanuel Levy,fresh,0119217,Variety,"Towering performance by Matt Damon as a troubled working class who needs to address his creative genius elevates this drama way above its therapeutic approach, resulting in a zeitgeist film that may touch chord with young viewers the way The Graduate did",2008-02-05,12887,Good Will Hunting +Andrew Sarris,fresh,0119217,New York Observer,The film works as a character-driven narrative because Mr. Van Sant and his co-screenwriters are not afraid to unlock the psychological mysteries of their five major characters with clear and concise dialogue.,2007-04-27,12887,Good Will Hunting +Derek Adams,fresh,0119217,Time Out,"It's acted and directed with care, and Damon is outstanding, his scenes with Driver being especially sparky.",2006-02-09,12887,Good Will Hunting +,fresh,0119217,Globe and Mail,,2002-04-12,12887,Good Will Hunting +Kenneth Turan,fresh,0119217,Los Angeles Times,"While the charismatic performances of Damon and Affleck make ""Good Will Hunting"" a difficult entertainment to resist, doing just that is not as hard as the film would like to think.",2001-02-14,12887,Good Will Hunting +Matthew Kohut,fresh,0119217,Film.com,Good Will Hunting narrowly avoids many sentimental pitfalls thanks to what doesn't happen...,2000-01-01,12887,Good Will Hunting +Janet Maslin,fresh,0119217,New York Times,"As Francis Ford Coppola does with The Rainmaker, Van Sant demonstrates how entertainingly a real pro can direct a strong if not especially groundbreaking story.",2000-01-01,12887,Good Will Hunting +John Hartl,fresh,0119217,Film.com,"This has not been a great year for language in movies, but people are going to be memorizing and reciting some of these lines for years to come.",2000-01-01,12887,Good Will Hunting +Jeff Millar,fresh,0119217,Houston Chronicle,Good Will Hunting represents the firmest step into the mainstream yet for director Gus van Sant.,2000-01-01,12887,Good Will Hunting +Joe Baltake,fresh,0119217,Sacramento Bee,Van Sant makes Good Will Hunting a lot livelier than it might have been.,2000-01-01,12887,Good Will Hunting +Peter Stack,fresh,0119217,San Francisco Chronicle,"Intimate, heartfelt and wickedly funny, it's a movie whose impact lingers.",2000-01-01,12887,Good Will Hunting +Andrew O'Hehir,fresh,0119217,Salon.com,"Almost any viewer will enjoy Good Will Hunting moment by moment, but many will wake the next morning wondering why, with all that talent on hand, it amounts to so little in the end.",2000-01-01,12887,Good Will Hunting +Jay Carr,fresh,0119217,Boston Globe,"Even rarer than a breath of fresh air is a breath of fresh Hollywood film. Brainy and heartfelt and right on target, Good Will Hunting is such a film.",2000-01-01,12887,Good Will Hunting +Susan Stark,fresh,0119217,Detroit News,"Between this film and John Grisham's The Rainmaker, Damon surfaces as one swell addition to the front line of screen actors.",2000-01-01,12887,Good Will Hunting +Roger Ebert,fresh,0119217,Chicago Sun-Times,"The outcome of the movie is fairly predictable; so is the whole story, really. It's the individual moments, not the payoff, that make it so effective.",2000-01-01,12887,Good Will Hunting +James Berardinelli,fresh,0119217,ReelViews,...a worthwhile sample of entertainment.,2000-01-01,12887,Good Will Hunting +,fresh,0119217,Entertainment Weekly,"Good Will Hunting is stuffed -- indeed, overstuffed -- with heart, soul, audacity, and blarney. You may not believe a minute of it, but you don't necessarily want to stop watching.",1997-12-05,12887,Good Will Hunting +Joe Leydon,none,0119303,Variety,,2008-07-08,11278,Home Alone 3 +,none,0119303,Time Out,,2006-06-24,11278,Home Alone 3 +,rotten,0119303,Globe and Mail,,2002-04-12,11278,Home Alone 3 +David Kronke,none,0119303,Los Angeles Times,,2001-02-14,11278,Home Alone 3 +,none,0119303,Houston Chronicle,,2000-01-01,11278,Home Alone 3 +Joe Baltake,none,0119303,Sacramento Bee,,2000-01-01,11278,Home Alone 3 +Roger Ebert,fresh,0119303,Chicago Sun-Times,,2000-01-01,11278,Home Alone 3 +Andy Seiler,rotten,0119303,USA Today,Staying home alone is definitely a better idea than seeing Home Alone 3.,2000-01-01,11278,Home Alone 3 +James Berardinelli,rotten,0119303,ReelViews,,2000-01-01,11278,Home Alone 3 +Susan Stark,fresh,0119303,Detroit News,,2000-01-01,11278,Home Alone 3 +Peter Stack,rotten,0119303,San Francisco Chronicle,,2000-01-01,11278,Home Alone 3 +Stephen Holden,none,0119303,New York Times,,2000-01-01,11278,Home Alone 3 +,none,0116976,Chicago Reader,,2004-01-10,770796966,Man of Her Dreams +Owen Gleiberman,rotten,0119668,Entertainment Weekly,,2011-09-07,12966,Midnight in the Garden of Good and Evil +Todd McCarthy,none,0119668,Variety,,2009-03-26,12966,Midnight in the Garden of Good and Evil +Andrew Sarris,none,0119668,New York Observer,,2007-04-27,12966,Midnight in the Garden of Good and Evil +Derek Adams,none,0119668,Time Out,,2006-02-09,12966,Midnight in the Garden of Good and Evil +Edward Guthmann,none,0119668,San Francisco Chronicle,,2002-06-18,12966,Midnight in the Garden of Good and Evil +,rotten,0119668,Globe and Mail,,2002-04-12,12966,Midnight in the Garden of Good and Evil +Kenneth Turan,none,0119668,Los Angeles Times,,2001-02-14,12966,Midnight in the Garden of Good and Evil +Joe Baltake,none,0119668,Sacramento Bee,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Charles Taylor,none,0119668,Salon.com,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Mike Clark,rotten,0119668,USA Today,An oppressively long cinematic oddball.,2000-01-01,12966,Midnight in the Garden of Good and Evil +Stanley Kauffmann,none,0119668,The New Republic,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Jonathan Rosenbaum,none,0119668,Chicago Reader,,2000-01-01,12966,Midnight in the Garden of Good and Evil +,none,0119668,Houston Chronicle,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Roger Ebert,rotten,0119668,Chicago Sun-Times,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Susan Stark,fresh,0119668,Detroit News,,2000-01-01,12966,Midnight in the Garden of Good and Evil +Janet Maslin,none,0119668,New York Times,,2000-01-01,12966,Midnight in the Garden of Good and Evil +James Berardinelli,fresh,0119668,ReelViews,,2000-01-01,12966,Midnight in the Garden of Good and Evil +,rotten,0119668,Entertainment Weekly,,1997-11-21,12966,Midnight in the Garden of Good and Evil +Lisa Schwarzbaum,rotten,0119715,Entertainment Weekly,,2011-09-07,12266,Mousehunt +Joe Leydon,none,0119715,Variety,,2008-07-28,12266,Mousehunt +Derek Adams,none,0119715,Time Out,,2006-06-24,12266,Mousehunt +Lisa Alspector,none,0119715,Chicago Reader,,2005-02-19,12266,Mousehunt +Mark Caro,none,0119715,Chicago Tribune,,2004-02-04,12266,Mousehunt +Jeff Strickler,none,0119715,Minneapolis Star Tribune,,2002-11-06,12266,Mousehunt +Peter Stack,none,0119715,San Francisco Chronicle,,2002-06-18,12266,Mousehunt +,rotten,0119715,Globe and Mail,,2002-04-12,12266,Mousehunt +Jack Mathews,none,0119715,Los Angeles Times,,2001-02-14,12266,Mousehunt +Joe Baltake,none,0119715,Sacramento Bee,,2000-01-01,12266,Mousehunt +Roger Ebert,rotten,0119715,Chicago Sun-Times,,2000-01-01,12266,Mousehunt +Jay Carr,rotten,0119715,Boston Globe,,2000-01-01,12266,Mousehunt +Mike Clark,fresh,0119715,USA Today,It's a not-bad gift for those who prefer their laughs black.,2000-01-01,12266,Mousehunt +James Berardinelli,rotten,0119715,ReelViews,,2000-01-01,12266,Mousehunt +Janet Maslin,none,0119715,New York Times,,2000-01-01,12266,Mousehunt +Susan Stark,rotten,0119715,Detroit News,,2000-01-01,12266,Mousehunt +,rotten,0119715,Entertainment Weekly,,1997-12-19,12266,Mousehunt +Owen Gleiberman,rotten,0119819,Entertainment Weekly,,2011-09-07,15438,Office Killer +Derek Elley,none,0119819,Variety,,2008-12-04,15438,Office Killer +Manohla Dargis,rotten,0119819,L.A. Weekly,"Some of this is insulting, all of it is tedious.",2002-10-29,15438,Office Killer +Edward Guthmann,rotten,0119819,San Francisco Chronicle,"It can't decide what it wants to be -- slasher fest, social satire or revenge comedy -- and ends up being an awkward goulash.",2000-01-01,15438,Office Killer +Stephen Holden,rotten,0119819,New York Times,It doesn't offer a single moment of visceral or emotional electricity.,2000-01-01,15438,Office Killer +,rotten,0119819,Entertainment Weekly,,1997-12-03,15438,Office Killer +Emanuel Levy,none,0119845,Variety,,2008-05-21,770960137,"Other Voices, Other Rooms" +,none,0119845,Time Out,,2006-01-26,770960137,"Other Voices, Other Rooms" +Kevin Thomas,none,0119845,Los Angeles Times,,2001-11-13,770960137,"Other Voices, Other Rooms" +Stephen Holden,none,0119845,New York Times,,2001-11-13,770960137,"Other Voices, Other Rooms" +Edward Guthmann,none,0119845,San Francisco Chronicle,,2001-11-13,770960137,"Other Voices, Other Rooms" +Chris Nashawaty,fresh,0120082,Entertainment Weekly,"The rest of the cast of disposable archetypes deadpanned about why ''sequels suck'' -- a particularly funny joke, since this one didn't.",2011-03-24,16559,Scream 2 +Leonard Klady,fresh,0120082,Variety,"Visceral, witty and appropriately redundant...",2008-07-28,16559,Scream 2 +Lisa Alspector,fresh,0120082,Chicago Reader,If you liked Scream there's no reason you shouldn't like this sequel.,2007-09-23,16559,Scream 2 +Derek Adams,rotten,0120082,Time Out,"The film itself is stuck in a cycle of repetition, with slight variations.",2006-06-24,16559,Scream 2 +,rotten,0120082,Globe and Mail,,2002-07-12,16559,Scream 2 +Roger Ebert,fresh,0120082,Chicago Sun-Times,Wes Craven was born to direct this material. One of the most successful of horror filmmakers.,2000-01-01,16559,Scream 2 +James Berardinelli,fresh,0120082,ReelViews,The movie is enjoyable.,2000-01-01,16559,Scream 2 +Mick LaSalle,fresh,0120082,San Francisco Chronicle,Williamson's script is funny and smart.,2000-01-01,16559,Scream 2 +Michael Wilmington,fresh,0120082,Chicago Tribune,"A horror movie balancing gore and terror with personality, humor and a nifty gimmick.",2000-01-01,16559,Scream 2 +Lisa Schwarzbaum,fresh,0120082,Entertainment Weekly,"A yum-yum cast of pretties pull off the neat trick of affectionately counting the many ways available to horror sequels to suck, without making a sequel that sucks.",2000-01-01,16559,Scream 2 +Joe Baltake,fresh,0120082,Sacramento Bee,Most intelligent movie of the moment.,2000-01-01,16559,Scream 2 +Andrew O'Hehir,fresh,0120082,Salon.com,"Scream 2 is an ingenious, often hilarious, movie that does nothing to diminish the well-deserved cult reputation of its director.",2000-01-01,16559,Scream 2 +Jay Carr,fresh,0120082,Boston Globe,Scream 2 is a clever and wittily manipulative copycat sequel to Scream.,2000-01-01,16559,Scream 2 +Sean Means,fresh,0120082,Film.com,"Smart and scary like its predecessor, it delivers the shocks and a fair amount of sly wit.",2000-01-01,16559,Scream 2 +Bruce Westbrook,fresh,0120082,Houston Chronicle,"The real fun of Scream 2, like Scream, isn't seeing people slaughtered. It's the smart-mouth dialogue and in-joke ironies.",2000-01-01,16559,Scream 2 +Janet Maslin,fresh,0120082,New York Times,Scream 2 has so much tongue-in-cheek trickery that it virtually escapes the horror genre.,2000-01-01,16559,Scream 2 +Susan Wloszczyna,fresh,0120082,USA Today,Wes Craven and writer Kevin Williamson have sharpened the focus along with their copycat killer's knives.,2000-01-01,16559,Scream 2 +Kevin Thomas,fresh,0120082,Los Angeles Times,There's enough ingenuity and scariness to please plenty of fans of the first film.,2000-01-01,16559,Scream 2 +Susan Stark,fresh,0120082,Detroit News,"If you liked Scream, you're going to like Scream 2, simple as that.",2000-01-01,16559,Scream 2 +Owen Gleiberman,fresh,0120255,Entertainment Weekly,,2011-09-07,13927,The Sweet Hereafter +Geoff Andrew,none,0120255,Time Out,,2006-02-09,13927,The Sweet Hereafter +Jeff Strickler,fresh,0120255,Minneapolis Star Tribune,A delicate and touching story.,2002-11-06,13927,The Sweet Hereafter +Brendan Kelly,fresh,0120255,Variety,"Canadian writer-director Atom Egoyan's most ambitious work to date, The Sweet Hereafter is a rich, complex meditation on the impact of a terrible tragedy on a small town.",2001-02-14,13927,The Sweet Hereafter +Kenneth Turan,fresh,0120255,Los Angeles Times,"Though this is Egoyan's first adaptation, The Sweet Hereafter could serve as a model for how to do it right.",2001-02-14,13927,The Sweet Hereafter +Mike Clark,fresh,0120255,USA Today,Audience is almost bound to be absorbed for the duration.,2000-01-01,13927,The Sweet Hereafter +Janet Maslin,fresh,0120255,New York Times,"In a season of expertly adapted contemporary fiction (like ""L.A. Confidential"" and ""The Ice Storm""), this fusion of Banks's and Egoyan's sensibilities stands as a particularly inspired mix.",2000-01-01,13927,The Sweet Hereafter +Peter Brunette,fresh,0120255,Film.com,a new moral urgency seems to invigorate this film,2000-01-01,13927,The Sweet Hereafter +Roger Ebert,fresh,0120255,Chicago Sun-Times,"This is one of the best films of the year, an unflinching lament for the human condition.",2000-01-01,13927,The Sweet Hereafter +Stephanie Zacharek,fresh,0120255,Salon.com,Elegiac and yet straightforward as haiku,2000-01-01,13927,The Sweet Hereafter +Richard Schickel,fresh,0120255,TIME Magazine,"solemn, subtly structured, beautifully acted and ultimately hypnotic",2000-01-01,13927,The Sweet Hereafter +John Hartl,fresh,0120255,Film.com,"As in Egoyan's Exotica and The Adjuster, past and present are intricately fused by the crisp editing, the mournful shadings of Mychael Danna's score and Paul Sarossy's austere wide-screen cinematography",2000-01-01,13927,The Sweet Hereafter +Joe Baltake,fresh,0120255,Sacramento Bee,"Egoyan sways away from the obvious, eschewing easy tears for something more fiercely intelligent.",2000-01-01,13927,The Sweet Hereafter +Susan Stark,fresh,0120255,Detroit News,,2000-01-01,13927,The Sweet Hereafter +Jeff Millar,fresh,0120255,Houston Chronicle,The film searches for that place in the heart where we feel sadness and squeezes it persuasively.,2000-01-01,13927,The Sweet Hereafter +Edward Guthmann,fresh,0120255,San Francisco Chronicle,"A beautiful elegy about family and community, death and healing...",2000-01-01,13927,The Sweet Hereafter +James Berardinelli,fresh,0120255,ReelViews,The movie has an impact that extends far beyond the walls of a movie theater - a quality shared by a distressingly few of today's releases.,2000-01-01,13927,The Sweet Hereafter +,fresh,0120255,Entertainment Weekly,,1997-11-20,13927,The Sweet Hereafter +Gene Siskel,fresh,0120338,Chicago Tribune,"With his beatific, sweet, open face, DiCaprio gives us a rooting interest in hoping that someone important to us survives the wreck.",2013-01-16,22494,Titanic +Cath Clarke,fresh,0120338,Time Out,We know the story ends badly but Cameron still sweeps us up in the romance between Kate Winslet's rebellious posh girl and DiCaprio's steerage kid.,2012-04-06,22494,Titanic +Dana Stevens,fresh,0120338,Slate,"Cameron's three-hour disaster epic is a triumph of popular art -- of folk art, really.",2012-04-06,22494,Titanic +Rafer Guzman,fresh,0120338,Newsday,"""Titanic"" still amazes as the kind of massive, build-and-destroy production that few filmmakers have the ambition or budget to make.",2012-04-06,22494,Titanic +Ann Hornaday,fresh,0120338,Washington Post,"[Cameron] stages the sinking with a flawless sense of detail, pacing, import and dread.",2012-04-06,22494,Titanic +Joe Morgenstern,fresh,0120338,Wall Street Journal,This version has deepened and enriched a film that was already rich in emotions and remarkable for its depth of detail.,2012-04-05,22494,Titanic +Peter Travers,fresh,0120338,Rolling Stone,How is Titanic in 3D? The answer is pretty damn dazzling.,2012-04-05,22494,Titanic +Michael Phillips,fresh,0120338,Chicago Tribune,Cameron is a genius at instilling narrative dread and designing a hokum-drenched fairy tale of a certain size.,2012-04-05,22494,Titanic +Christy Lemire,fresh,0120338,Associated Press,"If any film should be redone in 3-D, it's ""Titanic."" And if any filmmaker should be the one doing the redoing, it's James Cameron.",2012-04-04,22494,Titanic +Claudia Puig,fresh,0120338,USA Today,"Sure, it's corny, but there's something endearing about the tale of young love and its earnest lack of irony.",2012-04-04,22494,Titanic +Joe Neumaier,fresh,0120338,New York Daily News,"Like Kathy Bates' ""unsinkable"" Molly Brown, ""Titanic"" is unabashedly American: It's big, brash and sometimes gauche, yet also unapologetically earnest, amazing to look at and devoted to its own cause. And it knows how to win us over.",2012-04-04,22494,Titanic +Liam Lacey,fresh,0120338,Globe and Mail,"Overall, for a blockbuster movie about one great big thing hitting another great big thing, the new film shows distinctly upper-deck restraint.",2012-04-04,22494,Titanic +Peter Howell,fresh,0120338,Toronto Star,"The letdown factor has been most keenly felt in conversions from 2D, but Titanic 3D shows how the ambition can be realized if the will and skill are there. We can only hope that other filmmakers follow Cameron's example.",2012-04-03,22494,Titanic +Nick Pinkerton,fresh,0120338,Village Voice,"But the power of Titanic didn't come from originality; it came from punching cliches across with a seldom-seen directness and sincerity that seemed pure of heart, ""old-fashioned,"" or plain corny, depending on your perspective.",2012-04-03,22494,Titanic +Lou Lumenick,fresh,0120338,New York Post,"James Cameron's spectacular new 3-D version of ""Titanic'' is everything I'd hoped for, and more.",2012-04-03,22494,Titanic +Rene Rodriguez,fresh,0120338,Miami Herald,"Here is a rare opportunity to return to something you once loved, and discover it still holds up, no apologies necessary.",2012-04-02,22494,Titanic +David Edelstein,rotten,0120338,Slate,Now it can be told: The Titanic went down because of two distracting smoochers on the poop deck.,2008-01-29,22494,Titanic +Todd McCarthy,fresh,0120338,Variety,A spectacular demonstration of what modern technology can contribute to dramatic storytelling.,2008-01-29,22494,Titanic +Desson Thomson,rotten,0120338,Washington Post,"Titanic is a good, often stunning movie caught in a three-and-a-half hour drift.",2008-01-29,22494,Titanic +Stephen Hunter,fresh,0120338,Washington Post,This is Cameron at his best.,2008-01-29,22494,Titanic +Peter Travers,rotten,0120347,Rolling Stone,"If Connery was Sexy Bond and George Lazenby was One-Shot Bond and Roger Moore was Geezer Bond and Timothy Dalton was Bored Bond, then Brosnan should be Posh Bond.",2012-10-24,11715,Tomorrow Never Dies +Owen Gleiberman,rotten,0120347,Entertainment Weekly,Bond is just a glorified stuntman now; he's lost his license to thrill.,2011-09-07,11715,Tomorrow Never Dies +Jonathan Rosenbaum,rotten,0120347,Chicago Reader,The 18th James Bond movie features the usual saturation bombardment.,2008-11-10,11715,Tomorrow Never Dies +Susan Stark,fresh,0120347,Detroit News,,2008-10-18,11715,Tomorrow Never Dies +Todd McCarthy,fresh,0120347,Variety,A solid but somewhat by-the-numbers entry in the James Bond cycle.,2008-07-28,11715,Tomorrow Never Dies +Geoff Andrew,fresh,0120347,Time Out,"Flawed, but fantastic fun all the same.",2006-06-24,11715,Tomorrow Never Dies +Ruthe Stein,fresh,0120347,San Francisco Chronicle,Brosnan is fast becoming the second best 007 -- effortlessly competent and coolly sexy.,2002-06-18,11715,Tomorrow Never Dies +Kenneth Turan,rotten,0120347,Los Angeles Times,"Veteran director Roger Spottiswoode has tried to pep the old warhorse up, but the combined inertia of all those pictures over 35 years proves hard to budge.",2001-02-14,11715,Tomorrow Never Dies +David Denby,rotten,0120347,New York Magazine,"You won't miss a thing should you leave well before the end. If more can't be found in Bond than this, I wouldn't object, in principle, to that tuxedo's being hung up in the closet for good.",2000-01-01,11715,Tomorrow Never Dies +Charles Taylor,rotten,0120347,Salon.com,"Somebody thought it would be a nifty idea for Yeoh, who does her own stunts, to make her Hollywood debut as a Bond Girl. Too bad they weren't smart enough to think of having her make her Hollywood debut as James Bond.",2000-01-01,11715,Tomorrow Never Dies +Roger Ebert,fresh,0120347,Chicago Sun-Times,"Gets the job done, sometimes excitingly, often with style.",2000-01-01,11715,Tomorrow Never Dies +,rotten,0120347,USA Today,"Lead Pierce Brosnan seems distracted, and even the standard pre-credits production number falls flat before the main story begins.",2000-01-01,11715,Tomorrow Never Dies +James Berardinelli,fresh,0120347,ReelViews,The best Bond film in many years.,2000-01-01,11715,Tomorrow Never Dies +Janet Maslin,rotten,0120347,New York Times,"This latest film is such a generic action event that it could be any old summer blockbuster, except that its hero is chronically overdressed.",2000-01-01,11715,Tomorrow Never Dies +Jay Carr,rotten,0120347,Boston Globe,,2000-01-01,11715,Tomorrow Never Dies +,rotten,0315297,Chicago Reader,This thriller seems most interested in lingering over battered and bloodied male faces.,2007-01-05,14784,Twisted +,rotten,0315297,Time Out,Sarah Thorpe's screenplay is a compendium of by-the-book cliches; Kaufman's direction leaves the material stranded in a limbo between po-faced and trashy; Judd's approximation of drunkenness is worrying to behold.,2006-02-09,14784,Twisted +Rex Reed,rotten,0315297,New York Observer,"The outdated, cliche-riddled direction is so inept and indifferent that it's hard to believe Twisted was lensed by the same Philip Kaufman who made The Right Stuff.",2004-03-11,14784,Twisted +Jorge Morales,rotten,0315297,Village Voice,A suspense thriller without thrills or suspense.,2004-03-09,14784,Twisted +Charles Taylor,rotten,0315297,Salon.com,"Judd is let down by Twisted because tearful, confused victim doesn't come naturally to her; she's not fun to watch suffer if you can't see her calculating the payback.",2004-03-01,14784,Twisted +Richard Roeper,rotten,0315297,Ebert & Roeper,This movie plays like they were reading [Roger Ebert's] little movie glossary and they took every cliche in there.,2004-03-01,14784,Twisted +Michael O'Sullivan,rotten,0315297,Washington Post,Gives new meaning to the word 'obvious.',2004-02-27,14784,Twisted +Ann Hornaday,rotten,0315297,Washington Post,"A nasty, formulaic and unforgivably obvious procedural.",2004-02-27,14784,Twisted +Geoff Pevere,rotten,0315297,Toronto Star,Philip Kaufman's Twisted amalgamates the basic post-feminist woman-cop premises of Silence Of The Lambs and the Prime Suspect TV series so torpidly it feels less like entertainment than a community service sentence.,2004-02-27,14784,Twisted +Moira MacDonald,rotten,0315297,Seattle Times,It's all perfectly rote and only occasionally satisfying.,2004-02-27,14784,Twisted +Mick LaSalle,rotten,0315297,San Francisco Chronicle,"It begins pretty, and ends up ugly.",2004-02-27,14784,Twisted +Jay Boyar,rotten,0315297,Orlando Sentinel,The film is too simple to hold our interest for nearly two hours.,2004-02-27,14784,Twisted +Lisa Rose,rotten,0315297,Newark Star-Ledger,A chill-deficient suspense flick that shares too much common ominous ground with [Judd's] past thrillers.,2004-02-27,14784,Twisted +Lou Lumenick,rotten,0315297,New York Post,"Utterly devoid of suspense, energy or credibility.",2004-02-27,14784,Twisted +Jack Mathews,rotten,0315297,New York Daily News,"We can only regret that this is the kind of script [Kaufman's] being offered these days. Now, that's twisted.",2004-02-27,14784,Twisted +Connie Ogle,rotten,0315297,Miami Herald,Bearable but hardly riveting.,2004-02-27,14784,Twisted +Rick Groen,rotten,0315297,Globe and Mail,It's always rather sad to watch gifted performers stranded in a tepid thriller.,2004-02-27,14784,Twisted +Tom Long,rotten,0315297,Detroit News,"As titles go, Twisted doesn't go quite far enough. Convoluted might have been better. Stretched also would have worked. Ridiculous would be most appropriate.",2004-02-27,14784,Twisted +Terry Lawson,rotten,0315297,Detroit Free Press,The script is credited to Sarah Thorp but has all the hallmarks of one of those screenplays that has gotten worse with every rewrite.,2004-02-27,14784,Twisted +Robert Denerstein,rotten,0315297,Denver Rocky Mountain News,Another thriller. Another plot full of holes. Another waste of time.,2004-02-27,14784,Twisted +Lisa Schwarzbaum,rotten,0119052,Entertainment Weekly,,2011-09-07,11063,The Education of Little Tree +Emanuel Levy,fresh,0119052,Variety,"Earnest but evocative, and in moments touching, chronicle of the turbulent childhood of a Cherokee orphan during the Depression.",2006-06-26,11063,The Education of Little Tree +Jeff Strickler,none,0119052,Minneapolis Star Tribune,,2002-11-06,11063,The Education of Little Tree +,rotten,0119052,Globe and Mail,,2002-04-12,11063,The Education of Little Tree +Kevin Thomas,none,0119052,Los Angeles Times,,2001-02-14,11063,The Education of Little Tree +,none,0119052,Houston Chronicle,,2000-01-01,11063,The Education of Little Tree +Roger Ebert,fresh,0119052,Chicago Sun-Times,,2000-01-01,11063,The Education of Little Tree +Susan Stark,rotten,0119052,Detroit News,,2000-01-01,11063,The Education of Little Tree +,rotten,0119052,USA Today,,2000-01-01,11063,The Education of Little Tree +Lisa Schwarzbaum,rotten,0119925,Entertainment Weekly,,2011-09-07,13330,The Postman +Derek Adams,none,0119925,Time Out,,2006-06-24,13330,The Postman +,rotten,0119925,Globe and Mail,,2003-04-25,13330,The Postman +Jeff Strickler,none,0119925,Minneapolis Star Tribune,,2002-11-06,13330,The Postman +Kenneth Turan,none,0119925,Los Angeles Times,,2001-02-14,13330,The Postman +Joe Baltake,none,0119925,Sacramento Bee,,2000-01-01,13330,The Postman +Susan Stark,rotten,0119925,Detroit News,,2000-01-01,13330,The Postman +Stephen Holden,none,0119925,New York Times,,2000-01-01,13330,The Postman +James Berardinelli,rotten,0119925,ReelViews,,2000-01-01,13330,The Postman +Peter Stack,rotten,0119925,San Francisco Chronicle,,2000-01-01,13330,The Postman +,none,0119925,Houston Chronicle,,2000-01-01,13330,The Postman +Roger Ebert,rotten,0119925,Chicago Sun-Times,,2000-01-01,13330,The Postman +,rotten,0119925,Entertainment Weekly,,1997-12-25,13330,The Postman +Lisa Schwarzbaum,fresh,0119314,Entertainment Weekly,,2011-09-07,10133,The Horse Whisperer +Todd McCarthy,fresh,0119314,Variety,"Directing himself for the first time, Redford has lavished his usual meticulous care on popular material that comes alive on the screen in ways that it never could on the page.",2007-11-08,10133,The Horse Whisperer +Jonathan Rosenbaum,rotten,0119314,Chicago Reader,This has loads of craft and honor but never quite takes off.,2007-11-08,10133,The Horse Whisperer +Andrew Sarris,fresh,0119314,New York Observer,"We are not talking postmodern or even modern here, but the best kind of old-fashioned.",2007-04-27,10133,The Horse Whisperer +,rotten,0119314,Time Out,It's a film-maker's love letter to himself.,2006-06-24,10133,The Horse Whisperer +Kenneth Turan,rotten,0119314,Los Angeles Times,That lack of identifiable passion is The Horse Whisperer's most vexing problem.,2001-02-14,10133,The Horse Whisperer +Janet Maslin,fresh,0119314,New York Times,What The Horse Whisperer loses in storybook romance it gains in rock-solid values and a stirringly profound respect for nature...,2000-01-01,10133,The Horse Whisperer +Ruthe Stein,rotten,0119314,San Francisco Chronicle,"As good as Redford and Scott Thomas are at the outset, they can't convey the passion necessary to make the affair believable.",2000-01-01,10133,The Horse Whisperer +Stephanie Zacharek,rotten,0119314,Salon.com,Redford seems to have fooled himself into thinking the story of The Horse Whisperer runs much deeper than it does.,2000-01-01,10133,The Horse Whisperer +James Berardinelli,fresh,0119314,ReelViews,A film as rich in its visual presentation as it is in its emotional resonance.,2000-01-01,10133,The Horse Whisperer +Susan Stark,fresh,0119314,Detroit News,"...an intelligent, lush-looking tale...",2000-01-01,10133,The Horse Whisperer +Joe Baltake,fresh,0119314,Sacramento Bee,...transporting and therapeutic...,2000-01-01,10133,The Horse Whisperer +Roger Ebert,fresh,0119314,Chicago Sun-Times,...there is a magnificence in his treatment here that dignifies what is essentially a soap opera.,2000-01-01,10133,The Horse Whisperer +,fresh,0119314,USA Today,,2000-01-01,10133,The Horse Whisperer +,fresh,0119314,Entertainment Weekly,,1998-05-15,10133,The Horse Whisperer +Lisa Schwarzbaum,fresh,0120521,Entertainment Weekly,,2011-09-07,13707,The Winter Guest +Deborah Young,none,0120521,Variety,,2009-03-26,13707,The Winter Guest +,none,0120521,Time Out,,2006-01-26,13707,The Winter Guest +,fresh,0120521,Globe and Mail,,2003-04-25,13707,The Winter Guest +Jeff Strickler,none,0120521,Minneapolis Star Tribune,,2002-11-06,13707,The Winter Guest +Kevin Thomas,none,0120521,Los Angeles Times,,2001-02-14,13707,The Winter Guest +,none,0120521,Houston Chronicle,,2000-01-01,13707,The Winter Guest +James Berardinelli,fresh,0120521,ReelViews,,2000-01-01,13707,The Winter Guest +Susan Stark,rotten,0120521,Detroit News,,2000-01-01,13707,The Winter Guest +Roger Ebert,rotten,0120521,Chicago Sun-Times,,2000-01-01,13707,The Winter Guest +Ruthe Stein,none,0120521,San Francisco Chronicle,,2000-01-01,13707,The Winter Guest +Joe Baltake,none,0120521,Sacramento Bee,,2000-01-01,13707,The Winter Guest +Stanley Kauffmann,none,0120521,The New Republic,,2000-01-01,13707,The Winter Guest +Stephen Holden,none,0120521,New York Times,,2000-01-01,13707,The Winter Guest +,fresh,0120521,Entertainment Weekly,,1997-12-24,13707,The Winter Guest +Andrew Sarris,none,0119396,New York Observer,,2007-04-27,13004,Jackie Brown +David Ansen,fresh,0119396,Newsweek,"The tale is filled with funny, gritty Tarantino lowlife gab and a respectable body count, but what is most striking is the film's gallantry and sweetness.",2007-03-13,13004,Jackie Brown +Jonathan Rosenbaum,fresh,0119396,Chicago Reader,"Quentin Tarantino puts together a fairly intricate and relatively uninvolving money-smuggling plot, but his cast is so good that you probably won't feel cheated.",2007-03-13,13004,Jackie Brown +David Edelstein,fresh,0119396,Slate,The film is more Jarmusch than Peckinpah -- its soul is in the minutiae.,2007-03-13,13004,Jackie Brown +Todd McCarthy,fresh,0119396,Variety,"Offers an abundance of pleasures, especially in the realm of characterization and atmosphere.",2007-03-13,13004,Jackie Brown +Owen Gleiberman,fresh,0119396,Entertainment Weekly,It's like a scuzz-bucket film noir directed by Stanley Kubrick at his most static-mesmeric.,2007-02-27,13004,Jackie Brown +Geoff Andrew,fresh,0119396,Time Out,"Tarantino's finest, most mature movie to date.",2006-02-09,13004,Jackie Brown +David Denby,rotten,0119396,New York Magazine,"Working from an Elmore Leonard novel, Tarantino has created a gangster fiction that is never larger than life and sometimes smaller.",2004-08-07,13004,Jackie Brown +Rick Groen,fresh,0119396,Globe and Mail,"Beyond the grasp of most directors, this is tour de force stuff -- definitely meriting the price of admission and almost worth the three-year wait.",2002-04-12,13004,Jackie Brown +Kenneth Turan,rotten,0119396,Los Angeles Times,A leisurely and easygoing diversion that goes down easy enough but is far from compelling.,2001-02-14,13004,Jackie Brown +Jeff Millar,fresh,0119396,Houston Chronicle,Turns out that author Elmore Leonard and director Quentin Tarantino are not the odd couple after all.,2000-01-01,13004,Jackie Brown +Stanley Kauffmann,rotten,0119396,The New Republic,"The flat, self-exposing dud that fate often keeps in store for the initially overpraised.",2000-01-01,13004,Jackie Brown +Mike Clark,fresh,0119396,USA Today,"Between Jackson's opining and De Niro's hopeless alibis when he messes up, Jackie is good for a bundle of bloody ho-ho-hos.",2000-01-01,13004,Jackie Brown +Mick LaSalle,rotten,0119396,San Francisco Chronicle,"Scene by scene, Jackie Brown is amusing, but after two hours, it seems sluggish, and at that point still has a half-hour to go.",2000-01-01,13004,Jackie Brown +Charles Taylor,rotten,0119396,Salon.com,"[Tarantino] wanted to give Grier a role worthy of her, and he has. If only he'd given her a movie worthy of her as well.",2000-01-01,13004,Jackie Brown +Joe Baltake,fresh,0119396,Sacramento Bee,A great actor's movie.,2000-01-01,13004,Jackie Brown +James Berardinelli,fresh,0119396,ReelViews,"An entertaining diversion, but not a masterpiece.",2000-01-01,13004,Jackie Brown +Susan Stark,rotten,0119396,Detroit News,[A] surprisingly sluggish Tarantino piece.,2000-01-01,13004,Jackie Brown +Janet Maslin,rotten,0119396,New York Times,"For all its enthusiasm, this film isn't sharp enough to afford all the time it wastes on small talk, long drives, trips to the mall and favorite songs played on car radios.",2000-01-01,13004,Jackie Brown +Roger Ebert,fresh,0119396,Chicago Sun-Times,"This is the movie that proves Tarantino is the real thing, and not just a two-film wonder boy.",2000-01-01,13004,Jackie Brown +David Edelstein,fresh,0119485,Slate,"The music ties together all the pretty pictures, gives the narrative some momentum, and helps to induce a kind of alert detachment, so that you're neither especially interested nor especially bored.",2010-02-01,10521,Kundun +Owen Gleiberman,rotten,0119485,Entertainment Weekly,"Scorsese has taken the harsh mystery out of Tibetan Buddhism, and out of its oppression, too.",2010-02-01,10521,Kundun +Emanuel Levy,fresh,0119485,Variety,"Disregarding commercial considerations, Scorsese's haunting meditation on Dalai Lama's early life is a majestic spectacle of images and sounds, but it's bogged down by a routine script that fails to offer fresh insights on Tibet's non-violent culture",2006-12-20,10521,Kundun +,fresh,0119485,Time Out,"Urged on by Philip Glass's throbbing, blaring score, the director conjures a phenomenal, trance-like climax, owing more to dreams, second sight and the mind's eye than conventional dramatic rhetoric.",2006-06-24,10521,Kundun +,fresh,0119485,Globe and Mail,A great film about a good man.,2002-04-12,10521,Kundun +Kenneth Turan,rotten,0119485,Los Angeles Times,"Careful and respectful, it is everything a movie about the Dalai Lama should be except dramatically involving.",2001-02-14,10521,Kundun +Roger Ebert,fresh,0119485,Chicago Sun-Times,"I admire Kundun for being so unreservedly committed to its vision, for being willing to cut loose from audience expectations and follow its heart.",2000-01-01,10521,Kundun +Peter Stack,fresh,0119485,San Francisco Chronicle,"Stunning, odd, glorious, calm and sensationally absorbing, director Martin Scorsese's Kundun is a remarkable piece of work with vital colors and a wrenching message.",2000-01-01,10521,Kundun +Stephen Holden,fresh,0119485,New York Times,"In imagining an exalted Buddhist version of a personal road not taken, Mr. Scorsese has made a film that is as much a prayer as it is a movie.",2000-01-01,10521,Kundun +Susan Stark,fresh,0119485,Detroit News,,2000-01-01,10521,Kundun +Charles Taylor,fresh,0119485,Salon.com,"Once you settle into the pace of the movie, you experience it as a continuous flow of incidents and images.",2000-01-01,10521,Kundun +Jeff Millar,rotten,0119485,Houston Chronicle,"Kundun is ceaselessly lovely to look at. But it is also exquisitely, meticulously, intently (gulp) ... dull.",2000-01-01,10521,Kundun +James Berardinelli,rotten,0119485,ReelViews,"While Kundun boasts impressive cinematography (by Roger Deakins) and an effective score (by Philip Glass), the images and music aren't enough to hide the picture's essential hollowness.",2000-01-01,10521,Kundun +David Denby,rotten,0119485,New York Magazine,"It's an extremely beautiful, boring movie.",2000-01-01,10521,Kundun +,fresh,0119485,USA Today,"In many ways, a remarkable achievement but also a singularly undynamic entry in the director's canon",2000-01-01,10521,Kundun +Jonathan Rosenbaum,fresh,0119485,Chicago Reader,"Throughout the film cause and effect, the mainspring of most narratives, is replaced by a sense of spiritual synchronicity.",2000-01-01,10521,Kundun +Owen Gleiberman,rotten,0119718,Entertainment Weekly,,2011-09-07,11942,Mr. Magoo +Joe Leydon,rotten,0119718,Variety,"By turns frenetic and flat-footed, Mr. Magoo is an uninspired live-action comedy.",2008-05-16,11942,Mr. Magoo +Jonathan Rosenbaum,rotten,0119718,Chicago Reader,"If you really hate your kids, pack them off to this slapdash farce, whose only funny moment is the PC disclaimer at the end about the Disney company's humanist concern for blind people.",2008-05-16,11942,Mr. Magoo +Lawrence Van Gelder,rotten,0119718,New York Times,"Incomplete as a cartoon, indecisive as comedy, halting as adventure, Mr. Magoo turns out to be a shortsighted project.",2000-01-01,11942,Mr. Magoo +Jeff Millar,rotten,0119718,Houston Chronicle,"Here's where I'm supposed to suggest how the film might be better. But I can't think of anything to say other than to make the film again, with different writers and a new director.",2000-01-01,11942,Mr. Magoo +Peter Stack,rotten,0119718,San Francisco Chronicle,Only a couple of good gags in its pileup of otherwise lame jokes keep the production from being an unqualified stinker.,2000-01-01,11942,Mr. Magoo +James Berardinelli,rotten,0119718,ReelViews,"Mr. Magoo is not just an insult to the blind and near-blind, it's an insult to every human being who has the misfortune to suffer through this dreadfully unfunny, 90 minute atrocity.",2000-01-01,11942,Mr. Magoo +Susan Wloszczyna,rotten,0119718,USA Today,"If you ever wanted to know how awful a Jackie Chan movie would be without Jackie Chan, this is it.",2000-01-01,11942,Mr. Magoo +Roger Ebert,rotten,0119718,Chicago Sun-Times,Mr. Magoo is transcendently bad. It soars above ordinary badness as the eagle outreaches the fly. There is not a laugh in it. Not one.,2000-01-01,11942,Mr. Magoo +Todd McCarthy,rotten,0118715,Variety,Adds up to considerably less than the sum of its often scintillating parts.,2007-11-07,14281,The Big Lebowski +Andrew Sarris,fresh,0118715,New York Observer,The result is a lot of laughs and a feeling of awe toward the craftsmanship involved. I doubt that there'll be anything else like it the rest of this year.,2007-04-27,14281,The Big Lebowski +Geoff Andrew,fresh,0118715,Time Out,"Far from being shallow pastiche, it's actually about something: what it means to be a man, to be a friend, and to be a 'hero' for a particular time and place.",2006-06-24,14281,The Big Lebowski +Rick Groen,fresh,0118715,Globe and Mail,A typical Coen brothers film is like no film you've ever seen.,2003-04-25,14281,The Big Lebowski +Kenneth Turan,rotten,0118715,Los Angeles Times,"As tempting as it is to completely dismiss The Big Lebowski, it's hard to do because the Coens are able to create wickedly funny eccentrics and possess the ability to energize certain actors to inhabit them completely.",2001-02-14,14281,The Big Lebowski +James Berardinelli,fresh,0118715,ReelViews,"The Big Lebowski is a mess. But what a glorious, wonderfully-entertaining mess it is.",2000-01-01,14281,The Big Lebowski +Jonathan Rosenbaum,rotten,0118715,Chicago Reader,"The Dude and Sobchak begin as caricatures too, but they're allowed to grow into something deeper, if only because the humanist economy of the Coens' surrealist vaudeville allows for a couple of human beings within the tapestry of freaks.",2000-01-01,14281,The Big Lebowski +Roger Ebert,fresh,0118715,Chicago Sun-Times,"It's weirdly engaging, like its hero.",2000-01-01,14281,The Big Lebowski +,fresh,0118715,USA Today,,2000-01-01,14281,The Big Lebowski +Edward Guthmann,rotten,0118715,San Francisco Chronicle,"There are more ideas here, more wacko side characters and plot curlicues than the film can support, and inevitably it deflates from having to shoulder so much.",2000-01-01,14281,The Big Lebowski +Andrew O'Hehir,fresh,0118715,Salon.com,A genial spoof about life on the unhinged margins of L.A. that's a lot more carefully constructed than it pretends to be.,2000-01-01,14281,The Big Lebowski +Susan Stark,rotten,0118715,Detroit News,,2000-01-01,14281,The Big Lebowski +Janet Maslin,fresh,0118715,New York Times,"This plot need not be taken too seriously. Watching it amble along is enough of a treat, since the Coens populate this story with oddballs and bowling balls of such comic variety.",2000-01-01,14281,The Big Lebowski +Owen Gleiberman,fresh,0118715,Entertainment Weekly,"Nearly everything in The Big Lebowski is a put-on, and all that leaves you with is the Coens' bizarrely over-deliberate, almost Teutonic form of rib nudging.",1998-03-06,14281,The Big Lebowski +Owen Gleiberman,fresh,0118566,Entertainment Weekly,,2011-09-07,15912,Afterglow +Geoff Andrew,none,0118566,Time Out,,2006-06-24,15912,Afterglow +Emanuel Levy,fresh,0118566,Variety,"The still strkingly beautiful Julie Christie renders such as glowing performance that she alone justifies viewing this incurable, frivolous romantic serio-comedy in which she plays B-Movie actress!",2005-12-18,15912,Afterglow +Jeff Strickler,none,0118566,Minneapolis Star Tribune,,2002-11-06,15912,Afterglow +F.X. Feeney,none,0118566,L.A. Weekly,,2002-10-02,15912,Afterglow +,rotten,0118566,Globe and Mail,,2002-04-12,15912,Afterglow +Ruthe Stein,none,0118566,San Francisco Chronicle,,2000-01-01,15912,Afterglow +James Berardinelli,fresh,0118566,ReelViews,,2000-01-01,15912,Afterglow +,none,0118566,Houston Chronicle,,2000-01-01,15912,Afterglow +,rotten,0118566,USA Today,,2000-01-01,15912,Afterglow +Roger Ebert,fresh,0118566,Chicago Sun-Times,How mysterious and intriguing some performances can be.,2000-01-01,15912,Afterglow +Joe Baltake,none,0118566,Sacramento Bee,,2000-01-01,15912,Afterglow +Susan Stark,fresh,0118566,Detroit News,,2000-01-01,15912,Afterglow +Janet Maslin,none,0118566,New York Times,,2000-01-01,15912,Afterglow +,fresh,0118566,Entertainment Weekly,,1997-12-26,15912,Afterglow +Phil Gallo,none,0119590,Variety,,2012-02-23,14019,Ma vie en rose +Owen Gleiberman,fresh,0119590,Entertainment Weekly,,2011-09-07,14019,Ma vie en rose +Lisa Nesselson,none,0119590,Variety,,2008-10-18,14019,Ma vie en rose +Derek Adams,none,0119590,Time Out,,2006-02-09,14019,Ma vie en rose +,fresh,0119590,Globe and Mail,,2002-04-12,14019,Ma vie en rose +,none,0119590,Houston Chronicle,,2000-01-01,14019,Ma vie en rose +Stanley Kauffmann,none,0119590,The New Republic,,2000-01-01,14019,Ma vie en rose +Mick LaSalle,fresh,0119590,San Francisco Chronicle,,2000-01-01,14019,Ma vie en rose +Joe Baltake,none,0119590,Sacramento Bee,,2000-01-01,14019,Ma vie en rose +Stephen Holden,none,0119590,New York Times,,2000-01-01,14019,Ma vie en rose +James Berardinelli,fresh,0119590,ReelViews,,2000-01-01,14019,Ma vie en rose +Roger Ebert,fresh,0119590,Chicago Sun-Times,,2000-01-01,14019,Ma vie en rose +,fresh,0119590,Entertainment Weekly,,1997-12-26,14019,Ma vie en rose +Todd McCarthy,none,0119223,Variety,,2008-12-31,13258,Great Expectations +Derek Adams,none,0119223,Time Out,,2006-02-09,13258,Great Expectations +Jeff Strickler,none,0119223,Minneapolis Star Tribune,,2002-11-06,13258,Great Expectations +Ruthe Stein,rotten,0119223,San Francisco Chronicle,,2002-06-18,13258,Great Expectations +,fresh,0119223,Globe and Mail,,2002-04-12,13258,Great Expectations +Kenneth Turan,none,0119223,Los Angeles Times,,2001-02-14,13258,Great Expectations +Joe Baltake,none,0119223,Sacramento Bee,,2000-01-01,13258,Great Expectations +Stanley Kauffmann,none,0119223,The New Republic,,2000-01-01,13258,Great Expectations +James Berardinelli,fresh,0119223,ReelViews,,2000-01-01,13258,Great Expectations +Janet Maslin,none,0119223,New York Times,,2000-01-01,13258,Great Expectations +Susan Stark,rotten,0119223,Detroit News,,2000-01-01,13258,Great Expectations +,none,0119223,Houston Chronicle,,2000-01-01,13258,Great Expectations +Charles Taylor,none,0119223,Salon.com,,2000-01-01,13258,Great Expectations +,rotten,0119223,USA Today,,2000-01-01,13258,Great Expectations +Roger Ebert,fresh,0119223,Chicago Sun-Times,,2000-01-01,13258,Great Expectations +,rotten,0119223,Entertainment Weekly,,1998-01-30,13258,Great Expectations +Joe Leydon,none,0118539,Variety,,2009-03-26,12347,3 Ninjas: High Noon at Mega Mountain +,none,0118539,L.A. Weekly,,2005-03-16,12347,3 Ninjas: High Noon at Mega Mountain +,none,0118539,Los Angeles Times,,2001-05-03,12347,3 Ninjas: High Noon at Mega Mountain +Anita Gates,none,0118539,New York Times,,2000-01-01,12347,3 Ninjas: High Noon at Mega Mountain +Peter Stack,rotten,0118539,San Francisco Chronicle,,2000-01-01,12347,3 Ninjas: High Noon at Mega Mountain +Leonard Klady,none,0119988,Variety,,2009-03-26,15473,Caught Up +Lawrence Van Gelder,none,0119988,New York Times,,2003-05-20,15473,Caught Up +Susan Stark,rotten,0119988,Detroit News,,2000-01-01,15473,Caught Up +Roger Ebert,rotten,0119988,Chicago Sun-Times,,2000-01-01,15473,Caught Up +,none,0119988,Houston Chronicle,,2000-01-01,15473,Caught Up +Joe Baltake,none,0119988,Sacramento Bee,,2000-01-01,15473,Caught Up +James Berardinelli,rotten,0119988,ReelViews,,2000-01-01,15473,Caught Up +Daniel M. Kimmel,fresh,0129758,Variety,"Film is a fascinating documentation of an important chapter in the history of 20th century American intellectuals, but as such will have a limited audience.",2005-04-27,20431,Arguing the World +,none,0129758,Los Angeles Times,,2001-02-14,20431,Arguing the World +Stanley Kauffmann,none,0129758,The New Republic,,2000-01-01,20431,Arguing the World +David Denby,none,0129758,New York Magazine,,2000-01-01,20431,Arguing the World +Stephen Holden,none,0129758,New York Times,,2000-01-01,20431,Arguing the World +Joe Leydon,none,0120670,Variety,,2009-03-26,16232,Firestorm +,rotten,0120670,Entertainment Weekly,,2008-12-17,16232,Firestorm +Liam Lacey,rotten,0120670,Globe and Mail,"In movies, as in life, you take your warmth where you can find it, but this particular wienie roast is bound to leave you cold.",2002-04-12,16232,Firestorm +Kevin Thomas,none,0120670,Los Angeles Times,,2001-02-14,16232,Firestorm +Stephen Holden,none,0120670,New York Times,,2000-01-01,16232,Firestorm +James Berardinelli,rotten,0120670,ReelViews,,2000-01-01,16232,Firestorm +Peter Stack,rotten,0120670,San Francisco Chronicle,,2000-01-01,16232,Firestorm +,rotten,0120670,USA Today,,2000-01-01,16232,Firestorm +Owen Gleiberman,rotten,0120820,Entertainment Weekly,,2011-09-07,15497,Senseless +,rotten,0120820,Entertainment Weekly,,2010-12-25,15497,Senseless +Todd McCarthy,none,0120820,Variety,,2008-10-18,15497,Senseless +Jeff Strickler,none,0120820,Minneapolis Star Tribune,,2002-11-06,15497,Senseless +,none,0120820,Globe and Mail,,2002-07-12,15497,Senseless +Kevin Thomas,none,0120820,Los Angeles Times,,2001-02-14,15497,Senseless +Joe Baltake,none,0120820,Sacramento Bee,,2000-01-01,15497,Senseless +,none,0120820,Houston Chronicle,,2000-01-01,15497,Senseless +Janet Maslin,none,0120820,New York Times,,2000-01-01,15497,Senseless +Susan Stark,rotten,0120820,Detroit News,,2000-01-01,15497,Senseless +,rotten,0120820,USA Today,,2000-01-01,15497,Senseless +Roger Ebert,rotten,0120820,Chicago Sun-Times,,2000-01-01,15497,Senseless +Mick LaSalle,none,0120820,San Francisco Chronicle,,2000-01-01,15497,Senseless +Jonathan Rosenbaum,fresh,0120885,Chicago Reader,Hilary Henkin and David Mamet's script is gleefully hyperbolic without ever straying from its political target.,2009-03-30,13237,Wag the Dog +,rotten,0120885,Time Out,"Lazily assembled by director Levinson, it slides into a series of soft, extended skits on engineering a media war, not helped by several badly handled leaps in the story.",2006-01-26,13237,Wag the Dog +Rick Groen,fresh,0120885,Globe and Mail,"Amusing as it is, Wag The Dog does what it purports to sat irize -- the bark is real but the teeth aren't.",2002-04-12,13237,Wag the Dog +Godfrey Cheshire,fresh,0120885,Variety,"The pacing is crisp, the dialogue quippy and fast, the tone arch but energetic.",2001-02-14,13237,Wag the Dog +Kenneth Turan,fresh,0120885,Los Angeles Times,"A wicked smart satire on the interlocking worlds of politics and show business, Wag the Dog confirms every awful thought you've ever had about media manipulation and the gullibility of the American public.",2001-02-14,13237,Wag the Dog +Lucy Mohl,rotten,0120885,Film.com,"When the film makes the leap from plausibly outrageous to pure satire, it slips, and the logic goes with it.",2000-01-01,13237,Wag the Dog +Janet Maslin,fresh,0120885,New York Times,"Swift, hilarious and impossible to resist.",2000-01-01,13237,Wag the Dog +Gene Siskel,fresh,0120885,Chicago Tribune,A bright idea well realized by director Barry Levinson.,2000-01-01,13237,Wag the Dog +Mick LaSalle,fresh,0120885,San Francisco Chronicle,"Between the laughs, there are moments that ring so true they can raise goosebumps.",2000-01-01,13237,Wag the Dog +James Berardinelli,fresh,0120885,ReelViews,"The movie is intelligent, but it's also a lot of fun.",2000-01-01,13237,Wag the Dog +Richard Schickel,fresh,0120885,TIME Magazine,"Director Barry Levinson and writers Hilary Henkin and David Mamet (no less) have obviously known their share of Stanleys, and we have no trouble believing in him.",2000-01-01,13237,Wag the Dog +David Denby,fresh,0120885,New York Magazine,"The picture conveys an irresistible pleasure in fakery for its own sake, and that's its charm.",2000-01-01,13237,Wag the Dog +Joe Baltake,fresh,0120885,Sacramento Bee,"Wicked, poisonous fun.",2000-01-01,13237,Wag the Dog +Sean Means,fresh,0120885,Film.com,Wag the Dog has the confidence to let its own jaded view speak volumes for itself.,2000-01-01,13237,Wag the Dog +John Hartl,fresh,0120885,Film.com,"Wag the Dog could have been a one-joke scenario, but it's consistently rescued from monotony by a smart script.",2000-01-01,13237,Wag the Dog +Roger Ebert,fresh,0120885,Chicago Sun-Times,Absurd and convincing at the same time.,2000-01-01,13237,Wag the Dog +Andrew O'Hehir,fresh,0120885,Salon.com,Packed full of wickedly amusing details and expertly modulated performances.,2000-01-01,13237,Wag the Dog +Owen Gleiberman,fresh,0120885,Entertainment Weekly,A very classy act of nose thumbing.,2000-01-01,13237,Wag the Dog +Mike Clark,rotten,0120885,USA Today,"With this cast, Dog could use a much bigger bite.",2000-01-01,13237,Wag the Dog +Susan Stark,fresh,0120885,Detroit News,Wag the Dog nonetheless makes a perfect bookend piece for Network.,2000-01-01,13237,Wag the Dog +Derek Elley,none,0116845,Variety,,2009-03-26,14203,The Leading Man +Geoff Andrew,none,0116845,Time Out,,2006-02-09,14203,The Leading Man +Jeff Strickler,none,0116845,Minneapolis Star Tribune,,2002-11-06,14203,The Leading Man +Kevin Thomas,none,0116845,Los Angeles Times,,2001-02-14,14203,The Leading Man +,none,0116845,New York Times,,2000-01-01,14203,The Leading Man +Joe Baltake,none,0116845,Sacramento Bee,,2000-01-01,14203,The Leading Man +Roger Ebert,fresh,0116845,Chicago Sun-Times,"Begins as a backstage story about the London theater world, and then a little Hitchcockian intrigue edges into the frame.",2000-01-01,14203,The Leading Man +,fresh,0116845,Entertainment Weekly,,1998-03-06,14203,The Leading Man +Lael Loewenstein,none,0120478,Variety,,2009-03-26,12437,Star Kid +Derek Adams,none,0120478,Time Out,,2006-06-24,12437,Star Kid +Anita Gates,none,0120478,New York Times,,2003-05-20,12437,Star Kid +Jeff Strickler,none,0120478,Minneapolis Star Tribune,,2002-11-06,12437,Star Kid +Kevin Thomas,none,0120478,Los Angeles Times,,2001-02-14,12437,Star Kid +Susan Stark,rotten,0120478,Detroit News,,2000-01-01,12437,Star Kid +Peter Stack,none,0120478,San Francisco Chronicle,,2000-01-01,12437,Star Kid +James Berardinelli,rotten,0120478,ReelViews,,2000-01-01,12437,Star Kid +Joe Baltake,none,0120478,Sacramento Bee,,2000-01-01,12437,Star Kid +Roger Ebert,fresh,0120478,Chicago Sun-Times,,2000-01-01,12437,Star Kid +Brendan Kelly,none,0120693,Variety,,2009-03-26,15071,Half Baked +Peter Travers,rotten,0120693,Rolling Stone,,2007-08-14,15071,Half Baked +Lawrence Van Gelder,none,0120693,New York Times,,2003-05-20,15071,Half Baked +Bob Heisler,none,0120693,Los Angeles Times,,2001-02-14,15071,Half Baked +Susan Stark,rotten,0120693,Detroit News,,2000-01-01,15071,Half Baked +Lisa Schwarzbaum,rotten,0119099,Entertainment Weekly,,2011-09-07,13474,Fallen +Emanuel Levy,rotten,0119099,Variety,Denzel Washington has the almost impossible task of holding together a convoluted picture that's only intermittently suspenseful and not very engaging emotionally or intellectually.,2008-01-11,13474,Fallen +Lisa Alspector,rotten,0119099,Chicago Reader,"The first half of this movie holds some promise, but time is not on its side.",2008-01-11,13474,Fallen +,fresh,0119099,Time Out,"God (or the Devil) is in the detail: every time a fluid is taken into the body, the fidgety camera zooms in, fascinated, suspicious.",2006-01-26,13474,Fallen +Janet Maslin,fresh,0119099,New York Times,A stylish if seriously far-fetched nightmare.,2003-05-20,13474,Fallen +Jack Mathews,fresh,0119099,Los Angeles Times,"A crafty piece of work, ending with a pair of marvelous twists.",2002-09-26,13474,Fallen +Rick Groen,rotten,0119099,Globe and Mail,A human trifle that can be safely ignored in this eschatological genre.,2002-04-12,13474,Fallen +Joe Baltake,rotten,0119099,Sacramento Bee,This film is essentially God Told Me To with a new paint job.,2000-01-01,13474,Fallen +Jeff Millar,fresh,0119099,Houston Chronicle,"If you have an interest in capital-letter Good and Evil, in the abstract-theological sense, Fallen could engross you.",2000-01-01,13474,Fallen +Susan Stark,rotten,0119099,Detroit News,Unfortunately the film wafts toward Seven turf soon afterward and stalls on a heavy burden of metaphysical chitchat. Washington's dazzling good looks are the only reason to stick with it.,2000-01-01,13474,Fallen +Roger Ebert,rotten,0119099,Chicago Sun-Times,The idea is better than the execution.,2000-01-01,13474,Fallen +James Berardinelli,fresh,0119099,ReelViews,"Despite the negatives, I'm still recommending Fallen on the strength of its complex plot and especially its ending, which I loved.",2000-01-01,13474,Fallen +Mick LaSalle,fresh,0119099,San Francisco Chronicle,"Fallen is not perfect, and eventually it even becomes frustrating. Threads remain loose, and the movie doesn't fully exploit its premise. Still, it would be churlish not to appreciate the ride.",2000-01-01,13474,Fallen +Mike Clark,rotten,0119099,USA Today,An unholy union between Seven and The Exorcist.,2000-01-01,13474,Fallen +,rotten,0119099,Entertainment Weekly,,1997-06-01,13474,Fallen +Derek Elley,none,0120122,Variety,,2009-03-26,147050978,Shooting Fish +Derek Adams,none,0120122,Time Out,,2006-02-09,147050978,Shooting Fish +Jeff Strickler,none,0120122,Minneapolis Star Tribune,,2002-11-06,147050978,Shooting Fish +,rotten,0120122,Globe and Mail,,2002-04-12,147050978,Shooting Fish +,none,0120122,Los Angeles Times,,2001-02-14,147050978,Shooting Fish +Joe Baltake,none,0120122,Sacramento Bee,,2000-01-01,147050978,Shooting Fish +Mick LaSalle,rotten,0120122,San Francisco Chronicle,,2000-01-01,147050978,Shooting Fish +Stephen Holden,none,0120122,New York Times,,2000-01-01,147050978,Shooting Fish +James Berardinelli,rotten,0120122,ReelViews,,2000-01-01,147050978,Shooting Fish +Susan Stark,fresh,0120122,Detroit News,,2000-01-01,147050978,Shooting Fish +,rotten,0120122,Entertainment Weekly,,1998-05-01,147050978,Shooting Fish +David Fear,fresh,0112913,Time Out New York,,2008-01-18,21874,Duo luo tian shi +,none,0112913,Time Out,,2007-01-20,21874,Duo luo tian shi +Kevin Thomas,fresh,0112913,Los Angeles Times,"An exhilarating rush of a movie, with all manner of go-for-broke visual bravura that expresses perfectly the free spirits of [Wong's] bold young people.",2001-02-14,21874,Duo luo tian shi +Roger Ebert,fresh,0112913,Chicago Sun-Times,I felt transported back to the 1960s films of Jean-Luc Godard. I was watching a film that was not afraid of its audience.,2000-01-01,21874,Duo luo tian shi +Edward Guthmann,fresh,0112913,San Francisco Chronicle,"Wong brings tremendous vigor and audacity to the effort, asking us to question the most basic rules of storytelling and commercial filmmaking.",2000-01-01,21874,Duo luo tian shi +Stephen Holden,fresh,0112913,New York Times,A densely packed suite of zany vignettes that have the autonomy of pop songs or stand-up comic riffs.,2000-01-01,21874,Duo luo tian shi +Owen Gleiberman,fresh,0119815,Entertainment Weekly,,2011-09-07,15903,"O Que É Isso, Companheiro?" +,fresh,0119815,Entertainment Weekly,,2010-12-25,15903,"O Que É Isso, Companheiro?" +Joe Leydon,none,0119815,Variety,,2009-04-02,15903,"O Que É Isso, Companheiro?" +,none,0119815,Time Out,,2006-01-26,15903,"O Que É Isso, Companheiro?" +,fresh,0119815,Globe and Mail,,2002-04-12,15903,"O Que É Isso, Companheiro?" +Jack Mathews,none,0119815,Los Angeles Times,,2001-02-14,15903,"O Que É Isso, Companheiro?" +Stephen Holden,none,0119815,New York Times,,2000-01-01,15903,"O Que É Isso, Companheiro?" +Peter Stack,none,0119815,San Francisco Chronicle,,2000-01-01,15903,"O Que É Isso, Companheiro?" +Roger Ebert,rotten,0119815,Chicago Sun-Times,,2000-01-01,15903,"O Que É Isso, Companheiro?" +Joe Baltake,none,0119815,Sacramento Bee,,2000-01-01,15903,"O Que É Isso, Companheiro?" +,rotten,0119815,USA Today,,2000-01-01,15903,"O Que É Isso, Companheiro?" +James Berardinelli,fresh,0119815,ReelViews,,2000-01-01,15903,"O Que É Isso, Companheiro?" +Susan Stark,rotten,0119815,Detroit News,,2000-01-01,15903,"O Que É Isso, Companheiro?" +,none,0119815,Houston Chronicle,,2000-01-01,15903,"O Que É Isso, Companheiro?" +Derek Elley,none,0120185,Variety,,2008-07-22,56789082,Spice World +Derek Adams,none,0120185,Time Out,,2006-06-24,56789082,Spice World +Jeff Strickler,none,0120185,Minneapolis Star Tribune,,2002-11-06,56789082,Spice World +Peter Stack,fresh,0120185,San Francisco Chronicle,,2002-06-18,56789082,Spice World +,rotten,0120185,Globe and Mail,,2002-04-12,56789082,Spice World +,none,0120185,Los Angeles Times,,2001-02-14,56789082,Spice World +James Berardinelli,rotten,0120185,ReelViews,,2000-01-01,56789082,Spice World +Susan Stark,rotten,0120185,Detroit News,,2000-01-01,56789082,Spice World +Roger Ebert,rotten,0120185,Chicago Sun-Times,,2000-01-01,56789082,Spice World +Joe Baltake,none,0120185,Sacramento Bee,,2000-01-01,56789082,Spice World +Lori Leibovich,none,0120185,Salon.com,,2000-01-01,56789082,Spice World +,rotten,0120185,USA Today,,2000-01-01,56789082,Spice World +Janet Maslin,none,0120185,New York Times,,2000-01-01,56789082,Spice World +,rotten,0120185,Entertainment Weekly,,1998-01-23,56789082,Spice World +Leonard Klady,none,0118956,Variety,,2009-03-26,13842,Deep Rising +,none,0118956,Time Out,,2006-01-26,13842,Deep Rising +Jeff Strickler,none,0118956,Minneapolis Star Tribune,,2002-11-06,13842,Deep Rising +,rotten,0118956,Globe and Mail,,2002-04-12,13842,Deep Rising +Kevin Thomas,none,0118956,Los Angeles Times,,2001-02-14,13842,Deep Rising +Joe Baltake,none,0118956,Sacramento Bee,,2000-01-01,13842,Deep Rising +,rotten,0118956,USA Today,,2000-01-01,13842,Deep Rising +James Berardinelli,rotten,0118956,ReelViews,,2000-01-01,13842,Deep Rising +Roger Ebert,rotten,0118956,Chicago Sun-Times,,2000-01-01,13842,Deep Rising +Lawrence Van Gelder,none,0118956,New York Times,,2000-01-01,13842,Deep Rising +Susan Stark,rotten,0118956,Detroit News,,2000-01-01,13842,Deep Rising +,none,0118956,Houston Chronicle,,2000-01-01,13842,Deep Rising +Mick LaSalle,none,0118956,San Francisco Chronicle,,2000-01-01,13842,Deep Rising +,fresh,0118956,Entertainment Weekly,,1998-01-30,13842,Deep Rising +Jeff Strickler,none,0119734,Minneapolis Star Tribune,,2002-11-06,11267,Music from Another Room +Lisa Schwarzbaum,rotten,0120008,Entertainment Weekly,,2011-09-07,14146,The Replacement Killers +Geoff Andrew,none,0120008,Time Out,,2006-06-24,14146,The Replacement Killers +,rotten,0120008,Globe and Mail,,2003-04-25,14146,The Replacement Killers +,none,0120008,Los Angeles Times,,2001-02-14,14146,The Replacement Killers +Edward Guthmann,none,0120008,San Francisco Chronicle,,2000-01-01,14146,The Replacement Killers +Stephanie Zacharek,none,0120008,Salon.com,,2000-01-01,14146,The Replacement Killers +Joe Baltake,none,0120008,Sacramento Bee,,2000-01-01,14146,The Replacement Killers +Stephen Holden,none,0120008,New York Times,,2000-01-01,14146,The Replacement Killers +,none,0120008,Houston Chronicle,,2000-01-01,14146,The Replacement Killers +James Berardinelli,rotten,0120008,ReelViews,,2000-01-01,14146,The Replacement Killers +Roger Ebert,fresh,0120008,Chicago Sun-Times,,2000-01-01,14146,The Replacement Killers +Susan Stark,fresh,0120008,Detroit News,,2000-01-01,14146,The Replacement Killers +,fresh,0120008,USA Today,,2000-01-01,14146,The Replacement Killers +,rotten,0120008,Entertainment Weekly,,1998-02-06,14146,The Replacement Killers +Owen Gleiberman,fresh,0120594,Entertainment Weekly,,2011-09-07,14079,B. Monkey +Derek Elley,none,0120594,Variety,,2008-07-28,14079,B. Monkey +,none,0120594,Time Out,,2006-06-24,14079,B. Monkey +Kevin Thomas,rotten,0120594,Los Angeles Times,,2001-02-14,14079,B. Monkey +Jessica Winter,none,0120594,Village Voice,,2000-01-01,14079,B. Monkey +Anita Gates,rotten,0120594,New York Times,,2000-01-01,14079,B. Monkey +,fresh,0120594,Entertainment Weekly,,1999-09-10,14079,B. Monkey +Lael Loewenstein,none,0119784,Variety,,2009-02-26,13591,The Night Flier +Kevin Thomas,none,0119784,Los Angeles Times,,2001-02-14,13591,The Night Flier +,none,0119784,Houston Chronicle,,2000-01-01,13591,The Night Flier +Stephen Holden,none,0119784,New York Times,,2000-01-01,13591,The Night Flier +,rotten,0119784,Entertainment Weekly,,1998-02-06,13591,The Night Flier +Owen Gleiberman,rotten,0118747,Entertainment Weekly,,2011-09-07,10594,Blues Brothers 2000 +Joe Leydon,rotten,0118747,Variety,"The sequel offers more of the same, only less.",2008-05-18,10594,Blues Brothers 2000 +,rotten,0118747,Time Out,"This isn't a sequel, it's a remake.",2006-06-24,10594,Blues Brothers 2000 +Rick Groen,rotten,0118747,Globe and Mail,"Once upon a time, it was funny.",2002-04-12,10594,Blues Brothers 2000 +Lawrence Van Gelder,fresh,0118747,New York Times,"Once the new sequel gets past its cumbersome plotting and gets down to its music, it overrides the temptation to suggest buying the soundtrack recording and forgetting the rest.",2000-01-01,10594,Blues Brothers 2000 +Susan Stark,fresh,0118747,Detroit News,,2000-01-01,10594,Blues Brothers 2000 +Roger Ebert,rotten,0118747,Chicago Sun-Times,"'I always thought there was another story to be told,' Landis says in the film's notes. Fine; then tell one.",2000-01-01,10594,Blues Brothers 2000 +Bruce Westbrook,fresh,0118747,Houston Chronicle,It's a pity the film doesn't respect the art of acting as much as that of music.,2000-01-01,10594,Blues Brothers 2000 +,rotten,0118747,USA Today,,2000-01-01,10594,Blues Brothers 2000 +Mick LaSalle,rotten,0118747,San Francisco Chronicle,It makes an audience pay for every two seconds of pleasure with 10 seconds of pain.,2000-01-01,10594,Blues Brothers 2000 +James Berardinelli,fresh,0118747,ReelViews,"Blues Brothers 2000 isn't anywhere close to the landmark its predecessor was, but it's still enjoyable.",2000-01-01,10594,Blues Brothers 2000 +,rotten,0118747,Entertainment Weekly,,1997-06-01,10594,Blues Brothers 2000 +David Rooney,none,0114690,Variety,,2009-03-26,770678551,Tokyo Fist +Geoff Andrew,none,0114690,Time Out,,2006-09-30,770678551,Tokyo Fist +Lawrence Van Gelder,none,0114690,New York Times,,2000-01-01,770678551,Tokyo Fist +,none,0070948,Variety,,2009-02-20,13403,Zardoz +Geoff Andrew,none,0070948,Time Out,,2006-02-09,13403,Zardoz +Nora Sayre,none,0070948,New York Times,,2005-05-09,13403,Zardoz +Roger Ebert,rotten,0070948,Chicago Sun-Times,,2004-10-23,13403,Zardoz +Ronnie Scheib,none,0206314,Variety,,2012-02-23,13917,Joy Ride +Geoff Andrew,none,0206314,Time Out,,2006-06-24,13917,Joy Ride +Peter Travers,fresh,0206314,Rolling Stone,"If you're looking to have your nerves fried and your pulse pounded, this is your ticket to ride.",2001-10-29,13917,Joy Ride +,none,0206314,Ebert & Roeper,,2001-10-12,13917,Joy Ride +Stephanie Zacharek,fresh,0206314,Salon.com,"Dahl works the audience like the dial of a car radio, testing out all manner of squeals and static and all-out, high-pitched terror.",2001-10-12,13917,Joy Ride +Desson Thomson,fresh,0206314,Washington Post,Climb into this rig and you'll be sweating bullets.,2001-10-05,13917,Joy Ride +,none,0206314,St. Louis Post-Dispatch,,2001-10-05,13917,Joy Ride +Michael Rechtshaffen,fresh,0206314,Hollywood Reporter,It's encouraging to see more than passing attention paid to character development.,2001-10-05,13917,Joy Ride +Stephen Hunter,fresh,0206314,Washington Post,"Expertly toys with the fear any carbon-based life-form feels when one of those Peterbilt express trains comes rolling by with a thundercrack of vibration at about 240 mph, gently urging us to move right or die crushed and bleeding.",2001-10-05,13917,Joy Ride +Geoff Pevere,fresh,0206314,Toronto Star,"It attains its modest ambitions with dispatch and wit, and without ever lifting its foot from the pedal.",2001-10-05,13917,Joy Ride +Moira MacDonald,fresh,0206314,Seattle Times,Dahl permeates the film with enough quirky detail ... and horror-movie staples ... to keep things interesting.,2001-10-05,13917,Joy Ride +Joe Baltake,fresh,0206314,Sacramento Bee,Falls a tad short of being a minor movie classic along the lines of Spielberg's film.,2001-10-05,13917,Joy Ride +John Anderson,fresh,0206314,Newsday,"A genuine thriller, guaranteed to whiten knuckles, grind enamel and render armrests into scrap.",2001-10-05,13917,Joy Ride +A.O. Scott,fresh,0206314,New York Times,"Much more effectively terrifying than the usual overplotted, underwritten Hollywood thriller.",2001-10-05,13917,Joy Ride +Lou Lumenick,fresh,0206314,New York Post,Anyone actually looking for a genuinely scary movie at this point will have a lot of fun with Joy Ride.,2001-10-05,13917,Joy Ride +Kevin Thomas,fresh,0206314,Los Angeles Times,"Terrific escapist fare, stylish, outrageous and compelling.",2001-10-05,13917,Joy Ride +Eric Harrison,rotten,0206314,Houston Chronicle,Dahl and his screenwriters spoil it by turning the trucker and his rig into a metallic-sheathed monster willing and able to do anything to get back at his enemies.,2001-10-05,13917,Joy Ride +Terry Lawson,fresh,0206314,Detroit Free Press,Lives up to its title.,2001-10-05,13917,Joy Ride +Mick LaSalle,fresh,0206314,San Francisco Chronicle,"No one wins awards for movies like this, but this is escapist entertainment raised to the level of art.",2001-10-05,13917,Joy Ride +Jay Boyar,fresh,0206314,Orlando Sentinel,Zahn's hilariously electric performance is the best thing in the movie.,2001-10-05,13917,Joy Ride +Leonard Klady,fresh,0120888,Variety,"Supporting players are uniformly strong, and Coraci deserves much credit for exacting just the right degree of outrageousness without spinning into some wild orbit.",2008-06-01,10214,The Wedding Singer +,fresh,0120888,Time Out,You can't help pulling for the kids.,2006-01-26,10214,The Wedding Singer +Liam Lacey,fresh,0120888,Globe and Mail,"Finally, an Adam Sandler comedy that you can sit through without wanting to throw a mallet through the screen.",2002-07-12,10214,The Wedding Singer +Ruthe Stein,fresh,0120888,San Francisco Chronicle,"As Robbie Hart, a former lead singer in a rock band reduced to performing at weddings, Sandler goes for more than the easy laughs.",2002-06-18,10214,The Wedding Singer +Kevin Thomas,fresh,0120888,Los Angeles Times,"A sparkling romantic comedy, the kind of picture that glides by so gracefully and unpretentiously that it's only upon reflection that you realize how much skill, caring and good judgment had to have gone into its making.",2001-02-14,10214,The Wedding Singer +Janet Maslin,fresh,0120888,New York Times,"Hokey as Robbie and Julia's courtship turns out to be, Mr. Sandler really does draw some empathy for his character's lonely plight.",2000-01-01,10214,The Wedding Singer +Stephanie Zacharek,fresh,0120888,Salon.com,"Ridiculous and surprisingly likable -- sweet, silly and light as a soap bubble.",2000-01-01,10214,The Wedding Singer +David Denby,rotten,0120888,New York Magazine,"The movie is a tame affair, shot on calm, manicured streets; the interiors are decorated in pastels.",2000-01-01,10214,The Wedding Singer +Susan Stark,fresh,0120888,Detroit News,,2000-01-01,10214,The Wedding Singer +James Berardinelli,rotten,0120888,ReelViews,"This movie is sickeningly sweet, and only a die-hard romantic or an avowed Adam Sandler fan will be able to sit through the ninety-five minute feature without going into sugar shock.",2000-01-01,10214,The Wedding Singer +Roger Ebert,rotten,0120888,Chicago Sun-Times,"One of the sad byproducts of the dumbing-down of America is that we're now forced to witness the goofy plots of the 1930s played sincerely, as if they were really deep.",2000-01-01,10214,The Wedding Singer +,rotten,0120888,USA Today,,2000-01-01,10214,The Wedding Singer +Owen Gleiberman,fresh,0120888,Entertainment Weekly,"In essence, The Wedding Singer is a K-Tel hits package posing as a movie.",1997-06-01,10214,The Wedding Singer +Lisa Schwarzbaum,rotten,0120184,Entertainment Weekly,,2011-09-07,11101,Sphere +Todd McCarthy,rotten,0120184,Variety,An empty shell.,2008-08-05,11101,Sphere +Derek Adams,rotten,0120184,Time Out,"Three major stars being involved, it all wraps up happily but implausibly.",2006-06-24,11101,Sphere +Jeff Strickler,none,0120184,Minneapolis Star Tribune,,2002-11-06,11101,Sphere +Mick LaSalle,rotten,0120184,San Francisco Chronicle,"The ending, though emotionally satisfying, collapses under scrutiny. This lack of payoff is a real flaw in a film pitched to a discriminating sci-fi mentality.",2002-06-18,11101,Sphere +Rick Groen,rotten,0120184,Globe and Mail,"Given its situational premise -- outer space goes underwater -- Sphere is filled with visual potential, yet Levinson can't tap it. He's just a whole lot more comfortable trying to tame the human software than the technical hardware.",2002-04-12,11101,Sphere +Kenneth Turan,rotten,0120184,Los Angeles Times,"As the umpteenth entrant in the We-Are-Not-Alone sweepstakes, Sphere feels awfully familiar because it is.",2001-02-14,11101,Sphere +Susan Stark,rotten,0120184,Detroit News,,2000-01-01,11101,Sphere +Janet Maslin,fresh,0120184,New York Times,"While this is no quick-witted treat on a par with Mr. Levinson's Wag the Dog, it's a solid thriller with showy scientific overtones.",2000-01-01,11101,Sphere +Joe Baltake,none,0120184,Sacramento Bee,,2000-01-01,11101,Sphere +James Berardinelli,rotten,0120184,ReelViews,"Somewhere out there, maybe there's a small cadre of film-goers who will appreciate Sphere's dubious charms, but I'm not among them.",2000-01-01,11101,Sphere +,rotten,0120184,USA Today,,2000-01-01,11101,Sphere +Charles Taylor,rotten,0120184,Salon.com,Sphere winds up just a load of balls.,2000-01-01,11101,Sphere +Roger Ebert,rotten,0120184,Chicago Sun-Times,"The only excellence is in the acting, and even then the screenplay puts the characters through so many U-turns that dramatic momentum is impossible.",2000-01-01,11101,Sphere +David Denby,rotten,0120184,New York Magazine,There are some things that humankind is just better off not knowing about.,2000-01-01,11101,Sphere +,rotten,0120184,Entertainment Weekly,,1998-02-13,11101,Sphere +Owen Gleiberman,fresh,0118662,Entertainment Weekly,,2011-09-07,19857,Ayn Rand: A Sense of Life +Todd McCarthy,none,0118662,Variety,,2009-03-26,19857,Ayn Rand: A Sense of Life +,rotten,0118662,Globe and Mail,,2004-01-23,19857,Ayn Rand: A Sense of Life +,none,0118662,Los Angeles Times,,2001-02-14,19857,Ayn Rand: A Sense of Life +Mick LaSalle,fresh,0118662,San Francisco Chronicle,,2000-01-01,19857,Ayn Rand: A Sense of Life +,none,0118662,Houston Chronicle,,2000-01-01,19857,Ayn Rand: A Sense of Life +Janet Maslin,none,0118662,New York Times,,2000-01-01,19857,Ayn Rand: A Sense of Life +Joe Baltake,none,0118662,Sacramento Bee,,2000-01-01,19857,Ayn Rand: A Sense of Life +Jonathan Rosenbaum,rotten,0118662,Chicago Reader,,2000-01-01,19857,Ayn Rand: A Sense of Life +Kevin Thomas,none,0116379,Los Angeles Times,,2003-04-10,771032266,A Further Gesture +Emanuel Levy,none,0119548,Variety,,2009-03-26,14545,Little City +Geoff Andrew,none,0119548,Time Out,,2006-06-24,14545,Little City +Owen Gleiberman,fresh,0120782,Entertainment Weekly,,2011-09-07,14812,Palmetto +Dennis Harvey,none,0120782,Variety,,2009-03-26,14812,Palmetto +Derek Adams,none,0120782,Time Out,,2006-06-24,14812,Palmetto +Jeff Strickler,none,0120782,Minneapolis Star Tribune,,2002-11-06,14812,Palmetto +,rotten,0120782,Globe and Mail,,2002-04-12,14812,Palmetto +Jack Mathews,none,0120782,Los Angeles Times,,2001-02-14,14812,Palmetto +Mick LaSalle,none,0120782,San Francisco Chronicle,,2000-01-01,14812,Palmetto +Stephen Holden,none,0120782,New York Times,,2000-01-01,14812,Palmetto +James Berardinelli,rotten,0120782,ReelViews,,2000-01-01,14812,Palmetto +,none,0120782,Houston Chronicle,,2000-01-01,14812,Palmetto +David Denby,none,0120782,New York Magazine,,2000-01-01,14812,Palmetto +Roger Ebert,rotten,0120782,Chicago Sun-Times,,2000-01-01,14812,Palmetto +Joe Baltake,none,0120782,Sacramento Bee,,2000-01-01,14812,Palmetto +Susan Stark,rotten,0120782,Detroit News,,2000-01-01,14812,Palmetto +,rotten,0120782,USA Today,,2000-01-01,14812,Palmetto +,fresh,0120782,Entertainment Weekly,,1997-06-01,14812,Palmetto +Todd McCarthy,rotten,0119822,Variety,A sporadically funny romantic comedy with all the dramatic plausibility and tonal consistency of a TV variety show.,2008-07-02,12971,As Good as It Gets +Geoff Andrew,rotten,0119822,Time Out,"The trouble lies in the rambling narrative, Brooks' cautious direction and the cosy tone which renders the whole thing reminiscent of an extended sitcom.",2006-06-24,12971,As Good as It Gets +Rick Groen,fresh,0119822,Globe and Mail,"Romance comedies definitely come better than this, although perhaps not lately.",2002-04-12,12971,As Good as It Gets +Lisa Schwarzbaum,fresh,0119822,Entertainment Weekly,It's fun to watch Jack Nicholson draw on great reservoirs of bile to play a mean SOB with an obsessive-compulsive disorder.,2001-02-14,12971,As Good as It Gets +Kenneth Turan,fresh,0119822,Los Angeles Times,"It's a mark of how magically written, directed and acted As Good as It Gets is that we end up loving this film despite knowing how haphazard, scattershot and almost indefinable its charm is.",2001-02-14,12971,As Good as It Gets +Ruthe Stein,fresh,0119822,San Francisco Chronicle,Part of the appeal of this comedy is that Melvin's transformation never gets sappy.,2000-01-01,12971,As Good as It Gets +Jeff Millar,fresh,0119822,Houston Chronicle,The film is hugely entertaining.,2000-01-01,12971,As Good as It Gets +Roger Ebert,fresh,0119822,Chicago Sun-Times,The movie succeeds at many moments even while pursuing its doomed grand design.,2000-01-01,12971,As Good as It Gets +Jay Carr,fresh,0119822,Boston Globe,I'd go to As Good as It Gets and not worry too much about its structural ungainliness.,2000-01-01,12971,As Good as It Gets +Tom Keogh,fresh,0119822,Film.com,A lovely act of cinematic evolution from confusion to enlightenment.,2000-01-01,12971,As Good as It Gets +Susan Stark,fresh,0119822,Detroit News,"Urbane, alert, funny, compassionate.",2000-01-01,12971,As Good as It Gets +Joe Baltake,fresh,0119822,Sacramento Bee,"As artificial as it is, ""As Good As It Gets"" is a winning entertainment.",2000-01-01,12971,As Good as It Gets +John Hartl,fresh,0119822,Film.com,A fairy-tale heartwarmer.,2000-01-01,12971,As Good as It Gets +Janet Maslin,fresh,0119822,New York Times,"Wicked, but it works.",2000-01-01,12971,As Good as It Gets +Moira MacDonald,fresh,0119822,Film.com,"An actor's movie full of little pleasures, with a few unexpected sparks.",2000-01-01,12971,As Good as It Gets +Mary Brennan,fresh,0119822,Film.com,"Utterly false, like all sitcoms, but that's not necessarily a terrible thing.",2000-01-01,12971,As Good as It Gets +Andrew O'Hehir,fresh,0119822,Salon.com,An almost-convincing imaginary universe.,2000-01-01,12971,As Good as It Gets +Jonathan Rosenbaum,fresh,0119822,Chicago Reader,How [Brooks] emerged an abler artist is worth puzzling over; I suspect it has something to do with sheer instinct triumphing over industry machinery.,2000-01-01,12971,As Good as It Gets +Gene Siskel,fresh,0119822,Chicago Tribune,One of the year's best.,2000-01-01,12971,As Good as It Gets +James Berardinelli,fresh,0119822,ReelViews,"By the time we leave the theater, the warmth of love has melted the coldest heart.",2000-01-01,12971,As Good as It Gets +Owen Gleiberman,fresh,0099939,Entertainment Weekly,,2011-09-07,98816619,King of New York +Variety Staff,fresh,0099939,Variety,"Complementing Walken's bravura turn are equally flamboyant performances by David Caruso as the young Irish cop out to destroy Walken, and Larry Fishburne as Walken's slightly crazy aide-de-camp.",2009-03-26,98816619,King of New York +Geoff Andrew,rotten,0099939,Time Out,"A film which, despite splendid location work, lurches sloppily and messily from kill to kill, orgy to orgy, coke to crack, cliche to cliche.",2006-06-24,98816619,King of New York +Janet Maslin,fresh,0099939,New York Times,"[Ferrara] works unapologetically in B-movie territory, but does it with A-movie style.",2003-05-20,98816619,King of New York +Roger Ebert,rotten,0099939,Chicago Sun-Times,"Walken is one of the few undeniably charismatic male villains of recent years; he can generate a snakelike charm that makes his worst characters the most memorable, and here he operates on pure style.",2000-01-01,98816619,King of New York +Hal Hinson,rotten,0099939,Washington Post,A hepped-up film about drugs that plays as if the filmmakers themselves kept a healthy supply of the stuff at hand.,2000-01-01,98816619,King of New York +,fresh,0099939,Entertainment Weekly,,1990-09-28,98816619,King of New York +Lisa Schwarzbaum,fresh,0119657,Entertainment Weekly,,2011-09-07,14848,Men with Guns +Emanuel Levy,none,0119657,Variety,,2009-03-26,14848,Men with Guns +,none,0119657,Time Out,,2006-06-24,14848,Men with Guns +,fresh,0119657,Globe and Mail,,2002-12-23,14848,Men with Guns +Jeff Strickler,none,0119657,Minneapolis Star Tribune,,2002-11-06,14848,Men with Guns +Peter Stack,none,0119657,San Francisco Chronicle,,2002-06-18,14848,Men with Guns +Jack Mathews,none,0119657,Los Angeles Times,,2001-02-14,14848,Men with Guns +,none,0119657,Houston Chronicle,,2000-01-01,14848,Men with Guns +Roger Ebert,fresh,0119657,Chicago Sun-Times,,2000-01-01,14848,Men with Guns +James Berardinelli,fresh,0119657,ReelViews,,2000-01-01,14848,Men with Guns +Stanley Kauffmann,none,0119657,The New Republic,,2000-01-01,14848,Men with Guns +Joe Baltake,none,0119657,Sacramento Bee,,2000-01-01,14848,Men with Guns +Janet Maslin,none,0119657,New York Times,,2000-01-01,14848,Men with Guns +,fresh,0119657,Entertainment Weekly,,1998-03-27,14848,Men with Guns +Emanuel Levy,none,0114322,Variety,,2009-03-26,771034401,The Sadness of Sex +Kevin Thomas,none,0114322,Los Angeles Times,,2007-11-24,771034401,The Sadness of Sex +Leah Rozen,none,1099212,The Wrap,,2011-10-07,770679045,Twilight +Laremy Legel,rotten,1099212,Film.com,My hope is that the sequels are actual attempts at movies. The world doesn't need any more toothless cinema.,2011-05-06,770679045,Twilight +Manohla Dargis,rotten,1099212,New York Times,"A deeply sincere, outright goofy vampire romance for the hot-not-to-trot abstinence set.",2011-04-08,770679045,Twilight +Trevor Johnston,fresh,1099212,Time Out,"Some will find it all too polite, but compared to rival blockbuster exercises in explosive CGI mayhem, its character-based index of longing and protectiveness at least provides a viable alternative moodscape.",2008-12-19,770679045,Twilight +Ruth Hessey,fresh,1099212,"MovieTime, ABC Radio National","I succumbed to the palpable chemistry between the leads, and remembered my own girlish fantasies with something of a head-spinning rush.",2008-12-12,770679045,Twilight +Ben Mankiewicz,rotten,1099212,At the Movies,I think this film is definitely a victim of it's own expectations.,2008-11-24,770679045,Twilight +Ben Lyons,rotten,1099212,At the Movies,"Unfortunately, it just didn't work.",2008-11-24,770679045,Twilight +Ty Burr,fresh,1099212,Boston Globe,A darn good hunk of pop moviemaking.,2008-11-24,770679045,Twilight +David Denby,fresh,1099212,New Yorker,"Twilight, the first movie adapted from Stephenie Meyer's series of best-selling teen novels, is going to be a big hit with young girls, and deservedly so -- the picture delivers.",2008-11-24,770679045,Twilight +David Edelstein,fresh,1099212,New York Magazine,"Twilight the movie is cautious, a sort of Tiger Beat-ified Twin Peaks. In its undercooked way, though, it's enjoyable.",2008-11-24,770679045,Twilight +Christopher Orr,fresh,1099212,The New Republic,"Twilight is silly and melodramatic and hard to dislike in much the same way as its target audience, with a distinctly teenage sense of tragedy.",2008-11-21,770679045,Twilight +Peter Howell,fresh,1099212,Toronto Star,"Twilight is the Diet Coke of vampire movies, but central to the film's success is that you believe in the love between Edward and Bella.",2008-11-21,770679045,Twilight +Joe Morgenstern,fresh,1099212,Wall Street Journal,"Not that Twilight's fate hangs on intelligibility. It hangs on fangs that aren't bared, and on a bloodlust that isn't indulged.",2008-11-21,770679045,Twilight +Michael O'Sullivan,fresh,1099212,Washington Post,"Twilight works as both love story and vampire story, thanks mainly to the performances of its principals.",2008-11-21,770679045,Twilight +Stephanie Zacharek,fresh,1099212,Salon.com,"Twilight is, by its very nature, all about unfinished business, the story of a brooding, caring romantic hero and the woman who cannot -- although she wants to -- yield to him. Only his eyes penetrate her. For now, that's enough.",2008-11-21,770679045,Twilight +Peter Travers,fresh,1099212,Rolling Stone,My advice: Focus on Pattinson and Stewart. They make you understand why the books sold 17 million copies.,2008-11-21,770679045,Twilight +Kyle Smith,rotten,1099212,New York Post,Combines the plot of HBO's True Blood with the intensity level of Saved by the Bell.,2008-11-21,770679045,Twilight +Elizabeth Weitzman,fresh,1099212,New York Daily News,"Screenwriter Melissa Rosenberg does a decent job adapting the first book in Meyer's series, and despite a tendency toward cheesy effects, Hardwicke keeps things moving swiftly.",2008-11-21,770679045,Twilight +Sara Frederick,fresh,1099212,Miami Herald,"Teenage girls are going to love Twilight, and many are sure to see it more than once. Hang on to those earplugs: This time next year, you'll need them again.",2008-11-21,770679045,Twilight +Amy Biancolli,rotten,1099212,Houston Chronicle,"Gothic wooziness stifles many of Hardwicke's lighter impulses, such as her knack for jiving humor in scenes among friends and family. And some of the more cartoonishly gymnastic CG stunts look plain silly.",2008-11-21,770679045,Twilight +Owen Gleiberman,fresh,0120873,Entertainment Weekly,,2011-09-07,10760,U.S. Marshals +Geoff Andrew,none,0120873,Time Out,,2006-06-24,10760,U.S. Marshals +Jeff Strickler,none,0120873,Minneapolis Star Tribune,,2002-11-06,10760,U.S. Marshals +,rotten,0120873,Globe and Mail,,2002-07-12,10760,U.S. Marshals +Joe Baltake,none,0120873,Sacramento Bee,,2000-01-01,10760,U.S. Marshals +,rotten,0120873,USA Today,,2000-01-01,10760,U.S. Marshals +James Berardinelli,rotten,0120873,ReelViews,,2000-01-01,10760,U.S. Marshals +Susan Stark,rotten,0120873,Detroit News,,2000-01-01,10760,U.S. Marshals +Mick LaSalle,rotten,0120873,San Francisco Chronicle,,2000-01-01,10760,U.S. Marshals +Roger Ebert,rotten,0120873,Chicago Sun-Times,,2000-01-01,10760,U.S. Marshals +,none,0120873,Houston Chronicle,,2000-01-01,10760,U.S. Marshals +Stephen Holden,none,0120873,New York Times,,2000-01-01,10760,U.S. Marshals +,fresh,0120873,Entertainment Weekly,,1997-06-01,10760,U.S. Marshals +Lisa Schwarzbaum,rotten,0120491,Entertainment Weekly,,2011-09-07,411062722,Welcome to Woop Woop +Todd McCarthy,none,0120491,Variety,,2009-03-26,411062722,Welcome to Woop Woop +,none,0120491,Time Out,,2006-01-26,411062722,Welcome to Woop Woop +,rotten,0120491,Globe and Mail,,2003-04-25,411062722,Welcome to Woop Woop +Jack Mathews,none,0120491,Los Angeles Times,,2001-02-14,411062722,Welcome to Woop Woop +Edward Guthmann,none,0120491,San Francisco Chronicle,,2000-01-01,411062722,Welcome to Woop Woop +Paul Tatara,none,0120491,CNN.com,,2000-01-01,411062722,Welcome to Woop Woop +Stephen Holden,none,0120491,New York Times,,2000-01-01,411062722,Welcome to Woop Woop +,rotten,0120491,Entertainment Weekly,,1998-06-01,411062722,Welcome to Woop Woop +Lisa Schwarzbaum,fresh,0119574,Entertainment Weekly,,2011-09-07,12844,Love and Death on Long Island +David Rooney,none,0119574,Variety,,2009-03-26,12844,Love and Death on Long Island +Geoff Andrew,none,0119574,Time Out,,2006-06-24,12844,Love and Death on Long Island +Jeff Strickler,none,0119574,Minneapolis Star Tribune,,2002-11-06,12844,Love and Death on Long Island +,fresh,0119574,Globe and Mail,,2002-04-24,12844,Love and Death on Long Island +Kenneth Turan,none,0119574,Los Angeles Times,,2001-02-14,12844,Love and Death on Long Island +David Denby,none,0119574,New York Magazine,,2000-01-01,12844,Love and Death on Long Island +Janet Maslin,none,0119574,New York Times,,2000-01-01,12844,Love and Death on Long Island +James Berardinelli,fresh,0119574,ReelViews,,2000-01-01,12844,Love and Death on Long Island +Roger Ebert,fresh,0119574,Chicago Sun-Times,,2000-01-01,12844,Love and Death on Long Island +Edward Guthmann,fresh,0119574,San Francisco Chronicle,,2000-01-01,12844,Love and Death on Long Island +Charles Taylor,none,0119574,Salon.com,,2000-01-01,12844,Love and Death on Long Island +Joe Baltake,none,0119574,Sacramento Bee,,2000-01-01,12844,Love and Death on Long Island +Jay Carr,fresh,0119574,Boston Globe,,2000-01-01,12844,Love and Death on Long Island +,fresh,0119574,Entertainment Weekly,,1998-03-06,12844,Love and Death on Long Island +Lael Loewenstein,none,0140282,Variety,,2009-03-26,11329,In God's Hands +Kevin Thomas,none,0140282,Los Angeles Times,,2001-02-14,11329,In God's Hands +Lawrence Van Gelder,none,0140282,New York Times,,2000-01-01,11329,In God's Hands +Peter Stack,none,0140282,San Francisco Chronicle,,2000-01-01,11329,In God's Hands +Lisa Schwarzbaum,fresh,0120661,Entertainment Weekly,,2011-09-07,17048,Everest +,none,0120661,Time Out,,2006-01-26,17048,Everest +Lawrence Van Gelder,none,0120661,New York Times,,2003-05-20,17048,Everest +Jeff Strickler,none,0120661,Minneapolis Star Tribune,,2002-11-06,17048,Everest +Robert Denerstein,fresh,0120661,Denver Rocky Mountain News,,2001-02-14,17048,Everest +,none,0120661,Los Angeles Times,,2001-02-14,17048,Everest +Joe Baltake,none,0120661,Sacramento Bee,,2000-01-01,17048,Everest +,none,0120661,Houston Chronicle,,2000-01-01,17048,Everest +Todd McCarthy,rotten,0118744,Variety,"Hush is gussied up by its classy distaff cast members, but remains trashy all the same.",2009-03-26,12051,Hush +Jonathan Rosenbaum,rotten,0118744,Chicago Reader,Jessica Lange establishes a spark of interest in this psychological thriller with her giggly demonic performance. But the film never adds up to anything more than an elaborate tease.,2007-10-04,12051,Hush +,rotten,0118744,Globe and Mail,,2002-04-12,12051,Hush +,rotten,0118744,USA Today,,2000-01-01,12051,Hush +James Berardinelli,rotten,0118744,ReelViews,"Hush has three very simple problems: it's incredibly dumb, it's incredibly boring, and it's incredibly predictable (at least up to the stupefying ending).",2000-01-01,12051,Hush +Susan Stark,rotten,0118744,Detroit News,,2000-01-01,12051,Hush +Ruthe Stein,rotten,0118744,San Francisco Chronicle,Lange seems at a loss to know how to convey Martha's malevolence -- and writer-director Jonathan Darby offers almost no guidance.,2000-01-01,12051,Hush +Roger Ebert,rotten,0118744,Chicago Sun-Times,"Hush is the kind of movie where you walk in, watch the first 10 minutes, know exactly where it's going, and hope devoutly that you're wrong.",2000-01-01,12051,Hush +Stephen Holden,rotten,0118744,New York Times,The film is so awful it doesn't even qualify as a B-movie.,2000-01-01,12051,Hush +Joe Leydon,none,0120241,Variety,,2009-03-26,15750,Suicide Kings +Jeff Strickler,none,0120241,Minneapolis Star Tribune,,2002-11-06,15750,Suicide Kings +,rotten,0120241,Globe and Mail,,2002-04-12,15750,Suicide Kings +Kevin Thomas,none,0120241,Los Angeles Times,,2001-02-14,15750,Suicide Kings +James Berardinelli,fresh,0120241,ReelViews,,2000-01-01,15750,Suicide Kings +Joe Baltake,none,0120241,Sacramento Bee,,2000-01-01,15750,Suicide Kings +Stephen Holden,none,0120241,New York Times,,2000-01-01,15750,Suicide Kings +Peter Stack,fresh,0120241,San Francisco Chronicle,,2000-01-01,15750,Suicide Kings +Jay Carr,rotten,0120241,Boston Globe,,2000-01-01,15750,Suicide Kings +Susan Stark,rotten,0120241,Detroit News,,2000-01-01,15750,Suicide Kings +,rotten,0120241,Entertainment Weekly,,1997-04-17,15750,Suicide Kings +Owen Gleiberman,fresh,0120744,Entertainment Weekly,,2011-09-07,10666,The Man in the Iron Mask +Todd McCarthy,none,0120744,Variety,,2009-03-26,10666,The Man in the Iron Mask +Derek Adams,none,0120744,Time Out,,2006-06-24,10666,The Man in the Iron Mask +Jeff Strickler,none,0120744,Minneapolis Star Tribune,,2002-11-23,10666,The Man in the Iron Mask +,rotten,0120744,Globe and Mail,,2002-04-12,10666,The Man in the Iron Mask +Peter Stack,none,0120744,San Francisco Chronicle,,2001-07-31,10666,The Man in the Iron Mask +,none,0120744,Houston Chronicle,,2001-07-31,10666,The Man in the Iron Mask +,rotten,0120744,USA Today,,2001-07-31,10666,The Man in the Iron Mask +Joe Baltake,none,0120744,Sacramento Bee,,2001-07-31,10666,The Man in the Iron Mask +Susan Stark,fresh,0120744,Detroit News,,2001-07-31,10666,The Man in the Iron Mask +Jay Carr,rotten,0120744,Boston Globe,,2001-07-31,10666,The Man in the Iron Mask +Kenneth Turan,none,0120744,Los Angeles Times,,2001-07-31,10666,The Man in the Iron Mask +Roger Ebert,rotten,0120744,Chicago Sun-Times,,2001-07-31,10666,The Man in the Iron Mask +James Berardinelli,rotten,0120744,ReelViews,,2001-07-31,10666,The Man in the Iron Mask +Stephanie Zacharek,none,0120744,Salon.com,,2001-07-31,10666,The Man in the Iron Mask +Janet Maslin,none,0120744,New York Times,,2001-07-31,10666,The Man in the Iron Mask +,fresh,0120744,Entertainment Weekly,,1998-03-13,10666,The Man in the Iron Mask +Owen Gleiberman,fresh,0120769,Entertainment Weekly,,2011-09-07,11372,The Newton Boys +Emanuel Levy,rotten,0120769,Variety,A handsome production that nicely evokes the 1920s and a likeable cast headed by McConaughey can't compensate for a Western-gangster film that's too diffuse and lacks a discernibel POV to be dramatically engaging.,2006-07-23,11372,The Newton Boys +,none,0120769,Time Out,,2006-01-26,11372,The Newton Boys +,rotten,0120769,Globe and Mail,,2002-04-12,11372,The Newton Boys +James Berardinelli,fresh,0120769,ReelViews,,2000-01-01,11372,The Newton Boys +Laura Miller,none,0120769,Salon.com,,2000-01-01,11372,The Newton Boys +Roger Ebert,rotten,0120769,Chicago Sun-Times,,2000-01-01,11372,The Newton Boys +,rotten,0120769,USA Today,,2000-01-01,11372,The Newton Boys +Peter Stack,none,0120769,San Francisco Chronicle,,2000-01-01,11372,The Newton Boys +Janet Maslin,none,0120769,New York Times,,2000-01-01,11372,The Newton Boys +,none,0120769,Houston Chronicle,,2000-01-01,11372,The Newton Boys +Susan Stark,rotten,0120769,Detroit News,,2000-01-01,11372,The Newton Boys +Joe Baltake,none,0120769,Sacramento Bee,,2000-01-01,11372,The Newton Boys +Jonathan Rosenbaum,fresh,0120769,Chicago Reader,,1998-03-27,11372,The Newton Boys +,fresh,0120769,Entertainment Weekly,,1998-03-27,11372,The Newton Boys +Keith Uhlich,rotten,0386117,Time Out,,2011-11-17,770671948,Where the Wild Things Are +Ben Walters,fresh,0386117,Time Out,"'Where the Wild Things Are' stands out for its unusually potent evocation of the timbre of childhood imagining, with its combination of the outre and the banal, grand schemes jumbled up with delicate feelings and the urge to smash things up.",2009-12-11,770671948,Where the Wild Things Are +Ann Hornaday,fresh,0386117,Washington Post,[Jonze has] achieved with the cinematic medium what Sendak did with words and pictures: He's grasped something true and terrifying about love at its most unconditional and voracious.,2009-10-16,770671948,Where the Wild Things Are +Liam Lacey,rotten,0386117,Globe and Mail,"Wild Things, you do not make my heart sing.",2009-10-16,770671948,Where the Wild Things Are +Tom Long,fresh,0386117,Detroit News,"Intellectually interesting, visually arresting and filled with invention, there's just one crucial thing Where the Wild Things Are is missing: wildness.",2009-10-16,770671948,Where the Wild Things Are +Lisa Kennedy,fresh,0386117,Denver Post,"Spike Jonze, we salute you.",2009-10-16,770671948,Where the Wild Things Are +Nancy Churnin,fresh,0386117,Dallas Morning News,Director Spike Jonze gets that Max's subsequent journey to the far-off island of the wild things is nothing less than an odyssey into his mind.,2009-10-16,770671948,Where the Wild Things Are +Peter Rainer,fresh,0386117,Christian Science Monitor,This blend of the real and unreal is successful because Jonze's feeling for childhood binds everything together.,2009-10-16,770671948,Where the Wild Things Are +Lou Lumenick,rotten,0386117,New York Post,"Some very good books were just never meant to be turned into movies. Sadly, you can now add Maurice Sendak's 1963 classic Where the Wild Things Are to that list.",2009-10-16,770671948,Where the Wild Things Are +Mick LaSalle,rotten,0386117,San Francisco Chronicle,"Where the Wild Things Are is audacious in its refusal to be reassuring, which makes it hard to love, but also hard to dismiss.",2009-10-16,770671948,Where the Wild Things Are +Peter Howell,fresh,0386117,Toronto Star,"It's a joy for thinking moviegoers of any age. It doesn't seek to ""keep out all the sadness,"" yet neither does it wallow in gloom. Instead it presents childhood as a journey filled with things both wonderful and fearful, and ultimately all of the mind.",2009-10-16,770671948,Where the Wild Things Are +Christopher Orr,fresh,0386117,The New Republic,"Where the Wild Things Are may not be a great film for children (or, at least, most children). But it is something rarer still: a great, and unsparing, film about childhood.",2009-10-15,770671948,Where the Wild Things Are +Eric D. Snider,fresh,0386117,Film.com,The film is lacking as a whole -- it's individual moments and scenes that make it worth seeing.,2009-10-15,770671948,Where the Wild Things Are +Stephanie Zacharek,rotten,0386117,Salon.com,"Jonze's ideas, visual and otherwise, spill out in a faux-philosophical ramble that isn't nearly as deep as he thinks it is; at best, it's a scrambled tone poem. Even the look of the picture becomes tiresome after a while.",2009-10-15,770671948,Where the Wild Things Are +Claudia Puig,fresh,0386117,USA Today,Where the Wild Things Are is a fiercely innovative film with surprising texture and nuance. It captures the joy and exuberance of childhood without shying away from its very real pains and woes.,2009-10-15,770671948,Where the Wild Things Are +Joe Morgenstern,fresh,0386117,Wall Street Journal,"Where the Wild Things Are honors the book in every imaginable way, and in ways no one could have imagined until Spike Jonze and his collaborators came along.",2009-10-15,770671948,Where the Wild Things Are +Kenneth Turan,rotten,0386117,Los Angeles Times,"Sometimes you are better off with 10 sentences than tens of millions of dollars, and this is one of those times.",2009-10-15,770671948,Where the Wild Things Are +Manohla Dargis,fresh,0386117,New York Times,Where the Wild Things Are is an alternately perfect and imperfect if always beautiful adaptation of the Maurice Sendak children's book.,2009-10-15,770671948,Where the Wild Things Are +Peter Travers,fresh,0386117,Rolling Stone,"For all the money spent, the film's success is best measured by its simplicity and the purity of its innovation. Jonze has filmed a fantasy as if it were absolutely real, allowing us to see the world as Max sees it, full of beauty and terror.",2009-10-15,770671948,Where the Wild Things Are +Colin Covert,fresh,0386117,Minneapolis Star Tribune,"In an era glutted with sanitized, prefabricated, computer-generated kids' stuff, this is an experience of sophisticated cross-generational appeal. It digs deep into childhood's bright, manic exuberance and also its confusion and gloom.",2009-10-15,770671948,Where the Wild Things Are +Todd McCarthy,rotten,0125454,Variety,Paulie has moments of minor charm but lacks the magic to fully capture the imaginations of either children or adults.,2008-05-12,11537,Paulie +Lisa Alspector,fresh,0125454,Chicago Reader,"Shalhoub gives an impressively nuanced performance in the dangerously cliched role, and Paulie -- a combination of trained parrots, animatronics, and the voice of Mohr -- comes across as a fully developed character.",2008-05-12,11537,Paulie +,rotten,0125454,Globe and Mail,,2002-04-12,11537,Paulie +Bob Heisler,fresh,0125454,Los Angeles Times,"A perfect family movie with the intelligence, humor and hug-me moments to be a great first-date movie, too. Just remember to bring a hankie.",2001-02-14,11537,Paulie +,rotten,0125454,USA Today,,2000-01-01,11537,Paulie +Louis B. Parks,fresh,0125454,Houston Chronicle,Unusual and surprisingly agreeable.,2000-01-01,11537,Paulie +Susan Stark,rotten,0125454,Detroit News,,2000-01-01,11537,Paulie +Roger Ebert,rotten,0125454,Chicago Sun-Times,"The film is aimed at children, I suppose, although I don't think they'll like Paulie all that much. I didn't.",2000-01-01,11537,Paulie +Peter Stack,rotten,0125454,San Francisco Chronicle,"Paulie has elements of a good weepy, but overall it never quite gels beyond being a passable novelty.",2000-01-01,11537,Paulie +Jay Carr,rotten,0125454,Boston Globe,,2000-01-01,11537,Paulie +Lawrence Van Gelder,fresh,0125454,New York Times,It is something to behold.,2000-01-01,11537,Paulie +,rotten,0125454,Entertainment Weekly,,1998-04-17,11537,Paulie +Lael Loewenstein,rotten,0120642,Variety,"The kind of plodding, conventional fare usually reserved for TV movies.",2009-10-04,11076,"A Cool, Dry Place" +David Rooney,none,0119250,Variety,,2009-03-26,19686,Hana-bi +Derek Adams,none,0119250,Time Out,,2006-01-26,19686,Hana-bi +,none,0119250,Los Angeles Times,,2001-02-21,19686,Hana-bi +Janet Maslin,none,0119250,New York Times,,2000-01-01,19686,Hana-bi +Joe Baltake,none,0119250,Sacramento Bee,,2000-01-01,19686,Hana-bi +Roger Ebert,fresh,0119250,Chicago Sun-Times,"Takeshi Kitano, who made it, must be very serene or very angry; only extreme states allow such a narrow focus.",2000-01-01,19686,Hana-bi +Mick LaSalle,none,0119250,San Francisco Chronicle,,2000-01-01,19686,Hana-bi +Stanley Kauffmann,none,0119250,The New Republic,,2000-01-01,19686,Hana-bi +,fresh,0119250,Entertainment Weekly,,1997-09-03,19686,Hana-bi +Derek Adams,rotten,0119942,Time Out,"As satire, it's toothless and indulgent; as drama of conscience, it's not a patch on real life...",2006-06-24,12462,Primary Colors +,fresh,0119942,Globe and Mail,,2002-07-12,12462,Primary Colors +,fresh,0119942,USA Today,,2001-02-27,12462,Primary Colors +Kenneth Turan,fresh,0119942,Los Angeles Times,A smart and savvy piece of work.,2001-02-14,12462,Primary Colors +Todd McCarthy,fresh,0119942,Variety,Travolta's warmth and expansiveness effectively amplify and embellish the likable and personable side of Stanton.,2001-02-14,12462,Primary Colors +James Berardinelli,rotten,0119942,ReelViews,Dramatically weak.,2000-01-01,12462,Primary Colors +Joe Baltake,fresh,0119942,Sacramento Bee,Primary Colors doesn't even attempt an answer. It's content just going along for the ride. It's too busy having fun.,2000-01-01,12462,Primary Colors +Janet Maslin,rotten,0119942,New York Times,The film seldom displays much in the way of directorial hallmarks.,2000-01-01,12462,Primary Colors +Roger Ebert,fresh,0119942,Chicago Sun-Times,The movie is endlessly inventive and involving.,2000-01-01,12462,Primary Colors +Charles Taylor,rotten,0119942,Salon.com,"A slack, tepid picture stuck in a no man's land between satire and drama.",2000-01-01,12462,Primary Colors +Susan Stark,fresh,0119942,Detroit News,The movie itself makes no judgment. It's smart enough to ask you to do that by yourself and for yourself.,2000-01-01,12462,Primary Colors +David Denby,fresh,0119942,New York Magazine,"This entertaining but rather peculiar movie asks extraordinary questions, and I wish it were better equipped to give the answers.",2000-01-01,12462,Primary Colors +John Hartl,fresh,0119942,Film.com,Primary Colors is the Mr. Smith Goes to Washington of our jaded era.,2000-01-01,12462,Primary Colors +Lisa Schwarzbaum,fresh,0119942,Entertainment Weekly,"Adapting Joe Klein's roman a clef of the same name, ferociously witty screenwriter Elaine May and her smooth old compatriot in comedy, director Mike Nichols, have made a zingy drama and have staffed it well.",2000-01-01,12462,Primary Colors +Sean Means,fresh,0119942,Film.com,A hilariously entertaining movie.,2000-01-01,12462,Primary Colors +Tom Keogh,rotten,0119942,Film.com,"There are piecemeal wonders in Primary Colors, but not the grand and resonant vision the film should have been.",2000-01-01,12462,Primary Colors +Jeff Millar,rotten,0119942,Houston Chronicle,"May and Nichols may not be right for the material, especially the Searching for Jimmy Stewart component, which feels more labored as the film proceeds.",2000-01-01,12462,Primary Colors +Robert Horton,fresh,0119942,Film.com,"Like its politicians, the movie is savvy about using whatever it takes to achieve a goal.",2000-01-01,12462,Primary Colors +David Edelstein,rotten,0119942,Slate,"It's hard for me fully to express how deeply rotten I think Primary Colors is. Adjectives like 'glib,' 'coarse,' and 'sour' don't fully do it.",2000-01-01,12462,Primary Colors +Jay Carr,fresh,0119942,Boston Globe,Those who wonder how good a Clinton impersonation Travolta does miss the point.,2000-01-01,12462,Primary Colors +,none,0046126,Variety,,2009-03-26,18741,Niagara +,none,0046126,New York Times,,2006-10-31,18741,Niagara +,none,0046126,Time Out,,2006-01-26,18741,Niagara +Owen Gleiberman,rotten,0120510,Entertainment Weekly,,2011-09-07,11600,Wide Awake +Emanuel Levy,none,0120510,Variety,,2009-04-03,11600,Wide Awake +Kevin Thomas,fresh,0120510,Los Angeles Times,"A wonderful family film that deals sensitively, and even with humor, with a fairly unusual situation for the screen: a 9-year-old's struggles with his faith in God.",2001-02-14,11600,Wide Awake +Peter Stack,rotten,0120510,San Francisco Chronicle,"Children, too, will be bored to tears navigating through some of the talky spiritual gunk.",2000-01-01,11600,Wide Awake +James Berardinelli,fresh,0120510,ReelViews,"I was aware of the problems, but that didn't diminish the warm, fuzzy glow I was experiencing.",2000-01-01,11600,Wide Awake +Jeff Millar,rotten,0120510,Houston Chronicle,"The fact is, just too many of the characters and plot points are right out of the stock room: the obligatory fat kid; the obligatory bully; the obligatory kid whose parents can't really afford Catholic school tuition ...",2000-01-01,11600,Wide Awake +Stephen Holden,rotten,0120510,New York Times,"Beneath its suffocating, smug sentimentality, you have to look hard to uncover a single moment of truth and genuine feeling.",2000-01-01,11600,Wide Awake +Joe Baltake,none,0120510,Sacramento Bee,,2000-01-01,11600,Wide Awake +Susan Stark,rotten,0120510,Detroit News,,2000-01-01,11600,Wide Awake +Roger Ebert,rotten,0120510,Chicago Sun-Times,I wonder who the movie was made for.,2000-01-01,11600,Wide Awake +Lisa Schwarzbaum,rotten,0120793,Entertainment Weekly,,2011-09-07,14324,A Price Above Rubies +Emanuel Levy,none,0120793,Variety,,2008-08-07,14324,A Price Above Rubies +Derek Adams,none,0120793,Time Out,,2006-06-24,14324,A Price Above Rubies +,rotten,0120793,Globe and Mail,,2002-04-12,14324,A Price Above Rubies +Janet Maslin,none,0120793,New York Times,,2000-01-01,14324,A Price Above Rubies +,none,0120793,Houston Chronicle,,2000-01-01,14324,A Price Above Rubies +Roger Ebert,fresh,0120793,Chicago Sun-Times,,2000-01-01,14324,A Price Above Rubies +Susan Stark,fresh,0120793,Detroit News,,2000-01-01,14324,A Price Above Rubies +Joe Baltake,none,0120793,Sacramento Bee,,2000-01-01,14324,A Price Above Rubies +Charles Taylor,none,0120793,Salon.com,,2000-01-01,14324,A Price Above Rubies +James Berardinelli,rotten,0120793,ReelViews,,2000-01-01,14324,A Price Above Rubies +,rotten,0120793,Entertainment Weekly,,1998-03-25,14324,A Price Above Rubies +Owen Gleiberman,fresh,0124179,Entertainment Weekly,,2011-09-07,14815,Two Girls and a Guy +Michael O'Sullivan,fresh,0124179,Washington Post,"The young actresses Graham and Wagner here create two characters who feel whole, distinct and weighty.",2008-02-12,14815,Two Girls and a Guy +Rita Kempley,fresh,0124179,Washington Post,"An edgy, gabby, salaciously subversive sex farce.",2008-02-12,14815,Two Girls and a Guy +David Edelstein,fresh,0124179,Slate,"You gotta admire a director who can come up with a way to hang out in such luxurious digs for two weeks, acting out sexual situations with three of the dishiest young actors in the business.",2008-02-12,14815,Two Girls and a Guy +Todd McCarthy,fresh,0124179,Variety,"A lively, if slender, perpetuation of the battle between the sexes on a modern battleground.",2008-02-12,14815,Two Girls and a Guy +Lisa Alspector,rotten,0124179,Chicago Reader,"Writer-director James Toback must believe his audience is hopelessly prudish if he thinks this pedantic story, which takes place over several hours in a Manhattan loft, is provocative.",2008-02-12,14815,Two Girls and a Guy +Andrew Sarris,fresh,0124179,New York Observer,"Toback has somehow managed to prolong and expand this sketchy egg-on-your-face situation with a series of unexpected ironies and power role reversals that are not without wit, humor and intelligence.",2007-04-27,14815,Two Girls and a Guy +Geoff Andrew,fresh,0124179,Time Out,"A thoroughly engrossing, intelligent and enjoyable experience.",2006-06-24,14815,Two Girls and a Guy +Rick Groen,rotten,0124179,Globe and Mail,,2003-04-25,14815,Two Girls and a Guy +Jack Mathews,rotten,0124179,Los Angeles Times,A small movie with some big moments and a lot of unfinished business.,2001-02-14,14815,Two Girls and a Guy +Susan Stark,rotten,0124179,Detroit News,,2000-01-01,14815,Two Girls and a Guy +James Berardinelli,rotten,0124179,ReelViews,,2000-01-01,14815,Two Girls and a Guy +David Denby,rotten,0124179,New York Magazine,"Two Girls and a Guy isn't a satisfying movie, but Downey is alarmingly brilliant in it.",2000-01-01,14815,Two Girls and a Guy +,rotten,0124179,USA Today,,2000-01-01,14815,Two Girls and a Guy +Janet Maslin,fresh,0124179,New York Times,"Robert Downey Jr.'s Blake Allen is enough of a raging dynamo to find the dark humor and desperate romanticism at the heart of Mr. Toback's ego trip of a premise, and to make Blake sympathetic too.",2000-01-01,14815,Two Girls and a Guy +Mick LaSalle,fresh,0124179,San Francisco Chronicle,"Wagner doesn't wink at the audience to let it know she's not as ignorant and naive as the character she plays. It's a performance that risks being misunderstood, and it probably will be.",2000-01-01,14815,Two Girls and a Guy +Charles Taylor,fresh,0124179,Salon.com,Downey's last scene knocks the wind out of you: You may feel you need a moment or two before you can get up out of your seat.,2000-01-01,14815,Two Girls and a Guy +Roger Ebert,fresh,0124179,Chicago Sun-Times,Sometimes the story behind a movie can bring an angle to what's on the screen.,2000-01-01,14815,Two Girls and a Guy +Jay Carr,rotten,0124179,Boston Globe,,2000-01-01,14815,Two Girls and a Guy +,fresh,0124179,Entertainment Weekly,,1998-04-24,14815,Two Girls and a Guy +,none,0119560,Entertainment Weekly,,2009-11-06,15914,No Looking Back +Todd McCarthy,none,0119560,Variety,,2009-03-26,15914,No Looking Back +Andrew Sarris,none,0119560,New York Observer,,2007-04-27,15914,No Looking Back +Jeff Strickler,none,0119560,Minneapolis Star Tribune,,2002-11-06,15914,No Looking Back +,fresh,0119560,Globe and Mail,,2002-04-12,15914,No Looking Back +Mick LaSalle,none,0119560,San Francisco Chronicle,,2000-01-01,15914,No Looking Back +Joe Baltake,none,0119560,Sacramento Bee,,2000-01-01,15914,No Looking Back +,rotten,0119560,USA Today,,2000-01-01,15914,No Looking Back +,none,0119560,Houston Chronicle,,2000-01-01,15914,No Looking Back +Stephen Holden,none,0119560,New York Times,,2000-01-01,15914,No Looking Back +Susan Stark,rotten,0119560,Detroit News,,2000-01-01,15914,No Looking Back +Roger Ebert,rotten,0119560,Chicago Sun-Times,,2000-01-01,15914,No Looking Back +James Berardinelli,rotten,0119560,ReelViews,,2000-01-01,15914,No Looking Back +Mark Athitakis,none,0120219,Salon.com,,2000-01-01,12248,Storefront Hitchcock +Douglas Wolk,none,0120219,Village Voice,,2000-01-01,12248,Storefront Hitchcock +Stephen Holden,none,0120219,New York Times,,2000-01-01,12248,Storefront Hitchcock +Ben Walters,fresh,0421238,Time Out,"A beautifully shot tracker's western that brings the Fordian poles of garden and desert to bear on the bushrangers' Outback, this is also a revenge drama of substantial horror.",2006-06-24,155654902,The Proposition +,none,0421238,St. Louis Post-Dispatch,,2006-06-23,155654902,The Proposition +Joe Morgenstern,fresh,0421238,Wall Street Journal,A visionary tale of a fragile civilizing impulse crushed by family loyalty and a lust for revenge in the vast Outback of the late 19th century.,2006-06-22,155654902,The Proposition +John Hartl,rotten,0421238,Seattle Times,"It doesn't offer much that hasn't already been said about lawless frontier towns, bonds between outlaws or the settling of the West.",2006-06-09,155654902,The Proposition +Roger Moore,rotten,0421238,Orlando Sentinel,"By the end, it all pays off exactly the way a hundred earlier Westerns did.",2006-06-09,155654902,The Proposition +Peter Debruge,fresh,0421238,Miami Herald,"In-your-face combativeness is The Proposition's power, and for those of you who value your westerns, the effect is not unlike that of The Wild Bunch or Unforgiven.",2006-06-09,155654902,The Proposition +Bill Muller,fresh,0421238,Arizona Republic,"It's fitting that The Proposition is set Down Under, because in many ways, it's a reverse Western.",2006-06-08,155654902,The Proposition +Tom Long,fresh,0421238,Detroit News,"An intense piece of wilderness ugliness that mixes family, honor, decency, revenge, racism and mindless blood lust in a manner that satisfies even if it never astounds.",2006-06-02,155654902,The Proposition +Ruthe Stein,fresh,0421238,San Francisco Chronicle,The squeamish should skip this film. But its recurring violence seems justified in terms of the story Cave sets out to tell and is up a familiar alley for the songwriter who has an album called Murder Ballads.,2006-05-26,155654902,The Proposition +Amy Biancolli,fresh,0421238,Houston Chronicle,"Murder ballad for the slice-and-dice age, a film of sensitive artistry laced with gore.",2006-05-26,155654902,The Proposition +Rick Groen,rotten,0421238,Globe and Mail,"This is the crucial proposition The Proposition misses: To make us truly despair about the face of violence, it must be firmly attached to someone we know, and not merely blown off someone we don't.",2006-05-26,155654902,The Proposition +Ty Burr,fresh,0421238,Boston Globe,"A near-masterpiece of mood and menace, and one that deserves to be seen on the largest screen possible.",2006-05-26,155654902,The Proposition +Philip Wuntch,fresh,0421238,Dallas Morning News,"It's consistently compelling and thought-provoking. This one will stay with you, and despite its disturbing moments, you'll welcome it.",2006-05-25,155654902,The Proposition +Ann Hornaday,fresh,0421238,Washington Post,A revisionist western that brings its own brand of sanguinary honesty to the genre.,2006-05-25,155654902,The Proposition +Jan Stuart,fresh,0421238,Newsday,"Offering proportionate measures of raw violence and lyrical soliloquizing, the Peckinpah-influenced The Proposition is for those who prefer their western action unvarnished but immaculately framed.",2006-05-25,155654902,The Proposition +Colin Covert,fresh,0421238,Minneapolis Star Tribune,"Hillcoat creates a vision as nihilistic as any horror film ever put on a screen, but so well acted and carefully conceived that it transcends exploitation.",2006-05-25,155654902,The Proposition +Eleanor Ringel Gillespie,fresh,0421238,Atlanta Journal-Constitution,"The movie gets at something primal in the pit of your stomach, something that speaks of loyalty and betrayal, of men's souls -- or the lack thereof.",2006-05-25,155654902,The Proposition +Lisa Schwarzbaum,fresh,0421238,Entertainment Weekly,A pitiless yet elegiac Australian Western as caked with beauty as it is with blood.,2006-05-20,155654902,The Proposition +Robert Denerstein,fresh,0421238,Denver Rocky Mountain News,"I'm guessing that Hillcoat wants us to see The Proposition as a howling, heartsick message from our savage selves. The story is ugly, but there's some beauty in the telling.",2006-05-19,155654902,The Proposition +Michael Booth,rotten,0421238,Denver Post,"Over the top, Down Under.",2006-05-19,155654902,The Proposition +Owen Gleiberman,rotten,0120772,Entertainment Weekly,,2011-09-07,14254,The Object of My Affection +Todd McCarthy,rotten,0120772,Variety,The plot's hokey contrivances and the theatrical shtick tend to prevail over the sporadic moments of insight and emotional truth.,2009-03-26,14254,The Object of My Affection +,rotten,0120772,Time Out,It never persuades you it belongs on the big screen.,2006-01-26,14254,The Object of My Affection +Ruthe Stein,fresh,0120772,San Francisco Chronicle,The best romantic comedy so far this year.,2002-06-18,14254,The Object of My Affection +,rotten,0120772,Globe and Mail,,2002-04-12,14254,The Object of My Affection +Janet Maslin,fresh,0120772,New York Times,"This comedy is content to enjoy the beguiling antics of Ms. Aniston, who is as skillful here as she is miscast, and to let its colorful minor characters give it a sitcom spin.",2000-01-01,14254,The Object of My Affection +David Denby,rotten,0120772,New York Magazine,"Paul Rudd is charming, and some of the scenes are intelligently written and played, but at a recent screening people on all sides of me were squirming in discomfort.",2000-01-01,14254,The Object of My Affection +James Berardinelli,fresh,0120772,ReelViews,"While some of the solutions are a little facile, the film nevertheless succeeds, due in large part to a luminous performance by Jennifer Aniston...",2000-01-01,14254,The Object of My Affection +Roger Ebert,rotten,0120772,Chicago Sun-Times,"There is a movie fighting to get out of The Object of My Affection, and I like it better than the movie it's trapped in.",2000-01-01,14254,The Object of My Affection +Jay Carr,fresh,0120772,Boston Globe,,2000-01-01,14254,The Object of My Affection +Susan Stark,fresh,0120772,Detroit News,,2000-01-01,14254,The Object of My Affection +,rotten,0120772,USA Today,,2000-01-01,14254,The Object of My Affection +,rotten,0120772,Entertainment Weekly,,1998-04-17,14254,The Object of My Affection +Owen Gleiberman,rotten,0120645,Entertainment Weekly,,2011-09-07,221143970,Meet the Deedles +Lael Loewenstein,rotten,0120645,Variety,"If all of this sounds ridiculous, it is.",2009-02-25,221143970,Meet the Deedles +Susan Stark,rotten,0120645,Detroit News,,2000-01-01,221143970,Meet the Deedles +Roger Ebert,rotten,0120645,Chicago Sun-Times,"I am prepared to imagine a theater full of 11-year-old boys who might enjoy this movie, but I can't recommend it for anyone who might have climbed a little higher on the evolutionary ladder.",2000-01-01,221143970,Meet the Deedles +Anita Gates,rotten,0120645,New York Times,Pure Disney in the goofy early-60's sense.,2000-01-01,221143970,Meet the Deedles +,rotten,0120645,Entertainment Weekly,,1998-03-27,221143970,Meet the Deedles +Leonard Klady,none,0119305,Variety,,2009-03-26,14063,Homegrown +Glenn Abel,fresh,0119305,Hollywood Reporter,,2004-06-04,14063,Homegrown +,fresh,0119305,Globe and Mail,,2002-04-12,14063,Homegrown +Lawrence Van Gelder,none,0119305,New York Times,,2000-01-01,14063,Homegrown +Mick LaSalle,none,0119305,San Francisco Chronicle,,2000-01-01,14063,Homegrown +Joe Baltake,none,0119305,Sacramento Bee,,2000-01-01,14063,Homegrown +,rotten,0119305,Entertainment Weekly,,1998-01-01,14063,Homegrown +Owen Gleiberman,fresh,0119905,Entertainment Weekly,,2011-09-07,13247,The Players Club +Roger Ebert,fresh,0119905,Chicago Sun-Times,,2000-01-01,13247,The Players Club +Jay Carr,rotten,0119905,Boston Globe,,2000-01-01,13247,The Players Club +Peter Stack,none,0119905,San Francisco Chronicle,,2000-01-01,13247,The Players Club +Susan Stark,fresh,0119905,Detroit News,,2000-01-01,13247,The Players Club +Joe Baltake,none,0119905,Sacramento Bee,,2000-01-01,13247,The Players Club +,rotten,0119905,USA Today,,2000-01-01,13247,The Players Club +Janet Maslin,none,0119905,New York Times,,2000-01-01,13247,The Players Club +,fresh,0119905,Entertainment Weekly,,1998-04-08,13247,The Players Club +Gerald Clarke,fresh,0094737,TIME Magazine,A delightful comedy-fantasy.,2013-08-02,10396,Big +Desmond Ryan,fresh,0094737,Philadelphia Inquirer,"Penny Marshall brings a logic to the premise that is sustained through most of the movie. And where the other movies snickered at the sexual possibilities in the idea, she faces up to them with both candor and taste.",2013-08-02,10396,Big +Jay Boyar,fresh,0094737,Orlando Sentinel,"This setup isn't exactly what you'd call plausible, but the follow-through is consistent and clever.",2013-08-02,10396,Big +Kevin Thomas,fresh,0094737,Los Angeles Times,"Big, which has been directed by Penny Marshall with verve and impeccable judgment, drops a child's innocence into the corporate rat race as if it were a depth charge.",2013-07-29,10396,Big +Dave Kehr,fresh,0094737,Chicago Tribune,"When Marshall brings Hanks and Perkins together, she discovers a grace and lightness in their relationship that transcends the pinched thematics of the script.",2013-07-29,10396,Big +Gene Siskel,fresh,0094737,Chicago Tribune,Not a major movie but a pleasing one.,2013-01-16,10396,Big +Jonathan Rosenbaum,rotten,0094737,Chicago Reader,As far as the movie's message is considered -- if only grown-ups could be more like kids -- Jerry Lewis did an infinitely better job of plugging it in the 50s.,2008-04-01,10396,Big +Variety Staff,fresh,0094737,Variety,Unspools with enjoyable genuineness and ingenuity.,2008-04-01,10396,Big +Geoff Andrew,fresh,0094737,Time Out,"Marshall, Hanks, and his co-stars seldom put a foot wrong.",2006-06-24,10396,Big +Janet Maslin,fresh,0094737,New York Times,"For any other full-grown actors who try their hands at fidgeting, squirming, throwing water balloons and wolfing down food in a huge variety of comically disgusting ways, this really is the performance to beat.",2003-05-20,10396,Big +Hal Hinson,fresh,0094737,Washington Post,"What's great about it is that it shows how wonderfully full of toys the world of adults can be. And though this may fall under the heading of tiny, perhaps even fatuous, revelations, it does send you out of the theater with a lighter step.",2000-01-01,10396,Big +James Berardinelli,fresh,0094737,ReelViews,"The film is funny, sweet, and even a little edgy. It's also emotionally honest and almost never crass.",1988-01-01,10396,Big +David Rooney,none,0118851,Variety,,2009-03-26,16480,Chinese Box +,none,0118851,Time Out,,2006-06-24,16480,Chinese Box +Stephen Holden,none,0118851,New York Times,,2003-05-20,16480,Chinese Box +Jeff Strickler,none,0118851,Minneapolis Star Tribune,,2002-11-06,16480,Chinese Box +,rotten,0118851,Globe and Mail,,2002-04-12,16480,Chinese Box +Kevin Thomas,none,0118851,Los Angeles Times,,2001-02-14,16480,Chinese Box +Roger Ebert,fresh,0118851,Chicago Sun-Times,,2000-01-01,16480,Chinese Box +Joe Baltake,none,0118851,Sacramento Bee,,2000-01-01,16480,Chinese Box +Stanley Kauffmann,none,0118851,The New Republic,,2000-01-01,16480,Chinese Box +James Berardinelli,rotten,0118851,ReelViews,,2000-01-01,16480,Chinese Box +Edward Guthmann,none,0118851,San Francisco Chronicle,,2000-01-01,16480,Chinese Box +Susan Stark,fresh,0118851,Detroit News,,2000-01-01,16480,Chinese Box +,fresh,0118851,Entertainment Weekly,,1998-04-13,16480,Chinese Box +Owen Gleiberman,fresh,0120738,Entertainment Weekly,,2011-09-07,10920,Lost in Space +Dennis Harvey,none,0120738,Variety,,2009-03-27,10920,Lost in Space +Geoff Andrew,none,0120738,Time Out,,2006-02-09,10920,Lost in Space +,rotten,0120738,Globe and Mail,,2002-04-12,10920,Lost in Space +Kenneth Turan,none,0120738,Los Angeles Times,,2001-02-14,10920,Lost in Space +James Berardinelli,rotten,0120738,ReelViews,,2000-01-01,10920,Lost in Space +Susan Stark,rotten,0120738,Detroit News,,2000-01-01,10920,Lost in Space +Joe Baltake,none,0120738,Sacramento Bee,,2000-01-01,10920,Lost in Space +,rotten,0120738,USA Today,,2000-01-01,10920,Lost in Space +Jay Carr,rotten,0120738,Boston Globe,,2000-01-01,10920,Lost in Space +Peter Stack,fresh,0120738,San Francisco Chronicle,,2000-01-01,10920,Lost in Space +Janet Maslin,none,0120738,New York Times,,2000-01-01,10920,Lost in Space +,none,0120738,Houston Chronicle,,2000-01-01,10920,Lost in Space +Roger Ebert,rotten,0120738,Chicago Sun-Times,,2000-01-01,10920,Lost in Space +,fresh,0120738,Entertainment Weekly,,1998-04-03,10920,Lost in Space +David Stratton,none,0119272,Variety,,2009-07-01,15384,Heaven's Burning +Derek Adams,none,0119272,Time Out,,2006-06-24,15384,Heaven's Burning +,rotten,0119272,Globe and Mail,,2002-04-12,15384,Heaven's Burning +,none,0120749,Variety,,2012-02-23,13855,Mercury Rising +Andrew Sarris,none,0120749,New York Observer,,2007-04-27,13855,Mercury Rising +Derek Adams,none,0120749,Time Out,,2006-06-24,13855,Mercury Rising +Jeff Strickler,none,0120749,Minneapolis Star Tribune,,2002-11-06,13855,Mercury Rising +,rotten,0120749,Globe and Mail,,2002-04-12,13855,Mercury Rising +Jack Mathews,none,0120749,Los Angeles Times,,2001-02-14,13855,Mercury Rising +James Berardinelli,rotten,0120749,ReelViews,,2000-01-01,13855,Mercury Rising +,none,0120749,Houston Chronicle,,2000-01-01,13855,Mercury Rising +Charles Taylor,none,0120749,Salon.com,,2000-01-01,13855,Mercury Rising +,rotten,0120749,USA Today,,2000-01-01,13855,Mercury Rising +Roger Ebert,rotten,0120749,Chicago Sun-Times,,2000-01-01,13855,Mercury Rising +Jay Carr,rotten,0120749,Boston Globe,,2000-01-01,13855,Mercury Rising +Mick LaSalle,fresh,0120749,San Francisco Chronicle,,2000-01-01,13855,Mercury Rising +Joe Baltake,none,0120749,Sacramento Bee,,2000-01-01,13855,Mercury Rising +Susan Stark,rotten,0120749,Detroit News,,2000-01-01,13855,Mercury Rising +Stephen Holden,none,0120749,New York Times,,2000-01-01,13855,Mercury Rising +,rotten,0120749,Entertainment Weekly,,1998-04-03,13855,Mercury Rising +Leonard Klady,fresh,0120176,Variety,"David Mamet has a penchant for sleight-of-hand thrillers, and The Spanish Prisoner is his craftiest to date.",2008-11-20,11980,The Spanish Prisoner +Andrew Sarris,fresh,0120176,New York Observer,The Spanish Prisoner shares with Glengarry Glen Ross a vision of life as a cosmic con game in which the victimizers feed the fantasies of the victims.,2007-04-27,11980,The Spanish Prisoner +Derek Adams,fresh,0120176,Time Out,"David Mamet's most consistently enjoyable film to date is a cool, typically clever con-trick drama packed with deliciously inventive twists that get ever more convoluted and unnerving as the plot proceeds.",2006-02-09,11980,The Spanish Prisoner +Liam Lacey,fresh,0120176,Globe and Mail,"There's something fresh, even restorative, in watching an American studio movie that doesn't treat the movie-going audience like a bunch of gullible marks.",2002-04-12,11980,The Spanish Prisoner +Kenneth Turan,fresh,0120176,Los Angeles Times,"Mamet brings more than a decade's worth of filmmaking experience to his latest project, and his skill as a director has improved considerably.",2001-02-14,11980,The Spanish Prisoner +Edward Guthmann,fresh,0120176,San Francisco Chronicle,"Mamet's dialogue is as deft as ever, and he draws a fine, complex performance from Scott, an actor whose talents are underused and underappreciated.",2000-01-01,11980,The Spanish Prisoner +Roger Ebert,fresh,0120176,Chicago Sun-Times,"It rolls its sleeves above its elbows to show it has no hidden cards, and then produces them out of thin air.",2000-01-01,11980,The Spanish Prisoner +Charles Taylor,rotten,0120176,Salon.com,The picture is moderately diverting. But it's never much fun.,2000-01-01,11980,The Spanish Prisoner +Susan Stark,fresh,0120176,Detroit News,,2000-01-01,11980,The Spanish Prisoner +Jay Carr,fresh,0120176,Boston Globe,,2000-01-01,11980,The Spanish Prisoner +Janet Maslin,fresh,0120176,New York Times,"It...has an appealing, ironically rarefied look that the filmmaker measures out carefully, in a story that begins with a seaplane and ends with a ferry.",2000-01-01,11980,The Spanish Prisoner +David Denby,fresh,0120176,New York Magazine,"Mamet keeps the settings simple, breeding mistrust out of the flat walls and corporate colors. He concentrates on dialogue and character, and this movie is warmer, and much closer to psychological realism, than the weirdly schematic House of Games.",2000-01-01,11980,The Spanish Prisoner +James Berardinelli,fresh,0120176,ReelViews,The Spanish Prisoner is for anyone who likes to think and feel along with the characters. Mamet offers us the same clues he gives to Joe; we can piece the truth together along with him.,2000-01-01,11980,The Spanish Prisoner +,fresh,0120176,Entertainment Weekly,,1997-09-08,11980,The Spanish Prisoner +Lisa Schwarzbaum,fresh,0120728,Entertainment Weekly,,2011-09-07,14733,The Last Days of Disco +Owen Gleiberman,fresh,0120728,Entertainment Weekly,,2011-09-07,14733,The Last Days of Disco +Todd McCarthy,none,0120728,Variety,,2009-03-26,14733,The Last Days of Disco +Andrew Sarris,none,0120728,New York Observer,,2007-04-27,14733,The Last Days of Disco +Geoff Andrew,none,0120728,Time Out,,2006-02-09,14733,The Last Days of Disco +,fresh,0120728,Globe and Mail,,2003-04-25,14733,The Last Days of Disco +Jeff Strickler,none,0120728,Minneapolis Star Tribune,,2002-11-06,14733,The Last Days of Disco +Kenneth Turan,fresh,0120728,Los Angeles Times,Sharp-eyed and charming.,2001-02-14,14733,The Last Days of Disco +Laura Miller,fresh,0120728,Salon.com,The pleasures in The Last Days of Disco come when the friends rant and quarrel and sulk and circle each other with an unstable mixture of need and resentment.,2000-01-01,14733,The Last Days of Disco +Joe Baltake,fresh,0120728,Sacramento Bee,In spite of itself -- in spite of Stillman -- this is a lively and often endearing entertainment.,2000-01-01,14733,The Last Days of Disco +Roger Ebert,fresh,0120728,Chicago Sun-Times,[Stillman] nails his characters with perfectly heard dialogue and laconic satire.,2000-01-01,14733,The Last Days of Disco +Mick LaSalle,rotten,0120728,San Francisco Chronicle,"In its last hour, the picture becomes more clumsy and tiresome, but the stray laugh and the disco sound keep it pulsing.",2000-01-01,14733,The Last Days of Disco +James Berardinelli,fresh,0120728,ReelViews,The combination of sharply-realized dialogue and infectiously energetic dance sequences keeps The Last Days of Disco from losing steam.,2000-01-01,14733,The Last Days of Disco +Janet Maslin,fresh,0120728,New York Times,"If this film ... doesn't fully rise to the lovely vibrancy of Barcelona, it still extends the witty, quizzical style of Stillman's social comedies onto inviting new terrain.",2000-01-01,14733,The Last Days of Disco +,rotten,0120728,USA Today,,2000-01-01,14733,The Last Days of Disco +Susan Stark,fresh,0120728,Detroit News,,2000-01-01,14733,The Last Days of Disco +,fresh,0120728,Entertainment Weekly,,1998-05-29,14733,The Last Days of Disco +,none,0120773,Time Out,,2006-01-26,11241,The Odd Couple II +Jeff Strickler,none,0120773,Minneapolis Star Tribune,,2002-11-06,11241,The Odd Couple II +,rotten,0120773,Globe and Mail,,2002-07-12,11241,The Odd Couple II +Jack Mathews,none,0120773,Los Angeles Times,,2001-02-21,11241,The Odd Couple II +,rotten,0120773,USA Today,,2000-01-01,11241,The Odd Couple II +Stephen Holden,none,0120773,New York Times,,2000-01-01,11241,The Odd Couple II +Roger Ebert,rotten,0120773,Chicago Sun-Times,,2000-01-01,11241,The Odd Couple II +Susan Stark,rotten,0120773,Detroit News,,2000-01-01,11241,The Odd Couple II +Ruthe Stein,none,0120773,San Francisco Chronicle,,2000-01-01,11241,The Odd Couple II +Joe Baltake,none,0120773,Sacramento Bee,,2000-01-01,11241,The Odd Couple II +,none,0120773,Houston Chronicle,,2000-01-01,11241,The Odd Couple II +Jay Carr,rotten,0120773,Boston Globe,,2000-01-01,11241,The Odd Couple II +James Berardinelli,rotten,0120773,ReelViews,,2000-01-01,11241,The Odd Couple II +,rotten,0120773,Entertainment Weekly,,1998-04-10,11241,The Odd Couple II +Derek Adams,none,0120765,Time Out,,2006-02-09,12218,My Giant +Jeff Strickler,none,0120765,Minneapolis Star Tribune,,2002-11-06,12218,My Giant +,rotten,0120765,Globe and Mail,,2002-04-12,12218,My Giant +David Kronke,none,0120765,Los Angeles Times,,2001-02-14,12218,My Giant +James Berardinelli,rotten,0120765,ReelViews,,2000-01-01,12218,My Giant +Edward Guthmann,none,0120765,San Francisco Chronicle,,2000-01-01,12218,My Giant +Jonathan Rosenbaum,none,0120765,Chicago Reader,,2000-01-01,12218,My Giant +,none,0120765,Houston Chronicle,,2000-01-01,12218,My Giant +Roger Ebert,rotten,0120765,Chicago Sun-Times,,2000-01-01,12218,My Giant +Susan Stark,rotten,0120765,Detroit News,,2000-01-01,12218,My Giant +,rotten,0120765,USA Today,,2000-01-01,12218,My Giant +Joe Baltake,none,0120765,Sacramento Bee,,2000-01-01,12218,My Giant +Janet Maslin,none,0120765,New York Times,,2000-01-01,12218,My Giant +,rotten,0120765,Entertainment Weekly,,1998-04-10,12218,My Giant +Owen Gleiberman,fresh,0124718,Entertainment Weekly,,2011-09-07,13529,He Got Game +Emanuel Levy,fresh,0124718,Variety,"Lacking the moral indignation and militant politics of Lee's former work, this vibrantly colorful father-son melodrama is soft at the center, but it's one of the most accessible films Lee has made and Denzel Washington is terrific.",2008-03-25,13529,He Got Game +Andrew Sarris,rotten,0124718,New York Observer,"At the end of Mr. Lee's movie, all you feel is the distraction of Mr. Lee's stylistic exhibitionism, without which, I concede, he might not be regarded as a genius in some quarters.",2007-04-27,13529,He Got Game +David Edelstein,fresh,0124718,Slate,"[Lee] gets a charming performance from Allen, who, in his acting debut, occupies his pedestal with grace and diffidence.",2007-03-25,13529,He Got Game +Jonathan Rosenbaum,fresh,0124718,Chicago Reader,"As usual, Lee tries many kinds of stylistic effects and uses wall-to-wall music (by Aaron Copland and Public Enemy); what's different this time is how personally driven the story feels.",2007-03-25,13529,He Got Game +Derek Adams,rotten,0124718,Time Out,"Most scenes play too long, with a surplus of ideas, textures, tones and characters, and after 134 minutes it's clear Lee's problem with closure hasn't gone away.",2006-02-09,13529,He Got Game +Peter Stack,fresh,0124718,San Francisco Chronicle,"Washington's Jake Shuttlesworth looks tough and hard, an odd but refreshing turn for an actor long associated with handsomely heroic roles.",2002-06-18,13529,He Got Game +Rick Groen,rotten,0124718,Globe and Mail,A two-hour air ball.,2002-04-12,13529,He Got Game +Kenneth Turan,fresh,0124718,Los Angeles Times,Washington is so consistently effective an actor that it hardly needs be said that his excellent performance as the beleaguered Jake carries the film.,2001-02-14,13529,He Got Game +David Denby,fresh,0124718,New York Magazine,"The movie is a volatile combination of ambitious mythmaking and nasty reality, and like most of Spike Lee's work, it is also an inextricable combination of good and bad.",2000-01-01,13529,He Got Game +James Berardinelli,fresh,0124718,ReelViews,an effective companion piece to Hoop Dreams and Blue Chips.,2000-01-01,13529,He Got Game +Jay Carr,fresh,0124718,Boston Globe,Milwaukee Bucks guard Ray Allen delivers nothing less than the best performance ever put on film by a pro athlete.,2000-01-01,13529,He Got Game +Mike Clark,fresh,0124718,USA Today,The year's first Hollywood movie to burst with palpable feeling.,2000-01-01,13529,He Got Game +Stanley Kauffmann,rotten,0124718,The New Republic,"Lee is a long way from the size and scope of his best film, Do the Right Thing, but at least he is working on a subject he cares about and is doing it with polish.",2000-01-01,13529,He Got Game +Roger Ebert,fresh,0124718,Chicago Sun-Times,He Got Game is Lee's best film since Malcolm X.,2000-01-01,13529,He Got Game +Janet Maslin,fresh,0124718,New York Times,"Lee may never have the narrow focus to sustain a film on storytelling alone, and he may never need it. What he has here is an explosion of spectacular gambits and a great high-concept hook.",2000-01-01,13529,He Got Game +Susan Stark,rotten,0124718,Detroit News,"The wildly uneven script includes both disciplined, lively riffs and amateurishly artificial exchanges.",2000-01-01,13529,He Got Game +Joe Baltake,fresh,0124718,Sacramento Bee,Spike Lee's He Got Game is gripping in spite of itself.,2000-01-01,13529,He Got Game +Gary Kamiya,fresh,0124718,Salon.com,"He Got Game is a little too sappy to be a great movie, but it puts the ball in the hole.",2000-01-01,13529,He Got Game +,fresh,0124718,Entertainment Weekly,,1998-05-01,13529,He Got Game +Todd McCarthy,none,0119196,Variety,,2009-03-26,16637,The Gingerbread Man +Andrew Sarris,none,0119196,New York Observer,,2007-04-27,16637,The Gingerbread Man +,none,0119196,Time Out,,2006-02-09,16637,The Gingerbread Man +Rick Groen,rotten,0119196,Globe and Mail,"Robert Altman the up-and- down director meets John Grisham the constant mediocrity. Just where, in our hypothetical picture, should we place that unlikely scene?",2003-04-25,16637,The Gingerbread Man +Jack Mathews,fresh,0119196,Los Angeles Times,"Altman had a fine time composing difficult shots, through screens, bushes and sheets of rain, and Chungwei's images, sometimes delicate, sometimes harsh, stick with you long after you've forgotten their context.",2001-02-14,16637,The Gingerbread Man +Stanley Kauffmann,none,0119196,The New Republic,,2000-01-01,16637,The Gingerbread Man +Jeff Millar,fresh,0119196,Houston Chronicle,"If you like movies more than you do John Grisham, you can leave the story behind and listen to the filmmaking master class that Altman conducts on the screen.",2000-01-01,16637,The Gingerbread Man +Mick LaSalle,fresh,0119196,San Francisco Chronicle,There's great pleasure in watching a movie in which the director has thought out everything beforehand.,2000-01-01,16637,The Gingerbread Man +Charles Taylor,fresh,0119196,Salon.com,"The Gingerbread Man isn't any more profound than other thrillers, but the distinctive talents of director Robert Altman make it a lot more potent.",2000-01-01,16637,The Gingerbread Man +Joe Baltake,none,0119196,Sacramento Bee,,2000-01-01,16637,The Gingerbread Man +,rotten,0119196,USA Today,,2000-01-01,16637,The Gingerbread Man +James Berardinelli,fresh,0119196,ReelViews,"Although The Gingerbread Man is a finely-tuned example of mainstream entertainment, and holds the audience's interest for most of its running length, it is a little disappointing.",2000-01-01,16637,The Gingerbread Man +Jonathan Rosenbaum,rotten,0119196,Chicago Reader,"Unless one counts a few running gibes against lawyers that can easily be imagined coming from Grisham, Altman basically chooses to treat this hackneyed story straight.",2000-01-01,16637,The Gingerbread Man +Janet Maslin,fresh,0119196,New York Times,"With unexpected success, Robert Altman plays a John Grisham mystery in a seductive new key.",2000-01-01,16637,The Gingerbread Man +Roger Ebert,fresh,0119196,Chicago Sun-Times,"That it seems a step up from sensationalism is because Grisham has a sure sense of time and place, and Altman and his actors invest the material with a kind of lurid sincerity.",2000-01-01,16637,The Gingerbread Man +,fresh,0119196,Entertainment Weekly,,1997-06-01,16637,The Gingerbread Man +Lisa Schwarzbaum,rotten,0118229,Entertainment Weekly,,2011-09-07,770739110,Illtown +Todd McCarthy,none,0118229,Variety,,2009-03-26,770739110,Illtown +Janet Maslin,none,0118229,New York Times,,2003-05-20,770739110,Illtown +Jeff Strickler,none,0118229,Minneapolis Star Tribune,,2002-11-06,770739110,Illtown +Kevin Thomas,none,0118229,Los Angeles Times,,2001-02-14,770739110,Illtown +James Berardinelli,rotten,0118229,ReelViews,,2000-01-01,770739110,Illtown +,none,0118229,Houston Chronicle,,2000-01-01,770739110,Illtown +Mick LaSalle,none,0118229,San Francisco Chronicle,,2000-01-01,770739110,Illtown +Joe Baltake,none,0118229,Sacramento Bee,,2000-01-01,770739110,Illtown +Charles Taylor,none,0118229,Salon.com,,2000-01-01,770739110,Illtown +Bob Heisler,none,0120213,Los Angeles Times,,2001-02-14,12527,Slappy and the Stinkers +Lawrence Van Gelder,none,0120213,New York Times,,2000-01-01,12527,Slappy and the Stinkers +Peter Stack,none,0120213,San Francisco Chronicle,,2000-01-01,12527,Slappy and the Stinkers +Dennis Harvey,none,0118819,Variety,,2012-02-23,13737,Carne trémula +Lisa Schwarzbaum,fresh,0118819,Entertainment Weekly,,2011-09-07,13737,Carne trémula +Lisa Nesselson,none,0118819,Variety,,2009-03-26,13737,Carne trémula +Andrew Sarris,none,0118819,New York Observer,,2007-04-27,13737,Carne trémula +Geoff Andrew,none,0118819,Time Out,,2006-02-09,13737,Carne trémula +Liam Lacey,rotten,0118819,Globe and Mail,"The overall purpose of Live Flesh, the latest and reputedly most 'mature' work from Spanish bad-boy director Pedro Almodovar, remains engigmatic.",2002-04-12,13737,Carne trémula +,fresh,0118819,USA Today,,2000-01-01,13737,Carne trémula +Susan Stark,fresh,0118819,Detroit News,,2000-01-01,13737,Carne trémula +Janet Maslin,fresh,0118819,New York Times,"Almodovar, whose work here has newly sophisticated polish, appreciates the dark twists of this story along with the eroticism that bring heat to all the scheming.",2000-01-01,13737,Carne trémula +David Denby,fresh,0118819,New York Magazine,"Despite his erotic fixations, Pedro Almodovar is the cinema's last true innocent.",2000-01-01,13737,Carne trémula +Joe Baltake,none,0118819,Sacramento Bee,,2000-01-01,13737,Carne trémula +Charles Taylor,rotten,0118819,Salon.com,"I can only conclude that the people who think Flower and Live Flesh represent the new, mature Almodovar think that his earlier pictures were immature.",2000-01-01,13737,Carne trémula +Mick LaSalle,rotten,0118819,San Francisco Chronicle,This is the first Almodovar movie that could be called boring.,2000-01-01,13737,Carne trémula +James Berardinelli,fresh,0118819,ReelViews,"Like the gorgeous cinematography (which is used to good effect to eroticize a sex scene), this is all part of Almodovar's stylistic package. Never has it been more impressive than here, where everything (not just the flesh) is vibrant with life.",2000-01-01,13737,Carne trémula +Louis B. Parks,fresh,0118819,Houston Chronicle,"Almodovar seems more assured here, confident that he can interest us without overt winking and tomfoolery.",2000-01-01,13737,Carne trémula +,fresh,0118819,Entertainment Weekly,,1998-01-16,13737,Carne trémula +Lisa Schwarzbaum,rotten,0120906,Entertainment Weekly,,2011-09-07,14635,Zero Effect +Leonard Klady,fresh,0120906,Variety,"There's an idiosyncratic talent at work here with the potential to blossom into bigger, better and more accomplished films.",2009-03-26,14635,Zero Effect +Geoff Andrew,fresh,0120906,Time Out,"Kasdan's is a very promising debut, its own dearth of feeling offset by able writing, engaging playing and a sure sense of pace.",2006-06-24,14635,Zero Effect +,rotten,0120906,Globe and Mail,,2003-04-25,14635,Zero Effect +Jeff Strickler,none,0120906,Minneapolis Star Tribune,,2002-11-06,14635,Zero Effect +Jack Mathews,none,0120906,Los Angeles Times,,2001-02-14,14635,Zero Effect +James Berardinelli,rotten,0120906,ReelViews,It turns out to be disappointingly ordinary.,2000-01-01,14635,Zero Effect +David Denby,none,0120906,New York Magazine,,2000-01-01,14635,Zero Effect +Elizabeth Williams,rotten,0120906,Salon.com,"Try as it might, ""Zero Effect"" just doesn't amount to much.",2000-01-01,14635,Zero Effect +Joe Baltake,none,0120906,Sacramento Bee,,2000-01-01,14635,Zero Effect +Susan Stark,fresh,0120906,Detroit News,,2000-01-01,14635,Zero Effect +Roger Ebert,fresh,0120906,Chicago Sun-Times,"This is one of those movies that creeps up on you, insidiously gathering power. By the end, I was surprised how much I was involved.",2000-01-01,14635,Zero Effect +Janet Maslin,fresh,0120906,New York Times,Both Mr. Pullman and the slyly restrained Mr. Stiller keep their characters entertaining even when Mr. Kasdan's interest is elsewhere.,2000-01-01,14635,Zero Effect +Ruthe Stein,rotten,0120906,San Francisco Chronicle,"Kasdan is onto something, but he needs to develop it. If he tries to bring Daryl Zero back for a sequel, maybe he'll have a better idea of what to do with his eccentric private eye.",2000-01-01,14635,Zero Effect +,rotten,0120906,Entertainment Weekly,,1997-06-01,14635,Zero Effect +Lisa Schwarzbaum,fresh,0119792,Entertainment Weekly,,2011-09-07,15224,Nil by Mouth +Derek Elley,none,0119792,Variety,,2009-03-26,15224,Nil by Mouth +,none,0119792,Time Out,,2006-01-26,15224,Nil by Mouth +,rotten,0119792,Globe and Mail,,2002-04-12,15224,Nil by Mouth +Kevin Thomas,none,0119792,Los Angeles Times,,2001-02-14,15224,Nil by Mouth +Stanley Kauffmann,none,0119792,The New Republic,,2000-01-01,15224,Nil by Mouth +Joe Baltake,none,0119792,Sacramento Bee,,2000-01-01,15224,Nil by Mouth +James Berardinelli,fresh,0119792,ReelViews,,2000-01-01,15224,Nil by Mouth +Edward Guthmann,none,0119792,San Francisco Chronicle,,2000-01-01,15224,Nil by Mouth +Janet Maslin,none,0119792,New York Times,,2000-01-01,15224,Nil by Mouth +Andrew O'Hehir,none,0119792,Salon.com,,2000-01-01,15224,Nil by Mouth +,none,0119792,Houston Chronicle,,2000-01-01,15224,Nil by Mouth +,fresh,0119792,USA Today,,2000-01-01,15224,Nil by Mouth +Roger Ebert,fresh,0119792,Chicago Sun-Times,,2000-01-01,15224,Nil by Mouth +,fresh,0119792,Entertainment Weekly,,1998-02-06,15224,Nil by Mouth +Lisa Schwarzbaum,fresh,0118755,Entertainment Weekly,,2011-09-07,12554,The Borrowers +Derek Elley,none,0118755,Variety,,2008-08-07,12554,The Borrowers +,none,0118755,Time Out,,2006-02-09,12554,The Borrowers +Jeff Strickler,none,0118755,Minneapolis Star Tribune,,2002-11-06,12554,The Borrowers +,fresh,0118755,Globe and Mail,,2002-04-12,12554,The Borrowers +,none,0118755,Los Angeles Times,,2001-02-14,12554,The Borrowers +Peter Stack,fresh,0118755,San Francisco Chronicle,,2000-01-01,12554,The Borrowers +Susan Stark,fresh,0118755,Detroit News,,2000-01-01,12554,The Borrowers +Janet Maslin,none,0118755,New York Times,,2000-01-01,12554,The Borrowers +James Berardinelli,fresh,0118755,ReelViews,,2000-01-01,12554,The Borrowers +Joe Baltake,none,0118755,Sacramento Bee,,2000-01-01,12554,The Borrowers +Roger Ebert,fresh,0118755,Chicago Sun-Times,,2000-01-01,12554,The Borrowers +,rotten,0118755,USA Today,,2000-01-01,12554,The Borrowers +,fresh,0118755,Entertainment Weekly,,1998-02-13,12554,The Borrowers +,none,0047365,Variety,,2009-03-26,10966,Prince Valiant +Bosley Crowther,none,0047365,New York Times,,2006-03-25,10966,Prince Valiant +Kenneth Turan,none,0130019,Los Angeles Times,,2001-02-14,16489,"I Love You, Don't Touch Me!" +Ruthe Stein,none,0130019,San Francisco Chronicle,,2000-01-01,16489,"I Love You, Don't Touch Me!" +Susan Stark,fresh,0130019,Detroit News,,2000-01-01,16489,"I Love You, Don't Touch Me!" +Janet Maslin,none,0130019,New York Times,,2000-01-01,16489,"I Love You, Don't Touch Me!" +,none,0130019,Houston Chronicle,,2000-01-01,16489,"I Love You, Don't Touch Me!" +Joe Baltake,none,0130019,Sacramento Bee,,2000-01-01,16489,"I Love You, Don't Touch Me!" +Dennis Harvey,none,0119508,Variety,,2009-03-26,17698,Leather Jacket Love Story +Kevin Thomas,none,0119508,Los Angeles Times,,2005-01-24,17698,Leather Jacket Love Story +,none,0119508,Chicago Reader,,2005-01-24,17698,Leather Jacket Love Story +Bob Graham,none,0119508,San Francisco Chronicle,,2005-01-24,17698,Leather Jacket Love Story +Stephen Holden,none,0119508,New York Times,,2005-01-24,17698,Leather Jacket Love Story +John Hartl,rotten,0118577,Seattle Times,"The level of humor could be called sophomoric, but that would insult most sophomores.",2013-03-25,16197,An Alan Smithee Film: Burn Hollywood Burn +Michael Wilmington,rotten,0118577,Chicago Tribune,"A comedy without laughs, an expose without point.",2013-03-25,16197,An Alan Smithee Film: Burn Hollywood Burn +Owen Gleiberman,rotten,0118577,Entertainment Weekly,What turns the witlessness rancid is the way the movie is saturated in the very corruption it thinks it's ridiculing.,2011-09-07,16197,An Alan Smithee Film: Burn Hollywood Burn +Todd McCarthy,rotten,0118577,Variety,"A caustic but under-funny ""expose"" of the venality of the motion picture business.",2009-07-20,16197,An Alan Smithee Film: Burn Hollywood Burn +Jonathan Rosenbaum,rotten,0118577,Chicago Reader,"If you harbor an interest in watching so-called ""industry smarts"" autodestruct, this carries a certain morbid appeal, but that's about the extent of it.",2009-07-20,16197,An Alan Smithee Film: Burn Hollywood Burn +Kenneth Turan,rotten,0118577,Los Angeles Times,Burning is too good for such a wretched fiasco; only a surgical nuclear strike could suitably destroy what has to be one of the most enervating comedies ever made.,2001-02-14,16197,An Alan Smithee Film: Burn Hollywood Burn +Mick LaSalle,fresh,0118577,San Francisco Chronicle,"The picture is just a spoof, getting by on wit and a parade of celebrity cameos. Within its modest scope, it pretty much succeeds.",2000-01-01,16197,An Alan Smithee Film: Burn Hollywood Burn +Roger Ebert,rotten,0118577,Chicago Sun-Times,"A spectacularly bad film -- incompetent, unfunny, ill-conceived, badly executed, lamely written, and acted by people who look trapped in the headlights.",2000-01-01,16197,An Alan Smithee Film: Burn Hollywood Burn +,rotten,0118577,USA Today,,2000-01-01,16197,An Alan Smithee Film: Burn Hollywood Burn +Janet Maslin,rotten,0118577,New York Times,"Incidentally, it's a bad idea to try bailing out hopelessly flat comedy with outtakes that are funnier than the in-takes manage to be.",2000-01-01,16197,An Alan Smithee Film: Burn Hollywood Burn +Lisa Schwarzbaum,rotten,0120723,Entertainment Weekly,,2011-09-07,14309,Kissing a Fool +,rotten,0120723,Entertainment Weekly,,2010-12-25,14309,Kissing a Fool +Todd McCarthy,none,0120723,Variety,,2009-03-26,14309,Kissing a Fool +Geoff Andrew,none,0120723,Time Out,,2006-02-09,14309,Kissing a Fool +Jeff Strickler,none,0120723,Minneapolis Star Tribune,,2002-11-06,14309,Kissing a Fool +,rotten,0120723,Globe and Mail,,2002-04-12,14309,Kissing a Fool +Kevin Thomas,none,0120723,Los Angeles Times,,2001-02-14,14309,Kissing a Fool +,fresh,0120723,USA Today,,2000-01-01,14309,Kissing a Fool +Anita Gates,none,0120723,New York Times,,2000-01-01,14309,Kissing a Fool +Mick LaSalle,fresh,0120723,San Francisco Chronicle,,2000-01-01,14309,Kissing a Fool +Joe Baltake,none,0120723,Sacramento Bee,,2000-01-01,14309,Kissing a Fool +Susan Stark,fresh,0120723,Detroit News,,2000-01-01,14309,Kissing a Fool +James Berardinelli,rotten,0120723,ReelViews,,2000-01-01,14309,Kissing a Fool +Roger Ebert,rotten,0120723,Chicago Sun-Times,,2000-01-01,14309,Kissing a Fool +Joe Leydon,none,0120725,Variety,,2008-10-18,12124,Krippendorf's Tribe +Jeff Strickler,none,0120725,Minneapolis Star Tribune,,2002-11-06,12124,Krippendorf's Tribe +,rotten,0120725,Globe and Mail,,2002-04-12,12124,Krippendorf's Tribe +Kevin Thomas,none,0120725,Los Angeles Times,,2001-02-14,12124,Krippendorf's Tribe +James Berardinelli,rotten,0120725,ReelViews,,2000-01-01,12124,Krippendorf's Tribe +Peter Stack,rotten,0120725,San Francisco Chronicle,,2000-01-01,12124,Krippendorf's Tribe +Roger Ebert,rotten,0120725,Chicago Sun-Times,,2000-01-01,12124,Krippendorf's Tribe +David Denby,none,0120725,New York Magazine,,2000-01-01,12124,Krippendorf's Tribe +Susan Stark,rotten,0120725,Detroit News,,2000-01-01,12124,Krippendorf's Tribe +Joe Baltake,none,0120725,Sacramento Bee,,2000-01-01,12124,Krippendorf's Tribe +,fresh,0120725,USA Today,,2000-01-01,12124,Krippendorf's Tribe +Lawrence Van Gelder,none,0120725,New York Times,,2000-01-01,12124,Krippendorf's Tribe +,rotten,0120725,Entertainment Weekly,,1998-02-27,12124,Krippendorf's Tribe +Lisa Alspector,fresh,0138563,Chicago Reader,"This patchwork portrait is hard to look away from, partly because it exposes how one man rationalizes the dirty job of being a documentary filmmaker.",2013-01-14,13804,Kurt & Courtney +Dennis Harvey,rotten,0138563,Variety,"In the end, too, we've learned very little about Cobain's demons --- his alleged chronic stomach pains from stress, etc. --- or why he, and Nirvana, became so important to so many people",2009-03-26,13804,Kurt & Courtney +,fresh,0138563,Time Out,"[A] funny, angry, provocative film.",2006-02-09,13804,Kurt & Courtney +Kenneth Turan,fresh,0138563,Los Angeles Times,"Unreliable and categorically unfriendly to Love though it is, Kurt & Courtney is thoroughly watchable in a bad car accident, trash TV kind of way.",2001-02-21,13804,Kurt & Courtney +Edward Guthmann,rotten,0138563,San Francisco Chronicle,"When Kurt and Courtney veers into speculation and gives voice to bizarre and unreliable witnesses, it reeks of tabloid excess.",2000-01-01,13804,Kurt & Courtney +Susan Stark,rotten,0138563,Detroit News,,2000-01-01,13804,Kurt & Courtney +Roger Ebert,fresh,0138563,Chicago Sun-Times,"In all of Broomfield's films, you meet people you can hardly believe exist.",2000-01-01,13804,Kurt & Courtney +Janet Maslin,fresh,0138563,New York Times,"Mr. Broomfield doesn't ultimately prove, or even believe, that Mr. Cobain died under incriminating circumstances. But he makes it wrenchingly clear why the world in which he lived had become impossible to bear.",2000-01-01,13804,Kurt & Courtney +Owen Gleiberman,fresh,0138563,Entertainment Weekly,Lurid and freakishly arresting.,1998-02-27,13804,Kurt & Courtney +Owen Gleiberman,rotten,0119987,Entertainment Weekly,,2011-09-07,15367,The Real Blonde +Lisa Nesselson,none,0119987,Variety,,2008-12-01,15367,The Real Blonde +Geoff Andrew,none,0119987,Time Out,,2006-06-24,15367,The Real Blonde +,rotten,0119987,Globe and Mail,,2003-04-25,15367,The Real Blonde +Jeff Strickler,none,0119987,Minneapolis Star Tribune,,2002-11-06,15367,The Real Blonde +Jack Mathews,none,0119987,Los Angeles Times,,2001-02-14,15367,The Real Blonde +Mick LaSalle,fresh,0119987,San Francisco Chronicle,,2000-01-01,15367,The Real Blonde +Joe Baltake,none,0119987,Sacramento Bee,,2000-01-01,15367,The Real Blonde +Susan Stark,rotten,0119987,Detroit News,,2000-01-01,15367,The Real Blonde +James Berardinelli,fresh,0119987,ReelViews,,2000-01-01,15367,The Real Blonde +David Denby,none,0119987,New York Magazine,,2000-01-01,15367,The Real Blonde +Janet Maslin,none,0119987,New York Times,,2000-01-01,15367,The Real Blonde +Roger Ebert,fresh,0119987,Chicago Sun-Times,,2000-01-01,15367,The Real Blonde +,rotten,0119987,Entertainment Weekly,,1998-02-27,15367,The Real Blonde +Owen Gleiberman,rotten,0117786,Entertainment Weekly,,2011-09-07,11977,Yat goh hiu yan +,rotten,0117786,Entertainment Weekly,,2010-10-09,11977,Yat goh hiu yan +Leonard Klady,none,0117786,Variety,,2009-03-26,11977,Yat goh hiu yan +Kevin Thomas,none,0117786,Los Angeles Times,,2001-02-14,11977,Yat goh hiu yan +James Berardinelli,fresh,0117786,ReelViews,,2000-01-01,11977,Yat goh hiu yan +,rotten,0117786,USA Today,,2000-01-01,11977,Yat goh hiu yan +,none,0117786,Houston Chronicle,,2000-01-01,11977,Yat goh hiu yan +Susan Stark,rotten,0117786,Detroit News,,2000-01-01,11977,Yat goh hiu yan +Joe Baltake,none,0117786,Sacramento Bee,,2000-01-01,11977,Yat goh hiu yan +,none,0117786,New York Times,,2000-01-01,11977,Yat goh hiu yan +Roger Ebert,fresh,0117786,Chicago Sun-Times,,2000-01-01,11977,Yat goh hiu yan +Peter Stack,fresh,0117786,San Francisco Chronicle,,2000-01-01,11977,Yat goh hiu yan +Andrew Sarris,none,0120265,New York Observer,,2007-04-27,20938,Ta'm e guilass +Geoff Andrew,none,0120265,Time Out,,2006-06-24,20938,Ta'm e guilass +,fresh,0120265,Globe and Mail,,2002-04-12,20938,Ta'm e guilass +Joe Baltake,fresh,0120265,Sacramento Bee,Appropriately languid and uniquely seductive.,2001-07-24,20938,Ta'm e guilass +John Hartl,fresh,0120265,Film.com,Has a visual style that seems rudimentary but becomes increasingly hypnotic and resonant.,2001-07-24,20938,Ta'm e guilass +Roger Ebert,rotten,0120265,Chicago Sun-Times,The film is such a lifeless drone that we experience it only as a movie.,2000-01-01,20938,Ta'm e guilass +Richard Corliss,fresh,0120265,TIME Magazine,The talk flows persuasively; the picture pulses with art and humanity.,2000-01-01,20938,Ta'm e guilass +Jonathan Rosenbaum,fresh,0120265,Chicago Reader,,2000-01-01,20938,Ta'm e guilass +David Denby,none,0120265,New York Magazine,,2000-01-01,20938,Ta'm e guilass +Edward Guthmann,fresh,0120265,San Francisco Chronicle,"Kiarostami is in no rush, but the respect and love he shows for his characters, and the confidence and simplicity of his technique, make Taste of Cherry a satisfying experience.",2000-01-01,20938,Ta'm e guilass +Stephen Holden,fresh,0120265,New York Times,"Kiarastomi, like no other filmmaker, has a vision of human scale that is simultaneously epic and precisely minuscule.",2000-01-01,20938,Ta'm e guilass +Stanley Kauffmann,fresh,0120265,The New Republic,"As the film's design becomes clear to us, a quiet spaciousness begins to inhabit it.",2000-01-01,20938,Ta'm e guilass +,fresh,0120265,Entertainment Weekly,,1998-03-08,20938,Ta'm e guilass +,none,0119448,Time Out,,2006-02-09,15525,Karakter +Jeff Strickler,none,0119448,Minneapolis Star Tribune,,2002-11-06,15525,Karakter +,fresh,0119448,Globe and Mail,,2002-04-12,15525,Karakter +James Berardinelli,fresh,0119448,ReelViews,,2000-01-01,15525,Karakter +Edward Guthmann,none,0119448,San Francisco Chronicle,,2000-01-01,15525,Karakter +Jay Carr,fresh,0119448,Boston Globe,,2000-01-01,15525,Karakter +Janet Maslin,none,0119448,New York Times,,2000-01-01,15525,Karakter +Joe Baltake,none,0119448,Sacramento Bee,,2000-01-01,15525,Karakter +Roger Ebert,fresh,0119448,Chicago Sun-Times,,2000-01-01,15525,Karakter +Susan Stark,fresh,0119448,Detroit News,,2000-01-01,15525,Karakter +,fresh,0119448,Entertainment Weekly,,1998-03-27,15525,Karakter +Derek Elley,none,0118785,Variety,,2009-03-26,770679667,Budbringeren +Geoff Andrew,none,0118785,Time Out,,2006-06-24,770679667,Budbringeren +Janet Maslin,none,0118785,New York Times,,2004-08-30,770679667,Budbringeren +,fresh,0118785,Globe and Mail,,2002-04-12,770679667,Budbringeren +Kenneth Turan,none,0118785,Los Angeles Times,,2001-02-14,770679667,Budbringeren +Peter Stack,none,0118785,San Francisco Chronicle,,2000-01-01,770679667,Budbringeren +James Berardinelli,fresh,0118785,ReelViews,,2000-01-01,770679667,Budbringeren +Roger Ebert,fresh,0118785,Chicago Sun-Times,,2000-01-01,770679667,Budbringeren +Joe Baltake,none,0118785,Sacramento Bee,,2000-01-01,770679667,Budbringeren +,fresh,0118785,Entertainment Weekly,,1800-01-01,770679667,Budbringeren +Joe Leydon,none,0120841,Variety,,2009-03-26,14417,Species II +Derek Adams,none,0120841,Time Out,,2006-06-24,14417,Species II +,none,0120841,Globe and Mail,,2003-04-25,14417,Species II +James Berardinelli,rotten,0120841,ReelViews,,2000-01-01,14417,Species II +Lawrence Van Gelder,none,0120841,New York Times,,2000-01-01,14417,Species II +Joe Baltake,none,0120841,Sacramento Bee,,2000-01-01,14417,Species II +Peter Stack,none,0120841,San Francisco Chronicle,,2000-01-01,14417,Species II +,rotten,0120841,Entertainment Weekly,,1998-04-10,14417,Species II +Daniel M. Kimmel,fresh,0120742,Variety,This third outing in the Major League series... won't set any box office records [b]ut it's an amusing film in its own right...,2004-02-08,11173,Major League: Back to the Minors +Jeff Strickler,none,0120742,Minneapolis Star Tribune,,2002-11-06,11173,Major League: Back to the Minors +David Kronke,none,0120742,Los Angeles Times,,2001-02-14,11173,Major League: Back to the Minors +Susan Stark,rotten,0120742,Detroit News,,2000-01-01,11173,Major League: Back to the Minors +Lawrence Van Gelder,none,0120742,New York Times,,2000-01-01,11173,Major League: Back to the Minors +Mick LaSalle,none,0120742,San Francisco Chronicle,,2000-01-01,11173,Major League: Back to the Minors +James Berardinelli,rotten,0120742,ReelViews,,2000-01-01,11173,Major League: Back to the Minors +Joe Baltake,none,0120742,Sacramento Bee,,2000-01-01,11173,Major League: Back to the Minors +,rotten,0120742,Entertainment Weekly,,1998-04-17,11173,Major League: Back to the Minors +Derek Adams,none,0120838,Time Out,,2006-02-09,14856,Sour Grapes +Jack Mathews,none,0120838,Los Angeles Times,,2001-02-14,14856,Sour Grapes +Edward Guthmann,none,0120838,San Francisco Chronicle,,2000-01-01,14856,Sour Grapes +Roger Ebert,rotten,0120838,Chicago Sun-Times,I can't easily remember a film I've enjoyed less.,2000-01-01,14856,Sour Grapes +Laura Miller,none,0120838,Salon.com,,2000-01-01,14856,Sour Grapes +,rotten,0120838,USA Today,,2000-01-01,14856,Sour Grapes +Janet Maslin,none,0120838,New York Times,,2000-01-01,14856,Sour Grapes +,rotten,0120838,Entertainment Weekly,,1998-04-17,14856,Sour Grapes +David Rooney,fresh,0141986,Variety,"Kopple's discreet, quietly revelatory style creates a fine balance between public and private personae that veers more pointedly toward the personal in an incongruous but fascinating coda.",2007-10-16,465973437,Wild Man Blues +Jonathan Rosenbaum,fresh,0141986,Chicago Reader,It provides some generous insights into his psychic background when his unsupportive parents greet him back in New York at the end.,2007-10-16,465973437,Wild Man Blues +,fresh,0141986,Time Out,"It's hardly a revelation, but Allen emerges as genuinely neurotic. He's also funny.",2006-01-26,465973437,Wild Man Blues +,fresh,0141986,Globe and Mail,,2002-04-12,465973437,Wild Man Blues +Edward Guthmann,fresh,0141986,San Francisco Chronicle,"[Kopple's] made a greatly enjoyable film, but you can't help wondering if she's fallen under her subject's spell.",2000-01-01,465973437,Wild Man Blues +Roger Ebert,fresh,0141986,Chicago Sun-Times,"[Kopple] might seem an unlikely choice for this material, but no doubt her track record gained Allen's trust.",2000-01-01,465973437,Wild Man Blues +,fresh,0141986,USA Today,,2000-01-01,465973437,Wild Man Blues +James Berardinelli,rotten,0141986,ReelViews,"Wild Man Blues has a tendency to become repetitious, especially during the final forty minutes.",2000-01-01,465973437,Wild Man Blues +Janet Maslin,fresh,0141986,New York Times,"In her unexpectedly delightful documentary about Woody Allen as jazz musician, Barbara Kopple demonstrates cinema verite at its most seductive.",2000-01-01,465973437,Wild Man Blues +,fresh,0141986,Entertainment Weekly,,1998-04-17,465973437,Wild Man Blues +Leonard Klady,none,0120609,Variety,,2009-03-26,14445,The Big Hit +,none,0120609,Time Out,,2006-02-09,14445,The Big Hit +,rotten,0120609,Globe and Mail,,2003-04-25,14445,The Big Hit +Jack Mathews,rotten,0120609,Los Angeles Times,"The Big Hit is nothing more, or less, than a big goof.",2001-02-14,14445,The Big Hit +Susan Stark,fresh,0120609,Detroit News,...crude and bloody but effective action comedy...,2000-01-01,14445,The Big Hit +James Berardinelli,rotten,0120609,ReelViews,"As low- intelligence entertainment goes, this film is very much a hit-and-miss affair.",2000-01-01,14445,The Big Hit +,fresh,0120609,USA Today,,2000-01-01,14445,The Big Hit +Lawrence Van Gelder,rotten,0120609,New York Times,"Insatiable moviegoers are advised to wait till this action-comedy, written by Ben Ramsey, thuds into video stores; tasteful moviegoers will avoid it altogether.",2000-01-01,14445,The Big Hit +Joe Baltake,none,0120609,Sacramento Bee,,2000-01-01,14445,The Big Hit +Jay Carr,fresh,0120609,Boston Globe,"In its non-A-list way, The Big Hit is the most successful attempt yet to transfer the Hong Kong action movie to Hollywood.",2000-01-01,14445,The Big Hit +Roger Ebert,rotten,0120609,Chicago Sun-Times,"The characters in these movies exist in a Twilight Zone where thousands of rounds of ammunition are fired, but no one ever gets shot unless the plot requires him to. The bullets have read the screenplay.",2000-01-01,14445,The Big Hit +Peter Stack,fresh,0120609,San Francisco Chronicle,Score it big-time inane but a load of fun.,2000-01-01,14445,The Big Hit +,fresh,0120609,Entertainment Weekly,,1998-04-24,14445,The Big Hit +Daniel M. Kimmel,rotten,0120856,Variety,"This silly adventure with Casper Van Dien as the latest Lord of the Apes comes across more like a sequel to George of the Jungle, but without the laughs.",2004-02-08,12058,Tarzan and the Lost City +Bob Heisler,none,0120856,Los Angeles Times,,2001-02-14,12058,Tarzan and the Lost City +Jay Carr,rotten,0120856,Boston Globe,,2000-01-01,12058,Tarzan and the Lost City +Peter Stack,rotten,0120856,San Francisco Chronicle,,2000-01-01,12058,Tarzan and the Lost City +Joe Baltake,none,0120856,Sacramento Bee,,2000-01-01,12058,Tarzan and the Lost City +Lawrence Van Gelder,none,0120856,New York Times,,2000-01-01,12058,Tarzan and the Lost City +James Berardinelli,rotten,0120856,ReelViews,,2000-01-01,12058,Tarzan and the Lost City +,rotten,0120856,Entertainment Weekly,,1998-04-24,12058,Tarzan and the Lost City +Joe Leydon,none,0120610,Variety,,2009-03-27,12026,Black Dog +Lawrence Van Gelder,none,0120610,New York Times,,2003-05-20,12026,Black Dog +Bob Heisler,none,0120610,Los Angeles Times,,2002-08-15,12026,Black Dog +Jay Carr,rotten,0120610,Boston Globe,,2000-01-01,12026,Black Dog +Susan Stark,rotten,0120610,Detroit News,,2000-01-01,12026,Black Dog +Joe Baltake,none,0120610,Sacramento Bee,,2000-01-01,12026,Black Dog +Edward Guthmann,none,0120610,San Francisco Chronicle,,2000-01-01,12026,Black Dog +,rotten,0120610,Entertainment Weekly,,1998-05-01,12026,Black Dog +Emanuel Levy,fresh,0118925,Variety,"Tim McCanlies' charming feature directorial debut evokes the spirit of Capra's Depression comedies and Thornton Wilder's Our Town, without the nostalgia or sentimentality of those works.",2006-06-09,11707,"Dancer, Texas Pop. 81" +,rotten,0118925,Globe and Mail,,2002-04-12,11707,"Dancer, Texas Pop. 81" +Kenneth Turan,none,0118925,Los Angeles Times,,2001-02-14,11707,"Dancer, Texas Pop. 81" +Stephen Holden,none,0118925,New York Times,,2000-01-01,11707,"Dancer, Texas Pop. 81" +Joe Baltake,none,0118925,Sacramento Bee,,2000-01-01,11707,"Dancer, Texas Pop. 81" +,fresh,0118925,Entertainment Weekly,,1998-05-01,11707,"Dancer, Texas Pop. 81" +Brendan Kelly,none,0119952,Variety,,2011-06-16,770739248,Priyatel pokoynika +Jeff Strickler,none,0119952,Minneapolis Star Tribune,,2002-11-06,770739248,Priyatel pokoynika +,fresh,0119952,Globe and Mail,,2002-04-24,770739248,Priyatel pokoynika +Kevin Thomas,none,0119952,Los Angeles Times,,2001-02-14,770739248,Priyatel pokoynika +Peter Stack,none,0119952,San Francisco Chronicle,,2000-01-01,770739248,Priyatel pokoynika +Joe Baltake,none,0119952,Sacramento Bee,,2000-01-01,770739248,Priyatel pokoynika +James Berardinelli,fresh,0119952,ReelViews,,2000-01-01,770739248,Priyatel pokoynika +Stephen Holden,none,0119952,New York Times,,2000-01-01,770739248,Priyatel pokoynika +,fresh,0119952,Entertainment Weekly,,1800-01-01,770739248,Priyatel pokoynika +Christy Lemire,fresh,1010048,Associated Press,"Boyle takes his wildly high-energy visual aesthetic and applies it to a story that, at its core, is rather sweet and traditionally crowdpleasing.",2013-02-20,770770017,Slumdog Millionaire +Peter Howell,fresh,1010048,Toronto Star,It's Oliver Twist by way of City of God.,2013-02-20,770770017,Slumdog Millionaire +Richard Roeper,fresh,1010048,Richard Roeper.com,The best movie of 2008.,2009-02-07,770770017,Slumdog Millionaire +Dave Calhoun,fresh,1010048,Time Out,"Slumdog Millionaire, a film so upbeat and colourful that, by the time you're relaying its infectious air of optimism to friends, you could forget that it features orphans, slaughter, organised crime, poverty, enslavement and police brutality.",2009-01-09,770770017,Slumdog Millionaire +Amy Biancolli,fresh,1010048,Houston Chronicle,"Slumdog Millionaire is not the cure for all the world's ills, but it comes close. It solves, for instance, such endemic global problems as: a) sadness, b) lovelessness, c) cynicism, and d) the waning cultural relevance of Who Wants to Be a Millionaire.",2008-12-12,770770017,Slumdog Millionaire +Rene Rodriguez,fresh,1010048,Miami Herald,"From an early footchase in which the careening camera gives us a tour of the maze-like slums, to the ridiculously uplifting Bollywood dance number that plays over the end credits, Slumdog Millionaire makes for kinetic, exhilarating entertainment.",2008-12-12,770770017,Slumdog Millionaire +Roger Moore,fresh,1010048,Orlando Sentinel,"[A] taut, tense and witty tale of human tragedy and triumphant humanity set against the sweep of modern India.",2008-12-11,770770017,Slumdog Millionaire +Moira MacDonald,fresh,1010048,Seattle Times,"An intoxicating mix of genres: comedy, drama, suspense, even Bollywood-style musical.",2008-11-21,770770017,Slumdog Millionaire +Lisa Kennedy,fresh,1010048,Denver Post,"Watching Slumdog Millionaire, it's easy to believe director Danny Boyle has been working toward this brilliantly woven masterwork with each entertaining and diverse tale he's delivered.",2008-11-21,770770017,Slumdog Millionaire +Ty Burr,fresh,1010048,Boston Globe,I'll keep this simple: Cancel whatever you're doing tonight and go see Slumdog Millionaire instead.,2008-11-21,770770017,Slumdog Millionaire +Colin Covert,fresh,1010048,Minneapolis Star Tribune,Don't let the exotic setting put you off; this is a massively cool cross-cultural crowd-pleaser.,2008-11-20,770770017,Slumdog Millionaire +Steven Rea,fresh,1010048,Philadelphia Inquirer,"It doesn't happen often, but when it does, look out: a movie that rocks and rolls, that transports, startles, delights, shocks, seduces. A movie that is, quite simply, great.",2008-11-20,770770017,Slumdog Millionaire +Bill Goodykoontz,fresh,1010048,Arizona Republic,The film is a delight.,2008-11-20,770770017,Slumdog Millionaire +Cole Haddon,fresh,1010048,Film.com,"Not that the movie from director Danny Boyle isn't satisfying, isn't more than worth seeing. But I had been expecting cinematic fireworks to justify the claim that it's the best movie of the new millennium.",2008-11-20,770770017,Slumdog Millionaire +Ben Lyons,fresh,1010048,At the Movies,Look for multiple Oscar nominations for this movie.,2008-11-17,770770017,Slumdog Millionaire +Ben Mankiewicz,fresh,1010048,At the Movies,Worth seeing.,2008-11-17,770770017,Slumdog Millionaire +Anthony Lane,rotten,1010048,New Yorker,"There are no surprises in this movie, and most people will be able to predict, within the first ten minutes, roughly how the last ten will pan out.",2008-11-17,770770017,Slumdog Millionaire +Peter Rainer,fresh,1010048,Christian Science Monitor,Danny Boyle's Slumdog Millionaire is trying very hard to be a Dickensian fable for our time.,2008-11-17,770770017,Slumdog Millionaire +J. R. Jones,fresh,1010048,Chicago Reader,"The movie brushes against some of India's worst social ills, but it's essentially a fairy tale.",2008-11-14,770770017,Slumdog Millionaire +Liam Lacey,fresh,1010048,Globe and Mail,"Slumdog Millionaire is skillful entertainment, with the simple message that the most intense life experiences yield the greatest education.",2008-11-14,770770017,Slumdog Millionaire +Jeff Strickler,none,0120211,Minneapolis Star Tribune,,2002-11-06,12405,Still Breathing +Kevin Thomas,fresh,0120211,Los Angeles Times,There's a depth and caring to Still Breathing that you don't find in the usual major studio fare.,2001-02-07,12405,Still Breathing +Joe Leydon,fresh,0120211,Variety,A light and bright romantic comedy.,2000-01-01,12405,Still Breathing +Moira MacDonald,rotten,0120211,Film.com,"The film's success ultimately rests on the couple -- and not once in this film, aside from a lot of wispy talk about fate and dreams, did I see any reason why these two opposites would be drawn to each other.",2000-01-01,12405,Still Breathing +Duane Byrge,none,0120211,Hollywood Reporter,,2000-01-01,12405,Still Breathing +Robert Horton,rotten,0120211,Film.com,"This is a story that has been told many times before, but generally with more energy than this.",2000-01-01,12405,Still Breathing +Stephen Holden,fresh,0120211,New York Times,"A gooey, swooning swatch of romantic hyperventilation, its queasy charms. And let it be said that surrendering to those charms could be as guilt-inducing as polishing off a pint of Haagen-Dazs chocolate ice cream before lunch.",2000-01-01,12405,Still Breathing +Todd McCarthy,none,0118866,Variety,,2009-03-27,12022,Clockwatchers +Andrew Sarris,none,0118866,New York Observer,,2007-04-27,12022,Clockwatchers +Jeff Strickler,none,0118866,Minneapolis Star Tribune,,2002-11-06,12022,Clockwatchers +,fresh,0118866,Globe and Mail,,2002-04-12,12022,Clockwatchers +David Kronke,none,0118866,Los Angeles Times,,2001-02-14,12022,Clockwatchers +Mick LaSalle,fresh,0118866,San Francisco Chronicle,,2000-01-01,12022,Clockwatchers +James Berardinelli,fresh,0118866,ReelViews,,2000-01-01,12022,Clockwatchers +Stephen Holden,none,0118866,New York Times,,2000-01-01,12022,Clockwatchers +Joe Baltake,none,0118866,Sacramento Bee,,2000-01-01,12022,Clockwatchers +Roger Ebert,fresh,0118866,Chicago Sun-Times,,2000-01-01,12022,Clockwatchers +,rotten,0118866,Entertainment Weekly,,1998-05-15,12022,Clockwatchers +Todd McCarthy,none,0120647,Variety,,2008-07-22,11555,Deep Impact +,none,0120647,Time Out,,2006-01-26,11555,Deep Impact +Jeff Strickler,none,0120647,Minneapolis Star Tribune,,2002-11-06,11555,Deep Impact +Mick LaSalle,none,0120647,San Francisco Chronicle,,2002-06-18,11555,Deep Impact +,rotten,0120647,Globe and Mail,,2002-04-12,11555,Deep Impact +Kenneth Turan,none,0120647,Los Angeles Times,,2001-02-14,11555,Deep Impact +Joe Baltake,none,0120647,Sacramento Bee,,2000-01-01,11555,Deep Impact +Janet Maslin,none,0120647,New York Times,,2000-01-01,11555,Deep Impact +,rotten,0120647,USA Today,,2000-01-01,11555,Deep Impact +James Berardinelli,rotten,0120647,ReelViews,,2000-01-01,11555,Deep Impact +Susan Stark,fresh,0120647,Detroit News,,2000-01-01,11555,Deep Impact +Charles Taylor,none,0120647,Salon.com,,2000-01-01,11555,Deep Impact +Roger Ebert,rotten,0120647,Chicago Sun-Times,,2000-01-01,11555,Deep Impact +,fresh,0120647,Entertainment Weekly,,1998-05-08,11555,Deep Impact +Lael Loewenstein,none,0145048,Variety,,2008-10-16,770680065,Little Men +Jeff Strickler,none,0145048,Minneapolis Star Tribune,,2002-11-06,770680065,Little Men +,rotten,0145048,Globe and Mail,,2002-04-12,770680065,Little Men +Anita Gates,none,0145048,New York Times,,2000-01-01,770680065,Little Men +Roger Ebert,rotten,0145048,Chicago Sun-Times,,2000-01-01,770680065,Little Men +Susan Stark,rotten,0145048,Detroit News,,2000-01-01,770680065,Little Men +Brendan Kelly,none,0125128,Variety,,2009-03-26,15430,The Hanging Garden +Derek Adams,none,0125128,Time Out,,2006-06-24,15430,The Hanging Garden +Jeff Strickler,none,0125128,Minneapolis Star Tribune,,2002-11-06,15430,The Hanging Garden +,fresh,0125128,Globe and Mail,,2002-07-12,15430,The Hanging Garden +Kevin Thomas,none,0125128,Los Angeles Times,,2001-02-14,15430,The Hanging Garden +Joe Baltake,none,0125128,Sacramento Bee,,2000-01-01,15430,The Hanging Garden +James Berardinelli,fresh,0125128,ReelViews,,2000-01-01,15430,The Hanging Garden +Susan Stark,fresh,0125128,Detroit News,,2000-01-01,15430,The Hanging Garden +Peter Stack,none,0125128,San Francisco Chronicle,,2000-01-01,15430,The Hanging Garden +Stephen Holden,none,0125128,New York Times,,2000-01-01,15430,The Hanging Garden +Roger Ebert,fresh,0125128,Chicago Sun-Times,,2000-01-01,15430,The Hanging Garden +Todd McCarthy,none,0119506,Variety,,2009-03-26,14924,Lawn Dogs +Geoff Andrew,none,0119506,Time Out,,2006-06-24,14924,Lawn Dogs +,fresh,0119506,Globe and Mail,,2002-03-19,14924,Lawn Dogs +Kevin Thomas,none,0119506,Los Angeles Times,,2001-02-14,14924,Lawn Dogs +Michael O'Sullivan,none,0119506,Washington Post,,2000-01-01,14924,Lawn Dogs +Edward Guthmann,none,0119506,San Francisco Chronicle,,2000-01-01,14924,Lawn Dogs +Joe Baltake,none,0119506,Sacramento Bee,,2000-01-01,14924,Lawn Dogs +Janet Maslin,none,0119506,New York Times,,2000-01-01,14924,Lawn Dogs +Roger Ebert,rotten,0119506,Chicago Sun-Times,,2000-01-01,14924,Lawn Dogs +James Berardinelli,rotten,0119506,ReelViews,,2000-01-01,14924,Lawn Dogs +,rotten,0119506,Entertainment Weekly,,1998-05-18,14924,Lawn Dogs +Joe Leydon,none,0120800,Variety,,2009-03-26,9676,Quest for Camelot +Derek Adams,none,0120800,Time Out,,2006-02-09,9676,Quest for Camelot +Leila Cobo-Hanlon,rotten,0120800,Miami Herald,,2003-07-31,9676,Quest for Camelot +David Kronke,none,0120800,Los Angeles Times,,2001-02-14,9676,Quest for Camelot +James Berardinelli,rotten,0120800,ReelViews,,2000-01-01,9676,Quest for Camelot +Joe Baltake,none,0120800,Sacramento Bee,,2000-01-01,9676,Quest for Camelot +Roger Ebert,rotten,0120800,Chicago Sun-Times,,2000-01-01,9676,Quest for Camelot +Peter Stack,fresh,0120800,San Francisco Chronicle,,2000-01-01,9676,Quest for Camelot +,rotten,0120800,USA Today,,2000-01-01,9676,Quest for Camelot +Stephen Holden,none,0120800,New York Times,,2000-01-01,9676,Quest for Camelot +Susan Stark,fresh,0120800,Detroit News,,2000-01-01,9676,Quest for Camelot +,rotten,0120800,Entertainment Weekly,,1998-05-15,9676,Quest for Camelot +Owen Gleiberman,fresh,0120685,Entertainment Weekly,,2011-09-07,11284,Godzilla +Joe Leydon,none,0120685,Variety,,2008-11-27,11284,Godzilla +,none,0120685,Time Out,,2006-06-24,11284,Godzilla +,none,0120685,St. Louis Post-Dispatch,,2004-08-13,11284,Godzilla +,fresh,0120685,Dallas Morning News,,2004-06-19,11284,Godzilla +Desson Thomson,none,0120685,Washington Post,,2004-06-14,11284,Godzilla +Stephen Hunter,none,0120685,Washington Post,,2004-06-14,11284,Godzilla +,fresh,0120685,Boston Globe,,2004-06-13,11284,Godzilla +,fresh,0120685,Philadelphia Inquirer,,2004-05-21,11284,Godzilla +J. Hoberman,none,0120685,Village Voice,,2004-05-05,11284,Godzilla +Jeff Strickler,none,0120685,Minneapolis Star Tribune,,2002-11-06,11284,Godzilla +Kevin Thomas,none,0120685,Los Angeles Times,,2002-06-18,11284,Godzilla +Mick LaSalle,rotten,0120685,San Francisco Chronicle,,2002-06-18,11284,Godzilla +,none,0120685,Globe and Mail,,2002-04-12,11284,Godzilla +Stephen Holden,none,0120685,New York Times,,2000-01-01,11284,Godzilla +Roger Ebert,rotten,0120685,Chicago Sun-Times,,2000-01-01,11284,Godzilla +Susan Stark,rotten,0120685,Detroit News,,2000-01-01,11284,Godzilla +Joe Baltake,none,0120685,Sacramento Bee,,2000-01-01,11284,Godzilla +David Denby,none,0120685,New York Magazine,,2000-01-01,11284,Godzilla +James Berardinelli,rotten,0120685,ReelViews,,2000-01-01,11284,Godzilla +Owen Gleiberman,rotten,0118798,Entertainment Weekly,,2011-09-07,13700,Bulworth +Geoff Andrew,fresh,0118798,Time Out,"It's a sharp, brave movie, a little ragged around the edges, but that's to its advantage.",2006-06-24,13700,Bulworth +,rotten,0118798,Globe and Mail,,2002-04-12,13700,Bulworth +Kenneth Turan,fresh,0118798,Los Angeles Times,"What gives Bulworth its unique character is that all this silliness is periodically punctuated by cogent, carefully thought-out mini-manifestos...",2001-02-14,13700,Bulworth +,fresh,0118798,USA Today,,2000-01-01,13700,Bulworth +Janet Maslin,fresh,0118798,New York Times,"Bulworth works, with both urbanity and chutzpah, by viewing political puppeteering with an all-purpose jaundiced eye.",2000-01-01,13700,Bulworth +Charles Taylor,fresh,0118798,Salon.com,"As writer, director and star, Beatty flails all over the screen, but he's also made the only recent political satire that draws blood.",2000-01-01,13700,Bulworth +Edward Guthmann,fresh,0118798,San Francisco Chronicle,"A shrewd political observer for decades, Beatty has fashioned a hilarious morality tale that delivers a surprisingly potent, angry message beneath the laughs.",2000-01-01,13700,Bulworth +James Berardinelli,fresh,0118798,ReelViews,"Bulworth is an angry movie, but Beatty is savvy enough to recognize that people respond better to comedies than serious ""issue films,"" so he has camouflaged his message beneath the surface of this original, incisive satire.",2000-01-01,13700,Bulworth +Roger Ebert,fresh,0118798,Chicago Sun-Times,Bulworth plays like a cry of frustrated comic rage. It's about an archetypal character who increasingly seems to stand for our national mood: the guy who's fed up and isn't going to take it anymore.,2000-01-01,13700,Bulworth +,rotten,0118798,Entertainment Weekly,,1998-05-22,13700,Bulworth +Jonathan Rosenbaum,fresh,0118798,Chicago Reader,,1998-05-22,13700,Bulworth +Jonathan Rosenbaum,fresh,0120669,Chicago Reader,"It's certainly distinctive, looking at times like Richard Lester put through a postmodernist blender.",2012-05-02,13278,Fear and Loathing in Las Vegas +Owen Gleiberman,rotten,0120669,Entertainment Weekly,(Gilliam's) vision is too reflexively comic to evoke the shadows of dread in Thompson's writing.,2011-09-07,13278,Fear and Loathing in Las Vegas +Todd McCarthy,rotten,0120669,Variety,Pic serves up a sensory overload without any compensatory reflection on the outlandish and irresponsible behavior on view.,2009-03-26,13278,Fear and Loathing in Las Vegas +Geoff Andrew,rotten,0120669,Time Out,"A film of brilliant moments, but sadly less coherent - and, on senses, rather less personal - than most of Gilliam's work.",2006-01-26,13278,Fear and Loathing in Las Vegas +Edward Guthmann,rotten,0120669,San Francisco Chronicle,It's really a series of sketches on one theme.,2002-06-18,13278,Fear and Loathing in Las Vegas +,rotten,0120669,Globe and Mail,,2002-04-12,13278,Fear and Loathing in Las Vegas +Susan Stark,rotten,0120669,Detroit News,,2000-01-01,13278,Fear and Loathing in Las Vegas +Roger Ebert,rotten,0120669,Chicago Sun-Times,"If you encountered characters like this on an elevator, you'd push a button and get off at the next floor. Here the elevator is trapped between floors for 128 minutes.",2000-01-01,13278,Fear and Loathing in Las Vegas +,rotten,0120669,USA Today,,2000-01-01,13278,Fear and Loathing in Las Vegas +James Berardinelli,rotten,0120669,ReelViews,"Darn funny, but those moments of seemingly-inspired humor are more than offset by the rest of the movie, which is nearly unwatchable.",2000-01-01,13278,Fear and Loathing in Las Vegas +Owen Gleiberman,rotten,0120777,Entertainment Weekly,,2011-09-07,14130,The Opposite of Sex +Andrew Sarris,none,0120777,New York Observer,,2007-04-27,14130,The Opposite of Sex +,none,0120777,Time Out,,2006-01-26,14130,The Opposite of Sex +,rotten,0120777,Globe and Mail,,2003-04-25,14130,The Opposite of Sex +Jeff Strickler,none,0120777,Minneapolis Star Tribune,,2002-11-06,14130,The Opposite of Sex +David Denby,none,0120777,New York Magazine,,2001-06-26,14130,The Opposite of Sex +Kristine McKenna,none,0120777,Los Angeles Times,,2001-02-14,14130,The Opposite of Sex +Janet Maslin,fresh,0120777,New York Times,,2000-01-01,14130,The Opposite of Sex +James Berardinelli,fresh,0120777,ReelViews,,2000-01-01,14130,The Opposite of Sex +Susan Stark,rotten,0120777,Detroit News,,2000-01-01,14130,The Opposite of Sex +Roger Ebert,fresh,0120777,Chicago Sun-Times,,2000-01-01,14130,The Opposite of Sex +Joe Baltake,none,0120777,Sacramento Bee,,2000-01-01,14130,The Opposite of Sex +Ruthe Stein,fresh,0120777,San Francisco Chronicle,,2000-01-01,14130,The Opposite of Sex +Cynthia Joyce,none,0120777,Salon.com,,2000-01-01,14130,The Opposite of Sex +,rotten,0120777,USA Today,,2000-01-01,14130,The Opposite of Sex +Joe Leydon,none,0131436,Variety,,2009-03-26,14410,I Got the Hook Up +Lawrence Van Gelder,none,0131436,New York Times,,2003-05-20,14410,I Got the Hook Up +Andy Seiler,rotten,0131436,USA Today,"Slipshod storytelling, junior high-level acting and direction that resembles Aunt Gertrude's home movies.",2000-01-01,14410,I Got the Hook Up +Joe Baltake,none,0131436,Sacramento Bee,,2000-01-01,14410,I Got the Hook Up +Tom Keogh,rotten,0131436,Film.com,A waste of time.,2000-01-01,14410,I Got the Hook Up +Owen Gleiberman,rotten,0119053,Entertainment Weekly,,2011-09-07,10251,Almost Heroes +Joe Leydon,none,0119053,Variety,,2008-07-22,10251,Almost Heroes +Hazel-Dawn Dumpert,none,0119053,L.A. Weekly,,2002-10-03,10251,Almost Heroes +Joe Baltake,none,0119053,Sacramento Bee,,2000-01-01,10251,Almost Heroes +Peter Stack,none,0119053,San Francisco Chronicle,,2000-01-01,10251,Almost Heroes +Susan Stark,rotten,0119053,Detroit News,,2000-01-01,10251,Almost Heroes +James Berardinelli,rotten,0119053,ReelViews,,2000-01-01,10251,Almost Heroes +Anita Gates,none,0119053,New York Times,,2000-01-01,10251,Almost Heroes +,rotten,0119053,Entertainment Weekly,,1998-05-29,10251,Almost Heroes +Lisa Schwarzbaum,rotten,0119313,Entertainment Weekly,,2011-09-07,12310,Hope Floats +Derek Adams,none,0119313,Time Out,,2006-06-24,12310,Hope Floats +Jeff Strickler,none,0119313,Minneapolis Star Tribune,,2002-11-06,12310,Hope Floats +,rotten,0119313,Globe and Mail,,2002-04-12,12310,Hope Floats +Kevin Thomas,none,0119313,Los Angeles Times,,2001-02-14,12310,Hope Floats +Joe Baltake,none,0119313,Sacramento Bee,,2000-01-01,12310,Hope Floats +Susan Stark,rotten,0119313,Detroit News,,2000-01-01,12310,Hope Floats +Janet Maslin,none,0119313,New York Times,,2000-01-01,12310,Hope Floats +,rotten,0119313,USA Today,,2000-01-01,12310,Hope Floats +Mick LaSalle,rotten,0119313,San Francisco Chronicle,,2000-01-01,12310,Hope Floats +Roger Ebert,rotten,0119313,Chicago Sun-Times,,2000-01-01,12310,Hope Floats +James Berardinelli,rotten,0119313,ReelViews,,2000-01-01,12310,Hope Floats +,rotten,0119313,Entertainment Weekly,,1998-05-29,12310,Hope Floats +Richard Schickel,fresh,0278504,TIME Magazine,"The film represents a triumph of atmosphere over a none-too-mysterious mystery. Which is to say that Nolan makes you feel the end-of-the-earth bleakness of his setting, makes you feel the way it can discombobulate people once they internalize it.",2013-08-05,14923,Insomnia +David Edelstein,fresh,0278504,Slate,"With a run-of-the-mill bad-guy actor playing chief suspect Walter Finch, the movie might have tipped too far Pacino's way. But Robin Williams is a shockingly effective counterweight.",2013-08-05,14923,Insomnia +David Ansen,fresh,0278504,Newsweek,"Scene by scene, screenwriter Hillary Seitz follows director Erik Skjoldbjaerg's original closely, but this remake deepens and improves upon the Norwegian film by giving Dormer a more complex relationship with Eckhart.",2013-08-05,14923,Insomnia +Ted Shen,rotten,0278504,Chicago Reader,"Nolan uses visual pyrotechnics to pump up the tension and add to Pacino's sense of disorientation, but the feeling he evokes isn't as forlorn, creepy, or ambiguous as in the original (though the mountain wilderness is just as forbidding).",2013-08-05,14923,Insomnia +Joe Morgenstern,fresh,0278504,Wall Street Journal,This one is nowhere near as original -- it's a flawed remake of a fine first feature from Norway -- but Insomnia still stands on its own as a thriller with brains and scenic beauty.,2013-08-05,14923,Insomnia +Anthony Lane,fresh,0278504,New Yorker,"A dark and fidgety picture from Christopher Nolan, who made such a splash with Memento.",2013-08-05,14923,Insomnia +David Germain,fresh,0278504,Associated Press,"The highlight is Pacino, who gives his best performance in years.",2013-08-05,14923,Insomnia +Geoff Andrew,fresh,0278504,Time Out,"Despite its linear storyline, the film is very recognisably the work of the sharp, probing intelligence that gave us Following and Memento.",2012-04-05,14923,Insomnia +Todd McCarthy,fresh,0278504,Variety,"While it may not be as stylistically idiosyncratic as Memento Insomnia is a gripping, highly dramatic thriller that more than confirms the distinctive talent of young Brit helmer Christopher Nolan.",2012-04-05,14923,Insomnia +Mark Caro,fresh,0278504,Chicago Tribune,It's a crafty story told with more style and gray areas than your average thriller.,2002-07-20,14923,Insomnia +Rex Reed,fresh,0278504,New York Observer,"Insomnia is not my kind of arsenic, but it's so well-made and enigmatic I liked it anyway.",2002-05-30,14923,Insomnia +Dennis Lim,fresh,0278504,Village Voice,"The Hollywood version (which is half an hour longer) transports the action to Alaska, and works up a respectable level of bleary-eyed paranoia.",2002-05-28,14923,Insomnia +Peter Rainer,rotten,0278504,New York Magazine,"The best thing about Insomnia is that despite director Christopher Nolan's soft spot for moody-blues obfuscation, he has the good sense to keep his star in practically every shot.",2002-05-26,14923,Insomnia +Desson Thomson,fresh,0278504,Washington Post,"A thriller whose style, structure and rhythms are so integrated with the story, you cannot separate them.",2002-05-24,14923,Insomnia +Stephen Hunter,rotten,0278504,Washington Post,"You see Robin Williams and psycho killer, and you think, hmmmmm. You see the movie and you think, zzzzzzzzz.",2002-05-24,14923,Insomnia +Mike Clark,fresh,0278504,USA Today,This remake gets all there is to get out of a peculiar premise with promise: Al Pacino loathing Robin Williams.,2002-05-24,14923,Insomnia +Peter Howell,fresh,0278504,Toronto Star,"Continually challenges perceptions of guilt and innocence, of good guys and bad, and asks us whether a noble end can justify evil means.",2002-05-24,14923,Insomnia +Moira MacDonald,fresh,0278504,Seattle Times,"Pacino, his creased face looking like it's been aged in a smokehouse, is wonderfully bleary as the increasingly confused Dormer.",2002-05-24,14923,Insomnia +Mick LaSalle,fresh,0278504,San Francisco Chronicle,A haunting psychological drama.,2002-05-24,14923,Insomnia +Andrew O'Hehir,fresh,0278504,Salon.com,Here's proof that it's still possible to make pop-oriented yet personal movies with an A-list cast and a zillion bucks.,2002-05-24,14923,Insomnia +David Rooney,none,0119547,Variety,,2009-04-07,444278380,Little Boy Blue +Kevin Thomas,none,0119547,Los Angeles Times,,2001-02-14,444278380,Little Boy Blue +Stephen Holden,none,0119547,New York Times,,2000-01-01,444278380,Little Boy Blue +Robert Koehler,none,0200550,Variety,,2008-06-06,10913,Coyote Ugly +,none,0200550,Time Out,,2006-06-24,10913,Coyote Ugly +,rotten,0200550,Globe and Mail,,2002-03-19,10913,Coyote Ugly +Peter Travers,rotten,0200550,Rolling Stone,,2001-05-10,10913,Coyote Ugly +Joel Siegel,rotten,0200550,Good Morning America,,2001-04-24,10913,Coyote Ugly +Paul Clinton (CNN.com),rotten,0200550,CNN.com,The result is underwelming.,2000-01-01,10913,Coyote Ugly +Joe Baltake,none,0200550,Sacramento Bee,,2000-01-01,10913,Coyote Ugly +Susan Stark,fresh,0200550,Detroit News,A talented young cast in service of a project that's every bit as shrewd as it is shrill and silly.,2000-01-01,10913,Coyote Ugly +Eric Harrison,rotten,0200550,Houston Chronicle,All hope is lost.,2000-01-01,10913,Coyote Ugly +Mark Caro,fresh,0200550,Chicago Tribune,"It goes down easy, like a wine-cooler shot with a chaser of Yoo-Hoo.",2000-01-01,10913,Coyote Ugly +Peter Rainer,none,0200550,New York Magazine,,2000-01-01,10913,Coyote Ugly +Robert Horton,rotten,0200550,Film.com,It's no picnic.,2000-01-01,10913,Coyote Ugly +Roger Ebert,rotten,0200550,Chicago Sun-Times,Does Jerry Bruckheimer have the same nagging feeling of deja vu as he compares each new screenplay to those that have gone before?,2000-01-01,10913,Coyote Ugly +Owen Gleiberman,rotten,0200550,Entertainment Weekly,A movie that's the 'follow your dream' equivalent of singing karaoke along with a DVD of Flashdance.,2000-01-01,10913,Coyote Ugly +Kevin Maynard,rotten,0200550,Mr. Showbiz,The father-daughter subplot packs all the emotional heft of Madonna's Papa Don't Preach video.,2000-01-01,10913,Coyote Ugly +Steve Murray,rotten,0200550,Atlanta Journal-Constitution,"Coyote Ugly is profoundly stupid, earnestly inept at conveying a story and hellbent on wallowing in its shallow emotional manipulations.",2000-01-01,10913,Coyote Ugly +Kenneth Turan,fresh,0200550,Los Angeles Times,A shameless but very watchable piece of youthful romantic fantasy.,2000-01-01,10913,Coyote Ugly +Tom Keogh,fresh,0200550,Film.com,An authentically spirited popcorn movie.,2000-01-01,10913,Coyote Ugly +Robert Denerstein,rotten,0200550,Denver Rocky Mountain News,,2000-01-01,10913,Coyote Ugly +Jay Carr,rotten,0200550,Boston Globe,Its view of women as objectified but unavailable sex toys is so retrograde it would be maddening if the movie weren't such an utter piece of fluff so conceptually barren it might as well be a music video.,2000-01-01,10913,Coyote Ugly +Owen Gleiberman,fresh,0120787,Entertainment Weekly,,2011-09-07,13408,A Perfect Murder +Leonard Klady,none,0120787,Variety,,2008-06-24,13408,A Perfect Murder +Derek Adams,none,0120787,Time Out,,2006-06-24,13408,A Perfect Murder +Moira MacDonald,none,0120787,Seattle Times,,2003-12-31,13408,A Perfect Murder +Jeff Strickler,fresh,0120787,Minneapolis Star Tribune,...a fast-paced thriller that probably will leave Alfred Hitchcock aficionados mourning its shallowness -- but not until after they've enjoyed an adrenaline rush.,2002-11-06,13408,A Perfect Murder +Liam Lacey,rotten,0120787,Globe and Mail,"None of the amusement gained in watching the performances, unfortunately, amounts to much, as the script, in a desperate attempt to lend action interest to the original, static, puzzle plot, compounds surprise turn after surprise turn.",2002-04-12,13408,A Perfect Murder +Peter Travers,fresh,0120787,Rolling Stone,"What the film lacks is suspense, surprise (the new ending is a dud) and passion.",2001-06-05,13408,A Perfect Murder +Kenneth Turan,rotten,0120787,Los Angeles Times,"A Perfect Murder begins better than it ends, and the pleasures it offers turn out to be more of a transitory nature.",2001-02-14,13408,A Perfect Murder +David Denby,fresh,0120787,New York Magazine,"His [Davis] direction is swift and very effective, and the movie, shot in shades of ebony (the color of black marble), looks exceptionally handsome.",2000-01-01,13408,A Perfect Murder +James Berardinelli,rotten,0120787,ReelViews,"...A Perfect Murder has inexplicably managed to eliminate almost everything that was worthwhile about Dial M for Murder, leaving behind the nearly-unwatchable wreckage of a would-be '90s thriller.",2000-01-01,13408,A Perfect Murder +,rotten,0120787,USA Today,,2000-01-01,13408,A Perfect Murder +Stephen Holden,fresh,0120787,New York Times,You don't have to believe a word of the strained dialogue in A Perfect Murder to be seduced by the movie's chilly high-gloss ambiance and its skillfully plotted update of Frederick Knott's play...,2000-01-01,13408,A Perfect Murder +Susan Stark,fresh,0120787,Detroit News,"Loaded with dramatic irony in the first half and with tension in the second, the film gives Douglas another chance to do his slick, sinister best; Paltrow a chance to extend her emotional range; and Mortensen a chance to play the chameleon.",2000-01-01,13408,A Perfect Murder +Joe Baltake,fresh,0120787,Sacramento Bee,What Andrew Davis has essentially done is to take one three-star movie and turn it into another three-star movie.,2000-01-01,13408,A Perfect Murder +Roger Ebert,fresh,0120787,Chicago Sun-Times,"I think it works like a nasty little machine to keep us involved and disturbed; my attention never strayed, and one of the elements I liked was the way Paltrow's character isn't sentimentalized.",2000-01-01,13408,A Perfect Murder +Stephanie Zacharek,rotten,0120787,Salon.com,"...snoozy, slack...",2000-01-01,13408,A Perfect Murder +Mick LaSalle,rotten,0120787,San Francisco Chronicle,...there's nothing about this thriller to prevent it from soon becoming enmeshed in the memory with others in which Michael Douglas wears a starched collar and grits his teeth.,2000-01-01,13408,A Perfect Murder +,fresh,0120787,Entertainment Weekly,,1998-06-05,13408,A Perfect Murder +Lisa Schwarzbaum,fresh,0116692,Entertainment Weekly,,2011-09-07,13980,Jenseits der Stille +,none,0116692,Time Out,,2006-06-24,13980,Jenseits der Stille +,fresh,0116692,Globe and Mail,,2002-04-12,13980,Jenseits der Stille +Kevin Thomas,none,0116692,Los Angeles Times,,2001-02-14,13980,Jenseits der Stille +James Berardinelli,fresh,0116692,ReelViews,,2000-01-01,13980,Jenseits der Stille +Susan Stark,fresh,0116692,Detroit News,,2000-01-01,13980,Jenseits der Stille +Stephen Holden,none,0116692,New York Times,,2000-01-01,13980,Jenseits der Stille +Mick LaSalle,none,0116692,San Francisco Chronicle,,2000-01-01,13980,Jenseits der Stille +Joe Baltake,none,0116692,Sacramento Bee,,2000-01-01,13980,Jenseits der Stille +Roger Ebert,fresh,0116692,Chicago Sun-Times,Beyond Silence' is one of those films that helps us escape our box of time and space and understand what it might be like to live in someone else's.,2000-01-01,13980,Jenseits der Stille +,fresh,0116692,Entertainment Weekly,,1996-01-01,13980,Jenseits der Stille +Lisa Schwarzbaum,rotten,0120828,Entertainment Weekly,,2011-09-07,10726,Six Days Seven Nights +Todd McCarthy,none,0120828,Variety,,2009-03-26,10726,Six Days Seven Nights +Derek Adams,none,0120828,Time Out,,2006-06-24,10726,Six Days Seven Nights +Jeff Strickler,none,0120828,Minneapolis Star Tribune,,2002-11-06,10726,Six Days Seven Nights +Bob Graham,none,0120828,San Francisco Chronicle,,2002-06-18,10726,Six Days Seven Nights +,rotten,0120828,Globe and Mail,,2002-04-12,10726,Six Days Seven Nights +Kenneth Turan,none,0120828,Los Angeles Times,,2001-02-14,10726,Six Days Seven Nights +Roger Ebert,rotten,0120828,Chicago Sun-Times,,2000-01-01,10726,Six Days Seven Nights +Joe Baltake,none,0120828,Sacramento Bee,,2000-01-01,10726,Six Days Seven Nights +Stephanie Zacharek,none,0120828,Salon.com,,2000-01-01,10726,Six Days Seven Nights +Janet Maslin,none,0120828,New York Times,,2000-01-01,10726,Six Days Seven Nights +Susan Stark,rotten,0120828,Detroit News,,2000-01-01,10726,Six Days Seven Nights +,rotten,0120828,USA Today,,2000-01-01,10726,Six Days Seven Nights +James Berardinelli,rotten,0120828,ReelViews,,2000-01-01,10726,Six Days Seven Nights +,rotten,0120828,Entertainment Weekly,,1998-06-12,10726,Six Days Seven Nights +Owen Gleiberman,fresh,0127723,Entertainment Weekly,"A high-spirited, synthetically raucous house-party comedy.",2007-08-06,10606,Can't Hardly Wait +Lisa Alspector,fresh,0127723,Chicago Reader,It's not supposed to be a revelation--just a pleasant rendition of a teen-comedy trope.,2007-08-06,10606,Can't Hardly Wait +Michael O'Sullivan,rotten,0127723,Washington Post,John Hughes must be spinning in his grave.,2007-08-06,10606,Can't Hardly Wait +Emanuel Levy,rotten,0127723,Variety,"A failed attempt to recapture the exuberant magic of such highschool movie classics as American Graffiti, this is a loud and boisterous comedy, in which the entire action is set during an interminably long graduation night.",2006-05-30,10606,Can't Hardly Wait +Liam Lacey,rotten,0127723,Globe and Mail,"Manages to serve up new rock, eighties dance music, rap and Barry Manilow -- a combination custom-made to annoy audiences of all ages.",2002-04-12,10606,Can't Hardly Wait +Kevin Thomas,fresh,0127723,Los Angeles Times,"With summer vacation imminent, its arrival is an instance of perfect timing.",2001-02-14,10606,Can't Hardly Wait +,rotten,0127723,USA Today,,2000-01-01,10606,Can't Hardly Wait +Roger Ebert,rotten,0127723,Chicago Sun-Times,The movie lumbers ungracefully from romantic showdowns to Deep Conversations to bathroom humor.,2000-01-01,10606,Can't Hardly Wait +Mick LaSalle,fresh,0127723,San Francisco Chronicle,The directors get good performances from a talented cast.,2000-01-01,10606,Can't Hardly Wait +James Berardinelli,rotten,0127723,ReelViews,"The title seems unexpectedly appropriate, as it accurately summed up my feelings about sitting in the theater and anticipating the arrival of the end credits -- I couldn't hardly wait.",2000-01-01,10606,Can't Hardly Wait +Susan Stark,rotten,0127723,Detroit News,,2000-01-01,10606,Can't Hardly Wait +Janet Maslin,fresh,0127723,New York Times,"Flip through any yearbook, and you'll find the stock characters who amusingly populate the teen-age comedy Can't Hardly Wait.",2000-01-01,10606,Can't Hardly Wait +Owen Gleiberman,rotten,0118894,Entertainment Weekly,,2011-09-07,13746,Cousin Bette +Leonard Klady,none,0118894,Variety,,2009-03-26,13746,Cousin Bette +,none,0118894,Time Out,,2006-06-24,13746,Cousin Bette +,rotten,0118894,Globe and Mail,,2002-04-12,13746,Cousin Bette +Kevin Thomas,none,0118894,Los Angeles Times,,2001-02-14,13746,Cousin Bette +Joe Baltake,none,0118894,Sacramento Bee,,2000-01-01,13746,Cousin Bette +James Berardinelli,rotten,0118894,ReelViews,,2000-01-01,13746,Cousin Bette +Stanley Kauffmann,none,0118894,The New Republic,,2000-01-01,13746,Cousin Bette +Mick LaSalle,none,0118894,San Francisco Chronicle,,2000-01-01,13746,Cousin Bette +Roger Ebert,fresh,0118894,Chicago Sun-Times,,2000-01-01,13746,Cousin Bette +Stephen Holden,none,0118894,New York Times,,2000-01-01,13746,Cousin Bette +Susan Stark,rotten,0118894,Detroit News,,2000-01-01,13746,Cousin Bette +,rotten,0118894,Entertainment Weekly,,1998-06-12,13746,Cousin Bette +Owen Gleiberman,fresh,0139362,Entertainment Weekly,,2011-09-07,13181,High Art +Emanuel Levy,fresh,0139362,Variety,"A highlight of the 1998 Sundance Festival: Cholodenko depicts with unwavering veracity the breakup of one longtime lesbian relationship just as another, unexpected one begins. The acting of the three women, Sheedy Mitchell, and Clarkson, is superb.",2006-12-05,13181,High Art +Derek Adams,none,0139362,Time Out,,2006-02-09,13181,High Art +Jeff Strickler,none,0139362,Minneapolis Star Tribune,,2002-11-06,13181,High Art +,rotten,0139362,Globe and Mail,,2002-04-12,13181,High Art +Jack Mathews,none,0139362,Los Angeles Times,,2001-02-14,13181,High Art +,fresh,0139362,USA Today,,2000-01-01,13181,High Art +James Berardinelli,rotten,0139362,ReelViews,,2000-01-01,13181,High Art +Janet Maslin,none,0139362,New York Times,,2000-01-01,13181,High Art +Susan Stark,rotten,0139362,Detroit News,,2000-01-01,13181,High Art +Roger Ebert,fresh,0139362,Chicago Sun-Times,,2000-01-01,13181,High Art +Joe Baltake,none,0139362,Sacramento Bee,,2000-01-01,13181,High Art +,fresh,0139362,Entertainment Weekly,,1998-06-12,13181,High Art +Lisa Schwarzbaum,rotten,0119494,Entertainment Weekly,,2011-09-07,243281070,The Land Girls +Emanuel Levy,fresh,0119494,Variety,"Made in the British tradition of quality, the film adds another panel to the revisionist history of women's roles in WWII--Women's Land Army (WLA), a unit composed of women who replaced men in the fields--Rachel Weisz is a major talent to watch.",2006-11-15,243281070,The Land Girls +Geoff Andrew,none,0119494,Time Out,,2006-02-09,243281070,The Land Girls +,rotten,0119494,Globe and Mail,,2003-04-25,243281070,The Land Girls +Jeff Strickler,none,0119494,Minneapolis Star Tribune,,2002-11-06,243281070,The Land Girls +Kevin Thomas,none,0119494,Los Angeles Times,,2001-02-14,243281070,The Land Girls +Roger Ebert,rotten,0119494,Chicago Sun-Times,,2000-01-01,243281070,The Land Girls +Joe Baltake,none,0119494,Sacramento Bee,,2000-01-01,243281070,The Land Girls +Stephen Holden,none,0119494,New York Times,,2000-01-01,243281070,The Land Girls +Peter Stack,none,0119494,San Francisco Chronicle,,2000-01-01,243281070,The Land Girls +Susan Stark,fresh,0119494,Detroit News,,2000-01-01,243281070,The Land Girls +Stanley Kauffmann,none,0119494,The New Republic,,2000-01-01,243281070,The Land Girls +James Berardinelli,rotten,0119494,ReelViews,,2000-01-01,243281070,The Land Girls +,rotten,0119494,USA Today,,2000-01-01,243281070,The Land Girls +,rotten,0119494,Entertainment Weekly,,1998-06-12,243281070,The Land Girls +Owen Gleiberman,rotten,0118849,Entertainment Weekly,,2011-09-07,10741,Bacheha-Ye aseman +,none,0118849,Time Out,,2008-06-24,10741,Bacheha-Ye aseman +,none,0118849,Houston Chronicle,,2005-07-21,10741,Bacheha-Ye aseman +,fresh,0118849,Globe and Mail,,2002-03-19,10741,Bacheha-Ye aseman +Peter Stack,none,0118849,San Francisco Chronicle,,2000-01-01,10741,Bacheha-Ye aseman +Michael Atkinson,none,0118849,Village Voice,,2000-01-01,10741,Bacheha-Ye aseman +Joe Baltake,none,0118849,Sacramento Bee,,2000-01-01,10741,Bacheha-Ye aseman +James Berardinelli,fresh,0118849,ReelViews,,2000-01-01,10741,Bacheha-Ye aseman +Susan Stark,fresh,0118849,Detroit News,,2000-01-01,10741,Bacheha-Ye aseman +Stanley Kauffmann,none,0118849,The New Republic,,2000-01-01,10741,Bacheha-Ye aseman +Janet Maslin,none,0118849,New York Times,,2000-01-01,10741,Bacheha-Ye aseman +Roger Ebert,fresh,0118849,Chicago Sun-Times,,2000-01-01,10741,Bacheha-Ye aseman +,rotten,0118849,Entertainment Weekly,,1999-02-05,10741,Bacheha-Ye aseman +Daniel M. Kimmel,fresh,0150290,Variety,What [director] Kirkman succeeds in doing is proving that [Jesse] Helms and his bigotry should not personify North Carolina.,2005-04-27,770791612,Dear Jesse +,none,0150290,L.A. Weekly,,2003-12-03,770791612,Dear Jesse +,none,0150290,Los Angeles Times,,2001-02-14,770791612,Dear Jesse +,none,0150290,New York Times,,2000-01-01,770791612,Dear Jesse +Stephen Holden,rotten,0116141,New York Times,Dream for an Insomniac is really a self-conscious modern sitcom that with its San Francisco setting suggests a pale shadow of Armistead Maupin's Tales From the City.,2000-01-01,15280,Dream for an Insomniac +Mick LaSalle,rotten,0116141,San Francisco Chronicle,"It's talky, clumsy and a bit trivial, but the talk is rarely dull, and there's an integrity about its clumsiness: It's harder to be smooth when you have things you really want to say.",2000-01-01,15280,Dream for an Insomniac +Lisa Schwarzbaum,fresh,0126938,Entertainment Weekly,,2011-09-07,13947,Hav Plenty +Emanuel Levy,rotten,0126938,Variety,"This all-black screwball comedy, about the fables and foibles of black middle-class urbanites, is well constructed, but it lacks style and polish to make it really work",2006-10-30,13947,Hav Plenty +Jeff Strickler,none,0126938,Minneapolis Star Tribune,,2002-11-06,13947,Hav Plenty +,rotten,0126938,Globe and Mail,,2002-04-12,13947,Hav Plenty +Kevin Thomas,none,0126938,Los Angeles Times,,2001-02-14,13947,Hav Plenty +James Berardinelli,rotten,0126938,ReelViews,,2000-01-01,13947,Hav Plenty +Stephen Holden,none,0126938,New York Times,,2000-01-01,13947,Hav Plenty +Susan Stark,fresh,0126938,Detroit News,,2000-01-01,13947,Hav Plenty +Joe Baltake,none,0126938,Sacramento Bee,,2000-01-01,13947,Hav Plenty +Peter Stack,none,0126938,San Francisco Chronicle,,2000-01-01,13947,Hav Plenty +Jonathan Rosenbaum,fresh,0126938,Chicago Reader,,1998-06-19,13947,Hav Plenty +,fresh,0126938,Entertainment Weekly,,1998-06-19,13947,Hav Plenty +Derek Elley,none,0122529,Variety,,2009-03-26,14783,Henry Fool +Andrew Sarris,none,0122529,New York Observer,,2007-04-27,14783,Henry Fool +Derek Adams,none,0122529,Time Out,,2006-06-24,14783,Henry Fool +,fresh,0122529,Globe and Mail,,2002-04-12,14783,Henry Fool +Kevin Thomas,none,0122529,Los Angeles Times,,2001-02-14,14783,Henry Fool +James Berardinelli,fresh,0122529,ReelViews,,2000-01-01,14783,Henry Fool +Janet Maslin,none,0122529,New York Times,,2000-01-01,14783,Henry Fool +Roger Ebert,rotten,0122529,Chicago Sun-Times,,2000-01-01,14783,Henry Fool +Joe Baltake,none,0122529,Sacramento Bee,,2000-01-01,14783,Henry Fool +Stanley Kauffmann,none,0122529,The New Republic,,2000-01-01,14783,Henry Fool +Mick LaSalle,none,0122529,San Francisco Chronicle,,2000-01-01,14783,Henry Fool +Derek Elley,none,0119717,Variety,,2008-10-18,15579,Mr. Jealousy +Jeff Strickler,none,0119717,Minneapolis Star Tribune,,2002-11-06,15579,Mr. Jealousy +,fresh,0119717,Globe and Mail,,2002-04-12,15579,Mr. Jealousy +Kenneth Turan,none,0119717,Los Angeles Times,,2001-02-14,15579,Mr. Jealousy +Jonathan Rosenbaum,none,0119717,Chicago Reader,,2000-01-01,15579,Mr. Jealousy +Joe Baltake,none,0119717,Sacramento Bee,,2000-01-01,15579,Mr. Jealousy +James Berardinelli,rotten,0119717,ReelViews,,2000-01-01,15579,Mr. Jealousy +Mick LaSalle,none,0119717,San Francisco Chronicle,,2000-01-01,15579,Mr. Jealousy +Susan Stark,fresh,0119717,Detroit News,,2000-01-01,15579,Mr. Jealousy +Roger Ebert,rotten,0119717,Chicago Sun-Times,,2000-01-01,15579,Mr. Jealousy +Charles Taylor,none,0119717,Salon.com,,2000-01-01,15579,Mr. Jealousy +Janet Maslin,none,0119717,New York Times,,2000-01-01,15579,Mr. Jealousy +Moira MacDonald,fresh,0120762,Seattle Times,"Overall, this is a lovely film, ranking with the best of Disney's animated features while taking on rather serious issues of war, honor, gender roles and family pride.",2008-10-18,9714,Mulan +Susan Stark,fresh,0120762,Detroit News,,2008-10-18,9714,Mulan +Richard Corliss,fresh,0120762,TIME Magazine,"What's terrific about Mulan is its reaching for emotions that other movies run from: family love and duty, personal honor and group commitment, obedience and ingenuity.",2008-09-01,9714,Mulan +Todd McCarthy,rotten,0120762,Variety,"Goes about halfway toward setting new boundaries for Disney's, and the industry's, animated features, but doesn't go far enough.",2008-09-01,9714,Mulan +Derek Adams,fresh,0120762,Time Out,"Using richly hued, angular animation, this vibrant, action-filled Disney offering is immensely entertaining.",2006-06-24,9714,Mulan +Liam Lacey,rotten,0120762,Globe and Mail,A disappointment for anyone hoping the studio would raise the standard of the animated feature to a new level.,2002-04-12,9714,Mulan +Peter Travers,fresh,0120762,Rolling Stone,The film shines at capturing the watercolor delicacy of China's past.,2001-05-11,9714,Mulan +Kenneth Turan,rotten,0120762,Los Angeles Times,Memo to the gang at Walt Disney animation: Your formula is showing.,2001-02-14,9714,Mulan +,fresh,0120762,USA Today,,2000-01-01,9714,Mulan +Jenn Shreve,fresh,0120762,Salon.com,"The incredible special effects, which make lush cherry blossoms as vivid as the intense battle scenes, are balanced by Disney's tradition of care and painstaking detail in developing and animating its characters.",2000-01-01,9714,Mulan +James Berardinelli,fresh,0120762,ReelViews,Everyone will be entertained the fast-moving plot and rich animation.,2000-01-01,9714,Mulan +Roger Ebert,fresh,0120762,Chicago Sun-Times,"A film that adults can enjoy on their own, without feeling an obligation to take along kids as a cover.",2000-01-01,9714,Mulan +Jonathan Rosenbaum,fresh,0120762,Chicago Reader,The most self-assured and by all indications the most successful Disney 'toon in years...,2000-01-01,9714,Mulan +Peter Stack,fresh,0120762,San Francisco Chronicle,"Mulan is Disney's first journey to China for an animated feature, and it's a spectacular trip.",2000-01-01,9714,Mulan +Janet Maslin,rotten,0120762,New York Times,"This is the most inert and formulaic of recent Disney animated films, right down to the clowning sidekicks and would-be ''Under the Sea'' production number.",2000-01-01,9714,Mulan +Owen Gleiberman,fresh,0120762,Entertainment Weekly,Mulan is artful and satisfying in a slightly remote way.,1998-06-19,9714,Mulan +Derek Elley,none,0140508,Variety,,2008-07-28,770679088,Resurrection Man +Geoff Andrew,none,0140508,Time Out,,2006-06-24,770679088,Resurrection Man +Rita Kempley,rotten,0120902,Washington Post,The X-Files movie is really just a two-hour teaser for the series's sixth season. And little else.,2008-05-19,10268,The X Files +Owen Gleiberman,fresh,0120902,Entertainment Weekly,"Dark, funny, paranoid, arbitrary, humming with tamped-down eroticism and in love with all things weird: That's the good news.",2008-05-19,10268,The X Files +Michael O'Sullivan,fresh,0120902,Washington Post,"Stylish, scary, sardonically funny and at times just plain gross.",2008-05-19,10268,The X Files +Todd McCarthy,rotten,0120902,Variety,"As it is, pic serves up set-pieces and a measure of scope that are beyond TV size but remain rather underwhelming by feature standards.",2008-05-19,10268,The X Files +Lisa Alspector,rotten,0120902,Chicago Reader,Only two scenes in this spin-off are worth the time of followers of the TV series.,2008-05-19,10268,The X Files +David Edelstein,fresh,0120902,Slate,"The director, Rob Bowman, is not some TV hack; his work is thrillingly kinetic.",2007-06-08,10268,The X Files +Geoff Andrew,rotten,0120902,Time Out,"The truth may be out there, but it's certainly not in here.",2006-02-09,10268,The X Files +Rick Groen,rotten,0120902,Globe and Mail,"Had the creator of The X-Files set out to prove that tiny theorem, he couldn't have done a better job.",2002-07-12,10268,The X Files +Bob Graham,fresh,0120902,San Francisco Chronicle,David Duchovny and Gillian Anderson are enormously sympathetic heroes.,2002-06-18,10268,The X Files +Kenneth Turan,rotten,0120902,Los Angeles Times,"Who hasn't walked into a movie late and tried desperately to catch up with the plot, to make sense of what's on the screen?",2001-02-21,10268,The X Files +,rotten,0120902,USA Today,,2000-01-01,10268,The X Files +Susan Stark,fresh,0120902,Detroit News,,2000-01-01,10268,The X Files +Joyce Millman,fresh,0120902,Salon.com,"It's a two-hour episode of the show, except with better production values and a nicer wardrobe for Scully.",2000-01-01,10268,The X Files +James Berardinelli,fresh,0120902,ReelViews,One of the season's more lightly enjoyable mainstream offerings.,2000-01-01,10268,The X Files +Janet Maslin,rotten,0120902,New York Times,"Conspiracy theorists, consider this: What if the hush-hush atmosphere and Internet mania surrounding the first X-Files feature film were part of a giant plot to hide the uneventfulness of one more summertime sci-fi fizzle?",2000-01-01,10268,The X Files +Roger Ebert,fresh,0120902,Chicago Sun-Times,"As pure movie, The X-Files more or less works. As a story, it needs a sequel, a prequel, and Cliff Notes.",2000-01-01,10268,The X Files +Derek Elley,none,0126344,Variety,,2009-03-26,559578822,I Went Down +Geoff Andrew,none,0126344,Time Out,,2006-02-09,559578822,I Went Down +,fresh,0126344,Globe and Mail,,2002-04-12,559578822,I Went Down +Kevin Thomas,none,0126344,Los Angeles Times,,2001-02-14,559578822,I Went Down +Charles Taylor,none,0126344,Salon.com,,2000-01-01,559578822,I Went Down +Roger Ebert,fresh,0126344,Chicago Sun-Times,,2000-01-01,559578822,I Went Down +Peter Stack,none,0126344,San Francisco Chronicle,,2000-01-01,559578822,I Went Down +James Berardinelli,rotten,0126344,ReelViews,,2000-01-01,559578822,I Went Down +Janet Maslin,none,0126344,New York Times,,2000-01-01,559578822,I Went Down +Joe Baltake,none,0126344,Sacramento Bee,,2000-01-01,559578822,I Went Down +Susan Stark,rotten,0126344,Detroit News,,2000-01-01,559578822,I Went Down +Leonard Klady,rotten,0118998,Variety,"Slim on story and rife with scatological jokes, the film may strike a chord with pre-teens but misses for an older crowd despite some nifty effects and broad humor.",2009-03-26,11211,Doctor Dolittle +Derek Adams,fresh,0118998,Time Out,"Murphy's likeable, the script's laden with a gaggle of one-liners, and there's even a vague message nestling beneath the zoological chaos.",2006-01-26,11211,Doctor Dolittle +,rotten,0118998,USA Today,,2000-01-01,11211,Doctor Dolittle +Roger Ebert,fresh,0118998,Chicago Sun-Times,"The movie will not harm anyone, and in the audience I saw it with, lots of parents and kids seemed to be laughing together.",2000-01-01,11211,Doctor Dolittle +Stephanie Zacharek,fresh,0118998,Salon.com,"The old actor's rule -- never work with animals or kids -- has never seemed more apt. The animals steal the scene from Murphy every time, and he gives it up gladly.",2000-01-01,11211,Doctor Dolittle +Susan Stark,fresh,0118998,Detroit News,,2000-01-01,11211,Doctor Dolittle +Bob Graham,rotten,0118998,San Francisco Chronicle,Dr. Dolittle runs out of ideas long before the projector runs out of film.,2000-01-01,11211,Doctor Dolittle +James Berardinelli,rotten,0118998,ReelViews,"A cloying, humorless motion picture whose only assets are the work of Jim Henson's Creature Shop and a couple of good one-liners by a pair of rodents.",2000-01-01,11211,Doctor Dolittle +,fresh,0118998,Entertainment Weekly,,1998-06-26,11211,Doctor Dolittle +Jay Boyar,fresh,0120780,Orlando Sentinel,"Soderbergh understands the flaky, funny spirit of Leonard's characters and he gets his cast to express it.",2013-08-04,13912,Out of Sight +David Edelstein,fresh,0120780,Slate,Out of Sight is slick in all the right ways.,2013-08-04,13912,Out of Sight +Stephen Hunter,fresh,0120780,Washington Post,"Clooney is the most impressive he's been on film. Jack Foley feels real, not like some Hollywood improvisation. Foley is charming, handsome, graceful, cultured, energetic and disciplined. He just can't stop committing crimes.",2013-08-04,13912,Out of Sight +Michael O'Sullivan,fresh,0120780,Washington Post,"The characters all seem to have known each other for years, referring to long-held grudges and resentments that only gradually are revealed to the audience. They're a seedy, petty, dangerous and delightful bunch.",2013-08-04,13912,Out of Sight +Anthony Lane,fresh,0120780,New Yorker,"After many mishaps, the art of bringing Elmore Leonard's novels to the screen is coming to fruition. This latest adaptation, by director Steven Soderbergh and screenwriter Scott Frank, gets it just about right.",2013-08-04,13912,Out of Sight +Joe Morgenstern,fresh,0120780,Wall Street Journal,[A] now-classic romantic comedy -- with plenty of action and suspense.,2013-08-04,13912,Out of Sight +Dave Kehr,fresh,0120780,New York Daily News,"There isn't a character in the large, excellent cast that doesn't emerge with depth and precision.",2013-08-04,13912,Out of Sight +Michael Wilmington,fresh,0120780,Chicago Tribune,A darkly amusing and sly romantic comedy about an accident-prone bank robber (George Clooney) who falls in love with the sexy federal marshal (Jennifer Lopez) on his tail.,2013-08-04,13912,Out of Sight +Paul Tatara,fresh,0120780,CNN.com,Easily the best film I've seen in 1998.,2013-08-04,13912,Out of Sight +Owen Gleiberman,fresh,0120780,Entertainment Weekly,"Out of Sight may be the first movie that has truly gotten an Elmore Leonard novel on screen, in all its hangdog wit and fractured-jigsaw form.",2011-09-07,13912,Out of Sight +Richard Schickel,fresh,0120780,TIME Magazine,Out Of Sight is another fine mess Elmore Leonard has got us into.,2009-10-30,13912,Out of Sight +Emanuel Levy,fresh,0120780,Variety,Steven Soderbergh's most ambitious and most accomplished work to date.,2009-03-26,13912,Out of Sight +Andrew Sarris,fresh,0120780,New York Observer,"From the first shot to the last, Mr. Clooney is in complete command of the screen in the assured manner of the biggest stars in the past, and he doesn't need a ton of special effects and digital enhancement to generate excitement.",2007-04-27,13912,Out of Sight +Geoff Andrew,fresh,0120780,Time Out,"A splendid reminder of just how assured, intelligent and involving Soderbergh's movies can be.",2006-01-26,13912,Out of Sight +Mick LaSalle,fresh,0120780,San Francisco Chronicle,Out of Sight may go down in the annals of film as the movie in which George Clooney learned to keep his head still -- and became a leading man.,2002-06-18,13912,Out of Sight +Rick Groen,fresh,0120780,Globe and Mail,"Out of Sight isn't just a rousing piece of entertainment, it's also a cinematic salvage operation.",2002-04-12,13912,Out of Sight +Kenneth Turan,fresh,0120780,Los Angeles Times,"As always with the best of Leonard, it's the journey, not the destination, that counts, and director Soderbergh has let it unfold with dry wit and great skill.",2001-02-14,13912,Out of Sight +Susan Stark,fresh,0120780,Detroit News,,2000-01-01,13912,Out of Sight +Roger Ebert,fresh,0120780,Chicago Sun-Times,"Steven Soderbergh's best film since Sex, Lies and Videotape a decade ago.",2000-01-01,13912,Out of Sight +Jonathan Rosenbaum,rotten,0120780,Chicago Reader,"Some reviewers have applauded Out of Sight for its nuances of character, but I and others don't see any characters at all.",2000-01-01,13912,Out of Sight +Dave Kehr,fresh,0073540,Chicago Reader,Spottily effective.,2010-08-30,11222,Picnic at Hanging Rock +Richard Schickel,fresh,0073540,TIME Magazine,This horrific tale is told with marvelous shadowy indirection and delicate lyricism.,2010-08-30,11222,Picnic at Hanging Rock +,rotten,0073540,Time Out,The result is little more than a discreetly artistic horror film.,2006-06-24,11222,Picnic at Hanging Rock +Vincent Canby,fresh,0073540,New York Times,The story provides Mr. Weir with material for a kind of Australian horror-romance that recalls Nathaniel Hawthorne's preoccupation with the spiritual and moral heritage of his own New England landscape.,2005-01-15,11222,Picnic at Hanging Rock +Roger Ebert,fresh,0073540,Chicago Sun-Times,A film of haunting mystery and buried sexual hysteria.,2000-01-01,11222,Picnic at Hanging Rock +Peter Stack,fresh,0073540,San Francisco Chronicle,One of the most hauntingly beautiful mysteries ever created on film.,2000-01-01,11222,Picnic at Hanging Rock +Todd McCarthy,none,0120321,Variety,,2009-03-26,10168,Smoke Signals +Derek Adams,none,0120321,Time Out,,2006-02-09,10168,Smoke Signals +Jeff Strickler,none,0120321,Minneapolis Star Tribune,,2002-11-06,10168,Smoke Signals +Peter Travers,none,0120321,Rolling Stone,,2001-05-11,10168,Smoke Signals +Kevin Thomas,none,0120321,Los Angeles Times,,2001-02-14,10168,Smoke Signals +Peter Stack,fresh,0120321,San Francisco Chronicle,,2000-01-01,10168,Smoke Signals +Joe Baltake,none,0120321,Sacramento Bee,,2000-01-01,10168,Smoke Signals +James Berardinelli,fresh,0120321,ReelViews,,2000-01-01,10168,Smoke Signals +Susan Stark,fresh,0120321,Detroit News,,2000-01-01,10168,Smoke Signals +Janet Maslin,none,0120321,New York Times,,2000-01-01,10168,Smoke Signals +Roger Ebert,fresh,0120321,Chicago Sun-Times,,2000-01-01,10168,Smoke Signals +,fresh,0120321,Entertainment Weekly,,1998-06-26,10168,Smoke Signals +Deborah Young,none,0120443,Variety,,2009-03-26,770676456,Viagem ao Princípio do Mundo +Geoff Andrew,none,0120443,Time Out,,2006-02-11,770676456,Viagem ao Princípio do Mundo +Kevin Thomas,none,0120443,Los Angeles Times,,2001-02-14,770676456,Viagem ao Princípio do Mundo +Stephen Holden,none,0120443,New York Times,,2000-01-01,770676456,Viagem ao Princípio do Mundo +Owen Gleiberman,fresh,0118789,Entertainment Weekly,,2011-09-07,15304,Buffalo '66 +Todd McCarthy,none,0118789,Variety,,2008-12-03,15304,Buffalo '66 +,none,0118789,Time Out,,2006-06-24,15304,Buffalo '66 +,rotten,0118789,Globe and Mail,,2002-04-12,15304,Buffalo '66 +Kevin Thomas,none,0118789,Los Angeles Times,,2001-02-14,15304,Buffalo '66 +Bob Graham,fresh,0118789,San Francisco Chronicle,,2000-01-01,15304,Buffalo '66 +Roger Ebert,fresh,0118789,Chicago Sun-Times,,2000-01-01,15304,Buffalo '66 +James Berardinelli,fresh,0118789,ReelViews,,2000-01-01,15304,Buffalo '66 +David Denby,none,0118789,New York Magazine,,2000-01-01,15304,Buffalo '66 +Susan Stark,fresh,0118789,Detroit News,,2000-01-01,15304,Buffalo '66 +Jonathan Rosenbaum,rotten,0118789,Chicago Reader,,2000-01-01,15304,Buffalo '66 +Joe Baltake,none,0118789,Sacramento Bee,,2000-01-01,15304,Buffalo '66 +Janet Maslin,none,0118789,New York Times,,2000-01-01,15304,Buffalo '66 +,fresh,0118789,Entertainment Weekly,,1998-06-26,15304,Buffalo '66 +Todd McCarthy,rotten,0120591,Variety,"Bruce Willis saves the world but can't save ""Armageddon.""",2008-07-22,17022,Armageddon +Geoff Andrew,fresh,0120591,Time Out,"This idiotic film is loud, boorish and smart enough to relish its own lunkhead bravado...",2006-06-24,17022,Armageddon +,rotten,0120591,Globe and Mail,,2002-04-12,17022,Armageddon +Charles Taylor,rotten,0120591,Salon.com,"Bay loves to place the camera in the path of meteors or pieces of spaceships or airborne cars. Did one of these projectiles conk him on his noggin? Is that why ""Armageddon"" is so utterly and thoroughly incompetent?",2001-06-05,17022,Armageddon +Peter Travers,rotten,0120591,Rolling Stone,I hate Armageddon for what it is: the unholy spawn of The Dirty Dozen and Con Air.,2001-05-11,17022,Armageddon +Kenneth Turan,rotten,0120591,Los Angeles Times,"Sporadically watchable, it's at its best at those infrequent moments when it doesn't take itself too seriously.",2001-02-14,17022,Armageddon +James Berardinelli,fresh,0120591,ReelViews,"...the latest in a line of increasingly-stupid action pictures that amazes audiences with flashy special effects and nifty action sequences, but leaves them high and dry in both the character and story departments.",2000-01-01,17022,Armageddon +Sean Means,fresh,0120591,Film.com,"It delivers the thrill-ride twists and turns, exciting but not surprising.",2000-01-01,17022,Armageddon +David Edelstein,fresh,0120591,Slate,"Along with the rest of the audience, I jumped when I was meant to jump, laughed when I was meant to laugh, and swallowed a lump in my throat when I was meant to feel moved.",2000-01-01,17022,Armageddon +Mike Clark,rotten,0120591,USA Today,"Save the planet, but spare us this movie.",2000-01-01,17022,Armageddon +Janet Maslin,rotten,0120591,New York Times,"A real movie about courage in space is Apollo 13, in which fear and sacrifice have meaning. This jingoistic, overblown spectacle is about whistling in the dark.",2000-01-01,17022,Armageddon +Bob Graham,rotten,0120591,San Francisco Chronicle,It sure makes an ugly mess.,2000-01-01,17022,Armageddon +Richard Schickel,rotten,0120591,TIME Magazine,"...doesn't give a hoot about making a deep, humanistic impact on us.",2000-01-01,17022,Armageddon +Susan Stark,rotten,0120591,Detroit News,...full of sound and fury but without a single new idea to add to the conversation.,2000-01-01,17022,Armageddon +Tom Keogh,rotten,0120591,Film.com,...why couldn't the film have tapped into a more noble and stylish tradition? Why couldn't these men have been interesting instead of cartoons?,2000-01-01,17022,Armageddon +John Hartl,rotten,0120591,Film.com,"The only compelling lure is the special effects, which are sometimes impressive, sometimes transparent, yet somehow always inadequate to the apocalyptic task at hand.",2000-01-01,17022,Armageddon +Roger Ebert,rotten,0120591,Chicago Sun-Times,"The movie is an assault on the eyes, the ears, the brain, common sense and the human desire to be entertained.",2000-01-01,17022,Armageddon +Robert Horton,rotten,0120591,Film.com,"There are many things to dislike about Armageddon, from its stunningly straight-faced Charlton Heston introduction to its casual contempt for the Greenpeace activists protesting the drilling of oil wells",2000-01-01,17022,Armageddon +Owen Gleiberman,rotten,0120591,Entertainment Weekly,"The movie opens with the destruction of Manhattan by meteor shower, and, midway through, Paris gets wiped out as well. Naturally, no one blinks an eye.",2000-01-01,17022,Armageddon +Joe Baltake,rotten,0120591,Sacramento Bee,"Even worse is the wildly overrated Affleck, whose failings as an actor become glaringly obvious here.",2000-01-01,17022,Armageddon +Lisa Schwarzbaum,rotten,0122151,Entertainment Weekly,,2011-09-07,13559,Lethal Weapon 4 +,rotten,0122151,TIME Magazine,"Mindless, sadistic violence juxtaposed with rote sentimentality: this is how Hollywood has finally solved the family-values conundrum, the question of how to entertain the blood- and sex-starved masses and be morally proactive at the same time.",2008-08-25,13559,Lethal Weapon 4 +Leonard Klady,fresh,0122151,Variety,"It matters little that the film is rife with non sequiturs, nonsense and nihilistic violence, because its heroes are so darn buoyant and charming.",2008-08-25,13559,Lethal Weapon 4 +Geoff Andrew,fresh,0122151,Time Out,The climactic streetfighting clash between Mel and coldly charismatic martial arts star Jet Li is a bone-crunching classic.,2006-06-24,13559,Lethal Weapon 4 +Mick LaSalle,fresh,0122151,San Francisco Chronicle,"One could argue about which Lethal Weapon is the best, but No. 4 is certainly the funniest, warmest and most idiosyncratic.",2002-06-18,13559,Lethal Weapon 4 +Liam Lacey,rotten,0122151,Globe and Mail,"The relationship/humour stuff in Lethal Weapon 4 is pretty much excruciating, mawkish and inane... The second part of Lethal Weapon 044,the action sequences, are much better.",2002-04-12,13559,Lethal Weapon 4 +Kenneth Turan,rotten,0122151,Los Angeles Times,"There's no plot worth describing, no repartee wittier than 'Oh shut up,' no acting moments that rise above the level of posing.",2001-02-14,13559,Lethal Weapon 4 +Janet Maslin,fresh,0122151,New York Times,"Pardon me for having groaned in anticipation of what, in the full perspective-warping heat of the summer movie season, turns out to be one of the nicer blow-'em-ups around.",2000-01-01,13559,Lethal Weapon 4 +Joe Baltake,fresh,0122151,Sacramento Bee,"In short, it's a mess, albeit a weirdly entertaining mess...",2000-01-01,13559,Lethal Weapon 4 +James Berardinelli,fresh,0122151,ReelViews,"Given the expectations that constrain it, Lethal Weapon 4 is probably the best motion picture that could possibly result from another teaming of Martin Riggs (Mel Gibson) and Roger Murtaugh (Danny Glover).",2000-01-01,13559,Lethal Weapon 4 +Susan Stark,fresh,0122151,Detroit News,"Twelve years later, the franchise shows unflagging energy, inventiveness, humor. 4 rocks.",2000-01-01,13559,Lethal Weapon 4 +,rotten,0122151,USA Today,,2000-01-01,13559,Lethal Weapon 4 +Roger Ebert,rotten,0122151,Chicago Sun-Times,"Lethal Weapon 4 has all the technical skill of the first three movies in the series, but lacks the secret weapon, which was conviction.",2000-01-01,13559,Lethal Weapon 4 +,rotten,0122151,Entertainment Weekly,,1998-07-10,13559,Lethal Weapon 4 +Lisa Schwarzbaum,rotten,0123987,Entertainment Weekly,,2011-09-07,11162,Madeline +Todd McCarthy,none,0123987,Variety,,2008-09-01,11162,Madeline +Derek Adams,none,0123987,Time Out,,2006-06-24,11162,Madeline +Jack Mathews,none,0123987,Los Angeles Times,,2001-02-14,11162,Madeline +James Berardinelli,fresh,0123987,ReelViews,,2000-01-01,11162,Madeline +Susan Stark,rotten,0123987,Detroit News,,2000-01-01,11162,Madeline +Joe Baltake,none,0123987,Sacramento Bee,,2000-01-01,11162,Madeline +Fiona Morgan,none,0123987,Salon.com,,2000-01-01,11162,Madeline +,fresh,0123987,USA Today,,2000-01-01,11162,Madeline +Janet Maslin,none,0123987,New York Times,,2000-01-01,11162,Madeline +Roger Ebert,fresh,0123987,Chicago Sun-Times,,2000-01-01,11162,Madeline +Peter Stack,fresh,0123987,San Francisco Chronicle,,2000-01-01,11162,Madeline +,rotten,0123987,Entertainment Weekly,,1998-06-10,11162,Madeline +Owen Gleiberman,rotten,0122718,Entertainment Weekly,,2011-09-07,12702,Small Soldiers +Derek Adams,none,0122718,Time Out,,2006-06-24,12702,Small Soldiers +Liam Lacey,rotten,0122718,Globe and Mail,...this smells like a script slapped together around a toy-product launch.,2002-04-12,12702,Small Soldiers +Kenneth Turan,rotten,0122718,Los Angeles Times,"Though it starts promisingly, the picture ends as a standoff between the affection Dante and company bring to the project and its increasingly frenetic and tiresome emphasis on what special effects can make its little people do.",2001-02-14,12702,Small Soldiers +Janet Maslin,rotten,0122718,New York Times,"As with many films in which special effects are the real stars, the technology here commands more respect and interest than the material otherwise warrants.",2000-01-01,12702,Small Soldiers +Joe Baltake,fresh,0122718,Sacramento Bee,...deliciously perverse...,2000-01-01,12702,Small Soldiers +Susan Stark,fresh,0122718,Detroit News,...wildly entertaining...,2000-01-01,12702,Small Soldiers +Roger Ebert,rotten,0122718,Chicago Sun-Times,What bothered me most about Small Soldiers is that it didn't tell me where to stand--what attitude to adopt.,2000-01-01,12702,Small Soldiers +James Berardinelli,fresh,0122718,ReelViews,"As absurd as the premise might seem, Small Soldiers works for two primary reasons: the visual effects ... are entirely convincing and the script ... never takes its tongue out of its cheek.",2000-01-01,12702,Small Soldiers +Jonathan Rosenbaum,fresh,0122718,Chicago Reader,"I can't think of a Hollywood entertainment I've enjoyed as much all year, and both audiences I saw the movie with seemed delighted as well.",2000-01-01,12702,Small Soldiers +Scott Rosenberg,fresh,0122718,Salon.com,"Fortunately, it's possible to ignore the morals entirely and simply enjoy the filmmakers' skill at creating carefully contained mayhem in a microcosm.",2000-01-01,12702,Small Soldiers +,rotten,0122718,USA Today,,2000-01-01,12702,Small Soldiers +Bob Graham,fresh,0122718,San Francisco Chronicle,"This live-action, animated feature has all the charm of the entirely animated Toy Story plus an audacity all of its own.",2000-01-01,12702,Small Soldiers +,rotten,0122718,Entertainment Weekly,,1998-07-10,12702,Small Soldiers +Joe Morgenstern,none,0138704,Wall Street Journal,,2011-10-01,13056,Pi +Owen Gleiberman,fresh,0138704,Entertainment Weekly,,2011-09-07,13056,Pi +Richard Corliss,fresh,0138704,TIME Magazine,"Aronofsky, who has parlayed this movie's Sundance success into two Hollywood deals, is that rare indie filmmaker who doesn't want to make hip romantic sitcoms. He's a genuine experimenter with a spooky visual style.",2009-03-29,13056,Pi +Trevor Johnston,fresh,0138704,Time Out,We share Max's feelings of imminent psychological disintegration as the film probes our own insecurity in the face of the eternal. Maths meets millennial doom in one of the decade's true originals.,2008-02-29,13056,Pi +Dennis Harvey,fresh,0138704,Variety,"It's remarkable to what extent Aronofsky has rendered the cerebral kinetically intense. The film's imaginative, diverse images create a mind's-eye urban claustrophobia.",2007-06-06,13056,Pi +Liam Lacey,fresh,0138704,Globe and Mail,Audacious and bursting with ideas.,2002-07-12,13056,Pi +Laura Miller,fresh,0138704,Salon.com,"The movie's low-budget look neatly matches the claustrophobia of Max's life, but the filmmakers have also devised some special shooting methods for certain scenes. These sequences -- breathless and jangly chases, for the most part -- look terrific.",2001-12-19,13056,Pi +Stephen Holden,rotten,0138704,New York Times,"As smart as it is, 'Pi' is awfully hard to watch. Filmed with hand-held cameras in splotchy black-and-white and crudely edited, it has the style and attitude of a no-budget midnight movie.",2000-01-01,13056,Pi +James Berardinelli,fresh,0138704,ReelViews,"Transports us to a world that is like yet unlike our own, and, in its mysterious familiarity, is eerie, intense, and compelling.",2000-01-01,13056,Pi +Bob Graham,fresh,0138704,San Francisco Chronicle,"It all leads to a very strange place, and I'm particularly impressed with the economical means, both financially and artistically, by which Aronofsky gets there.",2000-01-01,13056,Pi +Roger Ebert,fresh,0138704,Chicago Sun-Times,The seductive thing about Aronofsky's film is that it is halfway plausible in terms of modern physics and math.,2000-01-01,13056,Pi +Bill Boisvert,rotten,0138704,Chicago Reader,Pi turns what should be a metaphoric relationship into a stupefyingly literal-minded thriller.,2000-01-01,13056,Pi +Susan Stark,rotten,0138704,Detroit News,,2000-01-01,13056,Pi +,fresh,0138704,Entertainment Weekly,,1998-07-10,13056,Pi +Don Druker,fresh,0056687,Chicago Reader,Aldrich's direction and dynamite performances from the two old troupers make this film an experience.,2007-09-24,16991,What Ever Happened to Baby Jane? +Variety Staff,fresh,0056687,Variety,"The chain of circumstances grows, violence creating violence. Once the inept, draggy start is passed, the film's pace builds with ever-growing force.",2007-09-24,16991,What Ever Happened to Baby Jane? +,rotten,0056687,Time Out,The Grand Guignol elements themselves are relatively forced and unconvincing.,2006-01-26,16991,What Ever Happened to Baby Jane? +Bosley Crowther,rotten,0056687,New York Times,There is nothing particularly moving or significant about these two.,2003-05-20,16991,What Ever Happened to Baby Jane? +Ken Eisner,none,0129387,Variety,,2009-03-26,147455754,There's Something About Mary +,rotten,0129387,Globe and Mail,,2002-03-22,147455754,There's Something About Mary +Dave Kehr,fresh,0052077,Chicago Reader,J. Hoberman of the Village Voice has made a case for Wood as an unconscious avant-gardist; there's no denying that his blunders are unusually creative and oddly expressive.,2007-03-28,17406,Plan 9 from Outer Space +Derek Adams,fresh,0052077,Time Out,"It all ends with famous psychic Criswell asking the audience, 'Can you prove it didn't happen? God help us in the future'. Prophetic.",2006-02-09,17406,Plan 9 from Outer Space +,rotten,0019729,TIME Magazine,A tedious musical comedy embedded in a routine story like a fly in celluloid.,2009-02-17,18773,The Broadway Melody +Sid Silverman,fresh,0019729,Variety,Excellent bits of sound workmanship are that of camera and mike following Page and the heavy along the dance floor to pick up their conversation as they glide.,2007-03-01,18773,The Broadway Melody +Dave Kehr,fresh,0019729,Chicago Reader,"The staging is wooden, the story insipid, and the dialogue sequences mostly painful, but the film's integration of song, dance, and story was a clear narrative advance over the music pictures being released by Warner Brothers and Fox.",2000-01-01,18773,The Broadway Melody +James Berardinelli,rotten,0019729,ReelViews,The Broadway Melody has not stood the test of time in ways that many of its more artistic contemporaries have.,1929-02-01,18773,The Broadway Melody +Stephen Garrett,fresh,0020629,Time Out New York,The despair-and the artistry-is breathtaking.,2012-05-22,17121,All Quiet on the Western Front +,fresh,0020629,TIME Magazine,From such grisly materials the popular cinema is rarely drawn. The film is monumental in the courage that risked its manufacture.,2009-02-17,17121,All Quiet on the Western Front +Variety Staff,fresh,0020629,Variety,"A harrowing, gruesome, morbid tale of war.",2007-10-16,17121,All Quiet on the Western Front +Jonathan Rosenbaum,fresh,0020629,Chicago Reader,Deserves its reputation as a classic.,2007-10-16,17121,All Quiet on the Western Front +Geoff Andrew,fresh,0020629,Time Out,"The film's strength now derives less from its admittedly powerful but highly simplistic utterances about war as waste, than from a generally excellent set of performances (Ayres especially) and an almost total reluctance to follow normal plot structure.",2006-06-24,17121,All Quiet on the Western Front +Mordaunt Hall,fresh,0020629,New York Times,"Messrs. Milestone, Abbott and Anderson in this film have contributed a memorable piece of work to the screen.",2003-05-20,17121,All Quiet on the Western Front +James Berardinelli,fresh,0020629,ReelViews,"All Quiet on the Western Front is the definitive World War I motion picture, the best of a surprisingly small class of movies.",1930-08-24,17121,All Quiet on the Western Front +Todd McCarthy,fresh,0166813,Variety,"There's nothing thrilling or new about the work here, but accomplished it is.",2008-06-11,9502,Spirit: Stallion of the Cimarron +Michael Booth,fresh,0166813,Denver Post,Spirit is smarter than your average cartoon because it doesn't try to joke around with a host of annoying talking animals.,2007-12-26,9502,Spirit: Stallion of the Cimarron +Derek Adams,fresh,0166813,Time Out,"There's not much of a story, the whole thing's a bit superficial, and there's little to laugh at, but it's still a refreshing change from the norm.",2006-06-24,9502,Spirit: Stallion of the Cimarron +Eleanor Ringel Gillespie,fresh,0166813,Atlanta Journal-Constitution,An exciting and exquisitely rendered film in which the horse goes through as many adventures and perils as Indiana Jones on a good day.,2002-11-04,9502,Spirit: Stallion of the Cimarron +Loren King,fresh,0166813,Chicago Tribune,A welcome family film that extols noble values and offers first-class animation.,2002-07-20,9502,Spirit: Stallion of the Cimarron +Jay Carr,fresh,0166813,Boston Globe,,2002-06-25,9502,Spirit: Stallion of the Cimarron +Hazel-Dawn Dumpert,fresh,0166813,L.A. Weekly,"Rather exciting, rendered in a bright sunset palette and a mixture of expressive, boldly drawn traditional animation and fluid computer-generated imagery.",2002-06-01,9502,Spirit: Stallion of the Cimarron +Susan Stark,fresh,0166813,Detroit News,"As animation increasingly emphasizes the computer and the cool, this is a film that takes a stand in favor of tradition and warmth.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Desson Thomson,fresh,0166813,Washington Post,The movie's big action scenes ... make you forget you're even watching animation.,2002-05-24,9502,Spirit: Stallion of the Cimarron +Jane Horwitz,fresh,0166813,Washington Post,A ripping yarn with memorable characters.,2002-05-24,9502,Spirit: Stallion of the Cimarron +Claudia Puig,fresh,0166813,USA Today,"A movie that will touch the hearts of both children and adults, as well as bring audiences to the edge of their seats.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Daphne Gordon,rotten,0166813,Toronto Star,"It is perhaps Spirit's greatest achievement that the horses upstage the human actors, but it's also its greatest weakness. The human characters have no depth or personality, but are rather completely forgettable, stiff stereotypes.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Tom Keogh,fresh,0166813,Seattle Times,"Adams' hoarse anthems become a betrayal of this horse opera's true potential; fortunately, there is enough fine achievement here to make the film worth seeing.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Mick LaSalle,rotten,0166813,San Francisco Chronicle,"A mishmash that is sometimes moving, sometimes absurd and most of the time just oddly off balance.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Joe Baltake,fresh,0166813,Sacramento Bee,"Refusing to condescend to us with the usual cutesy anthropomorphic qualities often foisted on animated animals, Asbury and Cook keep matters realistic.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Steven Rea,fresh,0166813,Philadelphia Inquirer,"A cartoon that's truly cinematic in scope, and a story that's compelling and heartfelt -- even if the heart belongs to a big, four-legged herbivore.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Gene Seymour,fresh,0166813,Newsday,"Not quite as miraculous as its DreamWorks makers would have you believe, but it more than adequately fills the eyes and stirs the emotions.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Rene Rodriguez,rotten,0166813,Miami Herald,"A beautifully rendered but unimaginatively plotted cartoon about settlers, Native Americans and the horses caught in between.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Ray Conlogue,fresh,0166813,Globe and Mail,"A strange, often intriguing animated film for children and young adults that takes a lot of chances and only occasionally stumbles.",2002-05-24,9502,Spirit: Stallion of the Cimarron +Terry Lawson,fresh,0166813,Detroit Free Press,"Spirit combines the hand-drawn artfulness of 2-D with computer-generated 3-D backdrops and effects so seamlessly that it's hard to tell what was done by man, what by mouse.",2002-05-24,9502,Spirit: Stallion of the Cimarron +,fresh,0022958,TIME Magazine,"As it is, the hotel is well filled.",2009-02-17,19274,Grand Hotel +Alfred Rushford Greason,fresh,0022958,Variety,"A commercial picture of high box office potential, first by assembling the most impressive aggregation so far of strictly Bradstreet screen names, and then by filming the play practically unaltered in form.",2008-01-29,19274,Grand Hotel +Dave Kehr,fresh,0022958,Chicago Reader,Less effective as a movie than as a dazzling parade of star iconography.,2006-12-12,19274,Grand Hotel +Derek Adams,rotten,0022958,Time Out,"The Nashville of its day, Grand Hotel's reputation has outgrown its actual quality",2006-06-24,19274,Grand Hotel +Mordaunt Hall,fresh,0022958,New York Times,"It is a production thoroughly worthy of all the talk it has created and the several motion-picture luminaries deserve to feel very proud of their performances, particularly Greta Garbo and Lionel Barrymore.",2003-05-20,19274,Grand Hotel +James Berardinelli,fresh,0022958,ReelViews,"It hasn't aged as well as some Oscar-winners, but neither is it as dated as, for example, Cimarron.",1932-01-01,19274,Grand Hotel +Ty Burr,rotten,0023876,Entertainment Weekly,"It's rife with fey, unintentional camp like the scene in which a newlywed couple pledge eternal love on the deck of an ocean liner -- only to move away and reveal a life preserver labeled Titanic.",2013-02-19,358138026,Cavalcade +,fresh,0023876,TIME Magazine,Almost certain to be near the top of the list for 1933.,2009-02-17,358138026,Cavalcade +Variety Staff,fresh,0023876,Variety,This is the first big film out of the Fox studio since Sheehan's return there and this is a big picture from and on every angle.,2008-01-28,358138026,Cavalcade +Tom Milne,rotten,0023876,Time Out,"Nary a tear-jerking trick is missed (our family loses one son to the Titanic, the other to World War I), and the strangulation is compounded by the staginess since the film.",2006-02-09,358138026,Cavalcade +Mordaunt Hall,fresh,0023876,New York Times,It is a most affecting and impressive picture.,2003-05-20,358138026,Cavalcade +James Berardinelli,fresh,0023876,ReelViews,"If nothing else, this reveals something about the lingering power of World War I on the national and international psyches during the era.",1933-01-01,358138026,Cavalcade +,rotten,0026752,TIME Magazine,"Despite the efforts of Producer Irving Thalberg, Director Frank Lloyd, three scenarists and $2,000,000 to give it balance, polish and direction, the picture lacks all three.",2009-02-17,18544,Mutiny on the Bounty +Variety Staff,fresh,0026752,Variety,There's nothing to stand in the way of Mutiny qualifying for box office dynamite rating.,2008-02-19,18544,Mutiny on the Bounty +Michael Wilmington,fresh,0026752,Chicago Tribune,"The story is spellbinding, the acting lusty and the spectacle everything you could expect from a Golden Age MGM production -- though sometimes it's a bit too much on the monumental side.",2006-12-13,18544,Mutiny on the Bounty +Dave Kehr,fresh,0026752,Chicago Reader,"It's tainted by a fair amount of middlebrow stuffiness, but it's a fleet piece of storytelling and serves to enshrine one of the great ham performances of all time, Charles Laughton's Captain Bligh.",2006-12-12,18544,Mutiny on the Bounty +Derek Adams,fresh,0026752,Time Out,"An exotic and gripping piece of Hollywood mythology, made with all the technical skill and gloss one associates with Irving Thalberg's MGM.",2006-02-09,18544,Mutiny on the Bounty +Andre Sennwald,fresh,0026752,New York Times,It is superlatively thrilling.,2003-05-20,18544,Mutiny on the Bounty +James Berardinelli,fresh,0026752,ReelViews,A rousing adventure film set on the high seas.,1935-01-01,18544,Mutiny on the Bounty +,fresh,0027698,TIME Magazine,"Pretentious, packed with hokum and as richly sentimental as an Irving Berlin lyric, it is, as such, top-notch entertainment.",2009-02-17,20735,The Great Ziegfeld +Abel Green,fresh,0027698,Variety,Considering the recent screen standards in book musicals with five numbers for 100 to 110 minutes of running time this Metro Santaclausing of numbers becomes virtually a double-feature filmusical.,2008-01-28,20735,The Great Ziegfeld +Frank S. Nugent,fresh,0027698,New York Times,"If the picture overcrowds its screen, at least we must admit it is an impressive kaleidoscope; and probably nothing short of that could reflect the gaudy career of America's foremost showman.",2003-05-20,20735,The Great Ziegfeld +Dave Kehr,rotten,0027698,Chicago Reader,"It's amazingly dull, even with William Powell in the lead and guest appearances by the likes of Ray Bolger and Fanny Brice, so of course it won the Best Picture Oscar for 1936.",2000-01-01,20735,The Great Ziegfeld +James Berardinelli,rotten,0027698,ReelViews,"Although some of the production's technical aspects remain impressive, the dramatic elements come across as trite and many of the musical numbers are dated.",1936-01-01,20735,The Great Ziegfeld +,fresh,0029146,TIME Magazine,Last week Warner Brothers released a movie which is probably the outstanding prestige picture of the season. It is also one of the best shows.,2009-02-17,19578,The Life of Emile Zola +John C. Flinn Sr.,fresh,0029146,Variety,The film is destined to box office approval of the most substantial character. It is finely made and merits high rating as cinema art and significant recognition as major showmanship.,2008-01-28,19578,The Life of Emile Zola +Dave Kehr,rotten,0029146,Chicago Reader,"This act of altruism on behalf of the brothers Warner was rewarded with the best picture Oscar for 1937; it isn't so much bad as utterly, magisterially bland.",2006-12-12,19578,The Life of Emile Zola +Geoff Andrew,rotten,0029146,Time Out,"Carefully mounted, well directed and acted, but basically the sort of well-meaning pap out of which Oscars are made.",2006-06-24,19578,The Life of Emile Zola +Frank S. Nugent,fresh,0029146,New York Times,A great and valuable and stirring film document.,2003-05-20,19578,The Life of Emile Zola +James Berardinelli,fresh,0029146,ReelViews,It's a compelling film that demands no previous knowledge of the title character in order to derive satisfaction from the story.,1937-10-02,19578,The Life of Emile Zola +,fresh,0030993,TIME Magazine,Easily the No. 1 cinema comedy of 1938.,2009-02-17,17136,You Can't Take It with You +Roy Chartier,fresh,0030993,Variety,The tempo is generally fast and there are no sudden spurts or sharp letdowns.,2008-02-20,17136,You Can't Take It with You +Geoff Andrew,rotten,0030993,Time Out,"The cast is appealing, particularly Stewart and Arthur, but it's not enough.",2006-02-09,17136,You Can't Take It with You +Jonathan Rosenbaum,fresh,0030993,Chicago Reader,"There are still some laughs and entertainment to be found here, but forget about fidelity to the original.",2000-01-01,17136,You Can't Take It with You +James Berardinelli,fresh,0030993,ReelViews,You Can't Take it with You was a tonic to a Depression-weary country beginning to right itself economically.,1938-08-23,17136,You Can't Take It with You +Ty Burr,fresh,0033729,Entertainment Weekly,"The acting is strong, and Arthur Miller's Oscar-winning photography gives the images a spooky luster, but a little bit of Ford's salt-of-the-earth piety goes an awfully long way.",2013-02-19,22108,How Green Was My Valley +,fresh,0033729,TIME Magazine,"Because his recollections ring true, they are certain to evoke a similar nostalgia in all but the most slab-sided of moviegoers.",2009-02-17,22108,How Green Was My Valley +Abel Green,fresh,0033729,Variety,"How Green Was My Valley is one of the year's better films, a sure-fire critic's picture and, unlike most features that draw kudos from crix, this one will also do business.",2008-01-30,22108,How Green Was My Valley +Don Druker,fresh,0033729,Chicago Reader,"Expert performances from Donald Crisp, Walter Pidgeon, Maureen O'Hara, and a host of brilliant character actors enhance a magnificent movie experience.",2006-12-12,22108,How Green Was My Valley +Derek Adams,fresh,0033729,Time Out,"An elegant and eloquent film, nevertheless, even if the characteristically laconic Fordian poetry seems more contrived here.",2006-06-24,22108,How Green Was My Valley +Bosley Crowther,fresh,0033729,New York Times,You can never expect to see a film more handsomely played.,2003-05-20,22108,How Green Was My Valley +James Berardinelli,fresh,0033729,ReelViews,"If not for the inevitable comparisons to Citizen Kane, How Green Was My Valley might have aged better.",1941-01-01,22108,How Green Was My Valley +,fresh,0035093,TIME Magazine,"That almost impossible feat, a great war picture that photographs the inner meaning, instead of the outward realism of World War II.",2009-02-17,18387,Mrs. Miniver +Herb Golden,fresh,0035093,Variety,"A poignant story of the joys and sorrows, the humor and pathos of middle-class family life in wartime England.",2008-01-28,18387,Mrs. Miniver +Dave Kehr,fresh,0035093,Chicago Reader,The most famous and perhaps most effective propaganda film of World War II.,2006-12-12,18387,Mrs. Miniver +Derek Adams,rotten,0035093,Time Out,"Classic soap opera in which good old British understatement has a field day, everybody is frightfully nice, and sentimentality is wrapped up in yards of tasteful gloss.",2006-02-09,18387,Mrs. Miniver +Bosley Crowther,fresh,0035093,New York Times,"Certainly it is the finest film yet made about the present war, and a most exalting tribute to the British, who have taken it gallantly.",2003-05-20,18387,Mrs. Miniver +James Berardinelli,fresh,0035093,ReelViews,It's one of a few highly regarded contemporaneous motion pictures to deal frankly with the domestic aspects of World War II.,1942-06-04,18387,Mrs. Miniver +James Berardinelli,rotten,0036872,ReelViews,"There's nothing special or memorable about this overlong endeavor, the first of two motion pictures to feature Bing Crosby's insufferably noble Father Chuck O'Malley.",2010-08-31,166848141,Going My Way +,fresh,0036872,TIME Magazine,"It offers, in the performance of nutcracker-faced, 56-year-old Barry Fitzgerald, the finest, funniest and most touching portrayal of old age that has yet reached the screen.",2009-02-17,166848141,Going My Way +Variety Staff,fresh,0036872,Variety,"Major thread of gaiety runs through the proceedings, and McCarey has liberally sprinkled sparkling individual episodes along the way for cinch audience reaction.",2008-01-28,166848141,Going My Way +,rotten,0036872,Time Out,Go anywhere to avoid it.,2006-02-09,166848141,Going My Way +Bosley Crowther,fresh,0036872,New York Times,"Rich, warm and human to the core.",2003-05-20,166848141,Going My Way +,fresh,0037884,TIME Magazine,Director Billy Wilder's technique of photographing Third Avenue in the grey morning sunlight with a concealed camera to keep the crowds from being self-conscious gives this sequence the shock of reality.,2009-02-17,18416,The Lost Weekend +Variety Staff,fresh,0037884,Variety,"It is intense, morbid -- and thrilling. Here is an intelligent dissection of one of society's most rampant evils.",2008-02-20,18416,The Lost Weekend +Jonathan Rosenbaum,fresh,0037884,Chicago Reader,Today it's less impressive but not without its virtues.,2006-12-12,18416,The Lost Weekend +Geoff Andrew,fresh,0037884,Time Out,What makes the film so gripping is the brilliance with which Wilder uses John F Seitz's camerawork to range from an unvarnished portrait of New York brutally stripped of all glamour.,2006-02-09,18416,The Lost Weekend +Bosley Crowther,fresh,0037884,New York Times,A shatteringly realistic and morbidly fascinating film.,2003-05-20,18416,The Lost Weekend +,fresh,0036868,TIME Magazine,"Like most good mass entertainments, this picture has occasional moments of knowing hokum; but unlike most sure-fire movies, it was put together with good taste, honesty, wit -- and even a strong suggestion of guts.",2009-02-17,22292,The Best Years of Our Lives +Elliott Stein,fresh,0036868,Village Voice,"Although it contains moving passages, Best Years is not much more than a conventional drama on the problems of servicemen attempting to adjust to life in postwar America, well served by an all-star cast and Toland's ingenious deep-focus setups.",2008-02-19,22292,The Best Years of Our Lives +Abel Green,fresh,0036868,Variety,One of the best pictures of our lives.,2008-02-19,22292,The Best Years of Our Lives +Roger Ebert,fresh,0036868,Chicago Sun-Times,"Surprisingly modern: lean, direct, honest about issues that Hollywood then studiously avoided.",2008-01-04,22292,The Best Years of Our Lives +Jonathan Rosenbaum,fresh,0036868,Chicago Reader,I'd call this the best American movie about returning soldiers I've ever seen -- the most moving and the most deeply felt.,2006-12-12,22292,The Best Years of Our Lives +Dave Kehr,fresh,0036868,Chicago Reader,"The film is very proud of itself, exuding a stifling piety at times, but it works as well as this sort of thing can, thanks to accomplished performances by Fredric March, Myrna Loy, and Dana Andrews, who keep the human element afloat.",2006-12-12,22292,The Best Years of Our Lives +Geoff Andrew,fresh,0036868,Time Out,"Overlong, perhaps, but this tender and occasionally tough look at the plight of returning war veterans is one of Wyler's best films.",2006-06-24,22292,The Best Years of Our Lives +Bosley Crowther,fresh,0036868,New York Times,It is seldom that there comes a motion picture which can be wholly and enthusiastically endorsed not only as superlative entertainment but as food for quiet and humanizing thought.,2003-05-20,22292,The Best Years of Our Lives +James Berardinelli,fresh,0036868,ReelViews,The feeling of warmth and satisfaction that accompanies the conclusion is the hallmark of a great drama.,2000-01-01,22292,The Best Years of Our Lives +Ty Burr,rotten,0039416,Entertainment Weekly,"Agreement was tame, cautious stuff even back then.",2013-02-19,21787,Gentleman's Agreement +Robert Hatch,rotten,0039416,The New Republic,"By dispassionate critical standards, Gentleman's Agreement is not a success. It is a tract rather than a play and it has the crusader's shortcomings.",2013-02-06,21787,Gentleman's Agreement +James Berardinelli,fresh,0039416,ReelViews,The movie is as powerful today as when it captured the Best Picture Oscar a few years after Hitler's genocide ended in Europe.,2010-08-17,21787,Gentleman's Agreement +,fresh,0039416,TIME Magazine,"Gentleman's Agreement is an important experiment, honestly approached and successfully brought off.",2009-02-18,21787,Gentleman's Agreement +Dave Kehr,rotten,0039416,Chicago Reader,It looks pretty timorous now.,2009-02-17,21787,Gentleman's Agreement +Hobe Morrison,fresh,0039416,Variety,[A] brilliant and powerful film.,2008-02-19,21787,Gentleman's Agreement +Geoff Andrew,fresh,0039416,Time Out,"Good performances, however, particularly from Garfield and Holm.",2006-06-24,21787,Gentleman's Agreement +Bosley Crowther,fresh,0039416,New York Times,The film still has abundant meaning and should be fully and widely enjoyed.,2003-05-20,21787,Gentleman's Agreement +,rotten,0044672,TIME Magazine,"The movie's plot does not quite hold all this pageantry together, but De Mille's scripters and actors enter into the thing in the proper flamboyant spirit.",2009-02-18,17207,The Greatest Show on Earth +Herb Golden,fresh,0044672,Variety,"This is the circus with more entertainment, more thrills, more spangles and as much Big Top atmosphere as RB-B&B itself can offer. It's a smash certainty for high-wire grosses.",2008-01-28,17207,The Greatest Show on Earth +Pat Graham,rotten,0044672,Chicago Reader,"It won best-picture Oscar for 1952, but God (De Mille's favorite walk-on, strangely absent here) only knows why.",2006-12-12,17207,The Greatest Show on Earth +Derek Adams,fresh,0044672,Time Out,"Characteristically elephantine Big Top epic from DeMille, thumped across with a winning brashness and garnering the veteran showman his first Best Picture Oscar.",2006-06-24,17207,The Greatest Show on Earth +Bosley Crowther,fresh,0044672,New York Times,Two American institutions have combined to put out a piece of entertainment that will delight movie audiences for years.,2003-05-20,17207,The Greatest Show on Earth +,fresh,0045793,TIME Magazine,"Scriptwriter Daniel Taradash rescued, if not quite a gem, then at least a high-grade industrial diamond from this rough original.",2009-02-18,18520,From Here to Eternity +William Brogdon,fresh,0045793,Variety,"It is an important film from any angle, presenting socko entertainment for big business.",2007-11-01,18520,From Here to Eternity +Dave Kehr,rotten,0045793,Chicago Reader,Sominex is cheaper and probably safer.,2006-12-13,18520,From Here to Eternity +Geoff Andrew,rotten,0045793,Time Out,Zinnemann's flat direction does produce its dull moments.,2006-01-26,18520,From Here to Eternity +Ty Burr,fresh,0045793,Boston Globe,So clear-eyed and three-dimensional that it makes the recent Pearl Harbor look like a bunch of kids playing dress up.,2003-12-12,18520,From Here to Eternity +Kenneth Turan,fresh,0045793,Los Angeles Times,"Rapturously received from the moment it was released in 1953, From Here to Eternity remains, half a century later, a singular cinematic experience, one of the landmarks of American film.",2003-12-04,18520,From Here to Eternity +J. Hoberman,fresh,0045793,Village Voice,"Contemporary audiences may not see why, even in its toned-down simplification of the novel, From Here to Eternity was the most daring movie of 1953, but it remains an acting bonanza.",2003-12-02,18520,From Here to Eternity +A.H. Weiler,fresh,0045793,New York Times,"Out of From Here to Eternity, a novel whose anger and compassion stirred a postwar reading public as few such works have, Columbia and a company of sensitive hands have forged a film almost as towering and persuasive as its source.",2003-05-20,18520,From Here to Eternity +,fresh,0047296,TIME Magazine,On the Waterfront has a script that is a work of love and shows it.,2009-02-18,18179,On the Waterfront +Variety Staff,fresh,0047296,Variety,"Under Elia Kazan's direction, Marlon Brando puts on a spectacular show, giving a fascinating, multi-faceted performance as the uneducated dock walloper and former pug, who is basically a softie with a special affection for his rooftop covey of pigeons.",2008-01-30,18179,On the Waterfront +Jonathan Rosenbaum,fresh,0047296,Chicago Reader,It's hard to deny that Marlon Brando's performance as a dock worker and ex-fighter who finally decides to rat on his gangster brother (Rod Steiger) is pretty terrific.,2006-12-12,18179,On the Waterfront +Geoff Andrew,fresh,0047296,Time Out,It's pretty electrifying.,2006-01-26,18179,On the Waterfront +Colin Covert,fresh,0047296,Minneapolis Star Tribune,"You miss this, you're buyin' a one-way ticket to Palookaville.",2005-03-03,18179,On the Waterfront +Kenneth Turan,fresh,0047296,Los Angeles Times,"Indisputably one of the great American films, its power undiminished.",2004-12-23,18179,On the Waterfront +Ty Burr,fresh,0047296,Boston Globe,So when does it hit you that you're in the presence of movie greatness?,2004-12-17,18179,On the Waterfront +J. Hoberman,fresh,0047296,Village Voice,It is thanks to Brando that this posthumous Popular Front classic is a heart-clutcher from beginning to end.,2004-11-02,18179,On the Waterfront +A.H. Weiler,fresh,0047296,New York Times,"An uncommonly powerful, exciting and imaginative use of the screen by gifted professionals.",2003-05-20,18179,On the Waterfront +James Berardinelli,fresh,0047296,ReelViews,One of the best acted efforts to come out of Hollywood during the 1950s.,2002-04-25,18179,On the Waterfront +Roger Ebert,fresh,0047296,Chicago Sun-Times,"It is still possible to feel the power of the film and of Brando and Kazan, who changed American movie acting forever.",2000-01-01,18179,On the Waterfront +Whitney Willaims,fresh,0055614,Variety,"West Side Story is a beautifully-mounted, impressive, emotion-ridden and violent musical which, in its stark approach to a raging social problem and realism of unfoldment, may set a pattern for future musical presentations.",2013-02-20,21063,West Side Story +,rotten,0055614,TIME Magazine,"Unhappily, the film shares a serious flaw in the essential conception of the show; both are founded on a phony literary analogy and on some potentially vicious pseudo-sociology.",2009-02-18,21063,West Side Story +Dave Kehr,fresh,0055614,Chicago Reader,"Decent 1961 adaptation of the Bernstein-Robbins musical, if you can handle Richard Beymer and Natalie Wood in the leads.",2007-02-09,21063,West Side Story +Dave Calhoun,fresh,0055614,Time Out,How does the film -- which won ten Oscars on its 1961 release -- stand up now? Very well indeed.,2006-01-26,21063,West Side Story +Roger Ebert,fresh,0055614,Chicago Sun-Times,It is a great movie ... in parts.,2004-04-09,21063,West Side Story +Michael Wilmington,fresh,0055614,Chicago Tribune,The marvel is that the film still works so well.,2004-02-04,21063,West Side Story +Bosley Crowther,fresh,0055614,New York Times,What they have done with West Side Story in knocking it down and moving it from stage to screen is to reconstruct its fine material into nothing short of a cinema masterpiece.,2003-05-20,21063,West Side Story +James Berardinelli,fresh,0055614,ReelViews,"It still represents a brave and effective fusion of serious and fantasy elements, and offers two and one-half hours of solid entertainment.",2000-01-01,21063,West Side Story +,fresh,0057590,TIME Magazine,"The film is a way-out, walleyed, wonderful exercise in cinema. It is also a social satire written in blood with a broadaxe. It is bawdy as the British were bawdy when a wench had to wear five petticoats to barricade her virtue.",2009-02-20,18019,Tom Jones +Rich Gold,fresh,0057590,Variety,"It has sex, Eastmancolor, some prime performers and plenty of action.",2008-01-28,18019,Tom Jones +Jonathan Rosenbaum,rotten,0057590,Chicago Reader,"Despite the fitful energy and the beauty of the settings, the ugliness of the mise en scene and the crudity of the editing tend to triumph.",2006-12-13,18019,Tom Jones +Geoff Andrew,fresh,0057590,Time Out,"Osborne's courageous hatchet job on Fielding's 1,000 page classic novel and Finney's gutsy performance add up to produce an enjoyable piece of irreverent entertainment.",2006-06-24,18019,Tom Jones +Bosley Crowther,fresh,0057590,New York Times,"Prepare yourself for what is surely one of the wildest, bawdiest and funniest comedies that a refreshingly agile filmmaker has ever brought to the screen.",2003-05-20,18019,Tom Jones +Pauline Kael,rotten,0060665,The New Republic,"There's more than a little of the school pageant in the rhythm of the movie: Though it's all neater than our school drama coaches could make it, the figures group and say their assigned lines and move on.",2012-08-30,9416,A Man for All Seasons +,fresh,0060665,TIME Magazine,One of the most intelligent religious movies ever made.,2009-02-20,9416,A Man for All Seasons +A.D. Murphy,fresh,0060665,Variety,"Producer-director Fred Zinnemann has blended all filmmaking elements into an excellent, handsome and stirring film version of A Man For All Seasons.",2008-01-29,9416,A Man for All Seasons +Dave Kehr,rotten,0060665,Chicago Reader,"Robert Bolt's boring historical drama functions best as an anthology of British acting styles, circa 1966.",2006-12-13,9416,A Man for All Seasons +Derek Adams,rotten,0060665,Time Out,Orson Welles alone relieves the boredom in a marvellous cameo as Cardinal Wolsey. If only they'd let him loose with the whole sorry history...,2006-02-09,9416,A Man for All Seasons +Bosley Crowther,fresh,0060665,New York Times,"A Man for All Seasons is a picture that inspires admiration, courage and thought.",2003-05-20,9416,A Man for All Seasons +,fresh,0061811,TIME Magazine,No deep solutions are suggested in this subtle and meticulously observed study. Yet Director Norman Jewison has used his camera to extract a cer tain rough-cut beauty from each protagonist.,2009-02-20,10722,In the Heat of the Night +A.D. Murphy,fresh,0061811,Variety,"An excellent Sidney Poitier performance, and an outstanding one by Rod Steiger, overcome some noteworthy flaws to make In The Heat of the Night an absorbing contemporary murder drama.",2008-02-19,10722,In the Heat of the Night +Dave Kehr,fresh,0061811,Chicago Reader,A decent piece of do-good cinema.,2006-12-13,10722,In the Heat of the Night +Geoff Andrew,fresh,0061811,Time Out,Oozes sufficient Southern sweat and features enough admirably crumpled character faces to make up for its over-strident liberal rhetoric.,2006-02-09,10722,In the Heat of the Night +Bosley Crowther,fresh,0061811,New York Times,A film that has the look and sound of actuality and the pounding pulse of truth.,2003-05-20,10722,In the Heat of the Night +Rich Gold,fresh,0063385,Variety,There's plenty of mileage left in the famous story.,2008-02-19,9458,Oliver! +,fresh,0063385,TIME Magazine,"After a season of watching inane twitching in the name of dance, the viewer is most happily greeted by Onna White's choreography, an exuberant step-by-step exploration of Victorian zeal.",2008-02-19,9458,Oliver! +Dave Kehr,rotten,0063385,Chicago Reader,"In retrospect, it seems emblematic of the triviality Reed descended to in the last years of his career. The Third Man it's not.",2006-12-13,9458,Oliver! +,rotten,0063385,Time Out,"Reed is craftsman enough to make an efficient family entertainment out of Lionel Bart's musical, but not artist enough to put back any of Dickens' teeth which Bart had so assiduously drawn.",2006-01-26,9458,Oliver! +Roger Ebert,fresh,0063385,Chicago Sun-Times,A treasure of a movie.,2004-10-23,9458,Oliver! +Gene Siskel,fresh,0064665,Chicago Tribune,I cannot recall a more marvelous pair of acting performances in any one film.,2013-01-18,13053,Midnight Cowboy +Owen Gleiberman,fresh,0064665,Entertainment Weekly,"Midnight Cowboy's peep-show vision of Manhattan lowlife may no longer be shocking, but what is shocking, in 1994, is to see a major studio film linger this lovingly on characters who have nothing to offer the audience but their own lost souls.",2011-09-07,13053,Midnight Cowboy +Robert J. Landry,fresh,0064665,Variety,In this film the scenery is lovely and only the human race is vile.,2008-01-30,13053,Midnight Cowboy +Dave Kehr,rotten,0064665,Chicago Reader,"The acting, showy and instinctual, is most of the movie; the visual style is too forced and chicly distended to let the drama acquire much natural life of its own.",2006-12-13,13053,Midnight Cowboy +Geoff Andrew,rotten,0064665,Time Out,Outrageously overrated at the cynical end of the Swinging Sixties.,2006-06-24,13053,Midnight Cowboy +Roger Ebert,fresh,0064665,Chicago Sun-Times,"What has happened to Midnight Cowboy is that we've done our own editing job on it. We've forgotten the excesses and the detours, and remembered the purity of the central characters and the Voight and Hoffman performances.",2004-10-23,13053,Midnight Cowboy +Vincent Canby,fresh,0064665,New York Times,"It is ultimately a moving experience that captures the quality of a time and a place. It's not a movie for the ages, but, having seen it, you won't ever again feel detached as you walk down West 42nd Street.",2003-05-20,13053,Midnight Cowboy +Desson Thomson,fresh,0064665,Washington Post,The performances by Hoffman and Voight are big.,2000-01-01,13053,Midnight Cowboy +Gene Siskel,fresh,0067116,Chicago Tribune,"There is only one problem with the excitement generated by this film. After it is over, you will walk out of the theater and, as I did, curse the tedium of your own life. I kept looking for someone who I could throw up against a wall.",2013-01-18,13751,The French Connection +Jay Cocks,fresh,0067116,TIME Magazine,A knockout police thriller with so much jarring excitement that it almost calls for comic-book expletives. POW! ZOWIE!,2009-02-20,13751,The French Connection +Robert B. Frederick,fresh,0067116,Variety,"Producer Philip D'Antoni and screenwriter Ernest Tidyman have added enough fictional flesh to provide director William Friedkin and his overall topnotch cast with plenty of material, and they make the most of it.",2008-02-19,13751,The French Connection +David Fear,fresh,0067116,Time Out New York,"William Friedkin's symphony of long, sharp shocks is memorable for any number of sequences.",2008-01-18,13751,The French Connection +J. Hoberman,fresh,0067116,Village Voice,Popeye also earned counterculture points by mistakenly shooting a federal agent and exhibiting a conspicuous lack of remorse.,2007-08-28,13751,The French Connection +Dave Kehr,fresh,0067116,Chicago Reader,"This 1971 thriller about a heroin bust is solid, slick filmmaking, full of dirty cops, shrewd operators, and slam-bang action.",2006-12-13,13751,The French Connection +Geoff Andrew,rotten,0067116,Time Out,"An urban crime thriller which won undeserved acclaim for its efficient but unremarkable elevated-railway chase and its clumsy, showy emphasis on grainy, sordid realism.",2006-01-26,13751,The French Connection +Roger Ebert,fresh,0067116,Chicago Sun-Times,"The French Connection is as amoral as its hero, as violent, as obsessed and as frightening.",2004-10-23,13751,The French Connection +Roger Greenspun,fresh,0067116,New York Times,"It moves at magnificent speed, and exhausts itself in movement.",2003-05-21,13751,The French Connection +Gene Siskel,fresh,0075148,Chicago Tribune,Sylvester Stallone [is] as likable as a basset hound.,2013-02-06,11405,Rocky +Richard Schickel,rotten,0075148,TIME Magazine,"The story is achingly familiar, and though Stallone has a certain power, he is certainly not the subtlest actor to crawl out from under Marlon's overcoat.",2011-07-26,11405,Rocky +A.D. Murphy,fresh,0075148,Variety,"There are occasional flashes that the film may be patronizing the lower end of the blue-collar mentality, as much if not more than the characters who keep putting Rocky down on the screen. However, Avildsen is noted for creating such ambiguities.",2009-02-20,11405,Rocky +Dave Kehr,fresh,0075148,Chicago Reader,"I wanted to like it more than I did, but it'll do.",2006-12-13,11405,Rocky +Geoff Andrew,fresh,0075148,Time Out,Rocky is an old-fashioned fairytale brilliantly revamped to chime in with the depressed mood of the '70s.,2006-06-24,11405,Rocky +Vincent Canby,rotten,0075148,New York Times,"The screenplay of Rocky is purest Hollywood make-believe of the 1930's, but there would be nothing wrong with that, had the film been executed with any verve.",2005-05-09,11405,Rocky +Roger Ebert,fresh,0075148,Chicago Sun-Times,"A description of it would sound like a cliche from beginning to end. But Rocky isn't about a story, it's about a hero. And it's inhabited with supreme confidence by a star.",2004-10-23,11405,Rocky +James Berardinelli,fresh,0075148,ReelViews,The basic storyline has been done to death over the years; this is still one of the most effective and successful applications of the formula.,2000-01-01,11405,Rocky +Peter Rainer,rotten,0079417,Los Angeles Times,It's an interesting movie to look back on for its attitudes: In the guise of being a consciousness-raiser it plumps for male tenderness and demonizes the mother who can't recognize how far her workaholic ex-hubbie has come.,2013-02-19,11122,Kramer vs. Kramer +Dale Pollock,fresh,0079417,Variety,"Kramer Vs. Kramer is a perceptive, touching, intelligent film about one of the raw sores of contemporary America, the dissolution of the family unit.",2013-02-06,11122,Kramer vs. Kramer +Stanley Kauffmann,fresh,0079417,The New Republic,Benton's direction must first be praised for his choice of actors and his collaboration with them.,2013-02-06,11122,Kramer vs. Kramer +Frank Rich,fresh,0079417,TIME Magazine,Benton gives his film its depth and complexity by challenging the audience's preconceptions and snap opinions at every turn.,2010-02-24,11122,Kramer vs. Kramer +Michael Booth,fresh,0079417,Denver Post,"Kramer vs. Kramer is definitely a movie to watch together -- your kids may well seek shelter under your arm, glad to know their own families enjoy more peace.",2007-02-02,11122,Kramer vs. Kramer +Jonathan Rosenbaum,rotten,0079417,Chicago Reader,Misogynistic claptrap.,2006-12-13,11122,Kramer vs. Kramer +Geoff Andrew,fresh,0079417,Time Out,A high class modern weepie.,2006-06-24,11122,Kramer vs. Kramer +Roger Ebert,fresh,0079417,Chicago Sun-Times,Kramer vs. Kramer wouldn't be half as good as it is -- half as intriguing and absorbing -- if the movie had taken sides.,2004-10-23,11122,Kramer vs. Kramer +Vincent Canby,fresh,0079417,New York Times,"[A] fine, witty, moving, most intelligent adaptation of Avery Corman's best-selling novel.",2003-05-20,11122,Kramer vs. Kramer +James Berardinelli,fresh,0081283,ReelViews,What Redford accomplishes is to provide an excellent portrait of how well families can hide their inner turmoil from the prying eyes of outsiders.,2009-04-30,13029,Ordinary People +Richard Schickel,fresh,0081283,TIME Magazine,"An austere and delicate examination of the ways in which a likable family falters under pressure and struggles, with ambiguous results, to renew itself.",2009-02-20,13029,Ordinary People +Todd McCarthy,fresh,0081283,Variety,A powerfully intimate domestic drama.,2008-02-20,13029,Ordinary People +Dave Kehr,rotten,0081283,Chicago Reader,"The film looks austere and serious, rather as if it had been shot inside a Frigidaire, and the oppressiveness of the images tends to strangle laughter, even at the most absurd excesses of Alvin Sargent's script.",2006-12-13,13029,Ordinary People +,fresh,0081283,Time Out,"An actors' movie and an advert for therapy, extremely bitter, but handsomely directed in its elegant pretentiousness.",2006-01-26,13029,Ordinary People +Roger Ebert,fresh,0081283,Chicago Sun-Times,"An intelligent, perceptive, and deeply moving film.",2004-10-23,13029,Ordinary People +Vincent Canby,fresh,0081283,New York Times,"A moving, intelligent and funny film about disasters that are commonplace to everyone except the people who experience them.",2003-05-20,13029,Ordinary People +Gene Siskel,fresh,0082158,Chicago Tribune,"Although it is extremely well made, I frankly don't understand what the shouting is about. Good, yes; great, no.",2013-02-06,10818,Chariots of Fire +Richard Schickel,fresh,0082158,TIME Magazine,"Like every element in this picture, the actors look right; they seem to emerge from the past, instead of being pasted on to it, as so many characters in historical movies seem to be.",2008-08-01,10818,Chariots of Fire +Jack Pitman,fresh,0082158,Variety,"No imbalance mars the pic, whose cross-the-board achievement lifts it to an impressive level of unified accomplishment.",2007-03-26,10818,Chariots of Fire +Dave Kehr,rotten,0082158,Chicago Reader,"The battered Britons may have some excuse for enjoying this nostalgic re-creation of empire ideology, but what's ours?",2006-12-17,10818,Chariots of Fire +Geoff Andrew,rotten,0082158,Time Out,Really this is an overblown piece of self-congratulatory emotional manipulation perfectly suited for Thatcherite liberals.,2006-02-09,10818,Chariots of Fire +Roger Ebert,fresh,0082158,Chicago Sun-Times,This is strange. I have no interest in running and am not a partisan in the British class system. Then why should I have been so deeply moved by Chariots of Fire?,2004-10-23,10818,Chariots of Fire +Vincent Canby,fresh,0082158,New York Times,"It's an exceptional film, about some exceptional people.",2003-05-20,10818,Chariots of Fire +James Berardinelli,fresh,0082158,ReelViews,"Appreciation of this picture doesn't demand a love of sports, merely an understanding of human nature.",2000-01-01,10818,Chariots of Fire +Gene Siskel,fresh,0086425,Chicago Tribune,Terms of Endearment is about three relationships and students of screenwriting would do well to study the way in which these three stories are told completely and effortlessly in a movie of average length.,2013-01-18,13026,Terms of Endearment +Richard Schickel,fresh,0086425,TIME Magazine,"Its quirky rhythms and veering emotional tones are very much its own, and they owe less to movie tradition than they do to a sense of how the law of unintended consequences pushes us ceaselessly through the years, permitting no pause for perspective.",2009-02-20,13026,Terms of Endearment +James Harwood,fresh,0086425,Variety,"Brooks' dialog is wonderful throughout and all the characters carry off their assignments beautifully, even down to Danny De Vito and Norman Bennett as MacLaine's other suffering suitors.",2008-02-20,13026,Terms of Endearment +Dave Kehr,rotten,0086425,Chicago Reader,"[Writer-director James L. Brooks] has television in his soul: his people are incredibly tiny (most are defined by a single stroke of obsessive behavior), and he chokes out his narrative in ten-minute chunks, separated by aching lacunae.",2006-12-17,13026,Terms of Endearment +Geoff Andrew,fresh,0086425,Time Out,"Then The Illness strikes, and the film changes gear completely, pulling out all the stops.",2006-06-24,13026,Terms of Endearment +Roger Ebert,fresh,0086425,Chicago Sun-Times,"The most remarkable achievement of Terms of Endearment, which is filled with great achievements, is its ability to find the balance between the funny and the sad, between moments of deep truth and other moments of high ridiculousness.",2004-10-23,13026,Terms of Endearment +Janet Maslin,fresh,0086425,New York Times,"A funny, touching, beautifully acted film that covers more territory than it can easily manage.",2003-05-20,13026,Terms of Endearment +Richard Schickel,fresh,0089755,TIME Magazine,"Out of Africa is, at last, the free-spirited, fullhearted gesture that everyone has been waiting for the movies to make all decade long. It reclaims the emotional territory that is rightfully theirs.",2009-02-20,10091,Out of Africa +Joe Bigelow,rotten,0089755,Variety,"Maybe the problem of the pacing is simply the nature of the beast these days with expensive period pieces. Once the difficult details are all in place, it may be too much to expect a director to resist milking every scene for more than it's worth.",2008-01-28,10091,Out of Africa +Dave Kehr,fresh,0089755,Chicago Reader,"Sydney Pollack applies craftsmanship and restraint to a classic plot curve of longing, fulfillment, and loss, and although the denouement is a bit overextended, he never yields to facile, insistent sentimentality -- his effects are honestly won.",2007-02-05,10091,Out of Africa +,rotten,0089755,Time Out,"For all that it may come out of Africa, the film's final destination is not many miles from Disneyland.",2006-01-26,10091,Out of Africa +Vincent Canby,rotten,0089755,New York Times,"With the exception of Miss Streep's performance, the pleasures of Out of Africa are all peripheral -- David Watkin's photography, the landscapes, the shots of animal life -all of which would fit neatly into a National Geographic layout.",2003-05-20,10091,Out of Africa +Roger Ebert,fresh,0089755,Chicago Sun-Times,"Out of Africa is a great movie to look at, breathtakingly filmed on location. It is a movie with the courage to be about complex, sweeping emotions, and to use the star power of its actors without apology.",2000-01-01,10091,Out of Africa +James Berardinelli,fresh,0089755,ReelViews,It tells a grand love story in less-than-grand fashion but is nevertheless worth seeing because of all the other things it does right.,1985-12-18,10091,Out of Africa +Sheila Benson,fresh,0093389,Los Angeles Times,As coolly lavish an epic as we may ever see.,2013-02-22,10619,The Last Emperor +Lisa Schwarzbaum,fresh,0093389,Entertainment Weekly,The expanse of time is saturated with an expanse of visual beauty that feels absolutely right for the story.,2011-09-07,10619,The Last Emperor +Richard Schickel,fresh,0093389,TIME Magazine,It works astonishingly well.,2009-02-20,10619,The Last Emperor +Todd McCarthy,fresh,0093389,Variety,Constantly absorbing and tremendously interesting.,2008-02-20,10619,The Last Emperor +Geoff Andrew,fresh,0093389,Time Out,"John Lone is superb as the sad mediocrity; and if spectacle finally triumphs over sympathy, it is not without a decent struggle.",2006-06-24,10619,The Last Emperor +Jonathan Rosenbaum,fresh,0093389,Chicago Reader,"It's a tribute to the film's intelligence and its feeling for dialectics that it views both the Forbidden City and the detention center as prisons, and that when Pu Yi winds up as a gardener there's a sense of gain as well as loss.",2004-08-20,10619,The Last Emperor +Vincent Canby,rotten,0093389,New York Times,The Last Emperor is like an elegant travel brochure. It piques the curiosity. One wants to go. Ultimately it's a let-down.,2003-05-20,10619,The Last Emperor +Roger Ebert,fresh,0093389,Chicago Sun-Times,Everything involving the life of Pu Yi was a waste. Everything except one thing: the notion that a single human life could have infinite value.,2000-01-01,10619,The Last Emperor +Joe Baltake,fresh,0093389,Sacramento Bee,One of those irresistible movie entertainments that works on so many different levels and offers so much for the senses to savor that it is likely to intimidate some people even more than it did 11 years ago.,2000-01-01,10619,The Last Emperor +Desson Thomson,fresh,0093389,Washington Post,A remarkable achievement.,2000-01-01,10619,The Last Emperor +Rita Kempley,rotten,0093389,Washington Post,"We need more than elegant parallels and lavish production values. We need tension, characterization, drama.",2000-01-01,10619,The Last Emperor +Sheila Benson,fresh,0095953,Los Angeles Times,"What no one can argue is that Rain Man is Cruise's quantum leap, so that it can be said unblushingly that he holds his own with the masterly Hoffman.",2013-02-20,15245,Rain Man +Gene Siskel,fresh,0095953,Chicago Tribune,"The strength of the film is really that of Cruise's performance, his finest since Risky Business.",2013-02-06,15245,Rain Man +Richard Schickel,rotten,0095953,TIME Magazine,"Rain Man's restraint is, finally, rather like Raymond's gabble. It discourages connections, keeping you out instead of drawing you in.",2008-12-21,15245,Rain Man +Amy Dawes,rotten,0095953,Variety,"Uneven, slightly off-target.",2008-02-20,15245,Rain Man +Jonathan Rosenbaum,fresh,0095953,Chicago Reader,"Valeria Golino is appealing as Cruise's girlfriend; Hoffman makes his character pretty believable without milking the part for pathos and tears, and it's nice to see Cruise working for a change in a context that isn't determined by hard sell and hype.",2007-02-05,15245,Rain Man +Geoff Andrew,rotten,0095953,Time Out,"There is no story, no motor, and given the nature of the premise, nothing much can happen.",2006-02-09,15245,Rain Man +Vincent Canby,rotten,0095953,New York Times,"Its end effect depends largely on one's susceptibility to the sight of an actor acting nonstop and extremely well, but to no particularly urgent dramatic purpose.",2003-05-20,15245,Rain Man +Roger Ebert,fresh,0095953,Chicago Sun-Times,Rain Man is so fascinating because it refuses to supply those questions with sentimental but unrealistic answers.,2000-01-01,15245,Rain Man +Hal Hinson,rotten,0095953,Washington Post,Neither Levinson nor Hoffman was able to penetrate the mystery of their subject.,2000-01-01,15245,Rain Man +Desson Thomson,rotten,0095953,Washington Post,Rain Man is far from a washout but you can't help feeling all those missed opportunities raining down on you.,2000-01-01,15245,Rain Man +Richard Schickel,fresh,0097239,TIME Magazine,"Alfred Uhry's adaptation of his Pulitzer-prizewinning play aspires more to complex observation of human behavior than to simple moralism about it. Precisely because it has its priorities straight, it succeeds superbly on both levels.",2009-02-20,11760,Driving Miss Daisy +Joseph McBride,fresh,0097239,Variety,Bruce Beresford's sensitive direction complements Alfred Uhry's skillful adapation of his Pulitzer Prize-winning play.,2008-01-28,11760,Driving Miss Daisy +Jonathan Rosenbaum,fresh,0097239,Chicago Reader,The movie also has something legitimate and instructive to say about the subtlety and intricacy of everyday race relations in the south during the period covered (roughly 1948 to '73).,2007-02-05,11760,Driving Miss Daisy +,fresh,0097239,Time Out,Far too cosy to serve as an effective social or political metaphor; better to regard it as a solid ensemble piece.,2006-01-26,11760,Driving Miss Daisy +Vincent Canby,fresh,0097239,New York Times,"There is an exhilarating, singularly theatrical lightness of touch that is often lost when these settings are made manifest in a movie.",2003-05-20,11760,Driving Miss Daisy +Peter Travers,fresh,0097239,Rolling Stone,This is Tandy's finest two hours onscreen in a film career that goes back to 1932.,2001-05-13,11760,Driving Miss Daisy +Rita Kempley,fresh,0097239,Washington Post,"The story holds a potential for sap that is mostly unfulfilled thanks to Beresford's stately approach, the stars' better judgment and the protagonists' sharp wits.",2000-01-01,11760,Driving Miss Daisy +Roger Ebert,fresh,0097239,Chicago Sun-Times,"Driving Miss Daisy is a film of great love and patience, telling a story that takes 25 years to unfold, exploring its characters as few films take the time to do.",2000-01-01,11760,Driving Miss Daisy +Desson Thomson,fresh,0097239,Washington Post,"The movie gets you mainly because Morgan Freeman, who played chauffeur Hoke Colburn in the original stage production (and won his third Obie for it), takes the wheel and drives Daisy all the way home.",2000-01-01,11760,Driving Miss Daisy +Dave Kehr,fresh,0065063,Chicago Reader,"Whatever its genesis, Allen's scraggly rhetoric evolved into the dominant comic style of the 70s.",2013-05-10,16258,Take the Money and Run +Variety Staff,rotten,0065063,Variety,A few good laughs in an 85-minute film do not a comedy make.,2009-03-26,16258,Take the Money and Run +,fresh,0065063,Time Out,"It has plenty of hilarious jokes and concepts, like the ventriloquists' dummies at prison visiting time, and the return home from a chaingang break with five shackled cons in tow.",2006-06-24,16258,Take the Money and Run +Vincent Canby,fresh,0065063,New York Times,"Allen has made a movie that is, in effect, a feature-length, two-reel comedy -- something very special and eccentric and funny.",2005-05-09,16258,Take the Money and Run +Roger Ebert,rotten,0065063,Chicago Sun-Times,"Woody Allen's Take the Money and Run has some very funny moments, and you'll laugh a lot, but in the last analysis it isn't a very funny movie.",2004-10-23,16258,Take the Money and Run +Jay Cocks,fresh,0067309,TIME Magazine,"[Fonda] makes all the right choices, from the mechanics of her walk and her voice inflection to the penetration of the girl's raging psyche. It is a rare performance.",2009-08-30,14025,Klute +Geoff Andrew,fresh,0067309,Time Out,"For once, a genuinely psychological thriller.",2006-02-09,14025,Klute +Roger Ebert,fresh,0067309,Chicago Sun-Times,"With Fonda and Sutherland, you have actors who understand and sympathize with their characters, and you have a vehicle worthy of that sort of intelligence. So the fact that the thriller stuff doesn't always work isn't so important.",2004-10-23,14025,Klute +Roger Greenspun,rotten,0067309,New York Times,"Pakula, when he is not indulging in subjective camera, strives to give his film the look of structural geometry, but despite the sharp edges and dramatic spaces and cinema presence out of Citizen Kane, it all suggests a tepid, rather tasteless mush.",2003-05-21,14025,Klute +,fresh,0087995,Variety,Repo Man has the type of unerring energy that leaves audiences breathless and entertained.,2007-06-04,16154,Repo Man +Dave Kehr,fresh,0087995,Chicago Reader,"Cox's style is a step beyond camp into a comedy of pure disgust; much of the film is churlishly unpleasant, but there's a core of genuine anger that gives the project an emotional validation lacking in the flabby American comedies of the early 80s.",2007-06-04,16154,Repo Man +Geoff Andrew,fresh,0087995,Time Out,"There are endless things to enjoy, from Robby Muller's crisp camerawork to a superb set of performances, from witty movie parodies to a tremendous punk soundtrack.",2006-06-24,16154,Repo Man +Roger Ebert,fresh,0087995,Chicago Sun-Times,"Repo Man comes out of left field, has no big stars, didn't cost much, takes chances, dares to be unconventional, is funny, and works. There is a lesson here.",2004-10-23,16154,Repo Man +Vincent Canby,fresh,0087995,New York Times,"It's very entertaining, and though it's rude in an R-rated way, it has the good taste never to promise more than it can deliver.",2003-05-20,16154,Repo Man +Jonathan Rosenbaum,fresh,0100142,Chicago Reader,"Whit Stillman's crafty independent feature about wealthy Park Avenue teenagers and a middle-class boy who joins their ranks over one Christmas vacation is certainly well imagined, and impressively acted by a cast of newcomers.",2008-07-18,120401555,Metropolitan +Variety Staff,fresh,0100142,Variety,"Filmmaker Whit Stillman makes a strikingly original debut with Metropolitan, a glib, ironic portrait of the vulnerable young heirs to Manhattan's disappearing debutante scene.",2008-07-18,120401555,Metropolitan +Jessica Winter,fresh,0100142,Time Out,"None of Stillman's endearing characters quite fits their prescribed social context, and in its exhilarated final movement, Metropolitan finds an exit out of the stifling UHB salon.",2006-06-24,120401555,Metropolitan +Desson Thomson,rotten,0100142,Washington Post,"True appreciation for this movie may be restricted to those with firsthand experience in this kind of world, or a certain upper-haute stamina.",2000-01-01,120401555,Metropolitan +Roger Ebert,fresh,0100142,Chicago Sun-Times,"Not very much happens in Metropolitan, and yet everything that happens is felt deeply, because the characters in this movie are still too young to have perfected their defenses against life.",2000-01-01,120401555,Metropolitan +Rita Kempley,fresh,0100142,Washington Post,"Like chamber music, Metropolitan is sprightly, intimate and all too self-aware.",2000-01-01,120401555,Metropolitan +,rotten,0100142,Entertainment Weekly,,1990-08-03,120401555,Metropolitan +,none,0091369,Variety,,2009-03-26,10057,Labyrinth +Steven Rea,fresh,0091369,Philadelphia Inquirer,"An innovative mix of sophisticated puppetry and special effects, Labyrinth has all the components of classic myth.",2007-08-09,10057,Labyrinth +Desson Thomson,rotten,0091369,Washington Post,"Unfortunately, this contemporary (at least, for the era) fairy tale, directed and co-written by Muppets creator Jim Henson, never sets a timely tone beyond the 1980s. It remains disappointingly tethered to yesteryear.",2007-08-02,10057,Labyrinth +,none,0091369,Denver Post,,2007-07-14,10057,Labyrinth +Wesley Morris,rotten,0091369,Boston Globe,Henson's imagination is boundless. But his movie has no pep. It's a dream in neutral.,2007-06-29,10057,Labyrinth +Michael Wilmington,fresh,0091369,Chicago Tribune,"A real masterpiece of puppetry and special effects, an absolutely gorgeous children's fantasy movie.",2007-06-14,10057,Labyrinth +Geoff Andrew,none,0091369,Time Out,,2006-06-24,10057,Labyrinth +Nina Darnton,fresh,0091369,New York Times,A remarkable achievement.,2003-05-21,10057,Labyrinth +Roger Ebert,rotten,0091369,Chicago Sun-Times,"Great energy and creativity went into the construction, production and direction of this movie, but it doesn't have a story that does justice to the production.",2000-01-01,10057,Labyrinth +Michael Booth,fresh,0088847,Denver Post,"In nine hours of threatening, bickering and, eventually, poignant (but never maudlin) self-revelation, the stereotypes dissolve and re-form.",2007-07-27,14900,The Breakfast Club +Dave Kehr,fresh,0088847,Chicago Reader,"John Hughes's 1985 film seems meant to explain 80s youngsters to yesterday's youth, and comes to the comforting conclusion that they're just as alienated, idealistic, and vulnerable as the baby boomers of the 1960s.",2007-07-18,14900,The Breakfast Club +Variety Staff,rotten,0088847,Variety,"Does director John Hughes really believe, as he writes here, that 'when you grow up, your heart dies.' It may. But not unless the brain has already started to rot with films like this.",2007-07-18,14900,The Breakfast Club +,rotten,0088847,Time Out,"An iconic movie of the '80s, with all the unappealing baggage that suggests.",2006-06-24,14900,The Breakfast Club +Roger Ebert,fresh,0088847,Chicago Sun-Times,"The Breakfast Club doesn't need earthshaking revelations; it's about kids who grow willing to talk to one another, and it has a surprisingly good ear for the way they speak.",2004-10-23,14900,The Breakfast Club +Janet Maslin,rotten,0088847,New York Times,"Mr. Hughes, having thought up the characters and simply flung them together, should have left well enough alone.",2003-05-20,14900,The Breakfast Club +James Berardinelli,fresh,0088847,ReelViews,"In The Breakfast Club, Hughes has created a surprisingly enduring motion picture that is still effective 13 years after its theatrical debut.",2000-01-01,14900,The Breakfast Club +Variety Staff,fresh,0089686,Variety,Episodic treatment is punched up by an imaginative series of special effects.,2009-03-26,14515,A Nightmare on Elm Street Part 2: Freddy's Revenge +,fresh,0089686,Time Out,"The film hangs reasonably well together, not least because of good performances from all concerned.",2006-02-11,14515,A Nightmare on Elm Street Part 2: Freddy's Revenge +Janet Maslin,fresh,0089686,New York Times,"Mr. Patton and Miss Myers make likable teen-age heroes, and Mr. Englund actually turns Freddy into a welcome presence.",2003-11-04,14515,A Nightmare on Elm Street Part 2: Freddy's Revenge +Variety Staff,rotten,0093629,Variety,"Debuting director Chuck Russell elicits poor performances from most of his thesps, making it difficult to differentiate between pic's comic relief and unintended howlers.",2008-04-28,14104,A Nightmare on Elm Street 3: Dream Warriors +,fresh,0093629,Time Out,"A creepy score and Russell's sure grasp of the skewed logic of nightmares helps to sustain the ambiguity between the 'real' and 'dream' worlds, while Englund's Freddie now fits like a glove.",2006-01-26,14104,A Nightmare on Elm Street 3: Dream Warriors +Janet Maslin,fresh,0093629,New York Times,"The film's dream sequences are ingenious, and they feature some remarkable nightmare images and special effects.",2004-08-30,14104,A Nightmare on Elm Street 3: Dream Warriors +Richard Harrington,rotten,0093629,Washington Post,"While it's better than its predecessor, it's still not quite up to its inspiration.",2000-01-01,14104,A Nightmare on Elm Street 3: Dream Warriors +Roger Ebert,rotten,0093629,Chicago Sun-Times,"This is filmmaking by the numbers, without soul.",2000-01-01,14104,A Nightmare on Elm Street 3: Dream Warriors +Jonathan Rosenbaum,fresh,0095742,Chicago Reader,Consistently watchable and inventive.,2010-04-05,14462,A Nightmare on Elm Street 4: The Dream Master +Variety Staff,fresh,0095742,Variety,"Robert Englund, receiving star billing for the first time, is delightful in his frequent incarnations as Freddy, delivering his gag lines with relish and making the grisly proceedings funny.",2009-03-26,14462,A Nightmare on Elm Street 4: The Dream Master +,rotten,0095742,Time Out,"While some of the monotonous effects are strikingly surreal, Harlin's direction creates an atmosphere which is more morbid than scary.",2006-01-26,14462,A Nightmare on Elm Street 4: The Dream Master +Caryn James,rotten,0095742,New York Times,"Though the Elm Street series contains the most intelligent premise in current genre films, none of the movies take much advantage of their potential.",2004-08-30,14462,A Nightmare on Elm Street 4: The Dream Master +Richard Harrington,rotten,0095742,Washington Post,"As always, the teen actors are disposable, and even Robert Englund seems to be sleepwalking through Freddy.",2000-01-01,14462,A Nightmare on Elm Street 4: The Dream Master +Jonathan Rosenbaum,rotten,0097981,Chicago Reader,The series here takes a depressing nosedive into zero-degree filmmaking.,2010-04-05,14987,A Nightmare on Elm Street: The Dream Child +Variety Staff,rotten,0097981,Variety,Fifth edition of the hit Nightmare series is a poorly constructed special effects showcase.,2009-03-26,14987,A Nightmare on Elm Street: The Dream Child +,fresh,0097981,Time Out,A flimsily plotted but visually impressive addition to the endless Freddy Krueger saga.,2006-01-26,14987,A Nightmare on Elm Street: The Dream Child +Caryn James,fresh,0097981,New York Times,A genre film that won't totally insult your intelligence or your eyes.,2004-08-30,14987,A Nightmare on Elm Street: The Dream Child +Richard Harrington,rotten,0097981,Washington Post,"As for Englund, he still looks as if he's been working at Domino's too long, and he still sounds as if he's stealing his material from Don Rickles.",2000-01-01,14987,A Nightmare on Elm Street: The Dream Child +Owen Gleiberman,rotten,0101917,Entertainment Weekly,,2011-09-07,14238,Freddy's Dead: The Final Nightmare +Variety Staff,fresh,0101917,Variety,"Sixth and final edition in the Nightmare on Elm Street feature series delivers enough violence, black humor and even a final reel in 3-D to hit paydirt with horror-starved audiences.",2009-03-26,14238,Freddy's Dead: The Final Nightmare +,rotten,0101917,Time Out,Even the much-heralded 3-D finale is murky and unimaginative.,2006-06-24,14238,Freddy's Dead: The Final Nightmare +Janet Maslin,fresh,0101917,New York Times,"The Elm Street films have always been a cut above the competition, so to speak, with their playfully malevolent dream sequences and their mocking, ever-resourceful villain.",2003-05-20,14238,Freddy's Dead: The Final Nightmare +Richard Harrington,fresh,0101917,Washington Post,"So long, Freddy, it's been good to know you.",2000-01-01,14238,Freddy's Dead: The Final Nightmare +,rotten,0101917,Entertainment Weekly,,1991-09-13,14238,Freddy's Dead: The Final Nightmare +,none,0080761,Variety,,2013-01-22,16819,Friday the 13th +,none,0080761,Newsday,,2009-02-13,16819,Friday the 13th +Roger Ebert,rotten,0080761,Chicago Sun-Times,,2009-02-13,16819,Friday the 13th +James Berardinelli,rotten,0080761,ReelViews,,2009-02-12,16819,Friday the 13th +,none,0080761,Variety,,2008-09-11,16819,Friday the 13th +Dave Kehr,fresh,0080761,Chicago Reader,"For all its shoddiness, the film manages, just barely, to achieve its ignoble goals -- it delivers what it promises.",2007-09-26,16819,Friday the 13th +,rotten,0080761,Time Out,"A tame, poorly plotted serving of schlock, less horrific for its ketchup-smeared murders than for the bare-faced fashion in which it tries and fails to rip off Carpenter's Halloween in matters of style and construction.",2006-01-26,16819,Friday the 13th +Joseph Litsch,fresh,0080761,Atlanta Journal-Constitution,The whole film is one of the best arguments for resuming movie censorship to come along in years.,2005-03-07,16819,Friday the 13th +,none,0082418,Variety,,2009-03-26,16506,Friday the 13th Part 2 +,none,0082418,Time Out,,2006-01-26,16506,Friday the 13th Part 2 +Roger Ebert,rotten,0082418,Chicago Sun-Times,,2004-10-23,16506,Friday the 13th Part 2 +Variety Staff,rotten,0083972,Variety,"Friday the 13th was dreadful and took in more than $17 million. Friday the 13th Part 2 was just as bad and took in more than $10 million. Friday the 13th Part III is terrible, too.",2008-08-06,14236,Friday the 13th Part III +Janet Maslin,rotten,0083972,New York Times,"Eventually, the novelty wears off, and what remains is the now-familiar spectacle of nice, dumb kids being lopped, chopped and perforated.",2004-08-30,14236,Friday the 13th Part III +,none,0087298,Variety,,2008-07-07,14033,Friday the 13th: The Final Chapter +Janet Maslin,none,0087298,New York Times,,2003-05-20,14033,Friday the 13th: The Final Chapter +Vincent Canby,none,0089173,New York Times,,2003-05-20,14780,Friday the 13th: A New Beginning +Gene Siskel,rotten,0091080,Chicago Tribune,"The murderous Jason is back in the latest chapter of the most offensive series in film history, unless Burt Reynolds makes three more Smokey and the Bandit pictures real quick.",2013-01-16,14523,Jason Lives: Friday the 13th Part VI +,none,0091080,Variety,,2009-03-26,14523,Jason Lives: Friday the 13th Part VI +Caryn James,none,0091080,New York Times,,2003-05-20,14523,Jason Lives: Friday the 13th Part VI +,none,0095179,Variety,,2009-03-26,14875,Friday the 13th Part VII: The New Blood +Caryn James,none,0095179,New York Times,,2003-05-20,14875,Friday the 13th Part VII: The New Blood +Richard Harrington,none,0095179,Washington Post,,2000-01-01,14875,Friday the 13th Part VII: The New Blood +,none,0097388,Variety,,2009-03-26,15544,Friday the 13th Part VIII: Jason Takes Manhattan +Trevor Johnston,fresh,0097388,Time Out,"For what it's worth (very little), probably the best in the series.",2006-01-26,15544,Friday the 13th Part VIII: Jason Takes Manhattan +Richard Harrington,rotten,0097388,Washington Post,"Among the passengers is a bright girl who's having visions of a drowning boy, her smarmy guardian, her concerned teacher, a boyfriend whose soon-to-be-late father is the ship's captain, and assorted high school stereotypes.",2000-01-01,15544,Friday the 13th Part VIII: Jason Takes Manhattan +Cliff Doerksen,rotten,0373883,Time Out,,2011-11-18,586908241,Halloween +Joshua Rothkopf,rotten,0373883,Time Out,,2011-11-17,586908241,Halloween +Frank Scheck,rotten,0373883,Hollywood Reporter,"The result, though undeniably preferable to yet another misbegotten installment of the long-exhausted franchise, certainly doesn't compare to John Carpenter's landmark original film.",2007-12-12,586908241,Halloween +Ben Walters,fresh,0373883,Time Out,"It's inanely-scripted exploitation, sure, but this 'Halloween' doesn't trivialise; it even returns with sympathy to one victim minutes after the attack that has left her bleeding on the floor.",2007-09-28,586908241,Halloween +Kyle Smith,fresh,0373883,New York Post,"The Batman Begins of slasher movies, and one of the more frightening stabathons of recent years.",2007-09-12,586908241,Halloween +Joshua Rothkopf,rotten,0373883,Time Out New York,"As if spooked by the long shadow of suburban killer Michael Myers, the director has all but dropped his organic camera style, resulting in exactly the kind of bland, scareless remake the fans were fearing.",2007-09-06,586908241,Halloween +Owen Gleiberman,fresh,0373883,Entertainment Weekly,It's a decent diversion.,2007-09-05,586908241,Halloween +Richard Harrington,rotten,0373883,Washington Post,"Contains dialogue so nasty and stupid, you'd swear (right along with the characters) that the booker for Jerry Springer wrote it (Zombie did).",2007-09-04,586908241,Halloween +Bruce Demara,rotten,0373883,Toronto Star,"Trick or treat? Rob Zombie's ""re-imagining"" of John Carpenter's 1978 horror classic Halloween must sadly be consigned to the former category and it's not even a very interesting, suspenseful trick at that.",2007-09-04,586908241,Halloween +Roger Moore,rotten,0373883,Orlando Sentinel,"Rob Zombie's Halloween remake isn't scary, which is really all you need to know about it.",2007-09-04,586908241,Halloween +Lisa Rose,rotten,0373883,Newark Star-Ledger,"Revamping the influential 1978 shocker Halloween for a new generation of viewers, director Rob Zombie offers a film with more sex, more violence, no humor and zero scares.",2007-09-04,586908241,Halloween +Matt Zoller Seitz,rotten,0373883,New York Times,"The new Halloween has sympathy for the Devil, but not enough.",2007-09-04,586908241,Halloween +Jack Mathews,rotten,0373883,New York Daily News,Rob Zombie's lousy remake of John Carpenter's 1978 slasher classic Halloween adds to the argument that horror movies are losing their box-office appeal because filmmakers no longer know how -- or have any desire -- to create genuine suspense.,2007-09-04,586908241,Halloween +Jason Anderson,rotten,0373883,Globe and Mail,The most depressing thing of all is that Michael will likely survive even this dire endeavour.,2007-09-04,586908241,Halloween +Andrea Gronvall,rotten,0373883,Chicago Reader,"The set-up is tediously slow, while the later murders are packed so tightly it's like watching a blender on high speed.",2007-09-04,586908241,Halloween +Tom Russo,rotten,0373883,Boston Globe,"As a sensory experience, the redo is flat. Even if giving audiences a start were Zombie's strength, fans already know when the scares are coming.",2007-09-04,586908241,Halloween +Peter Hartlaub,rotten,0373883,San Francisco Chronicle,"Even if you consider a Halloween remake sacrilege, you've got to like a truck stop bathroom that's even gnarlier than the one in Trainspotting.",2007-09-01,586908241,Halloween +Nathan Lee,fresh,0373883,Village Voice,"The life and times of a fictional monster may not be as respectable a subject as a historical monster like, say, Idi Amin or Truman Capote, but Zombie's portrait is every bit as reverent, scrupulous, and deeply felt as any Oscar-grubbing horrorshow.",2007-08-31,586908241,Halloween +Adam Graham,rotten,0373883,Detroit News,"Michael Myers is back. And no, you still shouldn't care.",2007-08-31,586908241,Halloween +Colin Covert,rotten,0373883,Minneapolis Star Tribune,"Carpenter's original, a series of brilliant joy-buzzer jolts, treated the horror as a dark pop joke, courting our giggling disbelief. Zombie turns it somber.",2007-08-31,586908241,Halloween +Dave Kehr,rotten,0082495,Chicago Reader,"Rick Rosenthal, who directed this 1981 sequel, doesn't have Carpenter's expansive, affectionate way with stereotypical characters, and without it they're empty shells -- bodies waiting for the slaughter.",2007-08-27,14672,Halloween II +Variety Staff,rotten,0082495,Variety,This uninspired version amounts to lukewarm sloppy seconds in comparison to the original film that made director John Carpenter a hot property.,2007-08-27,14672,Halloween II +Derek Adams,fresh,0082495,Time Out,"The result won't make any converts, but Jamie Lee Curtis is as good as ever.",2006-02-09,14672,Halloween II +Roger Ebert,rotten,0082495,Chicago Sun-Times,"It's a little sad to witness a fall from greatness, and that's what we get in Halloween II.",2004-10-23,14672,Halloween II +Janet Maslin,fresh,0082495,New York Times,Halloween II is good enough to deserve a sequel of its own.,2004-08-30,14672,Halloween II +James Berardinelli,rotten,0082495,ReelViews,Halloween is a classic and its first sequel is a sloppy afterthought.,2000-01-01,14672,Halloween II +,none,0085636,Variety,,2009-03-26,14976,Halloween III: Season of the Witch +,fresh,0085636,Time Out,"The end result is a bit of a mess but hugely enjoyable, and often (thanks to Dean Cundey's camerawork and John Carpenter's close supervision as producer) as striking visually as its predecessors.",2006-06-24,14976,Halloween III: Season of the Witch +Roger Ebert,rotten,0085636,Chicago Sun-Times,"This is one of those Identikit movies, assembled out of familiar parts from other, better movies.",2004-10-23,14976,Halloween III: Season of the Witch +Vincent Canby,fresh,0085636,New York Times,Mr. Wallace clearly has a fondness for the cliches he is parodying and he does it with style.,2004-08-30,14976,Halloween III: Season of the Witch +Variety Staff,rotten,0095271,Variety,"Fourth entry in the Halloween horror series is a no-frills, workmanlike picture.",2007-08-27,16841,Halloween 4: The Return of Michael Myers +Derek Adams,rotten,0095271,Time Out,"The shocks are infinitesimal, the script diabolical.",2006-06-24,16841,Halloween 4: The Return of Michael Myers +Caryn James,rotten,0095271,New York Times,It seems the latest stage in some curious evolutionary pattern; the slasher species keeps proliferating and getting weaker at the same time.,2003-05-20,16841,Halloween 4: The Return of Michael Myers +Richard Harrington,rotten,0095271,Washington Post,"H4 is very much the cheap knockoff of its prototype, but not half as visceral.",2000-01-01,16841,Halloween 4: The Return of Michael Myers +James Berardinelli,rotten,0095271,ReelViews,"Of all the Halloween sequels, including the irrelevant and unwatchable Halloween III, Halloween 4 stands out as the best of a generally uninspired lot.",2000-01-01,16841,Halloween 4: The Return of Michael Myers +,none,0097474,Variety,,2009-03-26,12940,Halloween 5 +Stephen Holden,fresh,0097474,New York Times,A bit more refined in its details than the conventional horror movie.,2003-05-20,12940,Halloween 5 +Richard Harrington,rotten,0097474,Washington Post,A prime example of the principle of diminishing reruns.,2000-01-01,12940,Halloween 5 +Joshua Rothkopf,rotten,0926129,Time Out,,2011-11-16,770680887,Prom Night +Nigel Floyd,rotten,0926129,Time Out,"By far the worst 'slasher movie' remake to date, replaying all the cliches, but delivering none of the guilty pleasures.",2008-06-05,770680887,Prom Night +Clark Collis,rotten,0926129,Entertainment Weekly,"There's no need to wear a corsage to Prom Night. And leaving your higher brain functions at home might be a good idea, too.",2008-04-17,770680887,Prom Night +Jason Anderson,rotten,0926129,Globe and Mail,"A bland, timid and thoroughly un-thrilling teen thriller.",2008-04-14,770680887,Prom Night +Peter Howell,rotten,0926129,Toronto Star,"There's absolutely zippo to fear about this movie, unless you're the kind of person who jumps when formula bogeymen do exactly what you'd expect them to do.",2008-04-14,770680887,Prom Night +Wesley Morris,rotten,0926129,Boston Globe,There's no suspense or perversity. You don't care who lives or who dies -- just please make it soon.,2008-04-14,770680887,Prom Night +Chuck Wilson,rotten,0926129,L.A. Weekly,"There's nothing scary in there, but here's a shudder-inducing fact: McCormick and Cardone are currently collaborating on a remake of the witty and nearly perfect 1987 thriller, The Stepfather.",2008-04-14,770680887,Prom Night +Jeannette Catsoulis,rotten,0926129,New York Times,"For a film about erotomania, Prom Night is a curiously flaccid affair.",2008-04-14,770680887,Prom Night +Michael Rechtshaffen,rotten,0926129,Hollywood Reporter,About as spine-tingling as an algebra exam.,2008-04-14,770680887,Prom Night +James Berardinelli,rotten,0926129,ReelViews,"It's a bore, even taking into account unintentional moments of humor that resulted in audience members jeering. This is a case study for Filmmaking Ineptitude 101.",2008-04-11,770680887,Prom Night +Roger Moore,rotten,0926129,Orlando Sentinel,"Prom night is a night you're supposed to treasure, or at least remember 'forever.' This one is forgotten by the time you throw your empty popcorn bucket into the trash cans conveniently located near the exits on your way out.",2008-04-11,770680887,Prom Night +Joe Leydon,fresh,0926129,Variety,A surprisingly effective teen-skewing thriller that soft-pedals graphic violence (in marked contrast to the R-rated 1980 original) while generating a fair degree of suspense.,2008-04-11,770680887,Prom Night +Vincent Canby,none,0093176,New York Times,,2003-05-20,60559090,Hello Mary Lou: Prom Night II +Richard Harrington,none,0093176,Washington Post,,2000-01-01,60559090,Hello Mary Lou: Prom Night II +Lisa Schwarzbaum,rotten,0144120,Entertainment Weekly,,2011-09-07,14873,Bride of Chucky +Leonard Klady,none,0144120,Variety,,2009-03-26,14873,Bride of Chucky +,none,0144120,Time Out,,2006-06-24,14873,Bride of Chucky +,rotten,0144120,Globe and Mail,,2002-04-12,14873,Bride of Chucky +Mick LaSalle,fresh,0144120,San Francisco Chronicle,,2000-01-01,14873,Bride of Chucky +Joe Baltake,none,0144120,Sacramento Bee,,2000-01-01,14873,Bride of Chucky +Lawrence Van Gelder,none,0144120,New York Times,,2000-01-01,14873,Bride of Chucky +James Berardinelli,rotten,0144120,ReelViews,,2000-01-01,14873,Bride of Chucky +,rotten,0144120,Entertainment Weekly,,1998-10-16,14873,Bride of Chucky +,none,0099253,Variety,,2009-03-26,14272,Child's Play 2 +,rotten,0099253,Time Out,"Only in the highly orchestrated, surprisingly gory climax, wherein Chucky's plastic form takes on the sins of the flesh, is there a spark of originality.",2006-02-09,14272,Child's Play 2 +Janet Maslin,none,0099253,New York Times,,2003-05-20,14272,Child's Play 2 +Richard Harrington,fresh,0099253,Washington Post,"An inevitable sequel that's not as good as its progenitor, but better than most movies with the numbers 2 through 8 in their titles.",2000-01-01,14272,Child's Play 2 +Owen Gleiberman,rotten,0103956,Entertainment Weekly,,2011-09-07,14511,Child's Play 3 +,none,0103956,Variety,,2008-05-30,14511,Child's Play 3 +Caryn James,none,0103956,New York Times,,2003-05-20,14511,Child's Play 3 +Richard Harrington,none,0103956,Washington Post,,2000-01-01,14511,Child's Play 3 +,rotten,0103956,Entertainment Weekly,,1991-08-30,14511,Child's Play 3 +,fresh,0084516,TIME Magazine,The film delivers honest special-effects shocks without forfeiting its good nature.,2011-06-01,10145,Poltergeist +Variety Staff,rotten,0084516,Variety,"Given the talents, Poltergeist is an annoying film because it could have been so much better.",2007-09-25,10145,Poltergeist +Dave Kehr,fresh,0084516,Chicago Reader,"Though the shocks are well conveyed, it's the sweetness that lingers, making this the first cute and cuddly entry in the genre.",2007-09-25,10145,Poltergeist +,fresh,0084516,Time Out,It is consistently redeemed by its creator's dazzling sense of craft.,2006-02-09,10145,Poltergeist +Roger Ebert,fresh,0084516,Chicago Sun-Times,"Hooper and Spielberg hold our interest by observing the everyday rituals of this family so closely that, since the family seems real, the weird events take on a certain credibility by association.",2004-10-23,10145,Poltergeist +Vincent Canby,fresh,0084516,New York Times,"Poltergeist is like a thoroughly enjoyable nightmare, one that you know that you can always wake up from, and one in which, at the end, no one has permanently been damaged. It's also witty in a fashion that Alfred Hitchcock might have appreciated.",2003-05-20,10145,Poltergeist +Derek Adams,rotten,0091778,Time Out,"This sequel, sans Spielberg but obedient to his spirit, simply fails to regenerate the original's gut-grinding fears...",2006-02-09,343360860,Poltergeist II: The Other Side +Nina Darnton,rotten,0091778,New York Times,Seems like a string of special effects held together by a far-fetched story line with an unsatisfying sticky-sweet ending.,2003-05-21,343360860,Poltergeist II: The Other Side +,none,0095889,Variety,,2009-03-26,343359626,Poltergeist III +Derek Adams,none,0095889,Time Out,,2006-02-09,343359626,Poltergeist III +Janet Maslin,none,0095889,New York Times,,2003-05-20,343359626,Poltergeist III +Jonathan Rosenbaum,none,0095889,Chicago Reader,,2000-01-01,343359626,Poltergeist III +Hal Hinson,none,0095889,Washington Post,,2000-01-01,343359626,Poltergeist III +Gene Siskel,fresh,0070047,Chicago Tribune,I loved it.,2013-01-18,15615,The Exorcist +Desson Thomson,fresh,0070047,Washington Post,"It's good stuff but, basically, The Exorcist is a museum piece, something to be enjoyed for its historical value, its datedness and its almost quaint shock value.",2012-10-08,15615,The Exorcist +Owen Gleiberman,fresh,0070047,Entertainment Weekly,Some movies aren't just movies. They're closer to voodoo -- they channel currents larger and more powerful than themselves.,2011-09-07,15615,The Exorcist +Jay Cocks,rotten,0070047,TIME Magazine,"Friedkin and Blatty seem to care nothing for their characters as people, only as victims-props to be abused, hurled about the room, beaten and, in one case, brutally murdered.",2008-08-24,15615,The Exorcist +Vincent Canby,rotten,0070047,New York Times,"The Exorcist is not an unintelligently put-together film, which makes one all the more impatient with it.",2008-03-19,15615,The Exorcist +Roger Ebert,fresh,0070047,Chicago Sun-Times,"If movies are, among other things, opportunities for escapism, then The Exorcist is one of the most powerful ever made.",2007-09-21,15615,The Exorcist +Peter Travers,fresh,0070047,Rolling Stone,There's something elemental about The Exorcist.,2007-09-21,15615,The Exorcist +James Berardinelli,fresh,0070047,ReelViews,"There is nothing dated about The Exorcist, which remains an effective excursion into demonic possession more than a quarter of a century after it was first unveiled to the public.",2007-09-21,15615,The Exorcist +Variety Staff,fresh,0070047,Variety,An expert telling of a supernatural horror story.,2007-09-21,15615,The Exorcist +Jonathan Rosenbaum,fresh,0070047,Chicago Reader,This 1973 horror thriller is highly instructive as well as unnerving.,2007-09-21,15615,The Exorcist +,none,0076009,Variety,,2009-03-26,13715,Exorcist II: The Heretic +,none,0076009,Time Out,,2006-01-26,13715,Exorcist II: The Heretic +,none,0076009,New York Times,,2005-05-09,13715,Exorcist II: The Heretic +Owen Gleiberman,rotten,0099528,Entertainment Weekly,,2011-09-07,13341,The Exorcist III +,none,0099528,Time Out,,2006-01-26,13341,The Exorcist III +Vincent Canby,none,0099528,New York Times,,2003-05-20,13341,The Exorcist III +Rita Kempley,none,0099528,Washington Post,,2000-01-01,13341,The Exorcist III +,rotten,0099528,Entertainment Weekly,,1990-08-17,13341,The Exorcist III +Johanna Steinmetz,rotten,0093409,Chicago Tribune,"As action-adventure, it's pointlessly puerile, a movie where the heroes are so childish they try to one-up each other with fancy shots at the pistol range.",2013-05-13,17397,Lethal Weapon +James Berardinelli,fresh,0093409,ReelViews,"From a distance, Lethal Weapon might appear generic, but a closer look reveals something special.",2009-07-07,17397,Lethal Weapon +Richard Schickel,fresh,0093409,TIME Magazine,What a concept! Mad Max meets The Cosby ShowfODo>Q~iO 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 literal 0 HcmV?d00001