-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdate.html
3411 lines (2824 loc) · 167 KB
/
date.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<title>Upcoming Album Releases - Metacritic</title>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta name="description" content="View forthcoming album releases by artist on our Upcoming Music Calender at Metacritic.com">
<meta name="viewport" content="width=1024">
<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 name="facebook-domain-verification" content="618k3mbeki8tar7u6wvrum5lxs5cka" />
<meta property="og:title" content="Upcoming Album Releases">
<meta property="og:type" content="website">
<meta property="og:url" content="https://www.metacritic.com/browse/albums/release-date/coming-soon/date">
<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="View forthcoming album releases by artist on our Upcoming Music Calender at Metacritic.com">
<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="stylesheet" href="/css/global.min.1654553316.css" type="text/css">
<link rel="stylesheet" href="/css/filters/base.min.1654553301.css" type="text/css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" href="/MC_favicon.png"/>
<link rel="canonical" href="https://www.metacritic.com/browse/albums/release-date/coming-soon/date" />
<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:"music",
pageType:"list_page",
pageFindingMethod:"External",
userId:"",userState:"not authenticated",userType:"registered",_test:"",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 type="text/javascript" src="/js/global.min.1654553316.js"></script>
<script type="text/javascript">
window.metac_ads_pushdisplay = window.metac_ads_pushdisplay || [];
var googletag = googletag || {};
googletag.cmd = googletag.cmd || [];
</script>
<script type="text/javascript">
MC_USER_LOGGED_IN = false;
</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>
<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>
</head>
<body class="skybox-auto-collapse">
<div id="site_layout">
<div id="masthead">
<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="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/gamescorecard2022fallragnarok-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/pc/cult-of-the-lamb">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/games/2/1f891db0b005adf257fd102e7c0bb4f4-98.jpg" alt="Cult of the Lamb" />
<div class="metascore_w medium game positive">82</div>
</div>
<div class="product-name">
Cult of the Lamb
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/game/playstation-5/rollerdrome">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/games/9/7031798948cc993a2dc3f5b45f401a6a-98.jpg" alt="Rollerdrome" />
<div class="metascore_w medium game positive">80</div>
</div>
<div class="product-name">
Rollerdrome
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/game/playstation-5/soul-hackers-2">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/games/6/49379b0942fabf8a9a3f9795d5583abb-98.jpg" alt="Soul Hackers 2" />
<div class="metascore_w medium game positive">76</div>
</div>
<div class="product-name">
Soul Hackers 2
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/game/playstation-5/madden-nfl-23">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/games/5/ada1682ef13733e10ef9b2f5f2997ca1-98.jpg" alt="Madden NFL 23" />
<div class="metascore_w medium game mixed">70</div>
</div>
<div class="product-name">
Madden NFL 23
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item last">
<a href="/game/playstation-5/saints-row">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/games/3/64ea47b9f0e3a1f1435e4e323f06b449-98.jpg" alt="Saints Row" />
<div class="metascore_w medium game mixed">63</div>
</div>
<div class="product-name">
Saints Row
</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"><< 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"><< 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"><< 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"><< 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"><< 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"><< 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"><< 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">
<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="/feature/august-2022-movie-preview" class="feature-img-container" section="articles">
<img class="primary_feature_img" src="https://static.metacritic.com/images/features/main/moviepreview_2022_08-180.jpg" alt="15 Films to See in August Image" />
</a>
<span class="primary_feature_text" section="articles"><a href="/feature/august-2022-movie-preview">15 Films to See in August</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/top-gun-maverick">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/movies/1/6651dec200d67b76ee79b2c1a68e9e55-98.jpg" alt="Top Gun: Maverick" />
<div class="metascore_w medium movie positive">78</div>
</div>
<div class="product-name">
Top Gun: Maverick
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/movie/funny-pages">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/movies/1/ce5206afcd96e864ab3d3219a097ce65-98.jpg" alt="Funny Pages" />
<div class="metascore_w medium movie positive">75</div>
</div>
<div class="product-name">
Funny Pages
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/movie/dragon-ball-super-super-hero">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/movies/4/2f2e29839baaf168ba653a5d99059e9b-98.jpg" alt="Dragon Ball Super: Super Hero" />
<div class="metascore_w medium movie positive">65</div>
</div>
<div class="product-name">
Dragon Ball Super: Super Hero
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item">
<a href="/movie/892">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/movies/0/b865dd2d6b3967e77d64afb38669a392-98.jpg" alt="Breaking" />
<div class="metascore_w medium movie positive">61</div>
</div>
<div class="product-name">
Breaking
</div>
<div class="mid">
</div>
</a>
</div>
<div class="item last">
<a href="/movie/beast-2022">
<div class="img-wrap">
<img src="https://static.metacritic.com/images/products/movies/5/295e309144d4bc8081dd9b7958846023-98.jpg" alt="Beast" />
<div class="metascore_w medium movie mixed">53</div>
</div>
<div class="product-name">
Beast
</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"><< 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"><< 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"><< 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"><< 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">