Page Time: 0.1432s

Memory: 5.5237 MB (Peak: 6.1582 MB)

Queries (29, time: 0.0320s, 22.3%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000136
    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: 23813
    Run Time: 0.000430
    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: 12
    Run Time: 0.000406
    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 >= 1420 AND post.position < 1440) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 23813
    Run Time: 0.013354
    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. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 23813
    Run Time: 0.000239
  6. 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=23813&page=72, 1714147143,
    Run Time: 0.000403
  7. 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, 845119, a:5:{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:79:"PlayStation VR2 Hands-On In Horizon Call Of The Mountain, Resident Evil Village";}}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:"8nl9dcBJyAA";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=8nl9dcBJyAA";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=8nl9dcBJyAA]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=8nl9dcBJyAA";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.000447
  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: signature, 3212, a:1:{i:0;s:17:"There only be ONE";}, 1701116101, 1714147143
    Run Time: 0.000283
  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, 845422, a:5:{i:0;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:134:"In the last month, Sony has begun the rollout of their latest revision of the PlayStation 5, model CFI-1202. There has already been a ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=21vJ9XBozeI";s:8:"original";a:2:{i:0;s:51:"[URL='https://www.youtube.com/watch?v=21vJ9XBozeI']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:8:"teardown";}}i:2;s:382:" showing the model's redesigned board and cooling that is smaller and lighter. Power consumption is also reduced while giving the similar performance. To accomplish this, AMD's Semi-Custom design teams have ported the PS5 silicon to TSMC N6, codename Oberon Plus. Angstronomics reveals exclusive images of the new, smaller die, and we discuss the how and the why behind this update.";}}i:1;s:1:" ";i:2;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:40:"6nm Oberon Plus as leaked Vs 7nm Oberon:";}}i:3;s:1:" ";i:4;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/jOqXQJd.png";}}}, 1701116101, 1714147143
    Run Time: 0.000394
  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, 845754, a:4:{i:0;s:35:"Утёк мануал от PS VR2: ";i:1;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:5:"tweet";s:8:"original";a:2:{i:0;s:13:"[MEDIA=tweet]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:19:"1581121382695723009";}}i:2;s:1:" ";i:3;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:54:"https://twitter.com/PS5Feed/status/1581121382695723009";s:8:"original";a:2:{i:0;s:60:"[url=https://twitter.com/PS5Feed/status/1581121382695723009]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:60:"View: https://twitter.com/PS5Feed/status/1581121382695723009";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.003117
  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: post, 845826, a:4:{i:0;s:22:"26 января 2023: ";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:21:"The DualSense Edge™";}}i:2;s:1:" ";i:3;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:"UvmmWeov68s";}}}, 1701116101, 1714147143
    Run Time: 0.000481
  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, 845828, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 845826, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 845826, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:4:{i:0;s:22:"26 января 2023: ";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:21:"The DualSense Edge™";}}i:2;s:1:" ";i:3;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:"UvmmWeov68s";}}}}i:1;s:172:" 200 Баксов, Карл? и 209-230 Фунтов, в возрождающейся под руководством разведки Британии =))). Жесть....";}, 1701116101, 1714147143
    Run Time: 0.000451
  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: post, 845829, a:1:{i:0;s:269:"Для просто играющего человека в этом контроллере вообще смысл есть? типа батарейки потолще. Я помоему с эры пс1 ни разу контроллеры не менял / ломал.";}, 1701116101, 1714147143
    Run Time: 0.001176
  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, 845836, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"Varagorn, post: 845829, member: 1437";s:8:"original";a:2:{i:0;s:46:"[QUOTE="Varagorn, post: 845829, member: 1437"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:269:"Для просто играющего человека в этом контроллере вообще смысл есть? типа батарейки потолще. Я помоему с эры пс1 ни разу контроллеры не менял / ломал.";}}i:1;s:426:" Ну так для простого подпивасника кладут контроллер в комплект. Это тем кому нужна кастомизация, лепестки сзади и прочие ништяки. Тоже самое что и Elite контроллер. Не понимал никогда нытья по поводу таких товаров для узкой аудитории.";}, 1701116101, 1714147143
    Run Time: 0.000405
  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: signature, 3331, a:1:{i:0;s:34:"Undisputed Destiny 2 Champion 2021";}, 1701116101, 1714147143
    Run Time: 0.000330
  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, 845897, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:33:"Shizo, post: 845836, member: 3331";s:8:"original";a:2:{i:0;s:43:"[QUOTE="Shizo, post: 845836, member: 3331"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:423:"Ну так для простого подпивасника кладут контроллер в комплект. Это тем кому нужна кастомизация, лепестки сзади и прочие ништяки. Тоже самое что и Elite контроллер. Не понимал никогда нытья по поводу таких товаров для узкой аудитории.";}}i:1;s:22:" А ты купишь?";}, 1701116101, 1714147143
    Run Time: 0.000251
  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, 845899, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:30:"-A-, post: 845897, member: 517";s:8:"original";a:2:{i:0;s:40:"[QUOTE="-A-, post: 845897, member: 517"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:21:"А ты купишь?";}}i:1;s:249:" Зачем? На плойке я играю по сути только в экзы синглплеерные их. Плюс у меня есть Elite 2 для ПК и бокса. Не было бы Элита, возможно бы и купил.";}, 1701116101, 1714147143
    Run Time: 0.000244
  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, 846454, a:6:{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:10:"PS5 DevKit";}}i:1;s:2:" ";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:"2jsKxme1fmQ";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=2jsKxme1fmQ";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=2jsKxme1fmQ]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=2jsKxme1fmQ";}}}}}}i:5;s:113:" Помню кто-то усирался здесь, "нет, это не может быть девкитом"";}, 1701116101, 1714147143
    Run Time: 0.000439
  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, 846634, a:6:{i:0;s:100:"Это правда что-ли? PS5 с отсоединяемым драйвом в 2023 году: ";i:1;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:5:"tweet";s:8:"original";a:2:{i:0;s:13:"[MEDIA=tweet]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:19:"1602415923528601600";}}i:2;s:1:" ";i:3;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"https://twitter.com/_Tom_Henderson_/status/1602415923528601600";s:8:"original";a:2:{i:0;s:68:"[url=https://twitter.com/_Tom_Henderson_/status/1602415923528601600]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:68:"View: https://twitter.com/_Tom_Henderson_/status/1602415923528601600";}}}}}}i:4;s:3:" ";i:5;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:45:"https://insider-gaming.com/new-playstation-5/";}}}, 1701116101, 1714147143
    Run Time: 0.000445
  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, 846661, a:5:{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:16:"Dual Sense Edge:";}}i:1;s:2:" ";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:"xWCh0wY6LDQ";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=xWCh0wY6LDQ";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=xWCh0wY6LDQ]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=xWCh0wY6LDQ";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.000326
  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, 846663, a:1:{i:0;s:243:"Дошел слушок, что в новом году для пс5 сделают рабочей всю библиотеку пс4. Типа полная обратная совместимость на одно поколение назад.";}, 1701116101, 1714147143
    Run Time: 0.000396
  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: post, 846664, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 846454, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 846454, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:6:{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:10:"PS5 DevKit";}}i:1;s:2:" ";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:"2jsKxme1fmQ";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[SIZE=2]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=2jsKxme1fmQ";s:8:"original";a:2:{i:0;s:51:"[URL='https://www.youtube.com/watch?v=2jsKxme1fmQ']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=2jsKxme1fmQ";}}}}}}i:5;s:113:" Помню кто-то усирался здесь, "нет, это не может быть девкитом"";}}i:1;s:239:" Помню, потом миллион фоток и видосов выкладывали, что это реальный девкит. Что твой баян нового доказывает, вообще непонятно.:rolleyes:";}, 1701116101, 1714147143
    Run Time: 0.000325
  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: signature, 727, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:28:"https://youtu.be/Nq--Bv5G06M";s:8:"original";a:2:{i:0;s:36:"[URL='https://youtu.be/Nq--Bv5G06M']";i:1;s:6:"[/URL]";}s:8:"children";a:2:{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:45:"https://kvotka.ru/images/2021/09/07/SENYN.jpg";}}i:1;s:1:" ";}}}, 1701116101, 1714147143
    Run Time: 0.000292
  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, 846665, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:30:"SnV, post: 846664, member: 727";s:8:"original";a:2:{i:0;s:40:"[QUOTE="SnV, post: 846664, member: 727"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:238:"Помню, потом миллион фоток и видосов выкладывали, что это реальный девкит. Что твой баян нового доказывает, вообще непонятно.:rolleyes:";}}i:1;s:75:" я и выкладывал его тогда, кто-то не верил.";}, 1701116101, 1714147143
    Run Time: 0.000289
  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, 846666, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:32:"dimm, post: 846665, member: 3212";s:8:"original";a:2:{i:0;s:42:"[QUOTE="dimm, post: 846665, member: 3212"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:74:"я и выкладывал его тогда, кто-то не верил.";}}i:1;s:202:" Первым рисункам не верили, но потом много пруфов было нормальных. Вряд ли сомневающиеся оставались до 2022 года.";}, 1701116101, 1714147143
    Run Time: 0.000272
  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: post, 846837, a:5:{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:11:"GT7 PS VR2:";}}i:1;s:2:" ";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:"Ozgp6QYCd2A";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=Ozgp6QYCd2A";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=Ozgp6QYCd2A]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=Ozgp6QYCd2A";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.002188
  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, 846838, a:11:{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:14:"SONY CES 2023:";}}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:"UVMcjxW68Bc";}}i:3;s:1:" ";i:4;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=UVMcjxW68Bc";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=UVMcjxW68Bc]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=UVMcjxW68Bc";}}}}}}i:5;s:3:" ";i:6;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:"и трейлер PS VR2";}}i:7;s:1:" ";i:8;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:"u5L9Mvh7tAk";}}i:9;s:1:" ";i:10;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=u5L9Mvh7tAk";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=u5L9Mvh7tAk]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=u5L9Mvh7tAk";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.000497
  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, 847373, a:4:{i:0;s:27:"State of Play сёдни: ";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:"GGkP6D5lJcw";}}i:2;s:1:" ";i:3;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:4:"size";s:6:"option";s:1:"2";s:8:"original";a:2:{i:0;s:8:"[size=2]";i:1;s:7:"[/size]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.youtube.com/watch?v=GGkP6D5lJcw";s:8:"original";a:2:{i:0;s:49:"[url=https://www.youtube.com/watch?v=GGkP6D5lJcw]";i:1;s:6:"[/url]";}s:8:"children";a:1:{i:0;s:49:"View: https://www.youtube.com/watch?v=GGkP6D5lJcw";}}}}}}}, 1701116101, 1714147143
    Run Time: 0.000426
  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, 847465, a:3:{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:28:"PS5 firmware 7.0 вышла:";}}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:24:{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:19:"New Social Features";}}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:7:{i:0;s:252:" [*]Join a Discord Voice Chat on Your PS5 Console. You can now join Discord voice chats on your PS5 console and easily chat with friends on most other gaming platforms. To start, link your Discord and PlayStation Network accounts from your PS5 console,";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:43:"https://www.playstation.com/acct/management";s:8:"original";a:2:{i:0;s:51:"[URL='https://www.playstation.com/acct/management']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:17:" PlayStation.com,";}}i:2;s:49:" or Discord app on Windows, Mac or mobile device ";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:174:"https://www.google.com/url?q=https://www.playstation.com/support/subscriptions/link-psn-status-discord/&sa=D&source=docs&ust=1678214461565712&usg=AOvVaw2IUfFMYm1JRaAoyd-2fp_b";s:8:"original";a:2:{i:0;s:182:"[URL='https://www.google.com/url?q=https://www.playstation.com/support/subscriptions/link-psn-status-discord/&sa=D&source=docs&ust=1678214461565712&usg=AOvVaw2IUfFMYm1JRaAoyd-2fp_b']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:21:"following these steps";}}i:4;s:65:". Then, use the Discord app on your mobile device or computer to ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:161:"https://www.google.com/url?q=https://www.playstation.com/support/games/discord-voice-chat/&sa=D&source=docs&ust=1678214380150053&usg=AOvVaw0US16xDr6AnyK3EmNjj6m2";s:8:"original";a:2:{i:0;s:169:"[URL='https://www.google.com/url?q=https://www.playstation.com/support/games/discord-voice-chat/&sa=D&source=docs&ust=1678214380150053&usg=AOvVaw0US16xDr6AnyK3EmNjj6m2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:30:"get a Discord voice chat going";}}i:6;s:1392:" on your PS5 console (make sure your Discord app is updated to the latest version). You can also let your Discord friends see when you're online and what you're playing. [*]Note: if you've linked your PlayStation Network and Discord accounts in the past to display what game you're playing, you'll need to link your accounts again on your PS5 console to grant the new permissions needed for Discord voice chat. If you participated in the system software beta and have already linked your accounts during the beta period, you don't need to link them again. [*]Start or Request a Share Screen from Your Friend's Profile. You can now send a Share Screen request or start sharing your screen with a friend, directly from their profile. Simply select the Share Screen icon on your friend's profile to start a new session. [*]New "Join Game" Icon in Party Chats. On the voice chat card, a joinable icon will be displayed for party members playing a game you can join. You can join the game directly by selecting the player, and then selecting [Join Game] from the menu [*]New "Friends Who Play" Tile. In game hubs, you can now see which of your friends have the game, who is currently online, and who is currently playing the game. By selecting the tile, you can see what your friends are doing now, and you can also access your friends' profiles, where you'll be given more interaction options. ";}}i:3;s:1:" ";i:4;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:313:" [*]Manually Upload Game Captures to PlayStation App. You can now manually select and upload individual screenshots or game clips to PS App from your PS5 console, then easily share them on social media or with your friends.* This feature complements the auto-upload functionality that currently exists on PS App. ";}}i:5;s:1:" ";i:6;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:40:"New Gameplay and Personalization Options";}}i:7;s:1:" ";i:8;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:472:" [*]Variable Refresh Rate support for 1440p. You can now enjoy smoother visual performance when using a VRR-compatible HDMI 2.1 display at 1440p resolution, when playing a game that supports VRR.** [*]We've also made some updates to the parameters of the PS5 console's 1440p output test, enabling 1440p support for a wider range of HDMI displays. [*]To check if your HDMI device is compatible, go to [Settings] > [Screen and Video] > [Video Output] > [Test 1440p Output]. ";}}i:9;s:1:" ";i:10;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:3:{i:0;s:31:" [*]Game Library Enhancements. ";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:3:{i:0;s:405:" [*]You can now also sort and filter games when adding games to a gamelist. [*]You can use filters in your library to easily find PS VR games, as well as PS VR2 titles when PS VR2 launches later this month. [*]Game Presets for Multiplayer Session Preferences. You can set your preferences to manage who can join and who can invite other players to multiplayer sessions you've created for supported games. ";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:176:" [*]Go to [Settings] > [Saved Data and Game/App Settings] > [Game Presets] > [Online Multiplayer Sessions], and select your preferences in [Who Can Join] and [Who Can Invite]. ";}}i:2;s:1:" ";}}i:2;s:1:" ";}}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:42:"New Accessibility and Ease-of-use Features";}}i:13;s:1:" ";i:14;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:3:{i:0;s:136:" [*]PS4 to PS5 Saved Data Migration. We're making it easier for you to access your PS4 saved data on your PS5 console through two ways: ";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:999:" [*]When you download or install a PS4 game on your PS5 console, a notification that PS4 saved data is available in your PlayStation Network cloud storage will appear (if your PS5 console doesn't already have saved data for the game). Simply select the notification to download your saved data. [*]When you download or install a PS5 game that can load PS4 saved data, such as the PS5 version of a game that was also released on PS4, the same notification will appear (if the game supports this feature). [*](Note: online storage for saved data requires a PlayStation Plus subscription) [*]PS5 to PS5 Data Transfer. You can now easily transfer the data on your PS5 console, including games, saved data, user profiles, settings, screenshots, and videos, to another PS5 console using a local Wi-Fi network or a LAN cable. You can either transfer the data during the initial PS5 console setup or later from the settings menu. This process doesn't remove or modify the data on your original PS5 console. ";}}i:2;s:1:" ";}}i:15;s:1:" ";i:16;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:399:" [*]Screen Reader Improvements. The screen reader now gives more detailed guidance when navigating the console. It will now tell you which direction you can move from the currently selected component, as well as your current position in a component with multiple items. Additionally, when using the screen reader to view web pages, you'll now see borders around the section that's being read aloud. ";}}i:17;s:1:" ";i:18;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:355:" [*]Wireless Device Update for DualSense Wireless Controller. You can now update the DualSense wireless controller device software with a wireless connection. If you have trouble updating the device software wirelessly, connect your controller to your PS5 console using the USB cable to update it. You'll be able to update wirelessly for the next update. ";}}i:19;s:1:" ";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:73:"Game Capture Using Voice Command (Preview): U.S. and U.K. limited release";}}i:21;s:1:" ";i:22;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:3:{i:0;s:86:" [*]Voice Command now supports using your voice to save video clips of your gameplay. ";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:626:" [*]Say "Hey PlayStation, capture that!" to save a video clip of your recent gameplay. The default duration saved is based on your settings. [*]You can also save a specific duration of your gameplay, from 15 seconds to 60 minutes. For example, to save 5 minutes, say "Hey PlayStation, capture the last 5 minutes". [*]Say "Hey PlayStation, start recording" to manually start a new gameplay recording. You can then say "Hey PlayStation, stop recording" to end the recording and save the video clip. [*]Voice Command (Preview) is currently available in English for beta participants with accounts registered to the U.S. and U.K. ";}}i:2;s:1:" ";}}i:23;s:1:" ";}}}, 1701116101, 1714147143
    Run Time: 0.003566

Included Files (113, XenForo Classes: 63)

  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/NextStage/Feature/Model/Feature.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Model/Node.php
  78. library/Tapatalk/Model/Node.php
  79. library/XenForo/Route/Prefix/Categories.php
  80. library/XenForo/Route/Prefix/Forums.php
  81. library/XenForo/ControllerResponse/View.php
  82. library/XenForo/ControllerResponse/Abstract.php
  83. library/XenForo/Helper/Cookie.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/XenForo/Route/Prefix/Tags.php
  103. library/Tapatalk/EventListener/Hook.php
  104. internal_data/templates/S.1,L.1,page_nav.php
  105. library/Tapatalk/Listener/TemplatePostRender.php
  106. library/XenForo/Route/Prefix/Posts.php
  107. internal_data/templates/S.1,L.1,nextstage_feature_post_private_controls.php
  108. library/XenForo/Model/Avatar.php
  109. internal_data/templates/S.1,L.1,bb_code_tag_quote.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