Page Time: 0.1812s

Memory: 5.8692 MB (Peak: 6.6160 MB)

Queries (31, time: 0.0275s, 15.2%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000209
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT thread.*
    	,
    		user.gender, user.avatar_date, user.gravatar,
    		NULL AS thread_read_date,
    		0 AS thread_reply_banned,
    		0 AS thread_is_watched,
    		'' AS draft_message, NULL AS draft_extra,
    		IF(rate.count IS NULL, 0, rate.count) AS thread_rate_count, IF(rate.sum IS NULL, 0, rate.sum) AS thread_rate_sum, IF(rate.avg IS NULL, 0, rate.avg) AS thread_rate_avg
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    		LEFT JOIN ns_threadrating_rate AS rate ON (rate.thread_id = thread.thread_id)
    WHERE thread.thread_id = ?
    Params: 9184
    Run Time: 0.000853
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLErateconstPRIMARYPRIMARY4const0Unique row not found
  3. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache,
    		NULL AS forum_read_date
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    	LEFT JOIN xf_permission_cache_content AS permission
    		ON (permission.permission_combination_id = 1
    			AND permission.content_type = 'node'
    			AND permission.content_id = forum.node_id)
    WHERE node.node_id = ?
    Params: 45
    Run Time: 0.001634
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  4. SELECT post.*
    	,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE post.thread_id = ?
    	 AND (post.position >= 2400 AND post.position < 2420) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 9184
    Run Time: 0.006090
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostrangethread_id_post_date,thread_id_positionthread_id_position8 20Using index condition; Using where; Using filesort
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4user_nextstagerussia.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,user_nextstagerussia.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22user_nextstagerussia.post.user_id,func1Using where
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (777818, 777823, 778682, 778717, 778801)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.003744
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrangecontent_type_id_datecontent_type_id_date31 5Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4user_nextstagerussia.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 9184
    Run Time: 0.000337
  7. INSERT INTO xf_session_activity
    	(user_id, unique_key, ip, controller_name, controller_action, view_state, params, view_date, robot_key)
    VALUES
    	(?, ?, ?, ?, ?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE
    	ip = VALUES(ip),
    	controller_name = VALUES(controller_name),
    	controller_action = VALUES(controller_action),
    	view_state = VALUES(view_state),
    	params = VALUES(params),
    	view_date = VALUES(view_date),
    	robot_key = VALUES(robot_key)
    Params: 0, , , XenForo_ControllerPublic_Thread, Index, valid, thread_id=9184&page=121, 1715927527,
    Run Time: 0.000307
  8. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777720, a:8:{i:0;s:80:"В общем, круто (но только для фанатов онеме?) ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:22:"Dragon Ball Fighter Z ";}}i:2;s:14:" Opencritic - ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"http://opencritic.com/game/5273/dragon-ball-fighterz?tab=1";s:8:"original";a:2:{i:0;s:66:"[URL='http://opencritic.com/game/5273/dragon-ball-fighterz?tab=1']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:2:"87";}}i:4;s:14:" Metacritic - ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:80:"http://www.metacritic.com/game/playstation-4/dragon-ball-fighterz/critic-reviews";s:8:"original";a:2:{i:0;s:88:"[URL='http://www.metacritic.com/game/playstation-4/dragon-ball-fighterz/critic-reviews']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:2:"87";}}i:6;s:1:" ";i:7;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:52:{i:0;s:12:"Wccfftech - ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:232:"Dragon Ball FighterZ is possibly the greatest Dragon Ball game of all time, and already one of the best fighting games of the year, if not the best. Great fighting and amazing visuals collide in this excellent anime fighter. (9/10) ";}}i:2;s:18:" Hardcore Gamer - ";i:3;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:71:"Dragon Ball FighterZ is a rare gem in a sea of licensed games. (4.5/5) ";}}i:4;s:16:" Rice Digital - ";i:5;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:207:"It's the best Dragon Ball fighting game, one of the best looking fighting games in general, and a rare welcome entry point for newcomers to understand what competitive fighting games are all about. (80/100) ";}}i:6;s:11:" Gamespot ";i:7;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:114:"Dragon Ball FighterZ is a great fighting game and an exciting revitalization of Dragon Ball Z's glory days. (9/10)";}}i:8;s:6:" EGM ";i:9;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:376:"While there have been many fighting games based on the Dragon Ball franchise, Dragon Ball FighterZ marks a modern approach through the means of fast-paced action. From its breathtaking visuals to ease of gameplay mastery, the new fighter is a good stepping stone to expand the fan base of the genre. However, it may not satisfy players who are looking for complexity. (90/100)";}}i:10;s:14:" Gameblog.fr ";i:11;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:20:"Dragon Ball FighterZ";}}}}i:12;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:324:" is a fighting game by Arc System Works, a studio whose reputation is well established among combat game enthusiasts. It offers simple gameplay in appearance, with automatic combos or just hammering one touch, but it becomes more complex when digging a little, with opportunities for offensive combos quite important. (8/10)";}}i:13;s:8:" Metro ";i:14;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:151:"A dream come true for Dragon Ball fans, but also a highly competent fighting game that is a front runner for the best fighter of the generation. (9/10)";}}i:15;s:14:" SpazioGames ";i:16;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:307:"Dragon Ball FighterZ is an incredible fighting game, with a rock-solid and spectacular combat-system, and the unique Dragon Ball Universe behind it. Competitive and fun, except for the not so brilliant story mode, is an absolute must-have for both the fans of the saga and the fighting game lovers. (90/100)";}}i:17;s:13:" Gamepro ";i:18;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:128:"Sublime anime-punch-up with scalable, very dynamic combat system that should inspire beginners and professionals alike. (87/100)";}}i:19;s:10:" GBATemp ";i:20;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:351:"Dragon Ball Z is a video game franchise that has many beloved entries, from the Legacy of Goku series, to the Budokai and Tenkaichi games. However, these games have always been targeted to its niche fanbase. Dragon Ball FighterZ is different; it's a fighting game that everyone, including veteran DBZ fans and newcomers alike, can enjoy wholeheartedly";}}i:21;s:3:". (";i:22;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:7:"90/100)";}}i:23;s:17:" Hobby Consoles ";i:24;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:218:"We don´t know if FighterZ is the best current fighting game, but it's for sure the most spectacular Dragon Ball game. Don´t let the frantic combats fool you: there are lots of mechanics and tricks to master. (91/100)";}}i:25;s:17:" Multiplayer.It ";i:26;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:190:"Dragon Ball FighterZ is, simply, the most beautiful fighting in cel shading on which we have ever laid eyes, even higher than the last Guilty Gear, and almost maniacal in the details. (9/10)";}}i:27;s:9:" Fandom ";i:28;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:20:"Dragon Ball FighterZ";}}i:1;s:250:" has managed to prioritise competitive play while still packing in the hyper-stylised, fill-your-entire-screen special effects the franchise demands. The moves are super cool, and the fact they don’t obscure vital telegraphing is even cooler. (4/5)";}}i:29;s:14:" Everyeye.it ";i:30;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:664:"Finally, after years, a game has been realized that can best convey the intensity of the battles told by Dragon Ball. ArcSystem Works has treated the Toriyama series with all the care and respect it deserved, creating a fighting game suitable for every type of player. Whether you are passionate about the genre or not, that you have the time and the desire to deepen the combat system or that you are satisfied with the simple automatic combos, if you love Dragon Ball you can not miss this jewel. There remain only the doubts related to the stability of the servers, which we will dissolve as soon as possible when Bandai Namco decides to open the dams. (9.5/10)";}}i:31;s:18:" Trusted Reviews ";i:32;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:424:"For Arc System Works, Dragon Ball FighterZ is a chance at real mainstream success. The Guilty Gear games are universally excellent, and have a dedicated fanbase, but their hardcore nature meant they always lost to the Street Fighters and Tekkens of the world when it came to sales. The Dragon Ball license could be what gets the masses interested in the studio’s particular brand of air-dashing, spectacular combat. (9/10)";}}i:33;s:6:" IGN ";i:34;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:486:"[IN PROGRESS] Between the accessible auto combos, homing attacks, and simplified command inputs, Dragon Ball FighterZ is an inviting gateway into the world of fighting games for newcomers — whether you’re a Dragon Ball fan or not. Those easy controls can open the door to some spammy behavior, but just as often it’s satisfying in a way that does right by the Dragon Ball name. Dragon Ball FighterZ has enough depth and complexity to glow as brilliantly as a Super Saiyan.(8.5/10)";}}i:35;s:17:" Marooners Rock ";i:36;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:253:"A New Challenger Approaches and its name is Dragon Ball FighterZ. Bandai Namco and Arc System Works have delivered something astounding and I know that myself, and the FGC are excited to bear witness of what's to come in this game's life cycle. (98/100)";}}i:37;s:12:" GameKult ";i:38;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:335:"Dragon Ball FighterZ not only perfectly adapts one of the greatest manga of our era, it also transcends it in the form of a fighting game 2D with remarkable intensity, and hyper accessible. [...] Look no further for the standard meter of anime adaptations, and stop wondering which fighting game will everyone play this year. . (9/10)";}}i:39;s:15:" Areajugones ";i:40;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:241:"Dragon Ball FighterZ is a very complete fighting game and lived up to the expectations that a saga such as Dragon Ball generates. The essence of Toriyama's franchise is portrayed with great quality in every character and their moves.(8.5/10)";}}i:41;s:12:" PushSquare ";i:42;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:13:"[IN PROGRESS]";}}i:43;s:2:" ";i:44;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:465:"Utterly stunning in motion and effortlessly capturing the essence of Dragon Ball, Dragon Ball FighterZ is a masterful video game adaptation. Its combat system is relentlessly entertaining, fusing anime sensibilities with traditional, competitive fighting game mechanics, and its accessible controls allow anyone to get in on the action. If the online portion of the release holds up, then we'd dare say that this is just about the best anime fighting game ever made";}}i:45;s:13:". IGN Italy ";i:46;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:443:"Difficult to remain neutral in front of Dragon Ball FighterZ: if on the one hand we have a magnificent and stunning transposition of the anime - technically and artistically really out of parameter - on the other hand we see some unbalances in the roster and a gameplay very difficult to master. This does not deny the title a place of excellence in the beat-em-up Olympus, as well as an unmissable opportunity for all Dragon Ball fans. (8/10)";}}i:47;s:16:" God is a Geek ";i:48;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:179:"An exquisite feeling fighter that is both approachable and deep. Time will tell if it has staying power, but it's the best use of the Dragon Ball Z name in quite some time. (9/10)";}}i:49;s:13:" GamingBolt ";i:50;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:104:"Dragon Ball FighterZ is a truly stunning use of the anime license with a ton of tricks to master. (8/10)";}}i:51;s:1:" ";}}}, 1701116101, 1715927527
    Run Time: 0.001492
  9. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777792, a:8:{i:0;s:34:"Я Сетсуна намба ту ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:74:"https://motgame.vn/wp-content/uploads/2018/01/Kujimatowa/lost-sphear-1.jpg";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"http://www.metacritic.com/game/playstation-4/lost-sphear/critic-reviews";s:8:"original";a:2:{i:0;s:79:"[URL='http://www.metacritic.com/game/playstation-4/lost-sphear/critic-reviews']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"Metacritic: 75";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"http://opencritic.com/game/5212/lost-sphear";s:8:"original";a:2:{i:0;s:51:"[URL='http://opencritic.com/game/5212/lost-sphear']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"OpenCritic: 77";}}i:6;s:1:" ";i:7;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:40:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:57:"http://www.ign.com/articles/2018/01/23/lost-sphear-review";s:8:"original";a:2:{i:0;s:65:"[URL='http://www.ign.com/articles/2018/01/23/lost-sphear-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"IGN - 6.7";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:59:"https://www.dualshockers.com/lost-sphear-review-ps4-switch/";s:8:"original";a:2:{i:0;s:67:"[URL='https://www.dualshockers.com/lost-sphear-review-ps4-switch/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"DualShockers - 8";}}i:3;s:1:" ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:77:"http://it.ign.com/the-lost-sphear-ps4/135954/review/lost-sphear-la-recensione";s:8:"original";a:2:{i:0;s:85:"[URL='http://it.ign.com/the-lost-sphear-ps4/135954/review/lost-sphear-la-recensione']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"IGN Italia - 8.2";}}i:5;s:1:" ";i:6;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:101:"https://www.everyeye.it/articoli/recensione-lost-sphear-una-lettera-d-amore-chrono-trigger-36987.html";s:8:"original";a:2:{i:0;s:109:"[URL='https://www.everyeye.it/articoli/recensione-lost-sphear-una-lettera-d-amore-chrono-trigger-36987.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Everyeye.it - 8.2";}}i:7;s:1:" ";i:8;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"https://www.rpgsite.net/review/6608-lost-sphear-review";s:8:"original";a:2:{i:0;s:62:"[URL='https://www.rpgsite.net/review/6608-lost-sphear-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"RPG Site - 8";}}i:9;s:1:" ";i:10;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:83:"http://www.game-over.com/content/2018/01/lost-sphear/#sthash.NodHxSPE.fIei6ws2.dpbs";s:8:"original";a:2:{i:0;s:91:"[URL='http://www.game-over.com/content/2018/01/lost-sphear/#sthash.NodHxSPE.fIei6ws2.dpbs']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"Game Over Online - 9.3";}}i:11;s:1:" ";i:12;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:123:"http://www.gameinformer.com/games/lost_sphear/b/playstation4/archive/2018/01/23/lost-sphear-review-misplaced-nostalgia.aspx";s:8:"original";a:2:{i:0;s:131:"[URL='http://www.gameinformer.com/games/lost_sphear/b/playstation4/archive/2018/01/23/lost-sphear-review-misplaced-nostalgia.aspx']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"Game Informer - 6.5";}}i:13;s:1:" ";i:14;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:81:"https://www.gamecrate.com/reviews/review-lost-sphear-love-letter-jrpgs-yore/17915";s:8:"original";a:2:{i:0;s:89:"[URL='https://www.gamecrate.com/reviews/review-lost-sphear-love-letter-jrpgs-yore/17915']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"GameCrate - 8.3";}}i:15;s:1:" ";i:16;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:88:"https://www.hobbyconsolas.com/reviews/analisis-lost-sphear-ps4-nintendo-switch-pc-186290";s:8:"original";a:2:{i:0;s:96:"[URL='https://www.hobbyconsolas.com/reviews/analisis-lost-sphear-ps4-nintendo-switch-pc-186290']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Hobby Consolas - 8";}}i:17;s:1:" ";i:18;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:86:"https://multiplayer.it/recensioni/194016-lost-sphear-la-recensione-di-lost-sphear.html";s:8:"original";a:2:{i:0;s:94:"[URL='https://multiplayer.it/recensioni/194016-lost-sphear-la-recensione-di-lost-sphear.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Multiplayer.it - 7.5";}}i:19;s:1:" ";i:20;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:75:"http://www.cgmagonline.com/reviews/lost-sphear-ps4-review-familiar-fantasy/";s:8:"original";a:2:{i:0;s:83:"[URL='http://www.cgmagonline.com/reviews/lost-sphear-ps4-review-familiar-fantasy/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"CGMagazine - 6.5";}}i:21;s:1:" ";i:22;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:74:"http://meristation.as.com/playstation-4/lost-sphear/analisis-juego/2199496";s:8:"original";a:2:{i:0;s:82:"[URL='http://meristation.as.com/playstation-4/lost-sphear/analisis-juego/2199496']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Meristation - 8";}}i:23;s:1:" ";i:24;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:102:"http://www.playstationlifestyle.net/2018/01/23/lost-sphear-review-save-precious-memories-ps4/#/slide/1";s:8:"original";a:2:{i:0;s:110:"[URL='http://www.playstationlifestyle.net/2018/01/23/lost-sphear-review-save-precious-memories-ps4/#/slide/1']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:25:"PlayStation LifeStyle - 8";}}i:25;s:1:" ";i:26;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:98:"http://es.ign.com/lost-sphear-ps4/128332/review/lost-sphear-analisis-para-ps4-nintendo-switch-y-pc";s:8:"original";a:2:{i:0;s:106:"[URL='http://es.ign.com/lost-sphear-ps4/128332/review/lost-sphear-analisis-para-ps4-nintendo-switch-y-pc']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"IGN Spain - 7.2";}}i:27;s:1:" ";i:28;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"http://www.eurogamer.it/articles/2018-01-22-lost-sphear-recensione";s:8:"original";a:2:{i:0;s:74:"[URL='http://www.eurogamer.it/articles/2018-01-22-lost-sphear-recensione']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"Eurogamer Italy - 7";}}i:29;s:1:" ";i:30;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:142:"https://www.spaziogames.it/recensioni_videogiochi/console_multi_piattaforma/21992/lost-sphear-recensione-del-nuovo-lavoro-di-tokyo-rpg-factory";s:8:"original";a:2:{i:0;s:150:"[URL='https://www.spaziogames.it/recensioni_videogiochi/console_multi_piattaforma/21992/lost-sphear-recensione-del-nuovo-lavoro-di-tokyo-rpg-factory']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"SpazioGames.it - 8";}}i:31;s:1:" ";i:32;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://cogconnected.com/review/lost-sphear-review/";s:8:"original";a:2:{i:0;s:58:"[URL='http://cogconnected.com/review/lost-sphear-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"COGconnected - 7.5";}}i:33;s:1:" ";i:34;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"http://www.gamepro.de/artikel/lost-sphear-retter-verlorener-welten,3325083.html";s:8:"original";a:2:{i:0;s:87:"[URL='http://www.gamepro.de/artikel/lost-sphear-retter-verlorener-welten,3325083.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:19:"GamePro Germany - 8";}}i:35;s:1:" ";i:36;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"http://jp.ign.com/lost-sphear/18518/review/lost-sphear";s:8:"original";a:2:{i:0;s:62:"[URL='http://jp.ign.com/lost-sphear/18518/review/lost-sphear']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"IGN Japan - 7.3";}}i:37;s:1:" ";i:38;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"http://in.ign.com/lost-sphear/117730/review/lost-sphear-review";s:8:"original";a:2:{i:0;s:70:"[URL='http://in.ign.com/lost-sphear/117730/review/lost-sphear-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"IGN India - 6.7";}}i:39;s:602:" Even if it falls short of becoming a worthy successor to the likes of Chrono Trigger, Lost Sphear really does capture the essence of classic role-playing games in a lot of ways. When it's not bogging itself down in overwrought mechanics, this RPG really can spark a sense of nostalgia. Its writing, environments, battle system, and music all evoke the best moments of bygone days. And even if it doesn't quite hit the heights it aspires to, it does a fine job of rekindling some fond memories. Lost Sphear is so cluttered with homages to classic RPGs that it fails to create an identity of its own. ";}}}, 1701116101, 1715927527
    Run Time: 0.001052
  10. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777818, a:2:{i:0;s:26:"Monster Hunter World 92 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"29968";}}}, 1701116101, 1715927527
    Run Time: 0.000382
  11. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 777, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"https://www.trueachievements.com/gamer/Chakie";s:8:"original";a:2:{i:0;s:51:"[URL=https://www.trueachievements.com/gamer/Chakie]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:54:"https://www.trueachievements.com/gamercards/Chakie.png";}}}}}, 1701116101, 1715927527
    Run Time: 0.000360
  12. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777819, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Chakie, post: 777818, member: 777";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Chakie, post: 777818, member: 777"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;s:26:"Monster Hunter World 92 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"29968";}}}}i:1;s:114:" Монхан всегда хорошо оценивали. Можно сказать низкая оценка :)";}, 1701116101, 1715927527
    Run Time: 0.000313
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 4, a:2:{i:0;s:58:"vova: Versatile Online Violence Android SW 6368 9221 0229 ";i:1;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:45:"https://card.psnprofiles.com/1/Wiizardwii.png";}}}, 1701116101, 1715927527
    Run Time: 0.000470
  14. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777820, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"vova, post: 777819, member: 4";s:8:"original";a:2:{i:0;s:39:"[QUOTE="vova, post: 777819, member: 4"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:113:"Монхан всегда хорошо оценивали. Можно сказать низкая оценка :)";}}i:1;s:192:" Это всё чёртовы "взрослые" консольщики. Да и Пекари небось спецом занизили на фоне переноса. Сговор кароч";}, 1701116101, 1715927527
    Run Time: 0.000420
  15. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777821, a:6:{i:0;s:28:"Очередной cum-back ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:32:"Street Fighter V: Arcade Edition";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:69:"http://opencritic.com/game/5407/street-fighter-v-arcade-edition?tab=1";s:8:"original";a:2:{i:0;s:77:"[URL='http://opencritic.com/game/5407/street-fighter-v-arcade-edition?tab=1']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"OpenCritic: 88";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:78:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:7:"IGN - 9";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:78:"http://m.uk.ign.com/articles/2018/01/16/street-fighter-5-arcade-edition-review";}}i:3;s:5:" ";i:4;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:21:"Eurogamer - Essential";}}}}i:5;s:1:" ";i:6;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:83:"http://www.eurogamer.net/articles/2018-01-19-street-fighter-5-arcade-edition-review";}}i:7;s:3:" ";i:8;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:12:"Metro UK - 9";}}i:9;s:1:" ";i:10;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:96:"http://metro.co.uk/2018/01/19/street-fighter-v-arcade-edition-review-capcoms-redemption-7241560/";}}i:11;s:1:" ";i:12;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:26:" Attack of the Fanboy - 9";}}i:13;s:1:" ";i:14;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:77:"https://attackofthefanboy.com/reviews/street-fighter-v-arcade-edition-review/";}}i:15;s:3:" ";i:16;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:24:"Hobby Consolas (Spanish)";}}i:17;s:1:" ";i:18;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:15:"- 90% Excellent";}}i:19;s:1:" ";i:20;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:92:"https://www.hobbyconsolas.com/reviews/analisis-street-fighter-v-arcade-edition-ps4-pc-185372";}}i:21;s:3:" ";i:22;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:20:"Venturebeat - 92/100";}}i:23;s:1:" ";i:24;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:111:"https://venturebeat.com/2018/01/17/street-fighter-v-arcade-edition-review-how-the-fighter-should-have-launched/";s:8:"original";a:2:{i:0;s:119:"[URL='https://venturebeat.com/2018/01/17/street-fighter-v-arcade-edition-review-how-the-fighter-should-have-launched/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:83:"https://venturebeat.com/2018/01/17/...-review-how-the-fighter-should-have-launched/";}}i:25;s:3:" ";i:26;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:9:"Heavy - 9";}}i:27;s:1:" ";i:28;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:78:"https://heavy.com/games/2018/01/street-fighter-v-arcade-edition-review-update/";}}i:29;s:3:" ";i:30;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:13:"IGN Spain - 9";}}i:31;s:1:" ";i:32;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:124:"http://es.ign.com/m/street-fighter-v-arcade-edition-ps4/128167/review/street-fighter-5-arcade-edition-analisis-para-ps4-y-pc";s:8:"original";a:2:{i:0;s:132:"[URL='http://es.ign.com/m/street-fighter-v-arcade-edition-ps4/128167/review/street-fighter-5-arcade-edition-analisis-para-ps4-y-pc']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:83:"http://es.ign.com/m/street-fighter-...ghter-5-arcade-edition-analisis-para-ps4-y-pc";}}i:33;s:3:" ";i:34;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:16:"Player.One - 8.5";}}i:35;s:1:" ";i:36;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:84:"http://www.player.one/street-fighter-v-5-arcade-edition-review-good-bad-score-123192";}}i:37;s:3:" ";i:38;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:17:"The Koalition - 9";}}i:39;s:1:" ";i:40;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:83:"https://thekoalition.com/reviews/street-fighter-v-arcade-edition-review-second-wind";}}i:41;s:3:" ";i:42;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:12:"GearNuke - 9";}}i:43;s:1:" ";i:44;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:63:"http://gearnuke.com/street-fighter-v-arcade-edition-review-ps4/";}}i:45;s:3:" ";i:46;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:15:"Saudi Gamer - 9";}}i:47;s:1:" ";i:48;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:62:"https://saudigamer.com/review/street-fighter-v-arcade-edition/";}}i:49;s:3:" ";i:50;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:23:"Raging Gazebo - Grade A";}}i:51;s:1:" ";i:52;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:74:"https://raginggazebo.com/street-fighter-v-arcade-edition-review-way-along/";}}i:53;s:3:" ";i:54;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:16:"US Gamer - 4.5/5";}}i:55;s:1:" ";i:56;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:70:"http://www.usgamer.net/articles/street-fighter-5-arcade-edition-review";}}i:57;s:3:" ";i:58;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:23:"Trusted Reviews - 4.5/5";}}i:59;s:1:" ";i:60;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:89:"http://www.trustedreviews.com/reviews/street-fighter-5-arcade-edition#mWtUCoPjfleUvo8y.99";}}i:61;s:3:" ";i:62;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:15:"Gaming Bolt - 9";}}i:63;s:1:" ";i:64;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:81:"https://gamingbolt.com/street-fighter-v-arcade-edition-review#jyfzvDv3F7DjFyum.99";}}i:65;s:3:" ";i:66;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:9:"CGMag - 8";}}i:67;s:1:" ";i:68;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:78:"http://www.cgmagonline.com/reviews/street-fighter-v-arcade-edition-ps4-review/";}}i:69;s:3:" ";i:70;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:15:"Push Square - 8";}}i:71;s:1:" ";i:72;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:69:"http://www.pushsquare.com/reviews/ps4/street_fighter_v_arcade_edition";}}i:73;s:1:" ";i:74;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:19:" Polygon - Postive";}}i:75;s:1:" ";i:76;a:4:{s:3:"tag";s:3:"url";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[URL]";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:87:"https://www.polygon.com/2017/10/5/16429572/street-fighter-5-arcade-edition-release-date";}}i:77;s:1:" ";}}}, 1701116101, 1715927527
    Run Time: 0.002658
  16. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777823, a:2:{i:0;s:21:"EA Sports UFC 3 80 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"29969";}}}, 1701116101, 1715927527
    Run Time: 0.000787
  17. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 777940, a:2:{i:0;s:7:"Edge ";i:1;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:157:" [*]PUBG – 9 [*]OK KO! Let’s Play Heroes – 7 [*]Lost Sphear – 6 [*]Arena of Valor – 6 [*]Celeste – 8 [*]Finding Paradise – 8 [*]Brawlout – 3 ";}}}, 1701116101, 1715927527
    Run Time: 0.000350
  18. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778060, a:8:{i:0;s:30:"Shadow of the Colossus Remake ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:76:"http://opencritic.com/game/5118/shadow-of-the-colossus?tab=1&reviewId=100322";s:8:"original";a:2:{i:0;s:84:"[URL='http://opencritic.com/game/5118/shadow-of-the-colossus?tab=1&reviewId=100322']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"Opencritic: 93";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:31:{i:0;s:16:"IGN: 9.7 / 10.0 ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:49:"http://opencritic.com/outlet/75/metro-gamecentral";s:8:"original";a:2:{i:0;s:57:"[URL='http://opencritic.com/outlet/75/metro-gamecentral']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Metro GameCentral";}}i:2;s:9:": 9 / 10 ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"http://opencritic.com/outlet/25/push-square";s:8:"original";a:2:{i:0;s:51:"[URL='http://opencritic.com/outlet/25/push-square']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Push Square";}}i:4;s:10:": 10 / 10 ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:44:"http://opencritic.com/outlet/94/cogconnected";s:8:"original";a:2:{i:0;s:52:"[URL='http://opencritic.com/outlet/94/cogconnected']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"COGconnected";}}i:6;s:12:" : 90 / 100 ";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:41:"http://opencritic.com/outlet/78/gamesbeat";s:8:"original";a:2:{i:0;s:49:"[URL='http://opencritic.com/outlet/78/gamesbeat']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"GamesBeat";}}i:8;s:11:": 89 / 100 ";i:9;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:46:"http://opencritic.com/outlet/23/hardcore-gamer";s:8:"original";a:2:{i:0;s:54:"[URL='http://opencritic.com/outlet/23/hardcore-gamer']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"Hardcore Gamer";}}i:10;s:12:": 4.5 / 5.0 ";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:44:"http://opencritic.com/outlet/68/thesixthaxis";s:8:"original";a:2:{i:0;s:52:"[URL='http://opencritic.com/outlet/68/thesixthaxis']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"TheSixthAxis";}}i:12;s:10:": 10 / 10 ";i:13;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:40:"http://opencritic.com/outlet/500/ps-site";s:8:"original";a:2:{i:0;s:48:"[URL='http://opencritic.com/outlet/500/ps-site']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:7:"PS Site";}}i:14;s:13:": 9.5 / 10.0 ";i:15;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:53:"http://opencritic.com/outlet/116/attack-of-the-fanboy";s:8:"original";a:2:{i:0;s:61:"[URL='http://opencritic.com/outlet/116/attack-of-the-fanboy']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Attack of the Fanboy";}}i:16;s:12:": 4.5 / 5.0 ";i:17;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:47:"http://opencritic.com/outlet/93/game-revolution";s:8:"original";a:2:{i:0;s:55:"[URL='http://opencritic.com/outlet/93/game-revolution']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Game Revolution";}}i:18;s:12:": 4.5 / 5.0 ";i:19;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:52:"http://opencritic.com/outlet/39/playstation-universe";s:8:"original";a:2:{i:0;s:60:"[URL='http://opencritic.com/outlet/39/playstation-universe']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"PlayStation Universe";}}i:20;s:13:": 9.5 / 10.0 ";i:21;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"http://opencritic.com/outlet/90/destructoid";s:8:"original";a:2:{i:0;s:51:"[URL='http://opencritic.com/outlet/90/destructoid']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Destructoid";}}i:22;s:14:": 10.0 / 10.0 ";i:23;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:42:"http://opencritic.com/outlet/114/eurogamer";s:8:"original";a:2:{i:0;s:50:"[URL='http://opencritic.com/outlet/114/eurogamer']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"Eurogamer";}}i:24;s:12:": Essential ";i:25;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"http://opencritic.com/outlet/104/gaming-nexus";s:8:"original";a:2:{i:0;s:53:"[URL='http://opencritic.com/outlet/104/gaming-nexus']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Gaming Nexus";}}i:26;s:13:": 9.8 / 10.0 ";i:27;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:52:"http://opencritic.com/outlet/65/digitally-downloaded";s:8:"original";a:2:{i:0;s:60:"[URL='http://opencritic.com/outlet/65/digitally-downloaded']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"Digitally Downloaded";}}i:28;s:8:": 5 / 5 ";i:29;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:45:"http://opencritic.com/outlet/35/game-informer";s:8:"original";a:2:{i:0;s:53:"[URL='http://opencritic.com/outlet/35/game-informer']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"Game Informer";}}i:30;s:12:": 9.0 / 10.0";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"AN03qBfprBI";}}i:6;s:1:" ";i:7;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"Ruv3UrSRUOY";}}}, 1701116101, 1715927527
    Run Time: 0.000579
  19. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778143, a:2:{i:0;s:48:"Всеми любимый и уважаемый ";i:1;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"yMk3q1IoDgU";}}}, 1701116101, 1715927527
    Run Time: 0.000690
  20. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778429, a:5:{i:0;s:41:"Famitsu Let’s Manga (PSV) – 8/8/9/9 ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:33:"Iconoclasts (PS4/PSV) – 9/8/8/8";}}i:2;s:135:" Cyber Troopers: Virtual On x Toaru Majutsu no Index: Toaru Majutsu no Dennou Senki (PS4/PSV) – 8/8/8/9 BoxyRacers (NSW) – 8/8/8/8 ";i:3;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:36:"Secret of Mana (PS4/PSV) – 8/8/7/7";}}i:4;s:188:" Idolish7 Twelve Fantasia! (PSV) – 8/7/7/7 Fantasy Hero: Unsigned Legacy (NSW) – 7/7/7/7 The Impatient (PS4) – 7/7/7/7 Hoshi no Kakera no Monogatari: Hitokakera-Ban (PS4) – 7/7/7/7";}, 1701116101, 1715927527
    Run Time: 0.000296
  21. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778652, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Каин, post: 735192, member: 3850";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Каин, post: 735192, member: 3850"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:226:"Бородатые фанаты Амиги могут утереть пот со лба, т.к. ремейк Shadow of the Beast получился не таким плохим, каким казался по роликам :)";}}i:1;s:347:" Да он вообще классным оказался. Я думал погоняю полчаса и брошу, но залип нахрен. Отличный арт дизайн, высокая сложность, затягивающий геймплей, множество загадок. Плюсов у игры достаточно.";}, 1701116101, 1715927527
    Run Time: 0.000369
  22. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 8798, a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:113:"Раскаяться никогда не поздно,а вот согрешить можно и опоздать";}}}, 1701116101, 1715927527
    Run Time: 0.000275
  23. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778682, a:2:{i:0;s:31:"Kingdom Come: Deliverance 66 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"30070";}}}, 1701116101, 1715927527
    Run Time: 0.000398
  24. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778683, a:3:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:31:"https://i.imgur.com/rPNCqww.jpg";}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:7:"youtube";s:8:"original";a:2:{i:0;s:15:"[MEDIA=youtube]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:11:"1JZfoz7UVr0";}}}, 1701116101, 1715927527
    Run Time: 0.000346
  25. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778687, a:3:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"6";s:8:"original";a:2:{i:0;s:8:"[SIZE=6]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:24:"Kingdom Come Deliverance";}}}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:35:{i:0;s:2:" ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:78:"https://www.resetera.com/threads/kingdom-come-deliverance-review-thread.22936/";s:8:"original";a:2:{i:0;s:86:"[URL='https://www.resetera.com/threads/kingdom-come-deliverance-review-thread.22936/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:2:"#1";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:65:"http://www.metacritic.com/game/pc/kingdom-come-deliverance?ref=hp";s:8:"original";a:2:{i:0;s:73:"[URL='http://www.metacritic.com/game/pc/kingdom-come-deliverance?ref=hp']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:18:"Metacritic PC - 74";}}}}i:4;s:2:" ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:112:"https://multiplayer.it/recensioni/194995-kingdom-come-deliverance-la-recensione-di-kingdom-come-deliverance.html";s:8:"original";a:2:{i:0;s:120:"[URL='https://multiplayer.it/recensioni/194995-kingdom-come-deliverance-la-recensione-di-kingdom-come-deliverance.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"Multiplayer.it 8.9/10";}}i:6;s:2:" ";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:79:"http://www.eurogamer.it/articles/2018-02-13-kingdom-come-deliverance-recensione";s:8:"original";a:2:{i:0;s:87:"[URL='http://www.eurogamer.it/articles/2018-02-13-kingdom-come-deliverance-recensione']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:28:"Eurogamer italy - Recomended";}}i:8;s:2:" ";i:9;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:109:"https://press-start.com.au/reviews/pc-reviews/2018/02/13/kingdom-come-deliverance-review-ambitious-adventure/";s:8:"original";a:2:{i:0;s:117:"[URL='https://press-start.com.au/reviews/pc-reviews/2018/02/13/kingdom-come-deliverance-review-ambitious-adventure/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"Press Start 6/10";}}i:10;s:2:" ";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:104:"https://www.everyeye.it/articoli/recensione-kingdom-come-deliverance-del-gdr-warhorse-studios-37337.html";s:8:"original";a:2:{i:0;s:112:"[URL='https://www.everyeye.it/articoli/recensione-kingdom-come-deliverance-del-gdr-warhorse-studios-37337.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"Everyeye.it 8/10";}}i:12;s:2:" ";i:13;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:80:"https://www.hardcoregamer.com/2018/02/13/review-kingdom-come-deliverance/289947/";s:8:"original";a:2:{i:0;s:88:"[URL='https://www.hardcoregamer.com/2018/02/13/review-kingdom-come-deliverance/289947/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:14:"Hardcore Gamer";}}i:14;s:2:": ";i:15;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:1:""";i:1;a:4:{s:3:"tag";s:1:"i";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[I]";i:1;s:4:"[/I]";}s:8:"children";a:1:{i:0;s:294:"Had the initial forty-to-fifty hour campaign not have delivered the level of bugs and problems present in the current build, you’d easily be looking at potentially one of the year’s best all-round experiences in an RPG and an essential for everyone no matter your affiliation with the genre";}}i:2;s:2:"."";}}i:16;s:2:" ";i:17;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:71:"http://www.thesixthaxis.com/2018/02/13/kingdom-come-deliverance-review/";s:8:"original";a:2:{i:0;s:79:"[URL='http://www.thesixthaxis.com/2018/02/13/kingdom-come-deliverance-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:25:"4/10 from The Sixth Axis.";}}i:18;s:2:" ";i:19;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:83:"https://www.techadvisor.co.uk/review/games/kingdom-come-deliverance-review-3672070/";s:8:"original";a:2:{i:0;s:91:"[URL='https://www.techadvisor.co.uk/review/games/kingdom-come-deliverance-review-3672070/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:24:"4.5/5 from Tech Advisor.";}}i:20;s:2:" ";i:21;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://www.gamereactor.nl/reviews/570083/Kingdom+Come+Deliverance/";s:8:"original";a:2:{i:0;s:75:"[URL='https://www.gamereactor.nl/reviews/570083/Kingdom+Come+Deliverance/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:23:"6/10 from Game Reactor.";}}i:22;s:2:" ";i:23;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:70:"https://attackofthefanboy.com/reviews/kingdom-come-deliverance-review/";s:8:"original";a:2:{i:0;s:78:"[URL='https://attackofthefanboy.com/reviews/kingdom-come-deliverance-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:31:"5/10 from Attack of the Fanboy.";}}i:24;s:2:" ";i:25;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:73:"https://www.gamewatcher.com/reviews/kingdom-come-deliverance-review/12970";s:8:"original";a:2:{i:0;s:81:"[URL='https://www.gamewatcher.com/reviews/kingdom-come-deliverance-review/12970']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:22:"8/10 from GameWatcher.";}}i:26;s:2:" ";i:27;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:90:"http://www.gamerevolution.com/review/368221-kingdom-come-deliverance-review-hardcore-henry";s:8:"original";a:2:{i:0;s:98:"[URL='http://www.gamerevolution.com/review/368221-kingdom-come-deliverance-review-hardcore-henry']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"9/10 Game Revolution.";}}i:28;s:2:" ";i:29;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"https://heavy.com/games/2018/02/kingdom-come-deliverance-review/";s:8:"original";a:2:{i:0;s:72:"[URL='https://heavy.com/games/2018/02/kingdom-come-deliverance-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:16:"9/10 from Heavy.";}}i:30;s:2:" ";i:31;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:73:"http://www.gamestar.de/spiele/kingdom-come-deliverance/wertung/50435.html";s:8:"original";a:2:{i:0;s:81:"[URL='http://www.gamestar.de/spiele/kingdom-come-deliverance/wertung/50435.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"7.7/10 GameStar.de";}}i:32;s:2:" ";i:33;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=1JZfoz7UVr0";s:8:"original";a:2:{i:0;s:51:"[URL='https://www.youtube.com/watch?v=1JZfoz7UVr0']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:27:"ACG's review: Wait for Sale";}}i:34;s:1:" ";}}}, 1701116101, 1715927527
    Run Time: 0.000479
  26. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: signature, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1715927527
    Run Time: 0.000380
  27. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778717, a:2:{i:0;s:30:"The Fall Part 2: Unbound 79 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"30094";}}}, 1701116101, 1715927527
    Run Time: 0.000380
  28. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778801, a:2:{i:0;s:46:"Хайпнутое инди от ЕА Fe 77 ";i:1;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"30110";}}}, 1701116101, 1715927527
    Run Time: 0.000345
  29. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 778968, a:3:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"5";s:8:"original";a:2:{i:0;s:8:"[SIZE=5]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:7:"Famitsu";}}}}i:1;s:1:" ";i:2;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:443:" [*]Shadow of the Colossus (PS4) – 9/9/8/9 [35/40] [*]Guns, Gore, & Cannoli (Switch) – 9/7/9/8 [33/40] [*]EA Sports UFC 3 (PS4, Xbox One) – 8/8/8/8 [32/40] [*]Aegis Defenders (PS4, Switch) – 8/8/8/8 [32/40] [*]Owlboy (PS4, Switch) – 8/8/8/7 [31/40] [*]Dandara (PS4, Switch) – 7/8/7/9 [31/40] [*]Firewatch (PS4) – 7/7/7/8 [29/40] [*]Doraemon: Nobita no Takarajima (3DS) – 7/7/8/7 [29/40] [*]Rain World (PS4) – 7/8/7/6 [28/40] ";}}}, 1701116101, 1715927527
    Run Time: 0.000685
  30. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 779178, a:1:{i:0;s:218:"Edge #317 - Monster Hunter World – 9/10 - Yakuza 6 – 8/10 - Dragon Ball FighterZ – 7/10 - Fe – 7/10 - Dissidia Final Fantasy NT – 5/10 - Full Metal Furies – 5/10 - Dandara – 5/10 - The Inpatient – 4/10";}, 1701116101, 1715927527
    Run Time: 0.000369
  31. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 779191, a:6:{i:0;s:20:"Metal Gear Survive ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://opencritic.com/game/5410/metal-gear-survive";s:8:"original";a:2:{i:0;s:58:"[URL='http://opencritic.com/game/5410/metal-gear-survive']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"OC: 64";}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:63:"http://www.metacritic.com/game/playstation-4/metal-gear-survive";s:8:"original";a:2:{i:0;s:71:"[URL='http://www.metacritic.com/game/playstation-4/metal-gear-survive']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"MC: 65";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:5:"quote";s:6:"option";N;s:8:"original";a:2:{i:0;s:7:"[QUOTE]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:77:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:106:"http://www.jeuxvideo.com/test/801633/metal-gear-survive-action-survie-gestion-la-formule-marche-t-elle.htm";s:8:"original";a:2:{i:0;s:114:"[URL='http://www.jeuxvideo.com/test/801633/metal-gear-survive-action-survie-gestion-la-formule-marche-t-elle.htm']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:13:"Jeuxvideo.com";}}i:1;s:9:": 14/20 ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:109:"http://www.eurogamer.net/articles/2018-02-23-metal-gear-survive-review-surprisingly-enjoyable-horror-spin-off";s:8:"original";a:2:{i:0;s:117:"[URL='http://www.eurogamer.net/articles/2018-02-23-metal-gear-survive-review-surprisingly-enjoyable-horror-spin-off']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"Eurogamer:";}}i:3;s:11:" No score ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:89:"https://gadgets.ndtv.com/games/reviews/metal-gear-survive-review-ps4-pro-xbox-one-1816226";s:8:"original";a:2:{i:0;s:97:"[URL='https://gadgets.ndtv.com/games/reviews/metal-gear-survive-review-ps4-pro-xbox-one-1816226']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:4:"NDTV";}}i:5;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:6:": 8/10";}}i:6;s:2:" ";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:56:"http://www.trustedreviews.com/reviews/metal-gear-survive";s:8:"original";a:2:{i:0;s:64:"[URL='http://www.trustedreviews.com/reviews/metal-gear-survive']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Trusted Reviews";}}i:8;s:2:": ";i:9;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:"5/10";}}i:10;s:2:" ";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:53:"https://www.gamesradar.com/metal-gear-survive-review/";s:8:"original";a:2:{i:0;s:61:"[URL='https://www.gamesradar.com/metal-gear-survive-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"gamesradar";}}i:12;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:7:": 3.5/5";}}i:13;s:2:" ";i:14;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"http://www.cheatcc.com/ps4/rev/metalgearsurvivereview.html";s:8:"original";a:2:{i:0;s:66:"[URL='http://www.cheatcc.com/ps4/rev/metalgearsurvivereview.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:18:"Cheat Code Central";}}i:15;s:1:":";i:16;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:" 3/5";}}i:17;s:2:" ";i:18;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:69:"https://www.gameskinny.com/gphsn/metal-gear-survive-crashes-and-burns";s:8:"original";a:2:{i:0;s:77:"[URL='https://www.gameskinny.com/gphsn/metal-gear-survive-crashes-and-burns']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Game Skinny";}}i:19;s:2:": ";i:20;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:"5/10";}}i:21;s:2:" ";i:22;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:57:"https://areajugones.sport.es/metal-gear-survive/analisis/";s:8:"original";a:2:{i:0;s:65:"[URL='https://areajugones.sport.es/metal-gear-survive/analisis/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Area Jugones";}}i:23;s:1:":";i:24;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:" 7/10";}}i:25;s:2:" ";i:26;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:50:"http://gearnuke.com/metal-gear-survive-review-ps4/";s:8:"original";a:2:{i:0;s:58:"[URL='http://gearnuke.com/metal-gear-survive-review-ps4/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"Gearnuke";}}i:27;s:1:":";i:28;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:" 7/10";}}i:29;s:2:" ";i:30;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:58:"https://www.usgamer.net/articles/metal-gear-survive-review";s:8:"original";a:2:{i:0;s:66:"[URL='https://www.usgamer.net/articles/metal-gear-survive-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"US Gamer";}}i:31;s:1:":";i:32;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:" 3/5";}}i:33;s:2:" ";i:34;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:64:"http://www.ign.com/articles/2018/02/24/metal-gear-survive-review";s:8:"original";a:2:{i:0;s:72:"[URL='http://www.ign.com/articles/2018/02/24/metal-gear-survive-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:3:"IGN";}}i:35;s:1:":";i:36;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:7:" 6.5/10";}}i:37;s:2:" ";i:38;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:97:"https://www.gamespot.com/reviews/metal-gear-survive-review-in-progress-a-harsh-but-/1900-6416863/";s:8:"original";a:2:{i:0;s:105:"[URL='https://www.gamespot.com/reviews/metal-gear-survive-review-in-progress-a-harsh-but-/1900-6416863/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"Gamespot";}}i:39;s:2:": ";i:40;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:"6/10";}}i:41;s:2:" ";i:42;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:89:"http://metro.co.uk/2018/02/26/metal-gear-survive-review-surviving-without-kojima-7341863/";s:8:"original";a:2:{i:0;s:97:"[URL='http://metro.co.uk/2018/02/26/metal-gear-survive-review-surviving-without-kojima-7341863/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:"Metro Gamecentral";}}i:43;s:2:": ";i:44;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:"5/10";}}i:45;s:2:" ";i:46;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:103:"http://www.jeuxactu.com/test-metal-gear-survive-est-ce-vraiment-la-catastrophe-tant-annoncee-112853.htm";s:8:"original";a:2:{i:0;s:111:"[URL='http://www.jeuxactu.com/test-metal-gear-survive-est-ce-vraiment-la-catastrophe-tant-annoncee-112853.htm']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"JeuxActu";}}i:47;s:2:": ";i:48;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:"13/20";}}i:49;s:2:" ";i:50;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:89:"https://www.journaldugeek.com/test/test-metal-gear-survive-honneur-a-serie-dhideo-kojima/";s:8:"original";a:2:{i:0;s:97:"[URL='https://www.journaldugeek.com/test/test-metal-gear-survive-honneur-a-serie-dhideo-kojima/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:15:"Journal du geek";}}i:51;s:1:":";i:52;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:" 4/10";}}i:53;s:2:" ";i:54;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:42:"https://www.millenium.org/news/288971.html";s:8:"original";a:2:{i:0;s:50:"[URL='https://www.millenium.org/news/288971.html']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"Millenium";}}i:55;s:2:": ";i:56;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:6:"50/100";}}i:57;s:2:" ";i:58;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:89:"https://www.actugaming.net/test-metal-gear-survive-jeu-de-survie-ninnove-vraiment-132884/";s:8:"original";a:2:{i:0;s:97:"[URL='https://www.actugaming.net/test-metal-gear-survive-jeu-de-survie-ninnove-vraiment-132884/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:10:"ActuGaming";}}i:59;s:2:": ";i:60;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:6:"6.5/10";}}i:61;s:2:" ";i:62;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:65:"http://www.thesixthaxis.com/2018/02/26/metal-gear-survive-review/";s:8:"original";a:2:{i:0;s:73:"[URL='http://www.thesixthaxis.com/2018/02/26/metal-gear-survive-review/']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"thesixthaxis";}}i:63;s:2:": ";i:64;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:4:"8/10";}}i:65;s:2:" ";i:66;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:56:"http://www.pushsquare.com/reviews/ps4/metal_gear_survive";s:8:"original";a:2:{i:0;s:64:"[URL='http://www.pushsquare.com/reviews/ps4/metal_gear_survive']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Push Square";}}i:67;s:1:":";i:68;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:" 8/10";}}i:69;s:2:" ";i:70;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:85:"http://www.denofgeek.com/us/games/metal-gear-survive/271206/metal-gear-survive-review";s:8:"original";a:2:{i:0;s:93:"[URL='http://www.denofgeek.com/us/games/metal-gear-survive/271206/metal-gear-survive-review']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Den of Geek";}}i:71;s:2:": ";i:72;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:"2.5/5";}}i:73;s:2:" ";i:74;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://www.destructoid.com/review-metal-gear-survive-490705.phtml";s:8:"original";a:2:{i:0;s:74:"[URL='https://www.destructoid.com/review-metal-gear-survive-490705.phtml']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:11:"Destructoid";}}i:75;s:1:":";i:76;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:5:" 5/10";}}}}}, 1701116101, 1715927527
    Run Time: 0.000425

Included Files (113, XenForo Classes: 62)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/NextStage/Feature/Listener/Feature.php
  29. library/XenForo/Router.php
  30. library/XenForo/Route/Filter.php
  31. library/XenForo/Route/Interface.php
  32. library/XenForo/Route/ResponseSuffix.php
  33. library/XenForo/Route/Prefix.php
  34. library/XenForo/Route/Prefix/Threads.php
  35. library/XenForo/RouteMatch.php
  36. library/XenForo/ControllerPublic/Thread.php
  37. library/XenForo/ControllerPublic/Abstract.php
  38. library/XenForo/Controller.php
  39. library/NextStage/ThreadRating/Listener/Class.php
  40. library/NextStage/TaigaChat/Listener.php
  41. library/NextStage/XenForo/Listener/XenForo.php
  42. library/Tapatalk/Listener/LoadClassModel.php
  43. library/NextStage/ThreadRating/ControllerPublic/Thread.php
  44. library/NextStage/XenForo/ControllerPublic/XenForo.php
  45. library/NextStage/XenForo/ControllerPublic/Thread.php
  46. library/XenForo/Input.php
  47. library/XenForo/Session.php
  48. library/Zend/Db.php
  49. library/Zend/Db/Adapter/Mysqli.php
  50. library/Zend/Db/Adapter/Abstract.php
  51. library/Zend/Db/Select.php
  52. library/Zend/Db/Expr.php
  53. library/Zend/Db/Profiler.php
  54. library/Zend/Db/Statement/Mysqli.php
  55. library/Zend/Db/Statement.php
  56. library/Zend/Db/Statement/Interface.php
  57. library/XenForo/Helper/Ip.php
  58. library/XenForo/Visitor.php
  59. library/XenForo/Model/User.php
  60. library/Dark/TaigaChat/EventListener/Listener.php
  61. library/Zend/Db/Profiler/Query.php
  62. library/XenForo/Permission.php
  63. library/XenForo/Helper/Php.php
  64. library/XenForo/Phrase.php
  65. library/XenForo/Locale.php
  66. library/XenForo/ControllerHelper/ForumThreadPost.php
  67. library/XenForo/ControllerHelper/Abstract.php
  68. library/XenForo/Model/Thread.php
  69. library/NextStage/ThreadRating/Model/Thread.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Helper/Discussion.php
  73. library/XenForo/Model/Post.php
  74. library/NextStage/Feature/Model/Post.php
  75. library/XenForo/Model/Attachment.php
  76. library/XenForo/Route/Prefix/Attachments.php
  77. library/NextStage/Feature/Model/Feature.php
  78. library/XenForo/Model/Node.php
  79. library/Tapatalk/Model/Node.php
  80. library/XenForo/Route/Prefix/Categories.php
  81. library/XenForo/Route/Prefix/Forums.php
  82. library/XenForo/ControllerResponse/View.php
  83. library/XenForo/ControllerResponse/Abstract.php
  84. library/Tapatalk/Listener/ControllerPostDispatch.php
  85. library/XenForo/ViewRenderer/HtmlPublic.php
  86. library/XenForo/ViewRenderer/Abstract.php
  87. library/XenForo/Template/Public.php
  88. library/XenForo/Template/Abstract.php
  89. library/XenForo/ViewPublic/Thread/View.php
  90. library/XenForo/ViewPublic/Base.php
  91. library/XenForo/View.php
  92. library/XenForo/BbCode/Parser.php
  93. library/XenForo/BbCode/Formatter/Base.php
  94. library/XenForo/ViewPublic/Helper/Message.php
  95. library/XenForo/BbCode/TextWrapper.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  98. library/NextStage/ThreadRating/Listener/Template.php
  99. library/XenForo/Template/FileHandler.php
  100. library/XenForo/Helper/File.php
  101. internal_data/templates/S.1,L.1,thread_view.php
  102. library/Tapatalk/EventListener/Hook.php
  103. internal_data/templates/S.1,L.1,page_nav.php
  104. library/Tapatalk/Listener/TemplatePostRender.php
  105. library/XenForo/Route/Prefix/Posts.php
  106. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  107. library/XenForo/Model/Avatar.php
  108. internal_data/templates/S.1,L.1,bb_code_tag_quote.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_attach.php
  110. library/XenForo/Debug.php
  111. internal_data/templates/S.1,L.1,PAGE_CONTAINER.php
  112. mobiquo/smartbanner/head.inc.php
  113. library/XenForo/ViewRenderer/Json.php