Regular Expressions 101

Save & Share

Flavor

  • PCRE2 (PHP >=7.3)
  • PCRE (PHP <7.3)
  • ECMAScript (JavaScript)
  • Python
  • Golang
  • Java 8
  • .NET 7.0 (C#)
  • Rust
  • Regex Flavor Guide

Function

  • Match
  • Substitution
  • List
  • Unit Tests

Tools

Sponsors
There are currently no sponsors. Become a sponsor today!
An explanation of your regex will be automatically generated as you type.
Detailed match information will be displayed here automatically.
  • All Tokens
  • Common Tokens
  • General Tokens
  • Anchors
  • Meta Sequences
  • Quantifiers
  • Group Constructs
  • Character Classes
  • Flags/Modifiers
  • Substitution
  • A single character of: a, b or c
    [abc]
  • A character except: a, b or c
    [^abc]
  • A character in the range: a-z
    [a-z]
  • A character not in the range: a-z
    [^a-z]
  • A character in the range: a-z or A-Z
    [a-zA-Z]
  • Any single character
    .
  • Alternate - match either a or b
    a|b
  • Any whitespace character
    \s
  • Any non-whitespace character
    \S
  • Any digit
    \d
  • Any non-digit
    \D
  • Any word character
    \w
  • Any non-word character
    \W
  • Non-capturing group
    (?:...)
  • Capturing group
    (...)
  • Zero or one of a
    a?
  • Zero or more of a
    a*
  • One or more of a
    a+
  • Exactly 3 of a
    a{3}
  • 3 or more of a
    a{3,}
  • Between 3 and 6 of a
    a{3,6}
  • Start of string
    ^
  • End of string
    $
  • A word boundary
    \b
  • Non-word boundary
    \B

Regular Expression

/
/
gm

Test String

Code Generator

Generated Code

$re = '/s/m'; $str = ' <!DOCTYPE html> <html xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://ogp.me/ns/fb#"> <head> <title>Best Movies for 2012 - Metacritic</title> <meta http-equiv="content-type" content="text/html; charset=UTF-8"> <meta name="description" content="See how well critics are rating the Best Movies for 2012"> <meta name="application-name" content="Metacritic"> <meta name="msapplication-TileColor" content="#000000"> <meta name="msapplication-TileImage" content="/images/win8tile/76bf1426-2886-4b87-ae1c-06424b6bb8a2.png"> <meta property="og:title" content="Best Movies for 2012"> <meta property="og:type" content="website"> <meta property="og:url" content="https://www.metacritic.com/browse/movies/score/metascore/year/filtered?year_selected=2012&amp;view=detailed"> <meta property="og:image" content="https://static.metacritic.com/images/icons/mc_fb_og.png"> <meta property="og:site_name" content="Metacritic"> <meta property="fb:app_id" content="123113677890173"> <meta property="twitter:site" content="@metacritic"> <meta property="twitter:creator" content="@metacritic"> <meta name="twitter:card" content="https://static.metacritic.com/images/icons/mc_fb_og.png"> <meta property="og:description" content="See how well critics are rating the Best Movies for 2012"> <link rel="canonical" href="https://www.metacritic.com/browse/movies/score/metascore/year/filtered?year_selected=2012&view=detailed" /> <link rel="next" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=1"/> <link rel="dns-prefetch" href="//cdn.cookielaw.org" pr="1"> <link rel="dns-prefetch" href="//geolocation.onetrust.com" pr="1"> <link rel="preload" href="//cdn.cookielaw.org/scripttemplates/otSDKStub.js" pr="1" as="script" crossorigin> <link rel="preload" type="application/x-javascript" href="//cdn.cookielaw.org/consent/099cf09d-47b1-46c4-89e9-9f2cce394562/099cf09d-47b1-46c4-89e9-9f2cce394562.json" pr="1" as="fetch" crossorigin="anonymous" data-no-header> <link rel="preload" as="script" type="text/javascript" href="https://geolocation.onetrust.com/cookieconsentpub/v1/geo/location" data-no-header> <script src="https://cdn.cookielaw.org/scripttemplates/otSDKStub.js" type="text/javascript" charset="UTF-8" data-domain-script="099cf09d-47b1-46c4-89e9-9f2cce394562" async > </script> <script type="application/javascript"> (function(a){ var w=window,b=\'cbsoptanon\',q=\'cmd\',r=\'config\'; w[b] = w[b] ? w[b] : {}; w[b][q] = w[b][q] ? w[b][q] : []; w[b][r] = w[b][r] ? w[b][r] : []; a.forEach(function(z){ w[b][z] = w[b][z] || function(){ var c=arguments; w[b][q].push(function(){ w[b][z].apply(w[b],c); }) } }); })(["onIframesReady","onFormsReady","onScriptsReady","onAdsReady"]); //Add configs window.cbsoptanon.config.push({ setNpaOnConsentChange: true, euMaxAttempts: 25, countryCodeMaxAttempts: 25, oneTrustTimeout: 2000, enableServices: false }); //Load iframes as soon as ready window.cbsoptanon.onIframesReady(function(_cbsoptanon) { console.log(\'Loading iframes\'); _cbsoptanon.tags.load("IFRAME"); }); window.MetaC = window.MetaC || {}; MetaC.scriptExecuted = {}; function gdprConsentCallback(id, callback, callbackArgs, category, onReady) { onReady = onReady || \'Scripts\'; var opt = window.cbsoptanon[\'on\'+onReady+\'Ready\']; MetaC.scriptExecuted[id] = false; opt(function(_cbsoptanon, options) { //If we have categories we need to check if they are allowed if (category != null) { //Gets the current state of all categories var checkState = function () { _cbsoptanon.ot.getState(function (targeting, performance, functional, social) { var obj = { targeting: targeting, performance: performance, functional: functional, social: social }; if (obj[category.toLowerCase()]) { window.MetaC.scriptExecuted[id] = true; callback.apply(this, [callbackArgs, _cbsoptanon, options]); } }); }; checkState(); _cbsoptanon.ot.addOnConsentChangedHandler(function() { if (window.MetaC.scriptExecuted[id] !== true) { checkState(); } }); } else { //Just waiting for on ready fire callback callback.apply(this, [callbackArgs, _cbsoptanon, options]); } }); } // Function to add scripts to the page function append(scriptid,url,async){var d=document,sn=\'script\',f=d.getElementsByTagName(sn)[0];if(!f)f=d.head;var s=d.createElement(sn);s.async=!0;s.id=scriptid;s.src=url;f.parentNode.insertBefore(s,f)} // Set up Googletag cmd queue and init with disabling initial load window.googletag = window.googletag || {}; googletag.cmd = googletag.cmd || []; googletag.cmd.push(function() { googletag.pubads().disableInitialLoad(); }); </script> <script src="https://www.metacritic.com/a/privacy/optanon/optanon-v1.1.0.js" id="bb-cbsoptanon" type="application/javascript" async></script> <script type="text/javascript" src="/js/omniture/uuid.js"></script> <script type="application/javascript"> var MC_UUID = uuid.v1(); var chsn_ad_id = MC_UUID; var utag_data = { isDev:0, siteType:"desktop web", deviceType:"desktop", siteSection:"movies", pageType:"list_page", pageFindingMethod:"Internal", userId:"",userState:"not authenticated",userType:"registered",_test:"redesign|movie|old",pageViewGuid:MC_UUID }; </script> <script type="application/javascript"> window.mPulseKeyConfig = { apiKey: \'9XV6E-QB382-DERTX-NDA24-ZYS7B\', RestApiSecretKey: \'24e8d927-29c8-4452-bd73-5df587e5986a\' }; window.mPulseEnabled = true; </script> <script type="application/javascript"> window.BOOMR_config = { Errors: { enabled: true, monitorGlobal: true, // onerror monitorNetwork: false, // XHRs monitorConsole: true, // window.console.error monitorEvents: false, // addEventListener monitorTimeout: false, // setTimeout, setInterval maxErrors: 10, // max errors sent per page onError: function(err) { var text = err.message || ""; return text.indexOf(".metacritic.com") !== -1 && //first party text.indexOf("Script error") === -1 && //not a script error text.indexOf("Load timeout for modules") === -1; //not a load timeout } } }; (function(){ if (window.BOOMR && window.BOOMR.version) { return; } var dom,doc,where,iframe = document.createElement("iframe"),win = window; function boomerangSaveLoadTime(e) { win.BOOMR_onload=(e && e.timeStamp) || new Date().getTime(); } if (win.addEventListener) { win.addEventListener("load", boomerangSaveLoadTime, false); } else if (win.attachEvent) { win.attachEvent("onload", boomerangSaveLoadTime); } iframe.src = "javascript:void(0)"; iframe.title = ""; iframe.role = "presentation"; (iframe.frameElement || iframe).style.cssText = "width:0;height:0;border:0;display:none;"; where = document.getElementsByTagName("script")[0]; where.parentNode.insertBefore(iframe, where); try { doc = iframe.contentWindow.document; } catch(e) { dom = document.domain; iframe.src="javascript:var d=document.open();d.domain=\'"+dom+"\';void(0);"; doc = iframe.contentWindow.document; } doc.open()._l = function() { var js = this.createElement("script"); if (dom) { this.domain = dom; } js.id = "boomr-if-as"; js.src = "//c.go-mpulse.net/boomerang/" + window.mPulseKeyConfig.apiKey; BOOMR_lstart=new Date().getTime(); this.body.appendChild(js); }; doc.write(\'<body onload="document._l();">\'); doc.close(); })(); </script> <script type="application/javascript"> // Cohesion gdprConsentCallback(\'cohesion\', function(){!function(co,h,e,s,i,o,n){var d=\'documentElement\';var a=\'className\';h[d][a]+=\' preampjs fusejs\'; n.k=e;co._Cohesion=n;co._Preamp={k:s,start:new Date};co._Fuse={k:i};co._Tagular={k:o}; [e,s,i,o].map(function(x){co[x]=co[x]||function(){(co[x].q=co[x].q||[]).push([].slice.call(arguments))}}); h.addEventListener(\'DOMContentLoaded\',function(){co.setTimeout(function(){ var u=h[d][a];h[d][a]=u.replace(/ ?preampjs| ?fusejs/g,\'\')},3e3); co._Preamp.docReady=co._Fuse.docReady=!0});var z=h.createElement(\'script\');z.async=1;z.src=\'https://cdn.cohesionapps.com/cohesion/cohesion-latest.min.js\';h.head.appendChild(z);} (window,document,\'cohesion\',\'preamp\',\'fuse\',\'tagular\',{ tagular:{writeKey:\'wk_1kZD6f0kbCS51mSEsdaRjWBbY4r\', sourceKey:\'src_1kZD6ZLXVCIj0d2XTZb7WONLbaA\', apiVersion: \'v2/t\'} })}, {}, \'performance\'); // GPT/DFP ads append(\'gpt-lib\', ((\'https:\' == document.location.protocol)?\'https:\':\'http:\') + \'//securepubads.g.doubleclick.net/tag/js/gpt.js\', true); // Google Analytics function loadVendorGoogleAnalytics() { append(\'ga-lib\', ((\'https:\' == document.location.protocol)?\'https://ssl\':\'http://www\') + \'.google-analytics.com/ga.js\', true); } gdprConsentCallback(\'google-analytics\', loadVendorGoogleAnalytics, {}, \'performance\'); </script> <script src="//code.jquery.com/jquery-2.2.0.min.js"></script> <link rel="stylesheet" href="/css/global_alt.min.1633026097.css" type="text/css"> <script type="text/javascript" src="/js/global_alt.min.1633026097.js"></script> <link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="/css/fonts/proxima-nova/stylesheet.css" type="text/css" charset="utf-8" /> <link rel="stylesheet" href="/css/video/uvp_custom_controls_3_1.css" type="text/css" charset="utf-8" /> <link rel="icon" href="/MC_favicon.png"/> <script type="text/javascript"> MC_USER_LOGGED_IN = false; window.metac_ads_pushdisplay = window.metac_ads_pushdisplay || []; var googletag = googletag || {}; googletag.cmd = googletag.cmd || []; </script> <script type="text/javascript"> window.BidBarrel = window.BidBarrel || {}; BidBarrel.queue = BidBarrel.queue || []; function pushToDisplay(ad_id, incremental, position, collapse_empty, native_key, cache){ var ad_params = {\'pos\': position}; var additional_settings = {}; if (native_key){ ad_params[\'strnativekey\'] = native_key; } var ad_config = [ad_id, incremental, ad_params]; if (collapse_empty){ additional_settings[\'collapseEmptyDiv\'] = true; } if (cache){ additional_settings[\'cache\'] = true; } if (Object.keys(additional_settings).length != 0){ ad_config.push(additional_settings); } window.metac_ads_pushdisplay.push(ad_config); } </script> <script type="text/javascript" src="https://at.adtech.redventures.io/lib/dist/prod/bidbarrel-metacritic-rv.min.js" async></script> <script src="https://www.metacritic.com/a/video-player/uvpjs-rv/3.1.8/video-player.js"></script> <script type="text/javascript" src="//imasdk.googleapis.com/js/sdkloader/ima3.js"></script> </head> <body class="skybox-auto-collapse"> <div id="nav_ad_wrapper"> <div id="nav_ad_omni" class="ad_unit skybox-closeBtn skybox-collapseBtn"> <script type="text/javascript"> pushToDisplay(\'nav_ad_omni\', null, \'nav\', true, null, false); </script> </div> </div> <div id="page" > <div id="content_header_wrapper" > <header id="top_header"> <nav id="primary_nav"> <nav id="primary_logo" class="primary_nav_item"> <a class="mc-logo" href="https://www.metacritic.com"><img src="/images/icons/metacritic-icon.svg" alt="Metacritic logo"></a> <a class="mc-wordmark" href="https://www.metacritic.com"><img src="/images/icons/metacritic-wordmark.svg" alt="Metacritic logo"></a> </nav> <nav id="primary_search" class="primary_nav_item"> <div class="rounded_field"> <div class="imgs"> <img class="inactive" src="/images/icons/search_inactive.svg" alt="search"> </div> <div class="field innerLabel"> <div class="input_wrapper"> <form action="/search" method="post" autocomplete="off"> <label for="primary_search_box">search...</label> <input name="search_term" id="primary_search_box" autocomplete="off" > <input type="hidden" name="search_filter" value="all"> </form> </div> </div> </div> <div id="primary_search_results"> </div> </nav> <nav id="primary_nav_wrapper"> <nav id="primary_nav_item_games" class="primary_nav_item"> <span class="primary_nav_text"> Games </span> <nav class="primary_drop_down masked"> <div class="mask-container" section="header-games"> <div class="mask-section"> <div class="column feature"> <a href="/feature/major-upcoming-video-game-release-dates-xbox-ps4-pc-switch" class="feature-img-container" section="articles"> <img class="primary_feature_img" src="https://static.metacritic.com/images/features/main/games_scorecard_2022_Q1-180.jpg" alt="Notable Video Game Releases: New and Upcoming Image" /> </a> <span class="primary_feature_text" section="articles"><a href="/feature/major-upcoming-video-game-release-dates-xbox-ps4-pc-switch">Notable Video Game Releases: New and Upcoming</a></span> <a class="reports-see-all" href="/features" section="see_all_articles">See All Reports</a> </div> <div class="column subnav"> <ul> <li><a href="/game" section="home">Games Home >></a></li> <li><a href="/browse/games/release-date/new-releases/all/date" section="New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/all/date" section="Coming Soon">Coming Soon</a></li> <h3><p>Best...</p></h3> <li><a href="/browse/games/score/metascore/year/all/filtered" section="Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/all/filtered" section="Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/all" section="Games by Genre">Games by Genre</a></li> <li><a href="/browse/games/score/metascore/90day/all/filtered" section="New Games">New Games</a></li> <h3><p>More...</p></h3> <li><a href="/feature/new-free-games-playstation-xbox-pc-switch" section="New Free Games This Month">New Free Games This Month</a></li> <li><a href="/browse/games/score/userscore/90day/filtered" section="User\'s Best New Games">User\'s Best New Games</a></li> <li><a href="/browse/games/score/userscore/all/filtered" section="User\'s Best Games of All Time">User\'s Best Games of All Time</a></li> </ul> </div> <div class="column platforms"> <ul> <li class="title">Platforms:<li> <li><label for="game_ps4_open" class="mc_nav_picks" data-href="/game/playstation-4?nav-picks">PS4</label></li> <li><label for="game_ps5_open" class="mc_nav_picks" data-href="/game/playstation-5?nav-picks">PS5</label></li> <li><label for="game_xone_open" class="mc_nav_picks" data-href="/game/xbox-one?nav-picks">Xbox One</label></li> <li><label for="game_xboxx_open" class="mc_nav_picks" data-href="/game/xbox-series-x?nav-picks">Xbox Series X</label></li> <li><label for="game_switch_open" class="mc_nav_picks" data-href="/game/switch?nav-picks">Switch</label></li> <li><label for="game_pc_open" class="mc_nav_picks" data-href="/game/pc?nav-picks">PC</label></li> <li><label for="game_legacy_open">More...</label></li> </ul> </div> <div class="column top-five"> <h3>Top Games Right Now</h3> <div class="top-five" section=top_games> <div class="item"> <a href="/game/playstation-5/final-fantasy-xiv-endwalker"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/games/7/e8159d7deef2e0ad60132484fa4f7bec-98.jpg" alt="Final Fantasy XIV: Endwalker" /> <div class="metascore_w medium game positive">93</div> </div> <div class="product-name"> Final Fantasy XIV: Endwalker </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/game/xbox-series-x/forza-horizon-5"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/games/3/c3a8634bbf83888742c8fc7290559202-98.jpg" alt="Forza Horizon 5" /> <img src="/images/icons/mc-mustplay-sm.svg" class="must-see-list" /> </div> <div class="product-name"> Forza Horizon 5 </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/game/pc/monster-hunter-rise"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/games/1/7b632998335965e2c43e4fd685bb7143-98.jpg" alt="Monster Hunter Rise" /> <div class="metascore_w medium game positive">88</div> </div> <div class="product-name"> Monster Hunter Rise </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/game/xbox-series-x/halo-infinite"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/games/4/2f478401a538d7adb4c9e031b7fd6432-98.jpg" alt="Halo Infinite" /> <div class="metascore_w medium game positive">87</div> </div> <div class="product-name"> Halo Infinite </div> <div class="mid"> </div> </a> </div> <div class="item last"> <a href="/game/xbox-one/sam-max-beyond-time-and-space-remastered"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/games/1/06768bc1f72d80c24d4a224ed311eb87-98.jpg" alt="Sam & Max: Beyond Time and Space Remastered" /> <div class="metascore_w medium game positive">82</div> </div> <div class="product-name"> Sam & Max: Beyond Time and Space Remastered </div> <div class="mid"> </div> </a> </div> </div> </div> </div> <input id="game_ps4_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_ps4_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_ps4_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">PS4</li> <li><a href="/game/playstation-4" section="PS4;home">PS4 Home >></a></li> <li><a href="/browse/games/release-date/new-releases/ps4/date" section="PS4;New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/ps4/date" section="PS4;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/ps4/filtered" section="PS4;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/ps4/filtered" section="PS4;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/ps4/filtered" section="PS4;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/ps4" section="PS4;Games by Genre">Games by Genre</a></li> </ul> </div> </div> <input id="game_ps5_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_ps5_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_ps5_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">PS5</li> <li><a href="/game/playstation-5" section="PS5;home">PS5 Home >></a></li> <li><a href="/browse/games/release-date/new-releases/ps5/date" section="PS5;New Release">New Games</a></li> <li><a href="/browse/games/release-date/coming-soon/ps5/date" section="PS5;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/ps5/filtered" section="PS5;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/ps5/filtered" section="PS5;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/ps5/filtered" section="PS5;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/ps5" section="PS5;Games by Genre">Games by Genre </a></li> </ul> </div> </div> <input id="game_xone_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_xone_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_xone_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">Xbox One</li> <li><a href="/game/xbox-one" section="Xbox One;home">Xbox One Home >></a></li> <li><a href="/browse/games/release-date/new-releases/xboxone/date" section="Xbox One;New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/xboxone/date" section="Xbox One;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/xboxone/filtered" section="Xbox One;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/xboxone/filtered" section="Xbox One;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/xboxone/filtered" section="Xbox One;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/xboxone" section="Xbox One;Games by Genre">Games by Genre</a></li> </ul> </div> </div> <input id="game_xboxx_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_xboxx_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_xboxx_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">Xbox Series X</li> <li><a href="/game/xbox-series-x" section="Xbox SX;home">Xbox Series X Home >></a></li> <li><a href="/browse/games/release-date/new-releases/xbox-series-x/date" section="Xbox SX;New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/xbox-series-x/date" section="Xbox SX;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/xbox-series-x/filtered" section="Xbox SX;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/xbox-series-x/filtered" section="Xbox SX;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/xbox-series-x/filtered" section="Xbox SX;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/xbox-series-x" section="Xbox SX;Games by Genre">Games by Genre </a></li> </ul> </div> </div> <input id="game_switch_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_switch_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_switch_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">Switch</li> <li><a href="/game/switch" section="Switch;home">Switch Home >></a></li> <li><a href="/browse/games/release-date/new-releases/switch/date" section="Switch;New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/switch/date" section="Switch;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/switch/filtered" section="Switch;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/switch/filtered" section="Switch;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/switch/filtered" section="Switch;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/switch" section="Switch;Games by Genre">Games by Genre</a></li> </ul> </div> </div> <input id="game_pc_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_pc_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav ajax"> <ul> <li class="back"><label for="game_pc_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">PC</li> <li><a href="/game/pc" section="PC;home">PC Home >></a></li> <li><a href="/browse/games/release-date/new-releases/pc/date" section="PC;New Releases">New Releases</a></li> <li><a href="/browse/games/release-date/coming-soon/pc/date" section="PC;Coming Soon">Coming Soon</a></li> <li class="heading">Best...</li> <li><a href="/browse/games/score/metascore/90day/pc/filtered" section="PC;New Games">New Games</a></li> <li><a href="/browse/games/score/metascore/year/pc/filtered" section="PC;Games This Year">Games This Year</a></li> <li><a href="/browse/games/score/metascore/all/pc/filtered" section="PC;Games of All Time">Games of All Time</a></li> <li><a href="/browse/games/genre/metascore/action/pc" section="PC;Games by Genre">Games by Genre</a></li> </ul> </div> </div> <input id="game_legacy_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="game_legacy_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="game_legacy_close">&lt;&lt; Back to All Platforms</label></li> <li class="heading">More...</li> </ul> <ul> <li><a href="/game/stadia" section="Legacy;Stadia">Stadia</a></li> <li><a href="/game/ios" section="Legacy;iOS">iOS</a></li> </ul> </div> <div class="column subnav"> <ul> <li class="heading">Legacy</li> </ul> <ul class="multicol"> <li><a href="/browse/games/score/metascore/all/3ds/filtered" section="Legacy;Best of 3DS">Best of 3DS</a></li> <li><a href="/browse/games/score/metascore/all/wii-u/filtered" section="Legacy;Best of Wii U">Best of Wii U</a></li> <li><a href="/browse/games/score/metascore/all/vita/filtered" section="Legacy;Best of PS Vita">Best of PS Vita</a></li> <li><a href="/browse/games/score/metascore/all/ps3/filtered" section="Legacy;Best of PS3">Best of PS3</a></li> <li><a href="/browse/games/score/metascore/all/wii/filtered" section="Legacy;Best of Wii">Best of Wii</a></li> <li><a href="/browse/games/score/metascore/all/n64/filtered" section="Legacy;Best of N64">Best of N64</a></li> <li><a href="/browse/games/score/metascore/all/gamecube/filtered" section="Legacy;Best of Gamecube">Best of Gamecube</a></li> <li><a href="/browse/games/score/metascore/all/ps2/filtered" section="Legacy;Best of PS2">Best of PS2</a></li> <li><a href="/browse/games/score/metascore/all/ps/filtered" section="Legacy;Best of PS">Best of PS</a></li> <li><a href="/browse/games/score/metascore/all/xbox360/filtered" section="Legacy;Best of Xbox 360">Best of Xbox 360</a></li> <li><a href="/browse/games/score/metascore/all/xbox/filtered" section="Legacy;Best of Xbox">Best of Xbox</a></li> <li><a href="/browse/games/score/metascore/all/ds/filtered" section="Legacy;Best of DS">Best of DS</a></li> <li><a href="/browse/games/score/metascore/all/gba/filtered" section="Legacy;Best of Game Boy Advance">Best of Game Boy Advance</a></li> <li><a href="/browse/games/score/metascore/all/psp/filtered" section="Legacy;Best of PSP">Best of PSP</a></li> <li><a href="/browse/games/score/metascore/all/dreamcast/filtered" section="Legacy;Best of Dreamcast">Best of Dreamcast</a></li> </ul> </div> </div> </div> </nav> </nav> <nav id="primary_nav_item_movies" class="primary_nav_item selected"> <span class="primary_nav_text"> Movies </span> <nav class="primary_drop_down masked"> <div class="mask-container" section="header-movies"> <div class="mask-section"> <div class="column feature"> <a href="/pictures/best-movies-of-2021" class="feature-img-container" section="articles"> <img class="primary_feature_img" src="https://static.metacritic.com/images/features/main/yearend2021_movies_quovadisaida-180.jpg" alt="The 50 Best Movies of 2021 Image" /> </a> <span class="primary_feature_text" section="articles"><a href="/pictures/best-movies-of-2021">The 50 Best Movies of 2021</a></span> <a class="reports-see-all" href="/features" section="see_all_articles">See All Reports</a> </div> <div class="column subnav"> <ul> <li><a href="/movie" section="home">Movies Home >></a></li> <li><a href="/browse/movies/release-date/theaters/date" section="In Theaters">In Theaters</a></li> <li><a href="/browse/movies/release-date/coming-soon/date" section="Coming Soon">Coming Soon</a></li> <li><a href="/browse/dvds/release-date/new-releases/date" section="New Movies on DVD/Bluray">New Movies on DVD/Bluray</a></li> <h3><p>Best...</p></h3> <li><a href="/browse/movies/score/metascore/year/filtered" section="Movies This Year">Movies This Year</a></li> <li><a href="/browse/movies/score/metascore/all/filtered?sort=desc" section="Movies of All Time">Movies of All Time</a></li> <li><a href="/feature/film-awards-and-nominations-scorecard" section="Film Awards and Nominations">Film Awards & Nominations</a></li> <li><a href="/browse/movies/genre/metascore/action" section="Movies by Genre">Movies by Genre</a></li> <h3><p>More...</p></h3> <li><a href="/browse/movies/score/userscore/90day/filtered" section="Users\' Best New Movies">Users\' Best New Movies</a></li> <li><a href="/browse/movies/score/userscore/all/filtered" section="Users\' All Time Best Movies">Users\' All Time Best Movies</a></li> </ul> </div> <div class="column platforms"> <ul> <li class="title">Streaming:</li> <li><a href="/browse/movies/score/metascore/all/filtered/netflix" section="streaming;Netflix">Netflix</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/piv" section="streaming;Amazon">Amazon</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/hulu" section="streaming;Hulu">Hulu</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/itunes" section="streaming;iTunes">iTunes</a></li> </ul> </div> <div class="column top-five"> <h3>Top Movies Right Now</h3> <div class="top-five" section=top_movies> <div class="item"> <a href="/movie/belle-2021"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/movies/9/d7290ce9ce6bf15584b5461d780fdd1a-98.jpg" alt="Belle" /> <div class="metascore_w medium movie positive">85</div> </div> <div class="product-name"> Belle </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/movie/a-hero"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/movies/3/df073c1d8cc0236fdc6c2d81ed0bc1dc-98.jpg" alt="A Hero" /> <img src="/images/icons/mc-mustsee-sm.svg" class="must-see-list" /> </div> <div class="product-name"> A Hero </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/movie/spider-man-no-way-home"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/movies/8/522591463dfe464bc75a8b207247e2a3-98.jpg" alt="Spider-Man: No Way Home" /> <div class="metascore_w medium movie positive">71</div> </div> <div class="product-name"> Spider-Man: No Way Home </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/movie/the-matrix-4"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/movies/9/e170448d81eb1535a158eb3a834aacf2-98.jpg" alt="The Matrix Resurrections" /> <div class="metascore_w medium movie positive">63</div> </div> <div class="product-name"> The Matrix Resurrections </div> <div class="mid"> </div> </a> </div> <div class="item last"> <a href="/movie/the-355"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/movies/6/28238b988cd8abaed134d459782e3c5f-98.jpg" alt="The 355" /> <div class="metascore_w medium movie mixed">40</div> </div> <div class="product-name"> The 355 </div> <div class="mid"> </div> </a> </div> </div> </div> </div> <input id="movie_netflix_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="movie_netflix_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="movie_netflix_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">Netflix</li> <li><a href="/browse/movies/score/metascore/90day/filtered/netflix">New Releases for Netflix</a></li> <li><a href="/browse/movies/score/metascore/year/filtered/netflix">Best New Movies on Netflix</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/netflix">Best Movies on Netflix</a></li> </ul> </div> </div> <input id="movie_hulu_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="movie_hulu_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="movie_netflix_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">HULU</li> <li><a href="/browse/movies/score/metascore/90day/filtered/hulu">New Releases for Hulu</a></li> <li><a href="/browse/movies/score/metascore/year/filtered/hulu">Best New Movies on Hulu</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/hulu">Best Movies on Hulu</a></li> </ul> </div> </div> <input id="movie_amazon_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="movie_amazon_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="movie_netflix_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">Amazon</li> <li><a href="/browse/movies/score/metascore/90day/filtered/piv">New Releases for Amazon</a></li> <li><a href="/browse/movies/score/metascore/year/filtered/piv">Best New Movies on Amazon</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/piv">Best Movies on Amazon</a></li> </ul> </div> </div> <input id="movie_apple_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="movie_apple_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="movie_netflix_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">iTunes</li> <li><a href="/browse/movies/score/metascore/90day/filtered/itunes">New Releases for iTunes</a></li> <li><a href="/browse/movies/score/metascore/year/filtered/itunes">Best New Movies on iTunes</a></li> <li><a href="/browse/movies/score/metascore/all/filtered/itunes">Best Movies on iTunes</a></li> </ul> </div> </div> </div> </nav> </nav> <nav id="primary_nav_item_tv" class="primary_nav_item"> <span class="primary_nav_text"> TV </span> <nav class="primary_drop_down masked"> <div class="mask-container"> <div class="mask-section" section="header-tv"> <div class="column feature"> <a href="/feature/metacritic-users-pick-the-best-of-2021" class="feature-img-container" section="articles"> <img class="primary_feature_img" src="https://static.metacritic.com/images/features/main/bestof2021userpollresults-180.jpg" alt="Metacritic Users Pick the Best of 2021 Image" /> </a> <span class="primary_feature_text" section="articles"><a href="/feature/metacritic-users-pick-the-best-of-2021">Metacritic Users Pick the Best of 2021</a></span> <a class="reports-see-all" href="/features" section="see_all_articles">See All Reports</a> </div> <div class="column subnav"> <ul> <li><a href="/tv" section="home">TV Home >></a></li> <li><a href="/feature/tv-premiere-dates" section="TV Premiere Calendar">TV Premiere Calendar</a></li> <li><a href="/feature/tv-renew-cancel-scorecard" section="TV Renew/Cancel Scorecard">TV Renew/Cancel Scorecard</a></li> <li><a href="/browse/tv/release-date/new-series/date?view=detailed" section="New & Returning TV Shows">New & Returning TV Shows</a></li> <h3><p>Best...</p></h3> <li><a href="/browse/tv/score/metascore/90day/filtered?sort=desc&view=detailed" section="New TV Shows">New TV Shows</a></li> <li><a href="/browse/tv/score/metascore/year/filtered?sort=desc&view=detailed" section="TV Shows This Year">TV Shows This Year</a></li> <li><a href="/browse/tv/score/metascore/all/filtered?sort=desc" section="TV Shows of All Time">TV Shows of All Time</a></li> <li><a href="/browse/tv/genre/metascore/action" section="TV Shows by Genre">TV Shows by Genre</a></li> <h3><p>More...</p></h3> <li><a href="/browse/tv/score/userscore/90day/filtered" section="User\'s Best New Shows">User\'s Best New Shows</a></li> <li><a href="/browse/tv/score/userscore/all/filtered" section="User\'s All Time Best Shows">User\'s All Time Best Shows</a></li> </ul> </div> <div class="column platforms"> <ul> <li class="title">Streaming:<li> <li><a href="/feature/now-streaming-on-netflix" section="streaming;Netflix">Netflix</a></li> <li><a href="/feature/now-streaming-on-amazon-instant-video" section="streaming;Amazon">Amazon</a></li> <li><a href="/feature/now-streaming-on-disney-plus" section="streaming;Disney+">Disney+</a></li> <li><a href="/feature/now-streaming-on-apple-tv-plus" section="streaming;Apple TV+">Apple TV+</a></li> <li><a href="/feature/hulu-best-new-movies-and-shows" section="streaming;Hulu">Hulu</a></li> <li><a href="/feature/best-new-movies-and-shows-on-hbo-go-now" section="streaming;HBO">HBO</a></li> <li><a href="/feature/best-new-movies-and-shows-on-starz" section="streaming;Starz">Starz</a></li> <li><a href="/feature/peacock-best-movies-tv-shows-to-watch" section="streaming;Peacock">Peacock</a></li> <li><a href="/feature/what-to-watch-on-paramount-plus" section="streaming;Paramount">Paramount+</a></li> </ul> </div> <div class="column top-five"> <h3>Top Shows Right Now</h3> <div class="top-five" section=top_shows> <div class="item"> <a href="/tv/all-creatures-great-and-small-2021/season-2"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/tv/4/46972f42d7129d6969a8bbcd85a77590-98.jpg" alt="All Creatures Great and Small (2021): Season 2" /> <img src="/images/icons/mc-mustwatch-sm.svg" class="must-see-list" /> </div> <div class="product-name"> All Creatures Great and Small (2021): Season 2 </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/tv/the-righteous-gemstones/season-2"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/tv/5/a58a37a5b13352d93b078a9d170ea49c-98.jpg" alt="The Righteous Gemstones: Season 2" /> <div class="metascore_w medium season positive">83</div> </div> <div class="product-name"> The Righteous Gemstones: Season 2 </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/tv/euphoria/season-2"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/tv/4/46c2cb180db87c4785d4605a357eb919-98.jpg" alt="Euphoria: Season 2" /> <div class="metascore_w medium season positive">76</div> </div> <div class="product-name"> Euphoria: Season 2 </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/tv/naomi/season-1"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/tv/7/3641ca43b3fff34f7d8249d17989f475-98.jpg" alt="Naomi: Season 1" /> <div class="metascore_w medium season positive">70</div> </div> <div class="product-name"> Naomi: Season 1 </div> <div class="mid"> </div> </a> </div> <div class="item last"> <a href="/tv/peacemaker/season-1"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/tv/7/435d4a9313abd251bba484d993bc4958-98.jpg" alt="Peacemaker: Season 1" /> <div class="metascore_w medium season positive">68</div> </div> <div class="product-name"> Peacemaker: Season 1 </div> <div class="mid"> </div> </a> </div> </div> </div> </div> <input id="tv_netflix_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="tv_netflix_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="tv_netflix_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">Netflix</li> <li><a href="#">New Releases</a></li> <li><a href="#">Coming Soon</a></li> <li><a href="#">Best Movies</a></li> <li><a href="#">Best Movies by Genre</a></li> <li><a href="#">Latest Trailers</a></li> </ul> </div> </div> <input id="tv_hulu_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="tv_hulu_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="tv_hulu_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">HULU</li> <li><a href="#">New Releases</a></li> <li><a href="#">Coming Soon</a></li> <li><a href="#">Best Movies</a></li> <li><a href="#">Best Movies by Genre</a></li> <li><a href="#">Latest Trailers</a></li> </ul> </div> </div> <input id="tv_amazon_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="tv_amazon_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="tv_amazon_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">Amazon</li> <li><a href="#">New Releases</a></li> <li><a href="#">Coming Soon</a></li> <li><a href="#">Best Movies</a></li> <li><a href="#">Best Movies by Genre</a></li> <li><a href="#">Latest Trailers</a></li> </ul> </div> </div> <input id="tv_apple_close" class="subtier-close" type="radio" name="subtier" index="1"/> <input id="tv_apple_open" class="subtier-open" type="radio" name="subtier" index="1"/> <div class="mask-section"> <div class="column subnav"> <ul> <li class="back"><label for="tv_apple_close">&lt;&lt; Back to All Streaming</label></li> <li class="heading">Apple TV+</li> <li><a href="#">New Releases</a></li> <li><a href="#">Coming Soon</a></li> <li><a href="#">Best Movies</a></li> <li><a href="#">Best Movies by Genre</a></li> <li><a href="#">Latest Trailers</a></li> </ul> </div> </div> </div> </nav> </nav> <nav id="primary_nav_item_music" class="primary_nav_item"> <span class="primary_nav_text"> Music </span> <nav class="primary_drop_down" section="header-music"> <div class="column feature"> <a href="/pictures/best-albums-of-2021" class="feature-img-container" section="articles"> <img class="primary_feature_img" src="https://static.metacritic.com/images/features/main/yearend2021_music_taylorswift-180.jpg" alt="The 40 Best Albums of 2021 Image" /> </a> <span class="primary_feature_text" section="articles"><a href="/pictures/best-albums-of-2021">The 40 Best Albums of 2021</a></span> <a class="reports-see-all" href="/features" section="see_all_articles">See All Reports</a> </div> <div class="column subnav"> <ul> <li><a href="/music" section="home">Music Home >></a></li> <li><a href="/browse/albums/release-date/new-releases/date" section="New Releases">New Releases</a></li> <li><a href="/browse/albums/release-date/coming-soon/date" section="Coming Soon">Coming Soon</a></li> <li><a href="/browse/albums/genre/date/rock" section="Music by Genre">Music by Genre</a></li> <h3><p>Best...</p></h3> <li><a href="/browse/albums/score/metascore/90day/filtered" section="New Albums">New Albums</a></li> <li><a href="/browse/albums/score/metascore/year/filtered" section="Albums This Year">Albums This Year</a></li> <li><a href="/browse/albums/score/metascore/all/filtered?sort=desc" section="Albums of All Time">Albums of All Time</a></li> <h3><p>More...</p></h3> <li><a href="/browse/albums/score/userscore/90day/filtered" section="User\'s Best New Albums">User\'s Best New Albums</a></li> <li><a href="/browse/albums/score/userscore/all/filtered" section="User\'s All Time Best Albums">User\'s All Time Best Albums</a></li> </ul> </div> <div class="column top-five"> <h3>Top Albums Right Now</h3> <div class="top-five" section=top_music> <div class="item"> <a href="/music/dawn-fm/the-weeknd"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/music/3/e752a10bd75a6ceecef70d79ea4cef55-98.jpg" alt="Dawn FM" /> <div class="metascore_w medium release positive">89</div> </div> <div class="product-name"> Dawn FM </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/music/antidawn-ep/burial"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/music/2/b8a64b693d5850b0be7e195d5ec320e5-98.jpg" alt="Antidawn [EP]" /> <div class="metascore_w medium release positive">83</div> </div> <div class="product-name"> Antidawn [EP] </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/music/fragments/bonobo"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/music/0/e53be81b7106cdda715dbc401f29df6f-98.jpg" alt="Fragments" /> <div class="metascore_w medium release positive">82</div> </div> <div class="product-name"> Fragments </div> <div class="mid"> </div> </a> </div> <div class="item"> <a href="/music/now-or-whenever/spector"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/music/4/d370d2e1dc623e08cb060716741728cb-98.jpg" alt="Now Or Whenever" /> <div class="metascore_w medium release positive">72</div> </div> <div class="product-name"> Now Or Whenever </div> <div class="mid"> </div> </a> </div> <div class="item last"> <a href="/music/transparency/twin-atlantic"> <div class="img-wrap"> <img src="https://static.metacritic.com/images/products/music/1/8e83b2e886667c7c80add86700e5af6c-98.jpg" alt="Transparency" /> <div class="metascore_w medium release positive">66</div> </div> <div class="product-name"> Transparency </div> <div class="mid"> </div> </a> </div> </div> </div> </nav> </nav> <div class="tracker"></div> </nav> <nav id="primary_menu_item_enter_search" class=""> <span class=""> Enter to Search </span> </nav> <nav id="primary_menu_item_create" class="primary_nav_item"> <span class="primary_nav_text"> <a id="signup" class="signup" href="/login">Sign In</a> </span> </nav> </nav> <header id="primary_backdrop"> </header> </header> <nav id="primary_baby_menu_movies" class="primary_baby_menu"> <div class="primary_baby_row"> <div class="logo inset_left2"> <a href="https://www.metacritic.com"><img src="/images/mobile/logo.png" alt="Metacritic logo"></a> </div> <div id="primary_baby_menu_item_movies" class="primary_menu_item selected"> <span class="primary_menu_text"> <a href="https://www.metacritic.com/movie"> Movies </a> </span> </div> <div class="primary_baby_item"> <a href="https://www.metacritic.com/browse/movies/release-date/theaters/date"> In Theaters </a> </div> <div class="primary_baby_item"> <a href="https://www.metacritic.com/browse/movies/release-date/coming-soon/date"> Coming Soon </a> </div> <div class="primary_baby_item"> <a href="https://www.metacritic.com/browse/movies/score/metascore/all/filtered/netflix"> Best of Netflix </a> </div> <div class="primary_baby_item"> <a href="https://www.metacritic.com/browse/movies/score/metascore/all/filtered/piv"> Best of Amazon </a> </div> </div> </nav> <aside id="popup_dialog"> <header class="pad_btm1"></header> <div class="left"> </div> <div class="right"> </div> <div class="clr"></div> <footer></footer> <div class="popup_close" onclick="MetaC.Popup.hide()"><i class="fa fa-times" aria-hidden="true"></i></div> </aside> <aside class="popup_hidden" id="popup_login"> <div class="login_section"> <button class="meta_fb_login"> <span class="fb_icon"> <svg viewBox="0 0 15.2 32"> <g> <path d="M15.2,11.1H9.6V7c0-1.2,1.3-1.5,1.9-1.5c0.6,0,3.6,0,3.6,0V0L11,0C5.4,0,4.1,4.1,4.1,6.7v4.4H0v5.6h4.1 c0,7.3,0,15.2,0,15.2h5.5c0,0,0-8.1,0-15.2h4.7L15.2,11.1z"/> </g> </svg> </span>Continue with Facebook</button> <div class="ruled_divider pad_top1"> <hr class="rdleft"/>OR<hr class="rdright" /> </div> <div id="popup_email_wrapper" class="pad_top1"> <div class="field innerLabel"> <input id="popup_email" class="field_input popup_email" tabindex="2" name="email" type="email" autocomplete="off"> <label for="popup_email">Email Address</label> </div> </div> <div id="popup_pwd_wrapper" class="pad_top1"> <div class="field innerLabel"> <input id="popup_password" class="field_input popup_password" tabindex="3" name="password" type="password" autocomplete="off"> <label for="popup_password">Password</label> </div> <div class="popup_forgot"> <a href="/forgot-password">Forgot password?</a> </div> </div> <div class="pad_top1 fr"> <span class="progress "> <i class="fa fa-spinner"></i> </span> <button class="popup_login_btn grey_button marg_right_half">LOG IN</button> <button class="popup_signup_btn grey_button">CREATE AN ACCOUNT</button> </div> <div class="clr"></div> </div> </aside> <div id="main_content" class="pad_btm2"> <div class="browse movie new_releases "> <div class="content_under_header none"></div> <div class="content_after_header"> <div class="inset_left2"> <div class="next_to_side_col"> <div class="title_bump"> <h2 class="marg_btm2 browse-list-heading"> Movie Releases by User Score </h2> <div class="list_controls"> <div class="top"> <span class="menu title">Filter:</span> <div class="mcmenu dropdown style2 filter"> <button onclick="return false;"> <span class="fa fa-check-circle-o"></span> By Year </button> <ul class="dropdown"> <li> <a href="/browse/movies/score/metascore/90day/filtered?sort=desc&view=detailed"> Last 90 days <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/all/filtered?sort=desc&view=detailed"> All Time <span class="fa fa-circle-o"></span> </a> </li> <li class="selected"> <span> By Year <span class="fa fa-check-circle"></span> </span> </li> <li> <a href="/browse/movies/score/metascore/discussed/filtered?sort=desc&view=detailed"> By Most Discussed <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/shared/filtered?sort=desc&view=detailed"> By Most Shared <span class="fa fa-circle-o"></span> </a> </li> </ul> </div> <div class="mcmenu dropdown style2 year"> <button onclick="return false;"> <span class="fa fa-check-circle-o"></span> 2012 </button> <ul class="dropdown"> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2022&sort=desc&view=detailed"> 2022 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2021&sort=desc&view=detailed"> 2021 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2020&sort=desc&view=detailed"> 2020 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2019&sort=desc&view=detailed"> 2019 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2018&sort=desc&view=detailed"> 2018 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2017&sort=desc&view=detailed"> 2017 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2016&sort=desc&view=detailed"> 2016 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2015&sort=desc&view=detailed"> 2015 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2014&sort=desc&view=detailed"> 2014 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2013&sort=desc&view=detailed"> 2013 <span class="fa fa-circle-o"></span> </a> </li> <li class="selected"> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed"> 2012 <span class="fa fa-check-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2011&sort=desc&view=detailed"> 2011 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2010&sort=desc&view=detailed"> 2010 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2009&sort=desc&view=detailed"> 2009 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2008&sort=desc&view=detailed"> 2008 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2007&sort=desc&view=detailed"> 2007 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2006&sort=desc&view=detailed"> 2006 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2005&sort=desc&view=detailed"> 2005 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2004&sort=desc&view=detailed"> 2004 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2003&sort=desc&view=detailed"> 2003 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2002&sort=desc&view=detailed"> 2002 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2001&sort=desc&view=detailed"> 2001 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2000&sort=desc&view=detailed"> 2000 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1999&sort=desc&view=detailed"> 1999 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1998&sort=desc&view=detailed"> 1998 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1997&sort=desc&view=detailed"> 1997 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1996&sort=desc&view=detailed"> 1996 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1995&sort=desc&view=detailed"> 1995 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1994&sort=desc&view=detailed"> 1994 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1993&sort=desc&view=detailed"> 1993 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1992&sort=desc&view=detailed"> 1992 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1991&sort=desc&view=detailed"> 1991 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1990&sort=desc&view=detailed"> 1990 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1989&sort=desc&view=detailed"> 1989 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1988&sort=desc&view=detailed"> 1988 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1987&sort=desc&view=detailed"> 1987 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1986&sort=desc&view=detailed"> 1986 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1985&sort=desc&view=detailed"> 1985 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1984&sort=desc&view=detailed"> 1984 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1983&sort=desc&view=detailed"> 1983 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1982&sort=desc&view=detailed"> 1982 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1981&sort=desc&view=detailed"> 1981 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1980&sort=desc&view=detailed"> 1980 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1979&sort=desc&view=detailed"> 1979 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1978&sort=desc&view=detailed"> 1978 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1977&sort=desc&view=detailed"> 1977 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1976&sort=desc&view=detailed"> 1976 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1975&sort=desc&view=detailed"> 1975 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1974&sort=desc&view=detailed"> 1974 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1973&sort=desc&view=detailed"> 1973 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1972&sort=desc&view=detailed"> 1972 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1971&sort=desc&view=detailed"> 1971 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1970&sort=desc&view=detailed"> 1970 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1969&sort=desc&view=detailed"> 1969 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1968&sort=desc&view=detailed"> 1968 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1967&sort=desc&view=detailed"> 1967 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1966&sort=desc&view=detailed"> 1966 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1965&sort=desc&view=detailed"> 1965 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1964&sort=desc&view=detailed"> 1964 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1963&sort=desc&view=detailed"> 1963 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1962&sort=desc&view=detailed"> 1962 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1961&sort=desc&view=detailed"> 1961 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1960&sort=desc&view=detailed"> 1960 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1959&sort=desc&view=detailed"> 1959 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1958&sort=desc&view=detailed"> 1958 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1957&sort=desc&view=detailed"> 1957 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1956&sort=desc&view=detailed"> 1956 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1955&sort=desc&view=detailed"> 1955 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1954&sort=desc&view=detailed"> 1954 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1953&sort=desc&view=detailed"> 1953 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1952&sort=desc&view=detailed"> 1952 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1951&sort=desc&view=detailed"> 1951 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1950&sort=desc&view=detailed"> 1950 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1949&sort=desc&view=detailed"> 1949 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1948&sort=desc&view=detailed"> 1948 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1947&sort=desc&view=detailed"> 1947 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1946&sort=desc&view=detailed"> 1946 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1945&sort=desc&view=detailed"> 1945 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1944&sort=desc&view=detailed"> 1944 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1943&sort=desc&view=detailed"> 1943 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1942&sort=desc&view=detailed"> 1942 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1941&sort=desc&view=detailed"> 1941 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1940&sort=desc&view=detailed"> 1940 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1939&sort=desc&view=detailed"> 1939 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1938&sort=desc&view=detailed"> 1938 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1937&sort=desc&view=detailed"> 1937 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1936&sort=desc&view=detailed"> 1936 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1935&sort=desc&view=detailed"> 1935 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1934&sort=desc&view=detailed"> 1934 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1933&sort=desc&view=detailed"> 1933 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1932&sort=desc&view=detailed"> 1932 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1931&sort=desc&view=detailed"> 1931 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1930&sort=desc&view=detailed"> 1930 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1929&sort=desc&view=detailed"> 1929 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1928&sort=desc&view=detailed"> 1928 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1927&sort=desc&view=detailed"> 1927 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1926&sort=desc&view=detailed"> 1926 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1925&sort=desc&view=detailed"> 1925 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1924&sort=desc&view=detailed"> 1924 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1923&sort=desc&view=detailed"> 1923 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1922&sort=desc&view=detailed"> 1922 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1921&sort=desc&view=detailed"> 1921 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1920&sort=desc&view=detailed"> 1920 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1919&sort=desc&view=detailed"> 1919 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1918&sort=desc&view=detailed"> 1918 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1917&sort=desc&view=detailed"> 1917 <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?year_selected=1916&sort=desc&view=detailed"> 1916 <span class="fa fa-circle-o"></span> </a> </li> </ul> </div> <div class="mcmenu dropdown style2 streaming"> <button onclick="return false;"> <span class="fa fa-check-circle-o"></span> All Movies </button> <ul class="dropdown"> <li class="selected"> <a href="/browse/movies/score/metascore/year/filtered?year_selected=2012&view=detailed"> All Movies <span class="fa fa-check-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered/piv?year_selected=2012&view=detailed"> Prime Video <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered/hulu?year_selected=2012&view=detailed"> Hulu <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered/netflix?year_selected=2012&view=detailed"> Netflix <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered/aiv?year_selected=2012&view=detailed"> Amazon Instant Video <span class="fa fa-circle-o"></span> </a> </li> <li> <a href="/browse/movies/score/metascore/year/filtered/itunes?year_selected=2012&view=detailed"> iTunes <span class="fa fa-circle-o"></span> </a> </li> </ul> </div> </div> <hr/> <div class="bottom"> <div class="mcmenu expand_collapse"> <ul class="expand_collapse"> <li class="selected"> <span> Detailed List View <span class="fa fa-check-circle"></span> </span> </li> <li> <a href="/browse/movies/score/metascore/year/filtered?view=condensed&year_selected=2012"> Condensed List View <span class="fa fa-circle-o"></span> </a> </li> </ul> </div> </div> <div class="clr"></div> </div> <div class="browse_list_wrapper one browse-list-large"> <table class="clamp-list"> <tr> <td class="clamp-image-wrap"> <a href="/movie/children-of-paradise"><img src="https://static.metacritic.com/images/products/movies/4/d72c821d47c7499ab44db6e97f98d0fe-98.jpg" alt="Children of Paradise (1945)" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540154" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/children-of-paradise/critic-reviews"> <div class="metascore_w large movie positive">96</div> </a> </div> <span class="title numbered"> 1. </span> <a href="/movie/children-of-paradise" class="title"><h3>Children of Paradise (1945)</h3></a> <div class="clamp-details"> <span>March 9, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Children of Paradise is the tale of a woman loved by four different men. Deftly entwining theater, literature, music, and design, director Marcel Carné and screenwriter Jacques Prévert resurrect the tumultuous world of nineteenth-century Paris, teeming with hucksters and aristocrats, thieves and courtesans, pimps and seers. (Janus Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/children-of-paradise/critic-reviews"> <div class="metascore_w large movie positive">96</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/children-of-paradise/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540154" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/zero-dark-thirty"><img src="https://static.metacritic.com/images/products/movies/8/a22d5b5f78fbbea4f6f8f19b6dbd00e5-98.jpg" alt="Zero Dark Thirty" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539898" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/zero-dark-thirty/critic-reviews"> <div class="metascore_w large movie positive">95</div> </a> </div> <span class="title numbered"> 2. </span> <a href="/movie/zero-dark-thirty" class="title"><h3>Zero Dark Thirty</h3></a> <div class="clamp-details"> <span>December 19, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> For a decade, an elite team of intelligence and military operatives, working in secret across the globe, devoted themselves to a single goal: to find and eliminate Osama bin Laden. [Columbia Pictures] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/zero-dark-thirty/critic-reviews"> <div class="metascore_w large movie positive">95</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/zero-dark-thirty/user-reviews"> <div class="metascore_w user large movie positive">6.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539898" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/amour"><img src="https://static.metacritic.com/images/products/movies/1/59e1400745c00b6f94c333dda75c16eb-98.jpg" alt="Amour" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540551" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/amour/critic-reviews"> <div class="metascore_w large movie positive">94</div> </a> </div> <span class="title numbered"> 3. </span> <a href="/movie/amour" class="title"><h3>Amour</h3></a> <div class="clamp-details"> <span>December 19, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Georges and Anne are in their eighties. They are cultivated, retired music teachers. Their daughter, who is also a musician, lives abroad with her family. One day, Anne has an attack. The couple\'s bond of love is severely tested. [Sony Pictures Classics] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/amour/critic-reviews"> <div class="metascore_w large movie positive">94</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/amour/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540551" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/its-such-a-beautiful-day-2012"><img src="https://static.metacritic.com/images/products/movies/0/a984a97e54432c489cc9a3d0bb964b33-98.jpg" alt="It\'s Such a Beautiful Day" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="543780" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/its-such-a-beautiful-day-2012/critic-reviews"> <div class="metascore_w large movie positive">90</div> </a> </div> <span class="title numbered"> 4. </span> <a href="/movie/its-such-a-beautiful-day-2012" class="title"><h3>It\'s Such a Beautiful Day</h3></a> <div class="clamp-details"> <span>October 5, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Bill struggles to put together his shattered psyche, in this new feature film version of Don Hertzfeldt\'s animated short film trilogy. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/its-such-a-beautiful-day-2012/critic-reviews"> <div class="metascore_w large movie positive">90</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/its-such-a-beautiful-day-2012/user-reviews"> <div class="metascore_w user large movie positive">8.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="543780" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/this-is-not-a-film"><img src="https://static.metacritic.com/images/products/movies/5/4e9efa2b93ffabce94f3a77c21b2a928-98.jpg" alt="This Is Not a Film" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540115" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/this-is-not-a-film/critic-reviews"> <div class="metascore_w large movie positive">90</div> </a> </div> <span class="title numbered"> 5. </span> <a href="/movie/this-is-not-a-film" class="title"><h3>This Is Not a Film</h3></a> <div class="clamp-details"> <span>March 2, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> This clandestine documentary, shot partially on an iPhone and smuggled into France in a cake for a last-minute submission to Cannes, depicts the day-to-day life of acclaimed director Jafar Panahi during his house arrest in his Tehran apartment. While appealing his sentence – six years in prison and a 20 year ban from filmmaking – Panahi is seen talking to his family and lawyer on the phone, discussing his plight with Mirtahmasb and reflecting on the meaning of the art of filmmaking. (Palisades Tartan) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/this-is-not-a-film/critic-reviews"> <div class="metascore_w large movie positive">90</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/this-is-not-a-film/user-reviews"> <div class="metascore_w user large movie positive">6.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540115" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> </table> </div> <div id="leader_middle" class="ad_unit"> <script type="text/javascript"> pushToDisplay(\'leader_middle\', null, \'middle\', false, null, false); </script> </div> <div class="browse_list_wrapper two browse-list-large"> <table class="clamp-list"> <tr> <td class="clamp-image-wrap"> <a href="/movie/elena"><img src="https://static.metacritic.com/images/products/movies/5/c7ed3faaee26797cc3585cc412879f4d-98.jpg" alt="Elena" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540315" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/elena/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <span class="title numbered"> 6. </span> <a href="/movie/elena" class="title"><h3>Elena</h3></a> <div class="clamp-details"> <span>May 18, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Elena is a gripping, modern twist on the classic noir thriller. Sixty-ish spouses Vladimir and Elena uneasily share his palatial Moscow apartment—he’s a still-virile, wealthy businessman; she’s his dowdy former nurse who has clearly “married up.” Estranged from his own wild-child daughter, Vladimir openly despises his wife’s freeloading son and family. But when a sudden illness and an unexpected reunion threaten the dutiful housewife’s potential inheritance, she must hatch a desperate plan...[Zeitgeist Films] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/elena/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/elena/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540315" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-kid-with-a-bike"><img src="https://static.metacritic.com/images/products/movies/5/6022574b906e9c0cc4e38bde5ddb0692-98.jpg" alt="The Kid with a Bike" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539965" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-kid-with-a-bike/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <span class="title numbered"> 7. </span> <a href="/movie/the-kid-with-a-bike" class="title"><h3>The Kid with a Bike</h3></a> <div class="clamp-details"> <span>March 16, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> When his father abandons him, Cyril obsessively tries to find his bicycle—after all, his father must have cared about him enough not to sell that off, he reasons. Almost by accident, he becomes the ward of a kind hairdresser, a woman who seems surprised to find herself so determined to help him. With his wild, unpredictable behavior and his disastrous search for father figures, Cyril risks losing her—though she refuses to give up without a fight. Full of heartbreaking betrayals and unexpected grace, The Kid With A Bike is a film about a child, abandoned to the elements, learning to become good. [Sundance Selects] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-kid-with-a-bike/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-kid-with-a-bike/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539965" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/gregory-crewdson-brief-encounters"><img src="https://static.metacritic.com/images/products/movies/7/38072b42ebf5912af23c23fbbef0173e-98.jpg" alt="Gregory Crewdson: Brief Encounters" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540737" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/gregory-crewdson-brief-encounters/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <span class="title numbered"> 8. </span> <a href="/movie/gregory-crewdson-brief-encounters" class="title"><h3>Gregory Crewdson: Brief Encounters</h3></a> <div class="clamp-details"> <span>November 2, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Photographer Gregory Crewdson’s 10-year quest to create a series of haunting, surreal, and stunningly elaborate portraits of small-town American life — filmed with unprecedented access as he makes perfect renderings of a disturbing, imperfect world. [Ben Shapiro Productions] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/gregory-crewdson-brief-encounters/critic-reviews"> <div class="metascore_w large movie positive">87</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/gregory-crewdson-brief-encounters/user-reviews"> <div class="metascore_w user large movie positive">6.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540737" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/lincoln"><img src="https://static.metacritic.com/images/products/movies/2/8b2c0e75d6488d1130bcc5d4e8570025-98.jpg" alt="Lincoln" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540462" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/lincoln/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 9. </span> <a href="/movie/lincoln" class="title"><h3>Lincoln</h3></a> <div class="clamp-details"> <span>November 9, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Lincoln is a revealing drama that focuses on the 16th President\'s tumultuous final months in office. In a nation divided by war and the strong winds of change, Lincoln pursues a course of action designed to end the war, unite the country and abolish slavery. With the moral courage and fierce determination to succeed, his choices during this critical moment will change the fate of generations to come. (DreamWorks Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/lincoln/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/lincoln/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540462" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/how-to-survive-a-plague"><img src="https://static.metacritic.com/images/products/movies/7/248e68101cef50e1cc8bdefae50a75a0-98.jpg" alt="How to Survive a Plague" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540297" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/how-to-survive-a-plague/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 10. </span> <a href="/movie/how-to-survive-a-plague" class="title"><h3>How to Survive a Plague</h3></a> <div class="clamp-details"> <span>September 21, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> How To Survive A Plague is the untold story of the efforts that turned AIDS into a mostly manageable condition – and the improbable group of young men and women who, with no scientific training, infiltrated government agencies and the pharmaceutical industry, and helped identify promising new compounds, moving them through trials and into drugstores in record time. These drugs saved their lives and ended the darkest days of the epidemic, while virtually emptying AIDS wards in American hospitals. (IFC Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/how-to-survive-a-plague/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/how-to-survive-a-plague/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540297" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> </table> </div> <div id="leader_middle2" class="ad_unit"> <script type="text/javascript"> pushToDisplay(\'leader_middle2\', null, \'middle2\', false, null, false); </script> </div> <div class="browse_list_wrapper three browse-list-large"> <table class="clamp-list"> <tr> <td class="clamp-image-wrap"> <a href="/movie/barbara"><img src="https://static.metacritic.com/images/products/movies/7/92124ca3c23f691934274c2720b79f0d-98.jpg" alt="Barbara" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540837" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/barbara/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 11. </span> <a href="/movie/barbara" class="title"><h3>Barbara</h3></a> <div class="clamp-details"> <span>December 21, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> A doctor in 1960s East Germany makes the mistake of applying for an exit visa and is, as a result, banished to a small hospital in the hinterlands. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/barbara/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/barbara/user-reviews"> <div class="metascore_w user large movie positive">7.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540837" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/argo"><img src="https://static.metacritic.com/images/products/movies/4/f43aac45a293923a8cb86acfc1832af3-98.jpg" alt="Argo" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539774" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/argo/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 12. </span> <a href="/movie/argo" class="title"><h3>Argo</h3></a> <div class="clamp-details"> <span>October 12, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Based on true events, “Argo” chronicles the life-or-death covert operation to rescue six Americans, which unfolded behind the scenes of the Iran hostage crisis—the truth of which was unknown by the public for decades. On November 4, 1979, as the Iranian revolution reaches its boiling point, militants storm the U.S. embassy in Tehran, taking 52 Americans hostage. But, in the midst of the chaos, six Americans manage to slip away and find refuge in the home of the Canadian ambassador. Knowing it is only a matter of time before the six are found out and likely killed, a CIA “exfiltration” specialist named Tony Mendez comes up with a risky plan to get them safely out of the country. A plan so incredible, it could only happen in the movies. (Warner Bros.) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/argo/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/argo/user-reviews"> <div class="metascore_w user large movie positive">7.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539774" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-master"><img src="https://static.metacritic.com/images/products/movies/3/e90970f048f15748ed35423940119720-98.jpg" alt="The Master" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540203" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-master/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 13. </span> <a href="/movie/the-master" class="title"><h3>The Master</h3></a> <div class="clamp-details"> <span>September 14, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> In the years after WWII, an American intellectual creates a religion. When he meets a troubled drifter, he invites the man to help him spread the new faith. As their congregation increases, the drifter begins to question the religion he once accepted and the mentor who gave his life direction. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-master/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-master/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540203" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/beasts-of-the-southern-wild"><img src="https://static.metacritic.com/images/products/movies/9/b45d7f169e2d023e45b85e3749a4e0b9-98.jpg" alt="Beasts of the Southern Wild" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540099" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/beasts-of-the-southern-wild/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <span class="title numbered"> 14. </span> <a href="/movie/beasts-of-the-southern-wild" class="title"><h3>Beasts of the Southern Wild</h3></a> <div class="clamp-details"> <span>June 27, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> In a forgotten but defiant bayou community cut off from the rest of the world by a sprawling levee, a six-year-old girl exists on the brink of orphanhood. Buoyed by her childish optimism and extraordinary imagination, she believes that the natural world is in balance with the universe until a fierce storm changes her reality. Desperate to repair the structure of her world in order to save her ailing father and sinking home, this tiny hero must learn to survive unstoppable catastrophes of epic proportions. (Fox Searchlight Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/beasts-of-the-southern-wild/critic-reviews"> <div class="metascore_w large movie positive">86</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/beasts-of-the-southern-wild/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540099" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/holy-motors"><img src="https://static.metacritic.com/images/products/movies/8/0d6f35917d1eaba9e304d657c88d2405-98.jpg" alt="Holy Motors" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540538" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/holy-motors/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <span class="title numbered"> 15. </span> <a href="/movie/holy-motors" class="title"><h3>Holy Motors</h3></a> <div class="clamp-details"> <span>October 17, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Inspired by the filmmaker’s fascination with the after hours life of stretch limousines, Denis Lavant plays Monsieur Oscar who, over the course of a single day, takes on 10 other guises, ranging from a gangster and ageing millionaire to a troubled parent and anarchic tramp. Including a few unexpected cameos, Holy Motors is the rarest of things – a true original. (Indomina Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/holy-motors/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/holy-motors/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540538" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> </table> </div> <div style="padding-bottom:30px;"> <div id="incontent_plus_top" class="ad_unit"> <script type="text/javascript"> pushToDisplay(\'incontent_plus_top\', null, \'top\', false, null, false); </script> </div> </div> <div class="browse_list_wrapper four browse-list-large"> <table class="clamp-list"> <tr> <td class="clamp-image-wrap"> <a href="/movie/moonrise-kingdom"><img src="https://static.metacritic.com/images/products/movies/2/9c237af442af539574404db86b33ff69-98.jpg" alt="Moonrise Kingdom" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539272" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/moonrise-kingdom/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <span class="title numbered"> 16. </span> <a href="/movie/moonrise-kingdom" class="title"><h3>Moonrise Kingdom</h3></a> <div class="clamp-details"> <span>May 25, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Set on an island off the coast of New England in the 1960s, the film follows a young boy and girl falling in love. When they are moved to run away together, various factions of the town mobilize to search for them and the town is turned upside down – which might not be such a bad thing. [Focus Features] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/moonrise-kingdom/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/moonrise-kingdom/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539272" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/oslo-august-31st"><img src="https://static.metacritic.com/images/products/movies/2/725cd932ca1c73f6eacffecca6083d7e-98.jpg" alt="Oslo, August 31st" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540322" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/oslo-august-31st/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <span class="title numbered"> 17. </span> <a href="/movie/oslo-august-31st" class="title"><h3>Oslo, August 31st</h3></a> <div class="clamp-details"> <span>May 25, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Thirty-four-year-old Anders is a fortunate, but deeply troubled man battling drug addiction. As part of his rehabilitation program, he is allowed to go into the city for a job interview, but instead uses the opportunity as a way to drift around and revisit old friends. The day grows increasingly difficult as he struggles to overcome personal demons and past ghosts for the chance at love and a new life. (Strand Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/oslo-august-31st/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/oslo-august-31st/user-reviews"> <div class="metascore_w user large movie positive">7.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540322" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/looper"><img src="https://static.metacritic.com/images/products/movies/2/00a3b6e73386908e69436ec42a1c048b-98.jpg" alt="Looper" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539502" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/looper/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <span class="title numbered"> 18. </span> <a href="/movie/looper" class="title"><h3>Looper</h3></a> <div class="clamp-details"> <span>September 28, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> In Looper, time travel exists, but it is illegal and only available on the black market. When the mob wants to get rid of someone, they send their target 30 years into the past, where a “looper” – a hired gun, like Joe – is waiting to mop up. Joe is doing good as a looper until the day the mob decides to “close the loop,” sending back Joe’s future self for assassination. (TriStar Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/looper/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/looper/user-reviews"> <div class="metascore_w user large movie positive">8.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539502" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-waiting-room"><img src="https://static.metacritic.com/images/products/movies/2/cae8d65a7028a9ee0dee0a3ce4a0f8ed-98.jpg" alt="The Waiting Room" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540442" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-waiting-room/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <span class="title numbered"> 19. </span> <a href="/movie/the-waiting-room" class="title"><h3>The Waiting Room</h3></a> <div class="clamp-details"> <span>September 28, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> The Waiting Room uses unprecedented access to go behind the doors of Oakland’s Highland Hospital, a safety-net hospital fighting for survival while weathering the storm of a persistent economic downturn. Stretched to the breaking point, Highland is the primary care facility for 250,000 patients of nearly every nationality, race, and religion, with 250 patients – most of them uninsured – crowding its emergency room every day. Using a blend of cinema verité and characters’ voiceover, the film offers a raw, intimate, and often uplifting look at how patients, staff and caregivers cope with disease, bureaucracy, frustration, hope and hard choices during one typically hectic day. (International Film Circuit) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-waiting-room/critic-reviews"> <div class="metascore_w large movie positive">84</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-waiting-room/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540442" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-day-he-arrives"><img src="https://static.metacritic.com/images/products/movies/7/e5e592772453241371a27c5fa1a80dfe-98.jpg" alt="The Day He Arrives" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540237" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-day-he-arrives/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <span class="title numbered"> 20. </span> <a href="/movie/the-day-he-arrives" class="title"><h3>The Day He Arrives</h3></a> <div class="clamp-details"> <span>April 20, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A film director who no longer makes films, Seongjun, arrives in Seoul to meet a close friend. When the friend doesn\'t show up, Seongjun wanders the city aimlessly. He runs into an actress he used to know, shares a drink with some film students and against his better judgment, heads to his ex-girlfriend\'s apartment. The next day goes very much like the last; Seongjun meets the actress, has drinks with friends, and falls for woman who looks remarkably like his ex-girlfriend. Each new day plays out like a flimsy copy of the previous one, but only Seongjun knows why. Infused with a playfulness and dry wit that recalls the films of Woody Allen and Eric Rohmer, The Day He Arrives is a delightful meditation on relationships, filmmaking, and the unknowable forces that govern our lives. [The Cinema Guild] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-day-he-arrives/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-day-he-arrives/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540237" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-flat"><img src="https://static.metacritic.com/images/products/movies/1/252914d12b8ef24ee66ce82b539e3d66-98.jpg" alt="The Flat" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540681" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-flat/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <span class="title numbered"> 21. </span> <a href="/movie/the-flat" class="title"><h3>The Flat</h3></a> <div class="clamp-details"> <span>October 12, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> The flat on the third floor of a Bauhaus building in Tel Aviv was where my grandparents lived since they immigrated to Palestine in the 1930\'s. Were it not for the view from the windows, one might have thought that the flat was in Berlin. When my grandmother passed away at the age of 98 we were called to the flat to clear out what was left. Objects, pictures, letters and documents awaited us, revealing traces of a troubled and unknown past. The film which begins with the emptying out of a flat develops into a riveting adventure, involving unexpected national interests, a friendship that crosses enemy lines, and deeply repressed family emotions. And even reveals some secrets that should have probably remained untold. (Sundance Selects) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-flat/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-flat/user-reviews"> <div class="metascore_w user large movie positive">8.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540681" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/footnote"><img src="https://static.metacritic.com/images/products/movies/8/0ff6388185c29b842158a008f1d18399-98.jpg" alt="Footnote" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539908" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/footnote/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <span class="title numbered"> 22. </span> <a href="/movie/footnote" class="title"><h3>Footnote</h3></a> <div class="clamp-details"> <span>March 9, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> Eliezer and Uriel Shkolnik are both eccentric professors, who have dedicated their lives to their work in Talmudic Studies. The father, Eliezer, is a stubborn purist who fears the establishment and has never been recognized for his work. Meanwhile his son, Uriel, is an up-and-coming star in the field, who appears to feed on accolades, endlessly seeking recognition. Then one day, the tables turn. When Eliezer learns that he is to be awarded the Israel Prize, the most valuable honor for scholarship in the country, his vanity and desperate need for validation are exposed. His son, Uriel, is thrilled to see his father\'s achievements finally recognized but, in a darkly funny twist, is forced to choose between the advancement of his own career and his father\'s. Will he sabotage his father\'s glory? (Sony Pictures Classics) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/footnote/critic-reviews"> <div class="metascore_w large movie positive">83</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/footnote/user-reviews"> <div class="metascore_w user large movie positive">6.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539908" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/monsieur-lazhar"><img src="https://static.metacritic.com/images/products/movies/4/a6fd4f792ca0ce5d843bf4a69d72a59d-98.jpg" alt="Monsieur Lazhar" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539954" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/monsieur-lazhar/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 23. </span> <a href="/movie/monsieur-lazhar" class="title"><h3>Monsieur Lazhar</h3></a> <div class="clamp-details"> <span>April 13, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Monsieur Lazhar tells the story of a Montreal middle school class shaken by the death of their well-liked teacher. Bachir Lazhar, a 55-year-old Algerian immigrant, offers the school his services as a substitute teacher and is quickly hired. As he helps the children heal, he also learns to accept his own painful past. (Music Box Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/monsieur-lazhar/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/monsieur-lazhar/user-reviews"> <div class="metascore_w user large movie positive">7.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539954" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-deep-blue-sea"><img src="https://static.metacritic.com/images/products/movies/6/23ce47573526ca833c463856a20976ee-98.jpg" alt="The Deep Blue Sea" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539136" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-deep-blue-sea/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 24. </span> <a href="/movie/the-deep-blue-sea" class="title"><h3>The Deep Blue Sea</h3></a> <div class="clamp-details"> <span>March 23, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Hester Collyer, the wife of a High Court judge, is a free spirit trapped in a passionless marriage. Her encounter with Freddie Page, a troubled former Royal Air Force pilot throws her life in turmoil, as their erotic relationship leaves her emotionally stranded and physically isolated. Nearly abandoned by Freddie, Hester attempts to win him back through a desperate gesture. This only serves to estrange her more from the men in her life and reality itself. (Music Box Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-deep-blue-sea/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-deep-blue-sea/user-reviews"> <div class="metascore_w user large movie positive">6.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539136" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/ornette-made-in-america"><img src="https://static.metacritic.com/images/products/movies/8/748a5eff9906e81ae533905d23a83201-98.jpg" alt="Ornette: Made in America (1985)" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540558" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/ornette-made-in-america/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 25. </span> <a href="/movie/ornette-made-in-america" class="title"><h3>Ornette: Made in America (1985)</h3></a> <div class="clamp-details"> <span>August 31, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Ornette: Made In America captures Ornette’s evolution over three decades. Returning home to Fort Worth, Texas in 1983 as a famed performer and composer, documentary footage, dramatic scenes, and some of the first music video-style segments ever made, chronicle his boyhood in segregated Texas and his subsequent emergence as an American cultural pioneer and world-class icon. (Milestone Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/ornette-made-in-america/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/ornette-made-in-america/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540558" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/in-the-family"><img src="https://static.metacritic.com/images/products/movies/3/39a0e4bd8d52ce7bc5ec53a3cd55372e-98.jpg" alt="In the Family" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539843" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/in-the-family/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 26. </span> <a href="/movie/in-the-family" class="title"><h3>In the Family</h3></a> <div class="clamp-details"> <span>April 22, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> In the town of Martin, Tennessee, Chip Hines, a precocious six year old, has only known life with his two dads, Cody and Joey. And a good life it is. When Cody dies suddenly in a car accident, Joey and Chip struggle to find their footing again. Just as they begin to, Cody’s will reveals that he named his sister as Chip’s guardian. The years of Joey’s acceptance into the family unravel as Chip is taken away from him. In his now solitary home life, Joey searches for a solution. The law is not on his side, but friends are. Armed with their comfort and inspired by memories of Cody, Joey finds a path to peace with the family and closer to his son. (In the Family Production) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/in-the-family/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/in-the-family/user-reviews"> <div class="metascore_w user large movie positive">6.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539843" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/marley"><img src="https://static.metacritic.com/images/products/movies/4/e170d71592f355ffca63a68b9b9a9b13-98.jpg" alt="Marley" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540094" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/marley/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 27. </span> <a href="/movie/marley" class="title"><h3>Marley</h3></a> <div class="clamp-details"> <span>April 20, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Bob Marley\'s universal appeal, impact on music history and role as a social and political prophet is both unique and unparalleled. Marley is the definitive life story of the musician, revolutionary, and legend, from his early days to his rise to international superstardom. Made with the support of the Marley family, the film features rare footage, incredible performances and revelatory interviews with the people that knew him best. (Magnolia Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/marley/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/marley/user-reviews"> <div class="metascore_w user large movie positive">8.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540094" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/under-african-skies"><img src="https://static.metacritic.com/images/products/movies/1/8877eb781affa062c7c3418e95a3338a-98.jpg" alt="Under African Skies" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540291" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/under-african-skies/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 28. </span> <a href="/movie/under-african-skies" class="title"><h3>Under African Skies</h3></a> <div class="clamp-details"> <span>May 11, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Paul Simon’s Grammy-winning album Graceland – an irresistible and groundbreaking fusion of American and South African pop music — was an immediate hit when it was released in 1986. It also proved to be a lightning rod for controversy, after South African leaders protested that Simon had broken the cultural boycott of the nation’s oppressively racist apartheid regime. In the documentary Under African Skies, premiering at the 2012 Sundance Film Festival, Simon returns to South Africa, which formally ended apartheid in 1994 — 25 years after Graceland‘s release. Director Joe Berlinger (Paradise Lost 3: Purgatory) follows Simon as he reunites with his South African collaborators, and revisits the controversy the album caused, while luminaries like Oprah Winfrey, Quincy Jones, Lorne Michaels, David Bryne and Sir Paul McCartney share their thoughts on what the album meant to them. (Radical Media) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/under-african-skies/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/under-african-skies/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540291" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/side-by-side"><img src="https://static.metacritic.com/images/products/movies/6/fbec8c4497ebb9bc468f65c1903b2d7c-98.jpg" alt="Side by Side" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540506" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/side-by-side/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 29. </span> <a href="/movie/side-by-side" class="title"><h3>Side by Side</h3></a> <div class="clamp-details"> <span>August 17, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Join Keanu Reeves on a tour of the past and the future of filmmaking in SIDE BY SIDE. Since the invention of cinema, the standard format for recording moving images has been film. Over the past two decades, a new form of digital filmmaking has emerged, creating a groundbreaking evolution in the medium. Reeves explores the development of cinema and the impact of digital filmmaking via in-depth interviews with Hollywood masters, such as James Cameron, David Fincher, David Lynch, Martin Scorsese, Steven Soderbergh, and many more. (Tribeca Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/side-by-side/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/side-by-side/user-reviews"> <div class="metascore_w user large movie positive">8.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540506" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/once-upon-a-time-in-anatolia"><img src="https://static.metacritic.com/images/products/movies/8/6bd79993fa0cd0b47a9ba312a54a3ee1-98.jpg" alt="Once Upon a Time in Anatolia" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539938" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/once-upon-a-time-in-anatolia/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <span class="title numbered"> 30. </span> <a href="/movie/once-upon-a-time-in-anatolia" class="title"><h3>Once Upon a Time in Anatolia</h3></a> <div class="clamp-details"> <span>January 4, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Life in a small town is akin to journeying in the middle of the steppes: the sense that "something new and different" will spring up behind every hill, but always unerringly similar, tapering, vanishing or lingering monotonous roads. (NBC Film) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/once-upon-a-time-in-anatolia/critic-reviews"> <div class="metascore_w large movie positive">82</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/once-upon-a-time-in-anatolia/user-reviews"> <div class="metascore_w user large movie positive">8.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539938" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/django-unchained"><img src="https://static.metacritic.com/images/products/movies/0/5cbc5de6c31c09078fdd5b4379734528-98.jpg" alt="Django Unchained" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539500" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/django-unchained/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 31. </span> <a href="/movie/django-unchained" class="title"><h3>Django Unchained</h3></a> <div class="clamp-details"> <span>December 25, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Django is a slave whose brutal history with his former owners lands him face-to-face with German-born bounty hunter Dr. King Schultz. Schultz is on the trail of the murderous Brittle brothers, and only Django can lead him to his bounty. The unorthodox Schultz acquires Django with a promise to free him upon the capture of the Brittles – dead or alive. (The Weinstein Company) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/django-unchained/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/django-unchained/user-reviews"> <div class="metascore_w user large movie positive">8.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539500" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/lenfant-den-haut"><img src="https://static.metacritic.com/images/products/movies/5/32890223dec93d3139a3883dde79b4c4-98.jpg" alt="Sister" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540535" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/lenfant-den-haut/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 32. </span> <a href="/movie/lenfant-den-haut" class="title"><h3>Sister</h3></a> <div class="clamp-details"> <span>October 5, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Simon lives with his older sister in a housing complex below a luxury Swiss ski resort. With his sister drifting in and out of jobs and relationships, twelve-year-old Simon takes on the responsibility of providing for the two of them. Everyday, he takes the lift up to the opulent ski world above, stealing equipment from rich tourists to resell to the local kids down in the valley. He is able to keep their little family afloat with his small-time hustles and his sister is thankful for the money he brings in. But when Simon partners with a crooked British seasonal worker, he begins to lose his boundaries, affecting his relationship with his sister and plummeting him into dangerous territory. (Adopt Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/lenfant-den-haut/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/lenfant-den-haut/user-reviews"> <div class="metascore_w user large movie positive">6.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540535" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/tchoupitoulas"><img src="https://static.metacritic.com/images/products/movies/1/1847d2a4c684279d8b65771a315627df-98.jpg" alt="Tchoupitoulas" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540811" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/tchoupitoulas/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 33. </span> <a href="/movie/tchoupitoulas" class="title"><h3>Tchoupitoulas</h3></a> <div class="clamp-details"> <span>December 7, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Three brothers make their way through a night of discovery in this New Orleans documentary. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/tchoupitoulas/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/tchoupitoulas/user-reviews"> <div class="metascore_w user large movie mixed">5.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540811" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/bond-23"><img src="https://static.metacritic.com/images/products/movies/3/8f5bc3e213e918929f6cc71d0964e213-98.jpg" alt="Skyfall" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539253" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/bond-23/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 34. </span> <a href="/movie/bond-23" class="title"><h3>Skyfall</h3></a> <div class="clamp-details"> <span>November 9, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> In Skyfall, Bond’s loyalty to M is tested as her past comes back to haunt her. As MI6 comes under attack, 007 must track down and destroy the threat, no matter how personal the cost. [Columbia Pictures, MGM] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/bond-23/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/bond-23/user-reviews"> <div class="metascore_w user large movie positive">7.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539253" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/consuming-spirits"><img src="https://static.metacritic.com/images/products/movies/8/b6842c94113a3b03c60bdb51c7da4c52-98.jpg" alt="Consuming Spirits" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540828" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/consuming-spirits/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 35. </span> <a href="/movie/consuming-spirits" class="title"><h3>Consuming Spirits</h3></a> <div class="clamp-details"> <span>December 12, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Consuming Spirits 16mm to HD, is an Independent feature animation, chronicling the lives of three characters who live in a rust belt town called Magguson, and work at its local newspaper The Daily Suggester. They are: Gentian Violet 42: Victor Blue 38: and Earl gray 64: first appear to be acquaintances. But as the film unfolds, we find they have a long diabolical history, revolving around social service intervention, and foster care, romance and hatred. Each character has family secrets to hide, and family secrets to discover. An auto accident one dark and inebriated night, causes a crack in the memory vault of these intimate strangers. By films end all parties walk from the woods, both healed and wounded..enjoy.. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/consuming-spirits/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/consuming-spirits/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540828" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/ai-weiwei-never-sorry"><img src="https://static.metacritic.com/images/products/movies/7/9db9bcd97cbf792597750c5945dc8aaf-98.jpg" alt="Ai Weiwei: Never Sorry" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540467" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/ai-weiwei-never-sorry/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 36. </span> <a href="/movie/ai-weiwei-never-sorry" class="title"><h3>Ai Weiwei: Never Sorry</h3></a> <div class="clamp-details"> <span>July 27, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Ai Weiwei: Never Sorry is the first feature-length film about the internationally renowned Chinese artist and activist, Ai Weiwei. In recent years, Ai has garnered international attention as much for his ambitious artwork as his political provocations. AI WEIWEI: NEVER SORRY examines this complex intersection of artistic practice and social activism as seen through the life and art of China’s preeminent contemporary artist. (Sundance Selects) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/ai-weiwei-never-sorry/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/ai-weiwei-never-sorry/user-reviews"> <div class="metascore_w user large movie positive">7.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540467" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/silver-linings-playbook"><img src="https://static.metacritic.com/images/products/movies/6/e21b282b7a821ec4d15be3de98213de9-98.jpg" alt="Silver Linings Playbook" /></a> <span class="mcmust"> <img src="/images/icons/mc-mustsee-sm.svg" /> </span> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539896" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/silver-linings-playbook/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <span class="title numbered"> 37. </span> <a href="/movie/silver-linings-playbook" class="title"><h3>Silver Linings Playbook</h3></a> <div class="clamp-details"> <span>November 16, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Life doesn’t always go according to plan...Pat Solitanohas lost everything -- his house, his job, and his wife. He now finds himself living back with his mother and father after spending eight months in a state institution on a plea bargain. Pat is determined to rebuild his life, remain positive and reunite with his wife, despite the challenging circumstances of their separation. All Pat’s parents want is for him to get back on his feet - and to share their family’s obsession with the Philadelphia Eagles football team. When Pat meets Tiffany, a mysterious girl with problems of her own, things get complicated. Tiffany offers to help Pat reconnect with his wife, but only if he\'ll do something very important for her in return. As their deal plays out, an unexpected bond begins to form between them, and silver linings appear in both of their lives. (The Weinstein Company) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/silver-linings-playbook/critic-reviews"> <div class="metascore_w large movie positive">81</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/silver-linings-playbook/user-reviews"> <div class="metascore_w user large movie positive">8.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539896" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-turin-horse"><img src="https://static.metacritic.com/images/products/movies/8/452ed0868c01b27bf19a282fa35160e7-98.jpg" alt="The Turin Horse" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540028" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-turin-horse/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 38. </span> <a href="/movie/the-turin-horse" class="title"><h3>The Turin Horse</h3></a> <div class="clamp-details"> <span>February 10, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> On January 3, 1889 in Turin, Italy, Friedrich Nietzsche steps out of the doorway of number six, Via Carlo Albert. Not far from him, a cab driver is having trouble with a stubborn horse. The horse refuses to move, whereupon the driver loses his patience and takes his whip to it. Nietzsche puts an end to the brutal scene, throwing his arms around the horse’s neck, sobbing. After this, he lies motionless and silent for two days on a divan until he mutters the obligatory last words, and lives for another ten years, silent and demented, cared for by his mother and sisters. Somewhere in the countryside, the cab driver lives with his daughter and the overworked horse. Outside, a windstorm rages. The horse refuses to move, and the man and his daughter struggle through their daily schedule. Food and water grow scarce. Beggars and gypsies come to their door. The horse stops eating. Slowly, the apocalypse approaches. (The Cinema Guild) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-turin-horse/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-turin-horse/user-reviews"> <div class="metascore_w user large movie positive">8.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540028" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/arrietty"><img src="https://static.metacritic.com/images/products/movies/6/52bde98b241ff8ca319f8287a0fc1652-98.jpg" alt="The Secret World of Arrietty" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539256" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/arrietty/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 39. </span> <a href="/movie/arrietty" class="title"><h3>The Secret World of Arrietty</h3></a> <div class="clamp-details"> <span>February 17, 2012</span> <span class="cert_rating G"> | G</span> </div> <div class="summary"> Arrietty, a tiny, but tenacious 14-year-old, lives with her parents in the recesses of a suburban garden home, unbeknownst to the homeowner and her housekeeper. Like all little people, Arrietty remains hidden from view, except during occasional covert ventures beyond the floorboards to "borrow" scrap supplies like sugar cubes from her human hosts. But when 12-year-old Shawn, a human boy who comes to stay in the home, discovers his mysterious housemate one evening, a secret friendship blossoms. If discovered, their relationship could drive Arrietty\'s family from the home and straight into danger. (Walt Disney Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/arrietty/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/arrietty/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539256" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-queen-of-versailles"><img src="https://static.metacritic.com/images/products/movies/6/328fd71e071c63e7f2580de5490e57ab-98.jpg" alt="The Queen of Versailles" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540336" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-queen-of-versailles/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 40. </span> <a href="/movie/the-queen-of-versailles" class="title"><h3>The Queen of Versailles</h3></a> <div class="clamp-details"> <span>July 20, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> With epic proportions of Shakespearean tragedy, the film follows two unique characters, whose rags-to-riches success stories reveal the innate virtues and flaws of the American Dream. The film begins with the family triumphantly constructing the biggest house in America, a 90,000 sq. ft. palace. Over the next two years, their sprawling empire, fueled by the real estate bubble and cheap money, falters due to the economic crisis. Major changes in lifestyle and character ensue within the cross-cultural household of family members and domestic staff. (Magnet Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-queen-of-versailles/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-queen-of-versailles/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540336" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/i-wish"><img src="https://static.metacritic.com/images/products/movies/5/0a30374afd3e245bf3ffa11546dacd33-98.jpg" alt="I Wish" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540235" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/i-wish/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 41. </span> <a href="/movie/i-wish" class="title"><h3>I Wish</h3></a> <div class="clamp-details"> <span>May 11, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Twelve-year-old Koichi lives with his mother and retired grandparents in Kagoshima, in the southern region of Kyushu, Japan. His younger brother Ryunosuke lives with their father in Hakata, northern Kyushu. The brothers have been separated by their parents’ divorce and Koichi’s only wish is for his family to be reunited. When he learns that a new bullet train line will soon open, linking the two towns, he starts to believe that a miracle will take place the moment these new trains first pass each other at top speed. With help from the adults around him, Koichi sets out on a journey with a group of friends, each hoping to witness a miracle that will improve their difficult lives.(Magnolia Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/i-wish/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/i-wish/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540235" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/goodbye-first-love"><img src="https://static.metacritic.com/images/products/movies/7/206e873112c8fd50cce3833ac1459507-98.jpg" alt="Goodbye First Love" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540007" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/goodbye-first-love/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 42. </span> <a href="/movie/goodbye-first-love" class="title"><h3>Goodbye First Love</h3></a> <div class="clamp-details"> <span>April 20, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Fifteen-year-old Camille is a serious, intensely focused girl who has fallen in love with cheerful Sullivan, an older boy who reciprocates her feelings, mostly, but wants to be free to explore the world. When he leaves her to travel through South America, she is devastated. But over the next eight years, she develops into a more fully formed woman, with new interests and a new love—and the possibility that she\'ll be less defenseless when Sullivan enters her life again. Filled with scenes that showcase her extraordinary ability to evoke moods and feelings, Hansen-Løve takes the story of a girl’s first romance and makes it into a singular experience, familiar in its broad strokes and yet so specific that it feels uniquely personal. (IFC Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/goodbye-first-love/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/goodbye-first-love/user-reviews"> <div class="metascore_w user large movie positive">6.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540007" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/west-of-memphis"><img src="https://static.metacritic.com/images/products/movies/3/f7d3c642413231be243d45755bb7b0fc-98.jpg" alt="West of Memphis" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540553" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/west-of-memphis/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <span class="title numbered"> 43. </span> <a href="/movie/west-of-memphis" class="title"><h3>West of Memphis</h3></a> <div class="clamp-details"> <span>December 25, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> An examination of a failure of justice in the case against the West Memphis Three. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/west-of-memphis/critic-reviews"> <div class="metascore_w large movie positive">80</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/west-of-memphis/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540553" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/six-sessions"><img src="https://static.metacritic.com/images/products/movies/2/4c570ac94335850adfd4df8f355720e3-98.jpg" alt="The Sessions" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540332" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/six-sessions/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 44. </span> <a href="/movie/six-sessions" class="title"><h3>The Sessions</h3></a> <div class="clamp-details"> <span>October 19, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> The Sessions tells the story of a man confined to an iron lung who is determined at age 38 to lose his virginity. With the help of his therapists and the guidance of his priest, he sets out to make his dream a reality. (Fox Searchlight) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/six-sessions/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/six-sessions/user-reviews"> <div class="metascore_w user large movie positive">7.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540332" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/photographic-memory"><img src="https://static.metacritic.com/images/products/movies/7/f145006e777f87c979a6c45d9f7b437f-98.jpg" alt="Photographic Memory" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540667" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/photographic-memory/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 45. </span> <a href="/movie/photographic-memory" class="title"><h3>Photographic Memory</h3></a> <div class="clamp-details"> <span>October 12, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Filmmaker Ross McElwee finds himself in frequent conflict with his son, a young adult who seems addicted to and distracted by the virtual worlds of the internet. To understand his fractured love for his son, McElwee travels back to St. Quay-Portrieux in Brittany for the first time in decades to retrace his own journey into adulthood. A meditation on the passing of time, the praxis of photography and film, and the digital versus analog divide. (First Run Features) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/photographic-memory/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/photographic-memory/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540667" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-central-park-five"><img src="https://static.metacritic.com/images/products/movies/3/6e5d2cf46003d73dddf092c1375b115d-98.jpg" alt="The Central Park Five" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540663" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-central-park-five/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 46. </span> <a href="/movie/the-central-park-five" class="title"><h3>The Central Park Five</h3></a> <div class="clamp-details"> <span>November 23, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A documentary that examines the 1989 case of five black and Latino teenagers who were wrongfully accused of raping a white woman in Central Park. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-central-park-five/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-central-park-five/user-reviews"> <div class="metascore_w user large movie positive">8.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540663" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/wagners-dream"><img src="https://static.metacritic.com/images/products/movies/0/557315edbfc8b9898e6742ccba7927ff-98.jpg" alt="Wagner\'s Dream" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540450" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/wagners-dream/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 47. </span> <a href="/movie/wagners-dream" class="title"><h3>Wagner\'s Dream</h3></a> <div class="clamp-details"> <span>July 20, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> The stakes could not be higher as one of the theater\'s finest stage directors teams up with one of the world\'s leading opera companies to tackle opera\'s most monumental challenge: the production of Wagner\'s epic Ring cycle - the four-part, 16-hour work that the composer first presented in 1876. For the past 130 years, the quest to produce a perfect Ring has stymied directors, including Wagner himself, who struggled to meet the immense theatrical demands of his own creation. The cosmic vision of gods and mortals vying for power and destroyed by greed calls for astonishing stage visuals of fire storms, flying warriors, and underwater and heavenly actions. (The Metropolitan Opera) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/wagners-dream/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/wagners-dream/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540450" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/life-of-pi"><img src="https://static.metacritic.com/images/products/movies/3/00a4e03417f946214d94af7f552fb870-98.jpg" alt="Life of Pi" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539153" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/life-of-pi/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 48. </span> <a href="/movie/life-of-pi" class="title"><h3>Life of Pi</h3></a> <div class="clamp-details"> <span>November 21, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> Based on the best-selling novel by Yann Martel, is a magical adventure story centering on Pi Patel, the precocious son of a zookeeper. Dwellers in Pondicherry, India, the family decides to move to Canada, hitching a ride on a huge freighter. After a shipwreck, Pi is found adrift in the Pacific Ocean on a 26-foot lifeboat with a zebra, a hyena, an orangutan and a 450-pound Bengal tiger named Richard Parker, all fighting for survival. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/life-of-pi/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/life-of-pi/user-reviews"> <div class="metascore_w user large movie positive">7.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539153" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/keep-the-lights-on"><img src="https://static.metacritic.com/images/products/movies/8/3467af9ee44ffd76f8a6b6e8cbfdaca9-98.jpg" alt="Keep the Lights On" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540568" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/keep-the-lights-on/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 49. </span> <a href="/movie/keep-the-lights-on" class="title"><h3>Keep the Lights On</h3></a> <div class="clamp-details"> <span>September 7, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Keep the Lights On chronicles an emotionally and sexually charged journey of two men in New York City through love, friendship, and addiction. Documentary filmmaker Erik and closeted lawyer Paul meet through a casual encounter, but soon find a deeper connection and become a couple. Individually and together, they are risk takers—compulsive, and fueled by drugs and sex. In an almost decade-long relationship defined by highs, lows, and dysfunctional patterns, Erik struggles to negotiate his own boundaries and dignity while being true to himself. Director Ira Sachs’s fearlessly personal screenplay is anchored by Lindhardt, who embodies Erik’s isolation and vulnerability with a gentle presence. Harrowing and romantic, visceral and layered, Keep the Lights On is a film that looks at love and all of its manifestations, taking it to dark depths and bringing it back to a place of grace. (Music Box Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/keep-the-lights-on/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/keep-the-lights-on/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540568" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/searching-for-sugar-man"><img src="https://static.metacritic.com/images/products/movies/2/afcee0a29f16314ea5bf258fdd61bed4-98.jpg" alt="Searching for Sugar Man" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540412" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/searching-for-sugar-man/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 50. </span> <a href="/movie/searching-for-sugar-man" class="title"><h3>Searching for Sugar Man</h3></a> <div class="clamp-details"> <span>June 29, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> Searching for Sugar Man tells the incredible true story of Rodriguez, the greatest \'70s rock icon who never was. Discovered in a Detroit bar in the late \'60s by two celebrated producers struck by his soulful melodies and prophetic lyrics, they recorded an album which they believed would secure his reputation as the greatest recording artist of his generation. In fact, the album bombed and the singer disappeared into obscurity amid rumors of a gruesome on-stage suicide. But a bootleg recording found its way into apartheid South Africa and, over the next two decades, he became a phenomenon. The film follows the story of two South African fans who set out to find out what really happened to their hero. Their investigation leads them to a story more extraordinary than any of the existing myths about the artist known as Rodriguez. (Sony Pictures Classics) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/searching-for-sugar-man/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/searching-for-sugar-man/user-reviews"> <div class="metascore_w user large movie positive">8.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540412" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-law-in-these-parts"><img src="https://static.metacritic.com/images/products/movies/6/dd12aa4f2a7d364cb18cc41ab5c21b73-98.jpg" alt="The Law in These Parts" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540766" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-law-in-these-parts/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <span class="title numbered"> 51. </span> <a href="/movie/the-law-in-these-parts" class="title"><h3>The Law in These Parts</h3></a> <div class="clamp-details"> <span>November 14, 2012</span> </div> <div class="summary"> Alexandrowicz\'s documentary is an examination of the legal infrastructure put in place by Israel for the West Bank and Gaza Strip. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-law-in-these-parts/critic-reviews"> <div class="metascore_w large movie positive">79</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-law-in-these-parts/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540766" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/beware-of-mr-baker"><img src="https://static.metacritic.com/images/products/movies/6/1700eace9d8f5b5a9b5143e8dfb85c1c-98.jpg" alt="Beware of Mr. Baker" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540786" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/beware-of-mr-baker/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 52. </span> <a href="/movie/beware-of-mr-baker" class="title"><h3>Beware of Mr. Baker</h3></a> <div class="clamp-details"> <span>November 28, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Born in South East London the same week the Nazis began bombing, Ginger Baker’s first memory was running after a train that carried his father off to death in WWII. From his music to his life, at the expense of family and fortune, Ginger would never be left behind on the tracks again. Though best known for his work with Eric Clapton in Cream and Blind Faith, the world’s greatest drummer did not hit his stride until years later in 1972 when he drove the first Range Rover ever produced from London to Nigeria in pursuit of the African rhythms and musical icon, Fela Kuti. There he found his Mecca of drumming, introducing the African beat and “world music” to the West, years before any other musicians in the field. The documentary includes stories from his ex-wives, children, and many of the greatest living musicians that worked with Ginger including Eric Clapton, Steve Winwood, Charlie Watts, Mickey Hart, Carlos Santana, Max Weinberg, Chad Smith, Femi Kuti, Neal Peart, Simon Kirke, Marky Ramone and many more. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/beware-of-mr-baker/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/beware-of-mr-baker/user-reviews"> <div class="metascore_w user large movie positive">7.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540786" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/tabu"><img src="https://static.metacritic.com/images/products/movies/6/07c9df785a89aa9e2f6e2de1d20d8cac-98.jpg" alt="Tabu" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540836" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/tabu/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 53. </span> <a href="/movie/tabu" class="title"><h3>Tabu</h3></a> <div class="clamp-details"> <span>December 26, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A restless retired woman teams up with her deceased neighbor\'s maid to find a man who has a secret connection to her past life as a farm owner at the foothill of Mount Tabu in Africa. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/tabu/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/tabu/user-reviews"> <div class="metascore_w user large movie positive">6.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540836" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/5-broken-cameras"><img src="https://static.metacritic.com/images/products/movies/4/f7d90eb1aacd42a1ba2ac5d592fbe9d2-98.jpg" alt="5 Broken Cameras" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540324" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/5-broken-cameras/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 54. </span> <a href="/movie/5-broken-cameras" class="title"><h3>5 Broken Cameras</h3></a> <div class="clamp-details"> <span>May 25, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> An extraordinary work of both cinematic and political activism, 5 Broken Cameras is a deeply personal, first-hand account of non-violent resistance in Bil\'in, a West Bank village threatened by encroaching Israeli settlements. Shot almost entirely by Palestinian farmer Emad Burnat, who bought his first camera in 2005 to record the birth of his youngest son, the footage was later given to Israeli co-director Guy Davidi to edit. Structured around the violent destruction of each one of Burnat\'s cameras, the filmmakers\' collaboration follows one family\'s evolution over five years of village turmoil. Burnat watches from behind the lens as olive trees are bulldozed, protests intensify, and lives are lost. "I feel like the camera protects me," he says, "but it\'s an illusion." (Kino Lorber) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/5-broken-cameras/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/5-broken-cameras/user-reviews"> <div class="metascore_w user large movie positive">7.4</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540324" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-dark-knight-rises"><img src="https://static.metacritic.com/images/products/movies/9/329e53effd7014621b82d2a86c9b3ea0-98.jpg" alt="The Dark Knight Rises" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539269" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-dark-knight-rises/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 55. </span> <a href="/movie/the-dark-knight-rises" class="title"><h3>The Dark Knight Rises</h3></a> <div class="clamp-details"> <span>July 20, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> It has been eight years since Batman vanished into the night, turning, in that instant, from hero to fugitive. Assuming the blame for the death of D.A. Harvey Dent, the Dark Knight sacrificed everything for what he and Commissioner Gordon both hoped was the greater good. For a time the lie worked, as criminal activity in Gotham City was crushed under the weight of the anti-crime Dent Act. But everything will change with the arrival of a cunning cat burglar with a mysterious agenda. Far more dangerous, however, is the emergence of Bane, a masked terrorist whose ruthless plans for Gotham drive Bruce out of his self-imposed exile. But even if he dons the cape and cowl again, Batman may be no match for Bane. (Warner Bros. Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-dark-knight-rises/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-dark-knight-rises/user-reviews"> <div class="metascore_w user large movie positive">8.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539269" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/bookers-place-a-mississippi-story"><img src="https://static.metacritic.com/images/products/movies/3/deb264e31a6bd89db185b13f341b3714-98.jpg" alt="Booker\'s Place: A Mississippi Story" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540253" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/bookers-place-a-mississippi-story/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 56. </span> <a href="/movie/bookers-place-a-mississippi-story" class="title"><h3>Booker\'s Place: A Mississippi Story</h3></a> <div class="clamp-details"> <span>April 27, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> While filming a documentary in Mississippi in 1965, Frank De Felitta forever changed the life of an African-American waiter and his family. In 2011, Frank\'s son returns to the Delta to examine the repercussions of that fateful encounter. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/bookers-place-a-mississippi-story/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/bookers-place-a-mississippi-story/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540253" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/a-simple-life"><img src="https://static.metacritic.com/images/products/movies/8/e73b884b6285827f4d64bd7d9aece1eb-98.jpg" alt="A Simple Life" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540228" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/a-simple-life/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <span class="title numbered"> 57. </span> <a href="/movie/a-simple-life" class="title"><h3>A Simple Life</h3></a> <div class="clamp-details"> <span>April 12, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Since her teenage years, Chung Chun-Tao has worked as an amah – a servant – for the Leung family. Known as Ah Tao, she witnessed every aspect of the family’s life. Now, after 60 years of service, she is looking after Roger, who works in the film industry and is the only member of the family still resident in Hong Kong. One day Roger comes home from work to find that Ah Tao has suffered a stroke. He rushes her to hospital, where she announces that she wants to quit her job and move into anursing home. Roger researches the possibilities and finds her a room in an establishment run by an old friend. Ah Tao moves in and begins acquainting herself with a new ‘family’: the brisk but fundamentally kindly supervisor Ms Choi and a motley crew of elderly residents, including the dapper Uncle Kin, the jealous Auntie Kam, the erudite ‘Headmaster’ and the good-hearted dialysis patient Mui Gu. Giving ever more time and attention to Ah Tao’s needs and pleasures, Roger comes to realise how much she means to him. Roger’s mother visits from California and suggests reclaiming an apartment building the family owns to provide Ah Tao with a final home of her own. But Ah Tao’s health begins to deteriorate rapidly. [China Lion Film Distribution] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/a-simple-life/critic-reviews"> <div class="metascore_w large movie positive">78</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/a-simple-life/user-reviews"> <div class="metascore_w user large movie positive">7.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540228" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/china-heavyweight"><img src="https://static.metacritic.com/images/products/movies/7/3f807cd3703de132b13ed1343b0d2550-98.jpg" alt="China Heavyweight" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540387" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/china-heavyweight/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 58. </span> <a href="/movie/china-heavyweight" class="title"><h3>China Heavyweight</h3></a> <div class="clamp-details"> <span>July 6, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> In central China, a Master coach recruits poor rural teenagers and turns them into Western-style boxing champions. The top students face dramatic choices as they graduate – should they fight for the collective good or for themselves? A metaphor for the choices everyone in the New China faces now. (Eye Steel Film) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/china-heavyweight/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/china-heavyweight/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540387" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/jiro-dreams-of-sushi"><img src="https://static.metacritic.com/images/products/movies/0/d5400a0a5067fc02d4ea72ebcd34291d-98.jpg" alt="Jiro Dreams of Sushi" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540030" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/jiro-dreams-of-sushi/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 59. </span> <a href="/movie/jiro-dreams-of-sushi" class="title"><h3>Jiro Dreams of Sushi</h3></a> <div class="clamp-details"> <span>March 9, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> Jiro Dreams of Sushi is the story of 85 year-old Jiro Ono, considered by many to be the world’s greatest sushi chef. He is the proprietor of Sukiyabashi Jiro, a 10-seat, sushi-only restaurant inauspiciously located in a Tokyo subway station. Despite its humble appearances, it is the first restaurant of its kind to be awarded a prestigious 3 star Michelin review, and sushi lovers from around the globe make repeated pilgrimage, calling months in advance and shelling out top dollar for a coveted seat at Jiro’s sushi bar. For most of his life, Jiro has been mastering the art of making sushi, but even at his age he sees himself still striving for perfection, working from sunrise to well beyond sunset to taste every piece of fish; meticulously train his employees; and carefully mold and finesse the impeccable presentation of each sushi creation. At the heart of this story is Jiro’s relationship with his eldest son Yoshikazu, the worthy heir to Jiro’s legacy, who is unable to live up to his full potential in his father’s shadow. (Magnolia Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/jiro-dreams-of-sushi/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/jiro-dreams-of-sushi/user-reviews"> <div class="metascore_w user large movie positive">7.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540030" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/neighboring-sounds"><img src="https://static.metacritic.com/images/products/movies/2/ccbd3b99de12d53e29a401e1bcd06ea1-98.jpg" alt="Neighboring Sounds" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540522" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/neighboring-sounds/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 60. </span> <a href="/movie/neighboring-sounds" class="title"><h3>Neighboring Sounds</h3></a> <div class="clamp-details"> <span>August 24, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A history of violence and oppression threatens to engulf the residents of an affluent seaside community in Neighboring Sounds, a thrilling debut from filmmaker Kleber Mendonca Filho. A palpable sense of unease hangs over a single city block in the coastal town of Recife, Brazil. Home to prosperous families and the servants who work for them, the area is ruled by an aging patriarch and his sons. When a private security firm is reluctantly brought in to protect the residents from a recent spate of petty crime, it unleashes the fears, anxieties and resentments of a divided society still haunted by its troubled past. (The Cinema Guild) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/neighboring-sounds/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/neighboring-sounds/user-reviews"> <div class="metascore_w user large movie positive">7.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540522" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-imposter"><img src="https://static.metacritic.com/images/products/movies/7/ab84169b48c0656a1d41634d6d867370-98.jpg" alt="The Imposter" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540407" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-imposter/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 61. </span> <a href="/movie/the-imposter" class="title"><h3>The Imposter</h3></a> <div class="clamp-details"> <span>July 13, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> The Imposter is a chilling factual thriller that chronicles the story of a 13-year-old boy who disappears without a trace from San Antonio, Texas in 1994. Three and a half years later he is found alive, thousands of miles away in a village in southern Spain with a story of kidnapping and torture. His family is overjoyed to bring him home. But all is not quite as it seems. The boy bears many of the same distinguishing marks he always had, but why does he now have a strange accent? Why does he look so different? Any why doesn\'t the family seem to notice these glaring inconsistencies? It\'s only when an investigator starts asking questions that this strange tale takes an even stranger turn. The stranger than fiction mystery, which features many twists and turns, is told in a cinematic language that combines documentary and stylized visualizations. Perception is challenged at every turn, and just as the truth begins to dawn on you, another truth merges leaving you even more on edge. (Indomina Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-imposter/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-imposter/user-reviews"> <div class="metascore_w user large movie positive">7.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540407" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/gerhard-richter---painting"><img src="https://static.metacritic.com/images/products/movies/5/e32687b8932c2a001f8b48719455c439-98.jpg" alt="Gerhard Richter - Painting" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540125" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/gerhard-richter---painting/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 62. </span> <a href="/movie/gerhard-richter---painting" class="title"><h3>Gerhard Richter - Painting</h3></a> <div class="clamp-details"> <span>March 14, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> One of the world\'s greatest living painters, the German artist Gerhard Richter has spent over half a century experimenting with a tremendous range of techniques and ideas, addressing historical crises and mass media representation alongside explorations of chance procedures. The first glimpse inside his studio in decades, Gerhard Richter Painting is exactly that: a thrilling document of the 79-year-old\'s creative process, juxtaposed with rare archival footage and intimate conversations with his critics and collaborators. (Kino Lorber) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/gerhard-richter---painting/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/gerhard-richter---painting/user-reviews"> <div class="metascore_w user large movie mixed">5.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540125" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-house-i-live-in"><img src="https://static.metacritic.com/images/products/movies/6/07ed4c6d5ff1f2a2aca013805f1840cf-98.jpg" alt="The House I Live In" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540646" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-house-i-live-in/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 63. </span> <a href="/movie/the-house-i-live-in" class="title"><h3>The House I Live In</h3></a> <div class="clamp-details"> <span>October 5, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> As America remains embroiled in conflict overseas, a less visible war is taking place at home, costing countless lives, destroying families, and inflicting untold damage on future generations of Americans. Over forty years, the War on Drugs has accounted for more than 45 million arrests, made America the world\'s largest jailer, and damaged poor communities at home and abroad. Yet for all that, drugs are cheaper, purer, and more available today than ever before. (Charlotte Street Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-house-i-live-in/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-house-i-live-in/user-reviews"> <div class="metascore_w user large movie positive">8.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540646" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/brooklyn-castle"><img src="https://static.metacritic.com/images/products/movies/3/1352ea2879f9b70352c33ca9b06fad35-98.jpg" alt="Brooklyn Castle" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540693" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/brooklyn-castle/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <span class="title numbered"> 64. </span> <a href="/movie/brooklyn-castle" class="title"><h3>Brooklyn Castle</h3></a> <div class="clamp-details"> <span>October 19, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> Brooklyn Castle tells the stories of five members of the chess team at a below-the-poverty-line inner city junior high school that has won more national championships than any other in the country. The film follows the challenges these kids face in their personal lives as well as on the chessboard, and is as much about the sting of their losses as it is about the anticipation of their victories. Ironically, the biggest obstacle thrust upon them arises not from other competitors but from recessionary budget cuts to all the extracurricular activities at their school. BROOKLYN CASTLE shows how these kids’ dedication to chess magnifies their belief in what is possible for their lives. After all, if they can master the world’s most difficult game, what can’t they do? (Producers Distribution Agency) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/brooklyn-castle/critic-reviews"> <div class="metascore_w large movie positive">77</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/brooklyn-castle/user-reviews"> <div class="metascore_w user large movie positive">6.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540693" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/chico-rita"><img src="https://static.metacritic.com/images/products/movies/2/44e1a2b8adb155cf18796edd8a4ca5ab-98.jpg" alt="Chico & Rita" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539992" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/chico-rita/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <span class="title numbered"> 65. </span> <a href="/movie/chico-rita" class="title"><h3>Chico & Rita</h3></a> <div class="clamp-details"> <span>February 10, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Cuba, 1948. Chico is a young piano player with big dreams. Rita is a beautiful singer with an extraordinary voice. Music and romantic desire unites them, but their journey - in the tradition of the Latin ballad, the bolero - brings heartache and torment. From Havana to New York, Paris, Hollywood and Las Vegas, two passionate individuals battle impossible odds to unite in music and love.(Magic Light Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/chico-rita/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/chico-rita/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539992" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-hunter"><img src="https://static.metacritic.com/images/products/movies/2/8ae8c7b77781b9394dcedb9b71cd05fb-98.jpg" alt="The Hunter" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539952" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-hunter/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <span class="title numbered"> 66. </span> <a href="/movie/the-hunter" class="title"><h3>The Hunter</h3></a> <div class="clamp-details"> <span>January 4, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Recently released from prison, Ali attempts to make the most of his return to Tehran, amidst much talk of the upcoming elections and promises of change. Forced to work nights, he still tries to spend as much time as he can with his wife and their young daughter, escaping the stress of urban life through hunting trips to the secluded forest north of the city. But one day, Ali’s family goes missing-and after a long and fruitless experience with the police, Ali’s own search for his missing daughter ends in horror, pushing him over the edge into an act of terrible violence. He flees the city, pursued by the police, but soon the line between hunter and hunted becomes difficult to define. [Olive Films] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-hunter/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-hunter/user-reviews"> <div class="metascore_w user large movie positive">7.1</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539952" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/hara-kiri-death-of-a-samurai"><img src="https://static.metacritic.com/images/products/movies/8/2eb1cf2ed98a5854c78c657062f9362e-98.jpg" alt="Hara-Kiri: Death of a Samurai" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540448" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/hara-kiri-death-of-a-samurai/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <span class="title numbered"> 67. </span> <a href="/movie/hara-kiri-death-of-a-samurai" class="title"><h3>Hara-Kiri: Death of a Samurai</h3></a> <div class="clamp-details"> <span>July 20, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Revenge, honor and disgrace collide when a samurai\'s request to commit ritual suicide leads to a tense showdown with his feudal lord. [Tribeca Film] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/hara-kiri-death-of-a-samurai/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/hara-kiri-death-of-a-samurai/user-reviews"> <div class="metascore_w user large movie positive">7.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540448" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/flight"><img src="https://static.metacritic.com/images/products/movies/9/456564dabcf35d51fe73b04c9dd837b1-98.jpg" alt="Flight" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540309" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/flight/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <span class="title numbered"> 68. </span> <a href="/movie/flight" class="title"><h3>Flight</h3></a> <div class="clamp-details"> <span>November 2, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Flight tells the redemption story of Whip, a commercial airline pilot who pulls off a heroic feat of flying in a damaged plane, saving 98 lives on a flight carrying 106 people. While the world begs to embrace him as a true American Hero, the everyman struggles with this label as he is forced to hold up to the scrutiny of an investigation that brings into question his behavior the night before the doomed flight. (Paramount Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/flight/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/flight/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540309" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-loneliest-planet"><img src="https://static.metacritic.com/images/products/movies/9/e59fccf5e5fbfa0b253780dbbef51494-98.jpg" alt="The Loneliest Planet" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540539" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-loneliest-planet/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <span class="title numbered"> 69. </span> <a href="/movie/the-loneliest-planet" class="title"><h3>The Loneliest Planet</h3></a> <div class="clamp-details"> <span>October 26, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Alex and Nica are young, in love and engaged to be married. The summer before their wedding, they are backpacking in the Caucasus Mountains in Georgia. The couple hire a local guide to lead them on a camping trek, and the three set off into a stunning wilderness, a landscape that is both overwhelmingly open and frighteningly closed. Walking for hours, they trade anecdotes, play games to pass the time of moving through space. And then, a momentary misstep, a gesture that takes only two or three seconds, a gesture that’s over almost as soon as it begins. But once it is done, it can’t be undone. Once it is done, it threatens to undo everything the couple believed about each other and about themselves. All the while, they are not alone. They are always with the guide, who witnesses their every move. The film plays off the relationship between young travelers and the places they travel to, between guide and guided. But at heart, it is a love story -- a tale about betrayal, both accidental and deliberate, about masculinity, failure and the ambiguities of forgiveness. (IFC Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-loneliest-planet/critic-reviews"> <div class="metascore_w large movie positive">76</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-loneliest-planet/user-reviews"> <div class="metascore_w user large movie mixed">5.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540539" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/patience-after-sebald"><img src="https://static.metacritic.com/images/products/movies/0/26f841bda83d3c655890f763cd567aa9-98.jpg" alt="Patience (After Sebald)" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540290" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/patience-after-sebald/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 70. </span> <a href="/movie/patience-after-sebald" class="title"><h3>Patience (After Sebald)</h3></a> <div class="clamp-details"> <span>May 11, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A richly textured essay film on landscape, art, history, life and loss, Patience (After Sebald) offers a unique exploration of the work and influence of internationally acclaimed writer W.G. Sebald (1944 – 2001). With contributions from major writers, artists and filmmakers, the film is structured around a walk through coastal East Anglia, the same path followed by Sebald in his ground-breaking book, “The Rings of Saturn.” (Cinema Guild) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/patience-after-sebald/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/patience-after-sebald/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540290" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/easy-money"><img src="https://static.metacritic.com/images/products/movies/0/5a85e48c621c93bd9b60ad383b898146-98.jpg" alt="Easy Money" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540100" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/easy-money/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 71. </span> <a href="/movie/easy-money" class="title"><h3>Easy Money</h3></a> <div class="clamp-details"> <span>July 11, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Easy Money is a Swedish crime thriller based on the international best-selling novel Snabba Cash by Jens Lapidus. Lower-class business student JW falls in love with a sexy heiress while living a double life mingling with Stockholm’s wealthy elite. To keep up the façade of his lifestyle, he’s lured into a world of crime. Jorge is a petty fugitive on the run from both the police and Serbian mafia. He hopes that brokering a massive cocaine deal will allow him to escape for good. Mafia enforcer Mrado is on the hunt for Jorge, but his efforts are complicated when he’s unexpectedly saddled with caring for his young daughter. As JW’s journey ventures deeper into the dark world of organized crime, the fate of all three men becomes entangled and ends with a dramatic struggle for life and death. (The Weinstein Company) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/easy-money/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/easy-money/user-reviews"> <div class="metascore_w user large movie positive">6.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540100" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/sleepless-night"><img src="https://static.metacritic.com/images/products/movies/6/737c08d63d6e3f0aea356d726e891c31-98.jpg" alt="Sleepless Night" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540286" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/sleepless-night/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 72. </span> <a href="/movie/sleepless-night" class="title"><h3>Sleepless Night</h3></a> <div class="clamp-details"> <span>May 11, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Sleepless Night tells the story of Vincent, a respected and dedicated police officer, or so it seems. After stealing a massive bag of cocaine from drug dealers that work for Marciano, a powerful mob boss/nightclub owner, Vincent quickly finds himself trapped in a situation that no parent would envy- his son has been kidnapped with the promise of being executed if he doesn’t immediately deliver the bag back to its rightful owner. As Vincent heads to the nightclub in the outskirts of Paris to trade the drugs for his son, he soon gets caught in an intense, claustrophobic cat-and-mouse game that quickly spirals into madness as the tables are constantly turned multiple times throughout the evening. The night to come might not only be the longest but also the last one of his life... and his young son’s as well. [Tribeca Film] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/sleepless-night/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/sleepless-night/user-reviews"> <div class="metascore_w user large movie positive">6.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540286" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/ballplayer-pelotero"><img src="https://static.metacritic.com/images/products/movies/8/4cc4b3c4e0324c1fad39686d06839ac7-98.jpg" alt="Ballplayer: Pelotero" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540438" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/ballplayer-pelotero/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 73. </span> <a href="/movie/ballplayer-pelotero" class="title"><h3>Ballplayer: Pelotero</h3></a> <div class="clamp-details"> <span>July 13, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> This compelling documentary narrated by John Leguizamo (Moulin Rouge!, Ice Age, Carlito\'s Way) is a gritty and rare look inside the recruitment of top talent baseball players from the Dominican Republic. Miguel Angel Sanó and Jean Carlos Batista are among 100,000 teenagers vying for a handful of coveted contracts with baseball teams. As they turn 16 years old and become eligible to sign, each must navigate the fiercely competitive and frequently corrupt system if they are to lift their families out of poverty and achieve their dream: to one day play in the Big Leagues. Filmmakers Ross Finkel, Trevor Martin, and Jon Paley take you inside this never before seen world for an up close and personal look at the cost of the American dream. (Strand Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/ballplayer-pelotero/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/ballplayer-pelotero/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540438" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/bernie"><img src="https://static.metacritic.com/images/products/movies/7/f3871c9e52f76325e0a49ea5c9488b47-98.jpg" alt="Bernie" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539087" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/bernie/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 74. </span> <a href="/movie/bernie" class="title"><h3>Bernie</h3></a> <div class="clamp-details"> <span>April 27, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> In the tiny, rural town of Carthage, TX, assistant funeral director Bernie Tiede was one of the town’s most beloved residents. He taught Sunday school, sang in the church choir and was always willing to lend a helping hand. Everyone loved and appreciated Bernie, so it came as no surprise when he befriended Marjorie Nugent, an affluent widow who was as well known for her sour attitude as her fortune. Bernie frequently traveled with Marjorie and even managed her banking affairs. Marjorie quickly became fully dependant on Bernie and his generosity and Bernie struggled to meet her increasing demands. Bernie continued to handle her affairs, and the townspeople went months without seeing Marjorie. The people of Carthage were shocked when it was reported that Marjorie Nugent had been dead for some time, and Bernie Tiede was being charged with the murder. (Millennium Entertainment) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/bernie/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/bernie/user-reviews"> <div class="metascore_w user large movie positive">7.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539087" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/chasing-ice"><img src="https://static.metacritic.com/images/products/movies/4/b4e934f85015fca5531b8677d9e4ede6-98.jpg" alt="Chasing Ice" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540544" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/chasing-ice/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 75. </span> <a href="/movie/chasing-ice" class="title"><h3>Chasing Ice</h3></a> <div class="clamp-details"> <span>November 9, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> In the spring of 2005, acclaimed environmental photographer James Balog headed to the Arctic on a tricky assignment for National Geographic: to capture images to help tell the story of the Earth’s changing climate. Even with a scientific upbringing, Balog had been a skeptic about climate change. But that first trip north opened his eyes to the biggest story in human history and sparked a challenge within him that would put his career and his very well-being at risk. Chasing Ice is the story of one man’s mission to change the tide of history by gathering undeniable evidence of our changing planet. (National Geographic Channel) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/chasing-ice/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/chasing-ice/user-reviews"> <div class="metascore_w user large movie positive">8.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540544" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-invisible-war"><img src="https://static.metacritic.com/images/products/movies/2/ba61874085ed82a7b0066945f9c35b95-98.jpg" alt="The Invisible War" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540352" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-invisible-war/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 76. </span> <a href="/movie/the-invisible-war" class="title"><h3>The Invisible War</h3></a> <div class="clamp-details"> <span>June 22, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> An investigative and powerfully emotional documentary about the epidemic of rape of soldiers within the US military, the institutions that perpetuate and cover up its existence, and its profound personal and social consequences. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-invisible-war/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-invisible-war/user-reviews"> <div class="metascore_w user large movie positive">8.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540352" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/middle-of-nowhere"><img src="https://static.metacritic.com/images/products/movies/4/75b09ff483674e7c310dd997f25f3bcf-98.jpg" alt="Middle of Nowhere" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540164" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/middle-of-nowhere/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <span class="title numbered"> 77. </span> <a href="/movie/middle-of-nowhere" class="title"><h3>Middle of Nowhere</h3></a> <div class="clamp-details"> <span>October 12, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Middle of Nowhere follows Ruby, a bright medical student who sets aside her dreams and suspends her career when her husband is incarcerated. As the committed couple stares into the hollow end of an eight-year prison sentence, Ruby must learn to live another life, one marked by shame and separation. But through a chance encounter and a stunning betrayal that shakes her to her core, this steadfast wife is soon propelled in new and often shocking directions of self-discovery - caught between two worlds and two men in the search for herself. [AFFRM] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/middle-of-nowhere/critic-reviews"> <div class="metascore_w large movie positive">75</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/middle-of-nowhere/user-reviews"> <div class="metascore_w user large movie positive">6.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540164" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/marina-abramovic-the-artist-is-present"><img src="https://static.metacritic.com/images/products/movies/9/5ea7417a3de2841215f8bad6fa2c7c0b-98.jpg" alt="Marina Abramovic: The Artist Is Present" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540349" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/marina-abramovic-the-artist-is-present/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 78. </span> <a href="/movie/marina-abramovic-the-artist-is-present" class="title"><h3>Marina Abramovic: The Artist Is Present</h3></a> <div class="clamp-details"> <span>June 13, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Seductive, fearless, and outrageous, Marina Abramovic has been redefining what art is for nearly forty years. Using her own body as a vehicle, pushing herself beyond her physical and mental limits––and at times risking her life in the process––she creates performances that challenge, shock, and move us. Through her and with her, boundaries are crossed, consciousness expanded, and art as we know it is reborn. She is, quite simply, one of the most compelling artists of our time. (Music Box Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/marina-abramovic-the-artist-is-present/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/marina-abramovic-the-artist-is-present/user-reviews"> <div class="metascore_w user large movie positive">7.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540349" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-rabbis-cat"><img src="https://static.metacritic.com/images/products/movies/0/9e0deb91563051d5f6105cd4b52371e4-98.jpg" alt="The Rabbi\'s Cat" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540820" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-rabbis-cat/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 79. </span> <a href="/movie/the-rabbis-cat" class="title"><h3>The Rabbi\'s Cat</h3></a> <div class="clamp-details"> <span>December 7, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Set in Algeria in the 1920s, this animated feature spotlights a rabbi\'s cat who learns how to speak after swallowing the family parrot expresses his desire to convert to Judaism. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-rabbis-cat/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-rabbis-cat/user-reviews"> <div class="metascore_w user large movie positive">7.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540820" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/frankenweenie"><img src="https://static.metacritic.com/images/products/movies/1/c07db3109febe735955039b5558e65f7-98.jpg" alt="Frankenweenie" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539971" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/frankenweenie/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 80. </span> <a href="/movie/frankenweenie" class="title"><h3>Frankenweenie</h3></a> <div class="clamp-details"> <span>October 5, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> After unexpectedly losing his beloved dog Sparky, young Victor harnesses the power of science to bring his best friend back to life—with just a few minor adjustments. He tries to hide his home-sewn creation, but when Sparky gets out, Victor\'s fellow students, teachers and the entire town all learn that getting a new "leash on life" can be monstrous. (Walt Disney Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/frankenweenie/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/frankenweenie/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539971" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/polisse"><img src="https://static.metacritic.com/images/products/movies/2/10f5452685653f2e7806e0e09a45f68f-98.jpg" alt="Polisse" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540162" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/polisse/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 81. </span> <a href="/movie/polisse" class="title"><h3>Polisse</h3></a> <div class="clamp-details"> <span>May 18, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> The daily grind for the police officers of the Child Protection Unit - taking in child molesters, busting underage pickpockets and chewing over relationship issues at lunch; interrogating abusive parents, taking statements from children, confronting the excesses of teen sexuality, enjoying solidarity with colleagues and laughing uncontrollably at the most unthinkable moments. Knowing the worst exists and living with it. How do these police officer balance their private lives and the reality they confront every working day? (Sundance Selects) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/polisse/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/polisse/user-reviews"> <div class="metascore_w user large movie positive">7.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540162" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-bully-project"><img src="https://static.metacritic.com/images/products/movies/7/5349f369a496983b944bc35804ae23e4-98.jpg" alt="Bully " /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539527" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-bully-project/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 82. </span> <a href="/movie/the-bully-project" class="title"><h3>Bully </h3></a> <div class="clamp-details"> <span>March 30, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Bully follows five kids and families over the course of a school year. Stories include two families who have lost children to suicide and a mother awaiting the fate of her 14-year-old daughter who has been incarcerated after bringing a gun on her school bus. With an intimate glimpse into homes, classrooms, cafeterias and principals’ offices, the film offers insight into the often cruel world of the lives of bullied children. As teachers, administrators, kids and parents struggle to find answers, Bully examines the dire consequences of bullying through the testimony of strong and courageous youth. Through the power of their stories, the film aims to be a catalyst for change in the way we deal with bullying as parents, teachers, children and society as a whole. (The Weinstein Company) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-bully-project/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-bully-project/user-reviews"> <div class="metascore_w user large movie positive">7.3</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539527" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/in-darkness"><img src="https://static.metacritic.com/images/products/movies/1/185ba0d9e2a50790846af062ba668a61-98.jpg" alt="In Darkness" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539871" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/in-darkness/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 83. </span> <a href="/movie/in-darkness" class="title"><h3>In Darkness</h3></a> <div class="clamp-details"> <span>February 10, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> In Darkness is based on a true story. Leopold Socha, a sewer worker and petty thief in Lvov, a Nazi occupied city in Poland, one day encounters a group of Jews trying to escape the liquidation of the ghetto. He hides them for money in the labyrinth of the town’s sewers beneath the bustling activity of the city above. What starts out as a straightforward and cynical business arrangement turns into something very unexpected, the unlikely alliance between Socha and the Jews as the enterprise seeps deeper into Socha’s conscience. The film is also an extraordinary story of survival as these men, women and children all try to outwit certain death during 14 months of ever increasing and intense danger. [Sony Pictures Classics] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/in-darkness/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/in-darkness/user-reviews"> <div class="metascore_w user large movie positive">7.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539871" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/neil-young-journeys"><img src="https://static.metacritic.com/images/products/movies/3/75e1508a309d7dc895a1e1b87b64a3be-98.jpg" alt="Neil Young Journeys" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540423" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/neil-young-journeys/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 84. </span> <a href="/movie/neil-young-journeys" class="title"><h3>Neil Young Journeys</h3></a> <div class="clamp-details"> <span>June 29, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> This past May, Neil Young brought his solo tour to Toronto\'s Massey Hall, an iconic venue in the city of his birth. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/neil-young-journeys/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/neil-young-journeys/user-reviews"> <div class="metascore_w user large movie mixed">5.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540423" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/starlet"><img src="https://static.metacritic.com/images/products/movies/9/3f5510474b4800f033e539ff2681c562-98.jpg" alt="Starlet" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540169" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/starlet/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <span class="title numbered"> 85. </span> <a href="/movie/starlet" class="title"><h3>Starlet</h3></a> <div class="clamp-details"> <span>November 9, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Starlet explores the unlikely friendship between 21 year-old aspiring actress Jane and elderly widow Sadie after their worlds collide in California\'s San Fernando Valley. Jane spends her time getting high with her dysfunctional roommates and taking care of her Chihuahua Starlet, while Sadie passes her days alone, tending to her garden. After a confrontation at a yard sale, Jane finds something unexpected in a relic from Sadie\'s past. Her curiosity piqued, she tries to befriend the caustic older woman. Secrets emerge as their relationship grows, revealing that nothing is ever as it seems. [Music Box Films] </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/starlet/critic-reviews"> <div class="metascore_w large movie positive">74</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/starlet/user-reviews"> <div class="metascore_w user large movie positive">6.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540169" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/rust-and-bone"><img src="https://static.metacritic.com/images/products/movies/8/845458c88490218738cecb9923eeaf32-98.jpg" alt="Rust and Bone" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540548" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/rust-and-bone/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 86. </span> <a href="/movie/rust-and-bone" class="title"><h3>Rust and Bone</h3></a> <div class="clamp-details"> <span>November 23, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> Put in charge of his young son, Ali leaves Belgium for Antibes to live with his sister and her husband as a family. Ali\'s bond with Stephanie, a killer whale trainer, grows deeper after Stephanie suffers a horrible accident. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/rust-and-bone/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/rust-and-bone/user-reviews"> <div class="metascore_w user large movie positive">7.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540548" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/arbitrage"><img src="https://static.metacritic.com/images/products/movies/3/2e9a6e2210e3d30e0cd4746e111439f4-98.jpg" alt="Arbitrage" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540403" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/arbitrage/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 87. </span> <a href="/movie/arbitrage" class="title"><h3>Arbitrage</h3></a> <div class="clamp-details"> <span>September 14, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> When we first meet New York hedge-fund magnate Robert Miller on the eve of his 60th birthday, he appears the very portrait of success in American business and family life. But behind the gilded walls of his mansion, Miller is in over his head, desperately trying to complete the sale of his trading empire to a major bank before the depths of his fraud are revealed. Struggling to conceal his duplicity from loyal wife Ellen and brilliant daughter and heir-apparent Brooke, Miller\'s also balancing an affair with French art-dealer Julie Cote. Just as he\'s about to unload his troubled empire, an unexpected bloody error forces him to juggle family, business, and crime with the aid of Jimmy Grant, a face from Miller\'s past. One wrong turn ignites the suspicions of NYPD Detective Michael Bryer, who will stop at nothing in his pursuits. Running on borrowed time, Miller is forced to confront the limits of even his own moral duplicity. Will he make it out before the bubble bursts? (Roadside Attractions) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/arbitrage/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/arbitrage/user-reviews"> <div class="metascore_w user large movie positive">6.9</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540403" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-raid"><img src="https://static.metacritic.com/images/products/movies/5/6c0d35447774b8d6bbcc0f8da0d58546-98.jpg" alt="The Raid: Redemption" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539745" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-raid/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 88. </span> <a href="/movie/the-raid" class="title"><h3>The Raid: Redemption</h3></a> <div class="clamp-details"> <span>March 23, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> A Swat team arrives at a rundown apartment block with a mission to remove its owner, a notorious drug lord named Tama. The building has never been raided before, never been touched by police. Seen as a no go zone it has since become a sanctuary to killers, gangs, rapists and thieves seeking accommodation in the one place they know they cannot be touched. Making their move in the break of dawn the swat team work their way up the building under cover of silence. But when a chance encounter with a spotter blows their cover and with news of their assault traveling to Tama in his penthouse suite the building is locked down with all lights out and all exits blocked. Stranded on the 6th floor the swat team must fight their way through every floor and every room not just to complete their mission but to survive. (Merantau Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-raid/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-raid/user-reviews"> <div class="metascore_w user large movie positive">8.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539745" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-impossible"><img src="https://static.metacritic.com/images/products/movies/3/7dafbb488ec04a4a46172e87e66a5418-98.jpg" alt="The Impossible" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540463" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-impossible/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 89. </span> <a href="/movie/the-impossible" class="title"><h3>The Impossible</h3></a> <div class="clamp-details"> <span>December 21, 2012</span> <span class="cert_rating PG-13"> | PG-13</span> </div> <div class="summary"> An account of a family caught, with tens of thousands of strangers, in the mayhem of one of the worst natural catastrophes of our time. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-impossible/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-impossible/user-reviews"> <div class="metascore_w user large movie positive">7.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540463" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-pirates!-band-of-misfits"><img src="https://static.metacritic.com/images/products/movies/1/ad9dee359c11b70ce102c35dfc84fe94-98.jpg" alt="The Pirates! Band of Misfits" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539481" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-pirates!-band-of-misfits/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 90. </span> <a href="/movie/the-pirates!-band-of-misfits" class="title"><h3>The Pirates! Band of Misfits</h3></a> <div class="clamp-details"> <span>April 27, 2012</span> <span class="cert_rating PG"> | PG</span> </div> <div class="summary"> In The Pirates! Band of Misfits, the luxuriantly bearded Pirate Captain – a boundlessly enthusiastic, if somewhat less-than-successful, terror of the High Seas. With a rag-tag crew at his side, and seemingly blind to the impossible odds stacked against him, the Captain has one dream: to beat his bitter rivals Black Bellamy and Cutlass Liz to the much coveted Pirate Of The Year Award. It’s a quest that takes our heroes from the shores of exotic Blood Island to the foggy streets of Victorian London. Along the way they battle a diabolical queen and team up with a haplessly smitten young scientist, but never lose sight of what a pirate loves best: adventure! (Columbia Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-pirates!-band-of-misfits/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-pirates!-band-of-misfits/user-reviews"> <div class="metascore_w user large movie positive">7.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539481" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/the-forgiveness-of-blood"><img src="https://static.metacritic.com/images/products/movies/0/67f4ebbd52ba044842f4673682a9e428-98.jpg" alt="The Forgiveness of Blood" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539880" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/the-forgiveness-of-blood/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 91. </span> <a href="/movie/the-forgiveness-of-blood" class="title"><h3>The Forgiveness of Blood</h3></a> <div class="clamp-details"> <span>February 24, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Nik is a carefree teenager in a small town with a crush on the school beauty and ambitions to start his own internet café. His world is suddenly up-ended when his father and uncle become entangled in a land dispute that leaves a fellow villager murdered. According to a centuries-old code of law, this entitles the dead man\'s family to take the life of a male from Nik\'s family as retribution. His uncle in jail and his father in hiding, Nik is the prime target and confined to the home while his younger sister Rudina is forced to leave school and take over their father\'s business. (Sundance Selects) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/the-forgiveness-of-blood/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/the-forgiveness-of-blood/user-reviews"> <div class="metascore_w user large movie positive">6.5</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539880" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/indie-game-the-movie"><img src="https://static.metacritic.com/images/products/movies/1/1c8571c4193c8b12d09e3c700abfa701-98.jpg" alt="Indie Game: The Movie" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540311" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/indie-game-the-movie/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 92. </span> <a href="/movie/indie-game-the-movie" class="title"><h3>Indie Game: The Movie</h3></a> <div class="clamp-details"> <span>May 18, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> After two years of painstaking work, designer Edmund McMillen and programmer Tommy Refenes await the release of their first major game for Xbox, Super Meat Boy—the adventures of a skinless boy in search of his girlfriend, who is made of bandages. At PAX, a major video-game expo, developer Phil Fish unveils his highly anticipated, four-years-in-the-making FEZ. Jonathan Blow considers beginning a new game after creating Braid, one of the highest-rated games of all time. First-time filmmaking duo Lisanne Pajot and James Swirsky capture the emotional journey of these meticulously obsessive artists who devote their lives to their interactive art. Four developers, three games, and one ultimate goal— to express oneself through a video game. (BlinkWorks Media) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/indie-game-the-movie/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/indie-game-the-movie/user-reviews"> <div class="metascore_w user large movie positive">8.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540311" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/declaration-of-war"><img src="https://static.metacritic.com/images/products/movies/8/b68dc755b70766844d8d5e5d85634ccd-98.jpg" alt="Declaration of War" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539878" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/declaration-of-war/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 93. </span> <a href="/movie/declaration-of-war" class="title"><h3>Declaration of War</h3></a> <div class="clamp-details"> <span>January 27, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Roméo and Juliette are two young actors. They fall in love at first sight, move in together and make a baby. A love story and the founding of a home like millions of others. Except that their little boy, Adam, behaves abnormally. The young parents try hard to persuade themselves that everything is okay but, with the passing of time, they cannot delude themselves anymore; their son has problems. Their fears are unfortunately confirmed: Adam suffers from a malignant brain tumor. From then on, they declare war. A war against illness. A war against death. A war against despair. (Wild Bunch Distribution) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/declaration-of-war/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/declaration-of-war/user-reviews"> <div class="metascore_w user large movie mixed">4.0</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539878" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/whores-glory"><img src="https://static.metacritic.com/images/products/movies/6/4cf6ff6b2621fb186ca38a8d7b4d428b-98.jpg" alt="Whores\' Glory" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540136" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/whores-glory/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 94. </span> <a href="/movie/whores-glory" class="title"><h3>Whores\' Glory</h3></a> <div class="clamp-details"> <span>April 20, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Whores\' Glory is an explicit and unflinching exposé of global prostitution. In Bangkok, Thailand, women punch a clock and wait for clients in a brightly lit glass box; in the red-light district of Faridpur, Bangladesh, a madam haggles over the price of a teenage girl; and in the border town of Reynosa, Mexico, crack-addicted women pray to a deity named Lady Death. (Kino Lorber) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/whores-glory/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/whores-glory/user-reviews"> <div class="metascore_w user large movie positive">8.2</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540136" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/planet-of-snail"><img src="https://static.metacritic.com/images/products/movies/0/4cc90fc611b29dab80b3e77e20b8cf30-98.jpg" alt="Planet of Snail" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540470" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/planet-of-snail/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 95. </span> <a href="/movie/planet-of-snail" class="title"><h3>Planet of Snail</h3></a> <div class="clamp-details"> <span>July 25, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Young-Chan is an accomplished poet who can no longer hear or see. He communicates with his wife Soon-Ho through finger braille, a unique form of communication where words are tapped on each other\'s hands. They rely on one another completely; even simple domestic tasks require complex collaboration and everyday moments that most of us hardly notice become tender shared experiences. (Cinema Guild) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/planet-of-snail/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/planet-of-snail/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540470" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/mea-maxima-culpa-silence-in-the-house-of-god"><img src="https://static.metacritic.com/images/products/movies/5/998db4e63512632520e65ff42800ac70-98.jpg" alt="Mea Maxima Culpa: Silence in the House of God" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540765" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/mea-maxima-culpa-silence-in-the-house-of-god/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 96. </span> <a href="/movie/mea-maxima-culpa-silence-in-the-house-of-god" class="title"><h3>Mea Maxima Culpa: Silence in the House of God</h3></a> <div class="clamp-details"> <span>November 16, 2012</span> </div> <div class="summary"> Alex Gibney examines the charged issue of pedophilia in the Catholic Church, following a trail from the first known protest against clerical sexual abuse in the United States and all the way to the Vatican. </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/mea-maxima-culpa-silence-in-the-house-of-god/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/mea-maxima-culpa-silence-in-the-house-of-god/user-reviews"> <div class="metascore_w user large movie positive">7.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540765" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/a-royal-affair"><img src="https://static.metacritic.com/images/products/movies/7/af04450ab32cd7857dbdd36a668cc420-98.jpg" alt="A Royal Affair" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540547" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/a-royal-affair/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 97. </span> <a href="/movie/a-royal-affair" class="title"><h3>A Royal Affair</h3></a> <div class="clamp-details"> <span>November 9, 2012</span> <span class="cert_rating R"> | R</span> </div> <div class="summary"> A Royal Affair is the true story of an ordinary man who wins the queen\'s heart and starts a revolution. Centering on the intriguing love triangle between the ever more insane Danish King Christian VII (Mikkel Boe Følsgaard), the royal physician who is a man of enlightenment and idealism Struensee and the young but strong Queen Caroline Mathilda, A Royal Affair is the gripping tale of brave idealists who risk everything in their pursuit of freedom for their people… Above all it is the story of a passionate and forbidden romance that changed an entire nation. (Magnolia Pictures) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/a-royal-affair/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/a-royal-affair/user-reviews"> <div class="metascore_w user large movie positive">7.7</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540547" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/attenberg"><img src="https://static.metacritic.com/images/products/movies/5/c53a85d26eea69f03b15480f3b3079bf-98.jpg" alt="Attenberg" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539245" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/attenberg/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 98. </span> <a href="/movie/attenberg" class="title"><h3>Attenberg</h3></a> <div class="clamp-details"> <span>March 9, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> Part of the new wave of Greek cinema, Attenberg is an offbeat coming-of-age film. 23-year-old Marina is living in a small, factory town by the sea where her once-visionary architect father, has returned to die. Finding the human species foreign, she keeps her distance, choosing to observe mankind through Sir David Attenborough’s mammal documentaries and the songs of Suicide. While preparing for her father’s impending death, Marina discovers her own sexuality through lessons from her only friend, Bella, and a visiting engineer. Equal parts abstract theater and melodrama, Attenberg sincerely and humorously navigates the defining moments in life. (Strand Releasing) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/attenberg/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/attenberg/user-reviews"> <div class="metascore_w user large movie positive">6.6</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539245" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/knuckleball!"><img src="https://static.metacritic.com/images/products/movies/8/a5692921f45f9a12524da4db0094b0de-98.jpg" alt="Knuckleball!" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="540608" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/knuckleball!/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 99. </span> <a href="/movie/knuckleball!" class="title"><h3>Knuckleball!</h3></a> <div class="clamp-details"> <span>September 21, 2012</span> <span class="cert_rating Not Rated"> | Not Rated</span> </div> <div class="summary"> The film follows the Major League’s only knuckleballers in 2011, Tim Wakefield and R.A. Dickey, as they pursue a mercurial art form in a world that values speed, accuracy, and numerical accountability. (FilmBuff) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/knuckleball!/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/knuckleball!/user-reviews"> <div class="metascore_w user large movie tbd">tbd</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="540608" class="clamp-list-expand-label"></label> </td> </tr> <tr class="spacer"></tr> <tr> <td class="clamp-image-wrap"> <a href="/movie/sing-your-song"><img src="https://static.metacritic.com/images/products/movies/8/623eb14329d8b2bfa7b39b2827032b93-98.jpg" alt="Sing Your Song" /></a> </td> <td class="clamp-summary-wrap"> <input type="checkbox" id="539978" class="clamp-summary-expand" /> <div class="clamp-score-wrap"> <a class="metascore_anchor" href="/movie/sing-your-song/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <span class="title numbered"> 100. </span> <a href="/movie/sing-your-song" class="title"><h3>Sing Your Song</h3></a> <div class="clamp-details"> <span>January 13, 2012</span> </div> <div class="summary"> Groundbreaking singer, actor and activist Harry Belafonte rose to fame in the U.S. in spite of segregation, and crossed over into mainstream America on his way to international stardom. His hit 1956 album "Calypso" made him the first artist in industry history to sell over a million LPs, and spawned the smash single "Banana Boat (Day-O)." Though recognized with Grammy, Tony and Emmy awards, Belafonte was blacklisted, harassed by the House Un-American Activities Committee (HUAC), spied on by the CIA and FBI, and threatened by the Klan, state troopers and Las Vegas mafia bosses. Distilled from more than 700 hours of interviews, eyewitness accounts, movie clips, excerpts from FBI files, and news and rare archival film footage and stills, some of which has never been seen before, Sing Your Song reveals Belafonte as a tenacious hands-on activist who worked intimately with Dr. Martin Luther King, Jr., mobilized celebrities for social justice, participated in the struggle against apartheid in South Africa and took action to counter gang violence, prisons and the incarceration of youth. (HBO Films) </div> <div class="browse-score-clamp"> <div class="clamp-metascore"> <span class="title">Metascore:</span> <a class="metascore_anchor" href="/movie/sing-your-song/critic-reviews"> <div class="metascore_w large movie positive">73</div> </a> </div> <div class="clamp-userscore"> <span class="title">User Score:</span> <a class="metascore_anchor" href="/movie/sing-your-song/user-reviews"> <div class="metascore_w user large movie mixed">5.8</div> </a> </div> </div> <i class="fa fa-caret-up" aria-hidden="true"></i> <i class="fa fa-caret-down" aria-hidden="true"></i> <label for="539978" class="clamp-list-expand-label"></label> </td> </tr> </table> </div> <div class="marg_top1"> <div class="page_nav"> <div class="page_nav_wrap"> <div class="page_flipper"> <span class="flipper prev"><span class="action"><span class="text">prev</span></span></span> <span class="flipper next"><a class="action" rel="next" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=1"><span class="text">next</span></a></span> </div> <div class="pages"> <div class="label">Page:</div> <ul class="pages"><li class="page first_page active_page"><span class="page_num">1</span></li><li class="page"><a class="page_num" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=1">2</a></li><li class="page"><a class="page_num" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=2">3</a></li><li class="page"><a class="page_num" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=3">4</a></li><li class="page"><a class="page_num" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=4">5</a></li><li class="page last_page"><a class="page_num" href="/browse/movies/score/metascore/year/filtered?year_selected=2012&sort=desc&view=detailed&page=5">6</a></li></ul> </div> </div> </div> </div> <p class="filter_disclaimer">Titles with fewer than 7 critic reviews are excluded.</p> </div> </div> <div class="side_col"> <div id="mpu_plus_top" class="ad_unit marg_btm2"> <script type="text/javascript"> pushToDisplay(\'mpu_plus_top\', null, \'top\', false, null, false); </script> </div> <div id="mpu_bottom" class="ad_unit marg_btm2"> <script type="text/javascript"> pushToDisplay(\'mpu_bottom\', null, \'bottom\', false, null, false); </script> </div> <script> $(document).ready(function(){ MetaC.SliderQWs.addQWs($(\'.product_current_releases .score_title_list_wrapper\'), $(\'#newReleases_Widget_0\')); }); </script> </div> <div class="clr"></div> </div> </div> </div> <div id="leader_bottom" class="ad_unit"> <script type="text/javascript"> pushToDisplay(\'leader_bottom\', null, \'bottom\', false, null, false); </script> </div> </div> </div> <footer id="bottom_footer"> <div id="providers"> <a href="https://www.allmusic.com" target="_blank">Music title data, credits, and images provided by <span>AMG</span></a> <span class="link_divider">|</span><a href="https://www.imdb.com" target="_blank">Movie title data, credits, and poster art provided by <span>IMDb</span></a> <span class="link_divider">|</span><a href="https://www.internetvideoarchive.com" target="_blank">Video and Images provided by <span>IVA</span></a> <div id="trademark"> We Deal With Criticism<sup>&reg;</sup>&nbsp; </div> </div> <div class="site_links upper"> <a href="https://www.metacritic.com/movie"> <span> Movies </span> </a> <a href="https://www.metacritic.com/tv"> <span> TV </span> </a> <a href="https://www.metacritic.com/music"> <span> Music </span> </a> <a href="https://www.metacritic.com/game/playstation-4"> <span> PS4 </span> </a> <a href="https://www.metacritic.com/game/xbox-one"> <span> XboxOne </span> </a> <a href="https://www.metacritic.com/game/switch"> <span> Switch </span> </a> <a href="https://www.metacritic.com/game/pc"> <span> PC </span> </a> <a href="https://www.metacritic.com/game/wii-u"> <span> WiiU </span> </a> <a href="https://www.metacritic.com/game/3ds"> <span> 3DS </span> </a> <a href="https://www.metacritic.com/game/playstation-vita"> <span> PS Vita </span> </a> <a href="https://www.metacritic.com/game/ios"> <span> iOS </span> </a> <a href="https://www.metacritic.com/feature"> <span> Reports </span> </a> <a href="https://www.metacritic.com/rss"> <span> RSS Feeds </span> </a> </div> <div class="pad_top1 pad_btm1"> <div class="social_icons"> <a href="https://www.facebook.com/Metacritic" target="_blank" rel="noopener" class="social_round"><i class="fa fa-facebook"></i></a> <a href="https://www.instagram.com/metacritic/" target="_blank" rel="noopener"><i class="fa fa-instagram"></i></a> <a href="https://twitter.com/metacritic" target="_blank" rel="noopener" class="social_round"><i class="fa fa-twitter"></i></a> </div> </div> <div class="about_cbs"> <div class="footer_about_links"> <a class="first" href="https://careers.redventures.com/" target="_blank">Careers</a> <span class="link_divider">|</span><a href="https://www.metacritic.com/faq">FAQ</a> <span class="link_divider">|</span><a href="https://www.metacritic.com/about-metacritic">About Metacritic</a> <span class="link_divider">|</span><a href="https://metacritic.zendesk.com/hc/en-us">Help & Support</a> <span class="link_divider">|</span><a href="https://www.metacritic.com/contact-us">Contact</a> </div> <div class="footer_about_links"> <span class="link_divider">|</span><span><a href="https://privacyportal.onetrust.com/webform/79ba7c84-ebc2-4740-8d11-bf1cc4501e59/ae88e03f-2b16-4276-9980-27124ba4b2c1" target="_blank">Do Not Sell My Information</a></span> <span class="link_divider">|</span><span id="footer_privacy"><a href="https://redventures.com/privacy-policy.html" target="_blank">Privacy Policy</a></span> <span class="link_divider">|</span><span id="footer_cookie"><a class="ot-sdk-show-settings">Cookie Settings</a></span> <span class="link_divider">|</span><span id="footer_terms"><a href="https://redventures.com/CMG-terms-of-use.html" target="_blank">Terms of Use</a></span> <span class="link_divider">|</span><span id="footer_attribution"><a href="https://www.cnet.com/" target="_blank">CNET</a></span> </div> <div id="footer_rights" class="pad_btm2"> &copy; 2022 METACRITIC, A RED VENTURES COMPANY. ALL RIGHTS RESERVED. </div> </div> </footer> </div> <script type="text/javascript"> if (self != top) { top.location = self.location; } </script> <script language="JavaScript" type="text/javascript"> utag_data.session = MetaC.adSession() + \':\' + MetaC.adSubses(); utag_data.bkPath = "/22309610186/aw-metacritic/movies"; if ( window.eventAmazonBuyView ) { utag_data.eventAmazonBuyView = 1; } if ( window.eventAmazonPivView ) { utag_data.eventAmazonPivView = 1; } </script> <script type="text/javascript" src="https://urs.metacritic.com/sdk/urs.js"></script> <script type="text/javascript"> if ( window.MetaC && MetaC.URS ) { MetaC.URS.config(227, false); } </script> <script type="text/javascript"> window.cbsoptanon.onScriptsReady(function(cmp) { // // fire off tealium if the banner is not present after // onetrust has loaded. (cbsoptanon has a promise polyfill) // cmp.ot.awaitInitialConsent(function() { (function(a,b,c,d){ a=\'//tags.tiqcdn.com/utag/redventures/metacriticsite/prod/utag.js\'; b=document;c=\'script\';d=b.createElement(c);d.src=a;d.type=\'text/java\'+c;d.async=true; a=b.getElementsByTagName(c)[0];a.parentNode.insertBefore(d,a); })(); }); }); </script> <script type="text/javascript"> $(document).ready(function(){ setTimeout(function(){ MetaC.checkOmniEvents(); }, 300); }); </script> <script type="text/javascript"> dwVars = {"siteId":"50","onId":"12456","ptId":"6054"}; if (typeof DW == "object"){ DW.pageParams = dwVars; DW.regSilo = \'12\'; DW.clear(); } </script> <script> var cbsiApexGlobal = { \'SITE\': dwVars.siteId, \'NODE\': dwVars.onId, \'PTYPE\':dwVars.ptId }; </script> <script> var _gaq = _gaq || []; _gaq.push([\'_setAccount\', \'UA-22577913-5\']); _gaq.push([\'_setCustomVar\',1,\'PageType\',dwVars.ptId,3]); _gaq.push([\'_trackPageview\']); _gaq.push([\'_trackPageLoadTime\']); _gaq.push([\'_setAllowLinker\', true]); _gaq.push([\'nT._setAccount\', \'UA-27653683-1\']); _gaq.push([\'nT._setAllowLinker\', true]); _gaq.push([\'nT._setSampleRate\', \'1\']); _gaq.push([\'nT._trackPageview\']); </script> <div id="fb-root"></div> <script> gdprConsentCallback(\'facebook\', function () { window.fbAsyncInit = function() { FB.init({ appId : \'123113677890173\', version : \'v2.6\', channelUrl : \'https://www.metacritic.com/static/fbchannel.html\', status : true, xfbml : true, cookie : true }); MetaC.FB.initialized(); }; (function(d, s, id){ var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) {return;} js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_US/sdk.js"; fjs.parentNode.insertBefore(js, fjs); }(document, \'script\', \'facebook-jssdk\')); }, {}, \'social\'); </script> <script> gdprConsentCallback(\'twitter\', function () { window.twttr = (function (d,s,id) { var t, js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js=d.createElement(s); js.id=id; js.src="https://platform.twitter.com/widgets.js"; fjs.parentNode.insertBefore(js, fjs); return window.twttr || (t = { _e: [], ready: function(f){ t._e.push(f) } }); }(document, "script", "twitter-wjs")); twttr.ready(function (twttr) { MetaC.Twitter.initialized(); }); }, {}, \'social\'); </script> <script> BidBarrel.queue.push(function(resolve){ let __pv = MetaC.handlePageViewCount(); BidBarrel.initialize({ dfpPath: "/22309610186/aw-metacritic/movies", targeting: { auto: true, cookie: { consolidate: true } }, pageTargeting: { vguid: MC_UUID, ptype: utag_data.pageType, ftag: "", ttag: "", env: window.MC_ISQA ? "stage" : "prod" } }) resolve(); BidBarrel.setTargeting({"vguid": MC_UUID}); BidBarrel.setTargeting({"session": MetaC.adSession()}); BidBarrel.setTargeting({"subses": MetaC.adSubses()}); BidBarrel.setTargeting({"env": "prod"}); BidBarrel.setTargeting({"pv": __pv}); BidBarrel.setTargeting({"ptype": "list_page"}); if (MC_USER_LOGGED_IN){ BidBarrel.setTargeting({"user": "registered"}); }else{ BidBarrel.setTargeting({"user": "anon"}); } var parts = window.location.hash.split("="); if ( parts.length > 1 && parts[0] == \'#ftag\' ) { BidBarrel.setTargeting({"ftag": parts[1]}); } BidBarrel.auction(window.metac_ads_pushdisplay); BidBarrel.on(["mobile_nav_ad_omni.identified", "nav_ad_omni.identified"], function(adIdentity, unitConfig, gptRenderedEventObj){ if ( Array.isArray(adIdentity.size) && adIdentity.size.join(\'x\') === "6x6" ) { window.top.document.getElementById(adIdentity.code).style.display="none"; } }); }); </script> <script type=\'text/javascript\'> // immediate function to scope initialization (function(){ var mc_chartbeat_page_types = ["front_door", "section_door", "article", "image_gallery", "product_overview", "product_tvepisode", "product_tvseason", "list_page"]; var mc_utag_page_type = "list_page"; // only load chartbeat based on page_type if (mc_chartbeat_page_types.includes(mc_utag_page_type)){ // If its an image gallery, it gets convaluted, see if you have a firstPhotoIdx, if you do not its a door // We say /pictures/recommend is a image_gallery in utag, when its really a door if (mc_utag_page_type == "image_gallery"){ mc_utag_page_type = "section_door"; } if (window.VideoStrategy){ window[\'_cbv_strategies\'] = window[\'_cbv_strategies\'] || []; window[\'_cbv_strategies\'].push(window.VideoStrategy); } var _sf_async_config = window._sf_async_config = (window._sf_async_config || {}); _sf_async_config.uid = 66142; _sf_async_config.domain = \'metacritic.com\'; _sf_async_config.useCanonical = true; _sf_async_config.flickerControl = false; _sf_async_config.useCanonicalDomain = true; _sf_async_config.sections = mc_utag_page_type; // make sure its an article, image galleries are stories and will have an author, but we only tag // authors name(s) on article pages, on other pages, just pass empty string if (mc_utag_page_type == "article"){ _sf_async_config.authors = \'\'; } else { _sf_async_config.authors = \'\'; } var _cbq = window._cbq = (window._cbq || []); _cbq.push([\'_acct\', \'anon\']); window._sf_endpt = (new Date()).getTime(); } })(); </script> <script type="text/plain" class="optanon-category-2" async src="https://static.chartbeat.com/js/chartbeat_video.js" charset="utf-8"></script> <!-- bottom scripts --> <script typle="text/javascript"> // UVPJS-RV configuration window.uvpjs.Configuration.hostname = \'//www.metacritic.com\'; window.uvpjs.Configuration.path = \'/a/video-player/uvpjs-rv/3.1.8/\'; </script> </body> </html> '; preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0); // Print the entire match result var_dump($matches);

Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for PHP, please visit: http://php.net/manual/en/ref.pcre.php