Page Time: 0.5769s

Memory: 9.0292 MB (Peak: 11.4789 MB)

Queries (50, time: 0.1602s, 27.8%)

  1. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('options', 'languages', 'contentTypes', 'codeEventListeners', 'deferredRun', 'simpleCache', 'addOns', 'defaultStyleProperties', 'routeFiltersIn', 'routeFiltersOut', 'routesPublic', 'nodeTypes', 'bannedIps', 'discouragedIps', 'styles', 'displayStyles', 'userBanners', 'smilies', 'bbCode', 'threadPrefixes', 'userTitleLadder', 'reportCounts', 'moderationCounts', 'userModerationCounts', 'notices', 'userFieldsInfo')
    Run Time: 0.001006
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 26Using where
  2. SELECT data_key, data_value
    FROM xf_data_registry
    WHERE data_key IN ('brListenerClasses', 'brBriviumAddOns')
    Run Time: 0.000136
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000155
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  4. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: dark_postrating_ratings
    Run Time: 0.000184
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryconstPRIMARYPRIMARY27const1 
  5. 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,
    	privacy.snog_flag_view
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    	LEFT JOIN xf_user_privacy AS privacy ON
    		(privacy.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 990
    Run Time: 0.000600
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEprivacyconstPRIMARYPRIMARY4const1 
  6. 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: 19
    Run Time: 0.000436
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  7. 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
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,14,2,3,4,5)) as positive_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (7,8,9,10,11,12)) as negative_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (13)) as neutral_rating_count
    	,
    pr_cache.rating_cache,
    pr2.rating
    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))
    left join dark_postrating_post_cache pr_cache ON (post.post_id = pr_cache.post_id)
    left join dark_postrating pr2 on (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.thread_id = ?
    	 AND (post.position >= 0 AND post.position < 25) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 990
    Run Time: 0.008055
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrangethread_id_post_date,thread_id_positionthread_id_position8 25Using index condition; Using where; Using filesort
    PRIMARYbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,sculptan_base.post.post_id1Using where
    PRIMARYusereq_refPRIMARYPRIMARY4sculptan_base.post.user_id1 
    PRIMARYuser_profileeq_refPRIMARYPRIMARY4sculptan_base.post.user_id1 
    PRIMARYuser_privacyeq_refPRIMARYPRIMARY4sculptan_base.post.user_id1 
    PRIMARYsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,sculptan_base.post.user_id1Using where
    PRIMARYsession_activityeq_refPRIMARYPRIMARY22sculptan_base.post.user_id,func1Using where
    PRIMARYpr_cacheeq_refPRIMARYPRIMARY4sculptan_base.post.post_id1 
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8sculptan_base.post.post_id,const1 
    DEPENDENT SUBQUERYdark_postrating_counteq_refuser_id_ratinguser_id_rating8sculptan_base.post.user_id,const1 
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4sculptan_base.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4sculptan_base.post.user_id1Using index condition
  8. 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 (16455)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000538
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const8Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4sculptan_base.attachment.data_id1 
  9. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 990
    Run Time: 0.000202
  10. SELECT
    	post.*
    	,
    pr_cache.rating_cache,
    pr2.rating
    FROM xf_post AS post
    left join dark_postrating_post_cache pr_cache ON (post.post_id = pr_cache.post_id)
    left join dark_postrating pr2 on (post.post_id = pr2.post_id and pr2.user_id = 0)
    WHERE post.post_id IN (16455)
    Run Time: 0.000535
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostconstPRIMARYPRIMARY4const1 
    SIMPLEpr_cacheconstPRIMARYPRIMARY4const1 
    SIMPLEpr2constpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8const,const0unique row not found
  11. 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 (16455)
                    AND (data.filename LIKE '%.png' OR
                        data.filename LIKE '%.jpg' OR
                        data.filename LIKE '%.jpeg' OR
                        data.filename LIKE '%.jpe' OR
                        data.filename LIKE '%.gif')
    GROUP BY attachment.content_id
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000980
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const8Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4sculptan_base.attachment.data_id1Using where
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 0076b3e503512470228e26b81512e889, , 1714042884
    Run Time: 0.000217
  13. 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=990, 1714039284,
    Run Time: 0.000447
  14. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'xengallery_bb_code_tag_gallery', 'thread_view', 'notice_cookies', 'oxy_news_nav_tab', 'dark_postrating', 'dark_postrating_member', 'dark_postrating_member_totals', 'message_user_info_extra', 'user_criteria_content', 'thread_list_item_icon_key', 'dark_postrating_member_notable_tabs', 'dark_postrating_account_wrapper', 'dark_postrating_navigation_visitor_tab', 'dark_postrating_visitor_panel', 'dark_postrating_member_card', 'dark_postrating_member_info', 'dark_postrating_message_user_info', 'xengallery_comments_block', 'xengallery_media_block_items', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 14, 2
    Run Time: 0.000736
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 27Using where
  15. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('MMOCS_my_buys')
    Params: 2
    Run Time: 0.000085
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledconstPRIMARYPRIMARY106const,const1 
  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, 16455, a:16:{i:0;s:711:"Добрый вечер всем! Фигурка от Andrea Miniatures, PC-02, 54 мм (1/32). Акрил, темпера, металлики, пигменты на основании, вода от Валеджо. Спасибо Сергею Поповиченко за помощь в процессе! Для меня это была самая долгая и трудная работа, пожалуй. Постоянно что-то докрашивалось или перекрашивалось... и устал от него - страшно. Все! больше на нем ничего трогать не буду! Отправляйся к своим друзьям на полку!!! :cool: ";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:"18143";}}i:2;s:2:" ";i:3;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18144";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18145";}}i:6;s:1:" ";i:7;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18146";}}i:8;s:1:" ";i:9;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18147";}}i:10;s:1:" ";i:11;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18148";}}i:12;s:1:" ";i:13;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18149";}}i:14;s:1:" ";i:15;a:4:{s:3:"tag";s:6:"attach";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[ATTACH]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:5:"18150";}}}, 1632305603, 1714039284
    Run Time: 0.005196
  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: signature, 284, a:1:{i:0;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:35:"https://diorama.ru/authors/dgureev/";}}}, 1632305603, 1714039284
    Run Time: 0.009689
  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, 16456, a:1:{i:0;s:27:"Замечательно!!!";}, 1632305603, 1714039284
    Run Time: 0.002653
  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, 16458, a:2:{i:0;s:151:"Понравилось, но Глаза все портят. Напоминают персонажа отсюда Дмитрий, без обид ;) ";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:"6gCbAkqMKYg";}}}, 1632305603, 1714039284
    Run Time: 0.006388
  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: signature, 1, a:2:{i:0;s:45:"Я здесь, я там, я всегда. ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:35:"http://www.puttyandpaint.com/Gissar";s:8:"original";a:2:{i:0;s:43:"[url="http://www.puttyandpaint.com/Gissar"]";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:27:"http://pnp.li/badge/848.png";}}}}}, 1632305603, 1714039284
    Run Time: 0.003281
  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, 16459, a:1:{i:0;s:181:"Жуть какая... Это я про клип! Работа понравилась - штаны и поясной платок особенно хорошо получились!";}, 1632305603, 1714039284
    Run Time: 0.010288
  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, 8, a:3:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:48:"http://www.puttyandpaint.com/Stanislav_Kurylenko";s:8:"original";a:2:{i:0;s:56:"[URL='http://www.puttyandpaint.com/Stanislav_Kurylenko']";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:27:"http://pnp.li/badge/575.png";}}}}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:39:"http://stanislavkurylenko.blogspot.com/";}}}, 1632305603, 1714039284
    Run Time: 0.009642
  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, 16463, a:1:{i:0;s:31:"Классная роспись";}, 1632305603, 1714039284
    Run Time: 0.004502
  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: signature, 263, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:35:"https://www.puttyandpaint.com/DEMOH";s:8:"original";a:2:{i:0;s:43:"[url="https://www.puttyandpaint.com/DEMOH"]";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:27:"http://pnp.li/badge/683.png";}}}}}, 1632305603, 1714039284
    Run Time: 0.005808
  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, 16464, a:1:{i:0;s:110:"Отличная роспись, особенно понравилось как лицо получилось!";}, 1632305603, 1714039284
    Run Time: 0.003239
  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, 29, a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#808080";s:8:"original";a:2:{i:0;s:15:"[COLOR=#808080]";i:1;s:8:"[/COLOR]";}s:8:"children";a:2:{i:0;s:102:"Я проигрывал и был чемпионом, и потому мне всё понятно... ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:35:"https://www.puttyandpaint.com/Henry";s:8:"original";a:2:{i:0;s:43:"[url="https://www.puttyandpaint.com/Henry"]";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:28:"http://pnp.li/badge/2803.png";}}}}}}}, 1632305603, 1714039284
    Run Time: 0.003098
  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, 16465, a:1:{i:0;s:205:"Замечательная роспись. Много этих фигурок видел ( даже у самого есть), но это, пожалуй, одна из лучших! Поздравляю.";}, 1632305603, 1714039284
    Run Time: 0.002791
  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, 16469, a:3:{i:0;s:31:"Друзья, спасибо! ";i:1;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:8:"[USER=1]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:6:"Gissar";}}i:2;s:859:" , этож надо было страницу с пиратом такой похабенью испортить???!!! :eek: Флинт сейчас в гробу переворачивается и требует рому, чтоб это развидеть! Где тут смайлик с кровоточащими глазами???!!! Теперь мой мозг убит наличием информации , про какое-то "лобода" :confused: теперь буду это слово употреблять только в ругательных контекстах, напремер: " Что за лоботень?!!" :D Виктор, на самом деле, может они и вправду крупнее получились, чем следовало, но уж лучше так, чем "кукольные" точки ;)";}, 1632305603, 1714039284
    Run Time: 0.002820
  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, 16480, a:1:{i:0;s:57:"Очень понравилась роспись!!!:good:";}, 1632305603, 1714039284
    Run Time: 0.003117
  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, 16481, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"dpl, post: 16469, member: 284";s:8:"original";a:2:{i:0;s:39:"[QUOTE="dpl, post: 16469, member: 284"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:127:" Теперь мой мозг убит наличием информации , про какое-то "лобода" :confused:";}}i:1;s:280:" Дмитрий, прослушай 2 раза альбом Metallica "Ride the Lighting", и 3 раза альбом Iron Maiden "Seventh Son of Seventh Son" и твой мозг чудесным образом восстановится! Мне например помогло!)";}, 1632305603, 1714039284
    Run Time: 0.003423
  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, 16482, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:1:"8";s:8:"original";a:2:{i:0;s:8:"[USER=8]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:19:"Stanislav Kurylenko";}}i:1;s:114:", тут только Кэнибал Корпс может вернуть душевное равновесию ;)";}, 1632305603, 1714039284
    Run Time: 0.003124
  32. 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, 16496, a:9:{i:0;s:49:"Прошу прощения за оффтоп... ";i:1;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:1:"1";s:8:"original";a:2:{i:0;s:8:"[USER=1]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:6:"Gissar";}}i:2;s:69:", Вить, "эк его расколбасило-то...":D;):good: ";i:3;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"284";s:8:"original";a:2:{i:0;s:10:"[USER=284]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:3:"dpl";}}i:4;s:128:", Дмитрий, пират - шикарен. "Лобода"... "Лобода"... Что-то знакомое... :eek: Во! "";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://ru.wiktionary.org/wiki/%D0%BB%D0%B0%D0%B1%D1%83%D0%B4%D0%B0";s:8:"original";a:2:{i:0;s:75:"[URL='https://ru.wiktionary.org/wiki/%D0%BB%D0%B0%D0%B1%D1%83%D0%B4%D0%B0']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:12:"Лабуда";}}i:6;s:12:""!!! :good: ";i:7;a:4:{s:3:"tag";s:8:"offtopik";s:6:"option";N;s:8:"original";a:2:{i:0;s:10:"[OFFTOPIK]";i:1;s:11:"[/OFFTOPIK]";}s:8:"children";a:3:{i:0;s:26:" 1.3.1. Значение. ";i:1;a:4:{s:3:"tag";s:6:"indent";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[INDENT]";i:1;s:9:"[/INDENT]";}s:8:"children";a:6:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:207:"https://ru.wiktionary.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C:%D0%A3%D1%81%D0%BB%D0%BE%D0%B2%D0%BD%D1%8B%D0%B5_%D1%81%D0%BE%D0%BA%D1%80%D0%B0%D1%89%D0%B5%D0%BD%D0%B8%D1%8F";s:8:"original";a:2:{i:0;s:215:"[URL='https://ru.wiktionary.org/wiki/%D0%92%D0%B8%D0%BA%D0%B8%D1%81%D0%BB%D0%BE%D0%B2%D0%B0%D1%80%D1%8C:%D0%A3%D1%81%D0%BB%D0%BE%D0%B2%D0%BD%D1%8B%D0%B5_%D1%81%D0%BE%D0%BA%D1%80%D0%B0%D1%89%D0%B5%D0%BD%D0%B8%D1%8F']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:9:"разг.";}}i:1;s:17:" что-либо ";i:2;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:91:"https://ru.wiktionary.org/wiki/%D0%BC%D0%B0%D0%BB%D0%BE%D0%B2%D0%B0%D0%B6%D0%BD%D1%8B%D0%B9";s:8:"original";a:2:{i:0;s:99:"[URL='https://ru.wiktionary.org/wiki/%D0%BC%D0%B0%D0%BB%D0%BE%D0%B2%D0%B0%D0%B6%D0%BD%D1%8B%D0%B9']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:20:"маловажное";}}i:3;s:159:", несущественное, незначительное, неинтересное ◆ Отсутствует пример употребления (см. ";i:4;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:62:"https://ru.wiktionary.org/wiki/%D0%92%D0%A1:%D0%A6%D0%98%D0%A2";s:8:"original";a:2:{i:0;s:70:"[URL='https://ru.wiktionary.org/wiki/%D0%92%D0%A1:%D0%A6%D0%98%D0%A2']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:24:"рекомендации";}}i:5;s:2:").";}}i:2;s:1:" ";}}i:8;s:296:" Точное попадание, откат нормальный!;) Душевное равновесие после такой "лабуды" вернуть не получится ничем. Ввиду отсутствия самой Души у просмотренного ролика.:D;)";}, 1632305603, 1714039284
    Run Time: 0.002984
  33. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('svg_offtop')
    	AND style_id = ?
    	AND language_id = ?
    Params: 14, 2
    Run Time: 0.000152
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  34. 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, 3, a:1:{i:0;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:36:"https://www.puttyandpaint.com/Sychev";s:8:"original";a:2:{i:0;s:44:"[URL='https://www.puttyandpaint.com/Sychev']";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:28:"http://pnp.li/badge/2449.png";}}}}}, 1632305603, 1714039284
    Run Time: 0.003967
  35. 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, 16502, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[USER=3]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:27:"Владимир Сычёв";}}i:1;s:23:", спасибо!:good:";}, 1632305603, 1714039284
    Run Time: 0.004317
  36. 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, 16509, a:1:{i:0;s:50:"Классная работа!!!:good::good::good:";}, 1632305603, 1714039284
    Run Time: 0.003273
  37. 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, 16514, a:1:{i:0;s:374:"Мне пират понравился, хорошая роспись! А мне клип наоборот поднял настроение. Теперь всем новичкам кому делают замечание насчет больших глаз, пускай сразу показывают данный клип, что бы снять все вопросы:D";}, 1632305603, 1714039284
    Run Time: 0.004539
  38. 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, 16517, a:1:{i:0;a:4:{s:3:"tag";s:8:"offtopik";s:6:"option";N;s:8:"original";a:2:{i:0;s:10:"[OFFTOPIK]";i:1;s:11:"[/OFFTOPIK]";}s:8:"children";a:5:{i:0;s:165:"Снова оффтоп... Попытаюсь вернуть душевное равновесие капитану Флинту. Не ром, но всё-же...;) ";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:"vxQHYmw1MBI";}}i:2;s:174:" "...Fifteen men on a dead man's chest!!!:mad: Yo-ho-ho and a Bottle of Rum!!!...:mad: Darby McGraw!!!:mad: Bring me a Rum!!!...:mad::mad:" Но можно и вот так: ";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:"ARw8A7ExW9Q";}}i:4;s:35:" Это - по нашему!!!:D;) ";}}}, 1632305603, 1714039284
    Run Time: 0.003082
  39. 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, 16521, a:1:{i:0;s:164:"Отлично!!! Харизматичный , брутальный!! Здорово Дмитрий!!! И фотки замечательные!!!:good::good::good:";}, 1632305603, 1714039284
    Run Time: 0.004092
  40. 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, 5, a:1:{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:5:"color";s:6:"option";s:7:"#000000";s:8:"original";a:2:{i:0;s:15:"[COLOR=#000000]";i:1;s:8:"[/COLOR]";}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:33:"С уважением , Олег.";}}}}}}}, 1632305603, 1714039284
    Run Time: 0.003205
  41. 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, 16529, a:1:{i:0;s:476:"Джентельмены, еще раз спасибо! Владимир, песня из старого "Острова" у меня в фаворах! Пожалуй лучший вариант! Душевные дзыни и яни плавно начали приходить в истинный меридиан... бутылку рома сверху и полные карманы золотых дублонов - и никакая лабуда не страшна!";}, 1632305603, 1714039284
    Run Time: 0.002641
  42. 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, 16534, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"dpl, post: 16529, member: 284";s:8:"original";a:2:{i:0;s:39:"[QUOTE="dpl, post: 16529, member: 284"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:276:"Душевные дзыни и яни плавно начали приходить в истинный меридиан... бутылку рома сверху и полные карманы золотых дублонов - и никакая лабуда не страшна!";}}i:1;s:698:" Лопни моя селезёнка, Вы правы на всю 1000, сэр! Ямайский ром и славная песня творят чудеса! Дублоны, пиастры, таллеры... Притягательная у них сила! Но скольких Джентльменов Удачи она доводила до такой вот "лабуды"!.. Лучше не вспоминать. Клянусь своими иллюминаторами, сто дохлых кальмаров за пазуху старине Деви Джонсу, разрази его гром! И ржавый якорь в глотку его зверушке - Кракену!:D:good:";}, 1632305603, 1714039284
    Run Time: 0.003418
  43. 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, 16537, a:1:{i:0;s:184:"И хиде можна подучиться так мастерски выражовываться?!:):):) Возьми меня в ученики, Мастер! С уважением!";}, 1632305603, 1714039284
    Run Time: 0.003844
  44. 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, 16542, a:1:{i:0;s:111:"Я сам в шоке :D:D:D у нас так даже старые кап 2 не выражовываются!";}, 1632305603, 1714039284
    Run Time: 0.006341
  45. 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, 16545, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:29:"dpl, post: 16542, member: 284";s:8:"original";a:2:{i:0;s:39:"[QUOTE="dpl, post: 16542, member: 284"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:82:"у нас так даже старые кап 2 не выражовываются!";}}i:1;s:588:" А капразы? Тьфу на меня - каперанги?!;) Как загнут что, вылупив иллюминаторы, как омар или лангуст (на худой конец - сальский рак), так от швабры, что на голове, до когтей, уцепившихся в палубу хваткой акулы, весь мурашками с доброго морского ежа покроешься, чтобы не сказать грубее. У нас ведь - приличное общество, джентльмены.;)";}, 1632305603, 1714039284
    Run Time: 0.003634
  46. 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, 16546, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[USER=3]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:27:"Владимир Сычёв";}}i:1;s:33:", наиприличнейшее!";}, 1632305603, 1714039284
    Run Time: 0.009430
  47. 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, 16548, a:4:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"284";s:8:"original";a:2:{i:0;s:10:"[USER=284]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:3:"dpl";}}i:1;s:119:", рахмат, как говорят, сдаётся мне, в Порт-Ройале... Что по-нашему - з";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:2:"а";}}i:3;s:251:"раз вэлком!:D P.S. Дальше флудить не буду. Клянусь своей шляпой и всем тем, что под ней помещается. Или расположено. Или из-под неё выпирает...;)";}, 1632305603, 1714039284
    Run Time: 0.004216
  48. 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, 16552, a:1:{i:0;s:45:"Мне понравилась роспись.";}, 1632305603, 1714039284
    Run Time: 0.003318
  49. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('notices')
    	AND style_id = ?
    	AND language_id = ?
    Params: 14, 2
    Run Time: 0.000222
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  50. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('wf_widget_wrapper')
    	AND style_id = ?
    	AND language_id = ?
    Params: 14, 2
    Run Time: 0.000129
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (171, XenForo Classes: 66)

  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/Db.php
  19. library/Zend/Db/Adapter/Mysqli.php
  20. library/Zend/Db/Adapter/Abstract.php
  21. library/Zend/Db/Select.php
  22. library/Zend/Db/Expr.php
  23. library/Zend/Db/Profiler.php
  24. library/Zend/Db/Statement/Mysqli.php
  25. library/Zend/Db/Statement.php
  26. library/Zend/Db/Statement/Interface.php
  27. library/Zend/Db/Profiler/Query.php
  28. library/XenForo/CodeEvent.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/ThemeHouse/Listener/InitDependencies.php
  33. library/ThemeHouse/Listener/InitDependencies/20151202.php
  34. library/ThemeHouse/Listener/ControllerPreDispatch/20150911.php
  35. library/XenGallery/Listener.php
  36. library/Snog/CountryFlags/Listener/Dependencies.php
  37. library/Brivium/BriviumHelper/EventListeners.php
  38. library/Brivium/BriviumHelper/1010071/EventListeners.php
  39. library/Dark/PostRating/EventListener.php
  40. library/HDJuegos/WaterMarkAdd/Listener.php
  41. library/bdMedal/Listener.php
  42. library/Esthetic/CS/Listener/Model.php
  43. library/WidgetFramework/Listener.php
  44. library/WidgetFramework/Option.php
  45. library/Nobita/AvatarAlive/Listener.php
  46. library/XenForo/Router.php
  47. library/XenForo/Route/Filter.php
  48. library/XenForo/Route/Interface.php
  49. library/XenForo/Route/ResponseSuffix.php
  50. library/XenForo/Route/Prefix.php
  51. library/XenForo/Route/Prefix/Threads.php
  52. library/XenForo/RouteMatch.php
  53. library/XenForo/ControllerPublic/Thread.php
  54. library/XenForo/ControllerPublic/Abstract.php
  55. library/XenForo/Controller.php
  56. library/ThemeHouse/Thumbnails/Listener/LoadClass.php
  57. library/ThemeHouse/Listener/LoadClass.php
  58. library/ThemeHouse/Listener/LoadClass/20150518.php
  59. library/Esthetic/CS/Listener/Controller.php
  60. library/LiamW/StickyFirstPost/Listener.php
  61. library/ChangeThreadStarter/Listener.php
  62. library/RainDD/UserActivity/Listener.php
  63. library/ThemeHouse/Thumbnails/Extend/XenForo/ControllerPublic/Thread.php
  64. library/Esthetic/CS/ControllerPublic/Thread.php
  65. library/LiamW/StickyFirstPost/Extend/ControllerPublic/Thread.php
  66. library/ChangeThreadStarter/ControllerPublic/Thread.php
  67. library/RainDD/UserActivity/Controller/ThreadViewers.php
  68. library/RainDD/UserActivity/Controller/ThreadReaders.php
  69. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  70. library/XenForo/Input.php
  71. library/XenForo/Session.php
  72. library/XenForo/Helper/Ip.php
  73. library/XenForo/Visitor.php
  74. library/XenForo/Model/User.php
  75. library/Dark/PostRating/Model/User.php
  76. library/Esthetic/CS/Model/User.php
  77. library/XenGallery/Model/User.php
  78. library/XenForo/Permission.php
  79. library/XenForo/Helper/Php.php
  80. library/XenForo/Phrase.php
  81. library/XenForo/Locale.php
  82. library/Snog/CountryFlags/Listener/Visitor.php
  83. library/Snog/CountryFlags/Listener/Includes/Reader.php
  84. library/Snog/CountryFlags/Listener/Includes/Reader/Decoder.php
  85. library/Snog/CountryFlags/Listener/Includes/Reader/InvalidDatabaseException.php
  86. library/Snog/CountryFlags/Listener/Includes/Reader/Metadata.php
  87. library/Snog/CountryFlags/Listener/Includes/Reader/Util.php
  88. library/XenForo/ControllerHelper/ForumThreadPost.php
  89. library/XenForo/ControllerHelper/Abstract.php
  90. library/XenForo/Model/Thread.php
  91. library/Snog/CountryFlags/Listener/Thread.php
  92. library/Dark/PostRating/Model/Thread.php
  93. library/Esthetic/CS/Model/Thread.php
  94. library/Snog/CountryFlags/Model/Thread.php
  95. library/Dark/PostRating/Model.php
  96. library/XenForo/Model/Forum.php
  97. library/Esthetic/CS/Model/Forum.php
  98. library/LiamW/StickyFirstPost/Extend/Model/Forum.php
  99. library/XenForo/Helper/String.php
  100. library/XenForo/Helper/Discussion.php
  101. library/XenForo/Model/Post.php
  102. library/Snog/CountryFlags/Listener/Post.php
  103. library/Dark/PostRating/Model/Post.php
  104. library/XenForo/Model/Attachment.php
  105. library/ThemeHouse/Thumbnails/Extend/XenForo/Model/Attachment.php
  106. library/XenForo/Route/Prefix/Attachments.php
  107. library/XenForo/Model/Node.php
  108. library/ThemeHouse/Thumbnails/Extend/XenForo/Model/Node.php
  109. library/XenForo/Route/Prefix/Categories.php
  110. library/XenForo/Route/Prefix/Forums.php
  111. library/XenForo/ControllerResponse/View.php
  112. library/XenForo/ControllerResponse/Abstract.php
  113. library/ThemeHouse/Thumbnails/Model/Thumbnails.php
  114. library/ThemeHouse/Helper/Php.php
  115. library/ThemeHouse/Helper/Php/20160301.php
  116. library/XenForo/Helper/Cookie.php
  117. library/XenForo/ViewRenderer/HtmlPublic.php
  118. library/XenForo/ViewRenderer/Abstract.php
  119. library/XenForo/Template/Public.php
  120. library/XenForo/Template/Abstract.php
  121. library/WidgetFramework/Core.php
  122. library/XenForo/Model/Moderator.php
  123. library/WhoHasVisited/Listener.php
  124. library/WidgetFramework/Model/Widget.php
  125. library/WidgetFramework/Helper/Sort.php
  126. library/XenForo/ViewPublic/Thread/View.php
  127. library/XenForo/ViewPublic/Base.php
  128. library/XenForo/View.php
  129. library/Esthetic/CS/Listener/View.php
  130. library/Esthetic/CS/ViewPublic/Thread/View.php
  131. library/XenForo/BbCode/Parser.php
  132. library/XenForo/BbCode/Formatter/Base.php
  133. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  134. library/XenForo/ViewPublic/Helper/Message.php
  135. library/XenForo/BbCode/TextWrapper.php
  136. library/ThemeHouse/Thumbnails/Listener/TemplateCreate.php
  137. library/ThemeHouse/Listener/TemplateCreate.php
  138. library/ThemeHouse/Listener/TemplateCreate/20150106.php
  139. library/XenForo/Route/Prefix/Members.php
  140. library/SvgRadioRecord/RadioRecordNavigation.php
  141. library/Esthetic/CS/Listener/Navigation.php
  142. library/OXY/News/Listener.php
  143. library/bdMedal/Option.php
  144. library/WidgetFramework/Template/Extended.php
  145. library/Nobita/AvatarAlive/Avatar.php
  146. library/XenForo/Route/Prefix/Tags.php
  147. library/YoutubeVideo/Listener/Listener.php
  148. library/ThemeHouse/Thumbnails/Listener/TemplateHook.php
  149. library/ThemeHouse/Listener/TemplateHook.php
  150. library/ThemeHouse/Listener/TemplateHook/20150106.php
  151. library/ThemeHouse/Listener/Template.php
  152. library/ThemeHouse/Listener/Template/20150106.php
  153. library/Esthetic/CS/Listener/Hook.php
  154. library/ThemesCorp/Slider/Listener.php
  155. library/ThemeHouse/Thumbnails/Listener/TemplatePostRender.php
  156. library/ThemeHouse/Listener/TemplatePostRender.php
  157. library/ThemeHouse/Listener/TemplatePostRender/20150106.php
  158. library/Esthetic/CS/Listener/PostRender.php
  159. library/XenForo/Route/Prefix/Posts.php
  160. library/XenForo/Model/Avatar.php
  161. library/bdMedal/Model/Medal.php
  162. library/bdMedal/DataWriter/Medal.php
  163. library/XenForo/DataWriter.php
  164. library/bdMedal/Helper/Template.php
  165. library/bdMedal/Model/Awarded.php
  166. library/XenForo/ViewPublic/Helper/User.php
  167. library/XenForo/Model/UserField.php
  168. library/XenGallery/Route/Prefix/Media.php
  169. library/SvgOfftop/SvgOfftop.php
  170. library/XenForo/Debug.php
  171. library/XenForo/ViewRenderer/Json.php