Page Time: 0.4936s

Memory: 8.8396 MB (Peak: 11.2895 MB)

Queries (43, time: 0.1175s, 23.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.000774
    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.000091
    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.000152
    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.000122
    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: 242
    Run Time: 0.000583
    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: 47
    Run Time: 0.000389
    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 >= 175 AND post.position < 200) 
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 242
    Run Time: 0.006239
    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 (30824)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000408
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4sculptan_base.attachment.data_id1 
  9. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 242
    Run Time: 0.000136
  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 (3150)
    Run Time: 0.000697
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpostconstPRIMARYPRIMARY4const1 
    SIMPLEpr_cacheconstPRIMARYPRIMARY4const0unique row not found
    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 (3150)
                    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.000627
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition
    SIMPLEdataeq_refPRIMARYPRIMARY4sculptan_base.attachment.data_id1Using where
  12. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: b23efdb4ab079b464a31f786cc36e30e, , 1715055754
    Run Time: 0.000204
  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=242&page=8, 1715052154,
    Run Time: 0.000368
  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.000650
    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.000079
    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, 30784, a:3:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:34:"Maiorov.S, post: 30762, member: 82";s:8:"original";a:2:{i:0;s:44:"[QUOTE="Maiorov.S, post: 30762, member: 82"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"554";s:8:"original";a:2:{i:0;s:10:"[USER=554]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:17:"Евгений 78";}}i:1;s:62:", пример техники или ссылку можно??";}}i:1;s:83:" Пошагово процесс в брошюрах описан Sang-Eon Lee ";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:43:"https://www.lifeminiatures.com/step-by-step";}}}, 1632305603, 1715052154
    Run Time: 0.012537
  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, 30785, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"554";s:8:"original";a:2:{i:0;s:10:"[USER=554]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:17:"Евгений 78";}}i:1;s:884:", из пошаговых не понял какие точки, что за новая техника росписи точками?? Судя по иллюстрациям стандартная техника слоями высветления-тени., границы растушевывать или перекрывать полутоном.. Интересно просто если есть другой способ тонирования.. Если проблема в границе между тонами, как совсем не мастер и начинающий могу сказать мне помог мат.медиум, но после него я понял какой прозрачности и консистенции нужно делать краску. Сейчас им почти не пользуюсь, но с мат.мед удобней..";}, 1632305603, 1715052154
    Run Time: 0.013112
  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, 30796, a:3:{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:81:"http://figurementors.com/a-few-thoughts-on-my-way-of-painting-busts-by-jason-zhou";}}i:1;s:73:" Просто оставлю это здесь .может поможет";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:89:"https://sproketsmallworld.blogspot.co.ke/2012/01/spots-before-your-eyes-guide-to.html?m=1";}}}, 1632305603, 1715052154
    Run Time: 0.009255
  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, 30807, a:3:{i:0;s:109:"Конкретизирую- подпись к снимку 11 брошюры по росписи бюста ";i:1;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:1:"3";s:8:"original";a:2:{i:0;s:8:"[SIZE=3]";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:30:"LM-BS001 WW2 Panzer Commander:";}}}}i:2;s:646:" Mix the flesh tone No.4 with No.5 at 1:1 ratio and then tap thin dots of it over and over around the boundary line to blur the distinction between No.4 and No.5 Все-таки, мне кажется, речь не о стандартной слоевой технике с растушевкой, лессировкой границ. Да, по ссылке коллеги dickytaxerа можно увидеть нечто подобное. P.S. мат медиума увы не имею и заказывать сейчас, зимой, нецелесообразно- доедет к нам в Сибирь не в лучшем виде.";}, 1632305603, 1715052154
    Run Time: 0.003102
  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, 30809, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"554";s:8:"original";a:2:{i:0;s:10:"[USER=554]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:17:"Евгений 78";}}i:1;s:312:" Так переведите, там же все и дано- это точки для того чтобы размыть границы между тонами, как и писал выше как раз полутоно-получился при смешании 4 и 5 и точками тоже можно..";}, 1632305603, 1715052154
    Run Time: 0.003128
  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, 30810, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:2:"82";s:8:"original";a:2:{i:0;s:9:"[USER=82]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:9:"Maiorov.S";}}i:1;s:214:", назначение точек (для того чтобы размыть границы между тонами) вопросов не вызывает.Интересна техника их нанесения.";}, 1632305603, 1715052154
    Run Time: 0.002971
  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, 30813, a:1:{i:0;s:420:"Ну если такой вопрос, тут только видео, но мне кажется кончиком кисти... Кстати поишите у Сергея Попкова в одной из работ в стиле доттинг..Возможно похоже.. Сам попробую это в ср,чт..если что-то вырисуется отличное от лэйринга отпишу..";}, 1632305603, 1715052154
    Run Time: 0.003222
  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, 30824, a:2:{i:0;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:11:"dailymotion";s:8:"original";a:2:{i:0;s:19:"[MEDIA=dailymotion]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:6:"x21m4l";}}i:1;s:770:" .Мне кажется ,что эта техника не что иное как stippling или скорее ,правильнее пуантелизм .Если поискать на Planetfigures там есть посты ака Hardy -он одним из первых ввел эту технику в миниатюре (Hardy Aaron Tempest)хотя, пуантелизм -это ,все-таки работа различными колерами ,а стипплинг-одним .Но смысл всего в том ,чтобы создавать размытый переход тонов кончиком кисти как на видео ,А. А на миниатюре ,ниже-пример его работы (он есть на фейсбуке)";}, 1632305603, 1715052154
    Run Time: 0.003064
  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, 30827, a:5:{i:0;s:172:"Ну, вот, интрига нарастает уже оказывается речь о 3-х техниках- доттинг, стипплинг, пуантелизм...";i:1;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:0:{}}i:2;s:1:" ";i:3;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"dickytaxer, post: 30824, member: 152";s:8:"original";a:2:{i:0;s:46:"[QUOTE="dickytaxer, post: 30824, member: 152"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:19:"Hardy Aaron Tempest";}}i:4;s:54:" Что-то видео не подгружается.";}, 1632305603, 1715052154
    Run Time: 0.002540
  25. 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.000219
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  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, 30828, a:1:{i:0;s:1186:"Если речь идет о росписи лица(бюстов),то я пару раз видел на фейсбуке у китайских мастеров интересную технику с большими бюстами-статуями.Они сначала покрывают из аэрографа специальной грунтовкой,а потом тоже из аэра мокрым,густым слоем какой-то специальной смывкой.Лицо покрывается пигментными пятнами различного диаметра как у настоящего человека,мастер в процессе контролирует кисточкой.После идет обычный покрас прозрачными слоями.Но это не масляная смывка,она не растекается по всей поверхности,а как-то аккумулируется в определенных местах точками,что за жидкости я не понял-бутыльки похожи на тамиевские с иероглифами(я в них не силен:))";}, 1632305603, 1715052154
    Run Time: 0.002816
  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, 30831, a:2:{i:0;a:4:{s:3:"tag";s:5:"media";s:6:"option";s:11:"dailymotion";s:8:"original";a:2:{i:0;s:19:"[MEDIA=dailymotion]";i:1;s:8:"[/MEDIA]";}s:8:"children";a:1:{i:0;s:6:"x21m4l";}}i:1;s:1301:". Даю ссылочку на видео -при загрузке мне так и написали ,что слишком большое )))уже работает. Просмотрел брошюры китайского мастера-он используе смешанную технику (как и пишет вначале-flat painting )те ,просто наносит оттенки кожи в те места .согласно падающей тени ,которые он и указывает (пронумеровав их ) ,затем смешивает на палитре 2оттенка ,между которыми нужно сделать переход и (если в технике flat-берут влажную кисть и смазывают переход ), то он использует доттинг (тот же стипплинг) и смнсью этих оттенков ,кончиком кисти создает переход тонов (как на видео) Попросту-тыкает полусухой кистью по этим местам .Ну как смог так и обьяснил .Надеюсь поможет ps.Процесс возобновляется при нанесении каждого нового оттенка.";}, 1632305603, 1715052154
    Run Time: 0.004450
  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, 30833, a:1:{i:0;s:484:"Ну на пдф брошюрах точно размытие границ...только метод точками.. Так более плавно получается, цель одна размыть, хоть растушевать хоть точками, хоть слоем полутона.. Мастера, поправьте наши доводы, интересно ж это новая техника или просто метод!? P.S видос не грузит...";}, 1632305603, 1715052154
    Run Time: 0.003414
  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, 30834, a:1:{i:0;s:190:"Ну на видео(подписано) работа маслом,как бы все так работают,оказывается это еще и техникой называется:).";}, 1632305603, 1715052154
    Run Time: 0.002734
  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, 30835, a:1:{i:0;s:65:"Вообще не вижу видео!!))) че там хоть??";}, 1632305603, 1715052154
    Run Time: 0.002744
  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, 30836, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:34:"Maiorov.S, post: 30833, member: 82";s:8:"original";a:2:{i:0;s:44:"[QUOTE="Maiorov.S, post: 30833, member: 82"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:483:"Ну на пдф брошюрах точно размытие границ...только метод точками.. Так более плавно получается, цель одна размыть, хоть растушевать хоть точками, хоть слоем полутона.. Мастера, поправьте наши доводы, интересно ж это новая техника или просто метод!? P.S видос не грузит...";}}i:1;s:463:" Жаль что не грузит .но у меня, почему-то ,показывает ....хотя там то же что я описал выше (а Вы предположили ,еще раньше )-наносит затемнение,,-растушевывает тычками кисти ,высветления -то же тычками растушевывает и так неск. раз до достижения нужного эффекта";}, 1632305603, 1715052154
    Run Time: 0.003415
  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, 30837, a:3:{i:0;s:177:"А насчет того, что кисть должна быть полусухой -это точно?В тексте вроде бы об этом не говорится. ";i:1;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:36:"dickytaxer, post: 30831, member: 152";s:8:"original";a:2:{i:0;s:46:"[QUOTE="dickytaxer, post: 30831, member: 152"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:48:"Попросту-тыкает полусухой";}}i:2;s:246:". Отлично тыкает судя по итоговому результату. С видео что-то не срастается. Может просто скопируете ее адрес, не прикрепляя само видео.";}, 1632305603, 1715052154
    Run Time: 0.005174
  33. 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, 30838, a:3:{i:0;s:161:"По пдф насколько понял стандарным слоем тыкает.. Ну то- есть не суше обыкновенного слоя.. ";i:1;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"554";s:8:"original";a:2:{i:0;s:10:"[USER=554]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:17:"Евгений 78";}}i:2;s:47:", попробуйте и так и суше..";}, 1632305603, 1715052154
    Run Time: 0.003127
  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: post, 30840, a:4:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:34:"Maiorov.S, post: 30838, member: 82";s:8:"original";a:2:{i:0;s:44:"[QUOTE="Maiorov.S, post: 30838, member: 82"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:3:{i:0;s:161:"По пдф насколько понял стандарным слоем тыкает.. Ну то- есть не суше обыкновенного слоя.. ";i:1;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"554";s:8:"original";a:2:{i:0;s:10:"[USER=554]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:17:"Евгений 78";}}i:2;s:47:", попробуйте и так и суше..";}}i:1;s:628:" про полусухую кисть -это я вынес из другого места.Но ,в принципе, там пишут -,набрать краски столько ,чтобы не слипались волоски и был достижим эффект точечных ударов и еще ,чтобы избежать пунктирных линий ,рекомендуют кисть подкручивать (я думаю -вокруг своей оси) ps. с видео-как то не понятно -копирую ссылку .но оно сразу грузится .попробую еще. ";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:57:"http://www.derivan.com.au/resources/stippling.html-это";}}i:3;s:46:" ссылка на то что я описал";}, 1632305603, 1715052154
    Run Time: 0.002866
  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, 30841, a:1:{i:0;s:578:"Пробовал жидкой краской (чуть погуще консистенции для лессировки). Сначала результат понравился- потом увлекся и видимо переборщил. В итоге уже окрашенную голову бюста пришлось отмыть. Определенно в этом методе доттинг (стипплинг) что-то есть. Хотелось бы узнать подробности его использования от людей с практикой...";}, 1632305603, 1715052154
    Run Time: 0.002877
  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, 30842, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"152";s:8:"original";a:2:{i:0;s:10:"[USER=152]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:10:"dickytaxer";}}i:1;s:150:", рекомендуют кисть подкручивать (я думаю -вокруг своей оси) . О, уже полезная мысль!";}, 1632305603, 1715052154
    Run Time: 0.002841
  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, 30843, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:43:"Евгений 78, post: 30841, member: 554";s:8:"original";a:2:{i:0;s:53:"[QUOTE="Евгений 78, post: 30841, member: 554"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:578:"Пробовал жидкой краской (чуть погуще консистенции для лессировки). Сначала результат понравился- потом увлекся и видимо переборщил. В итоге уже окрашенную голову бюста пришлось отмыть. Определенно в этом методе доттинг (стипплинг) что-то есть. Хотелось бы узнать подробности его использования от людей с практикой...";}}i:1;s:67:". Уже писал, напишите Сергею Папкову.";}, 1632305603, 1715052154
    Run Time: 0.002771
  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, 30844, a:4:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:34:"Maiorov.S, post: 30843, member: 82";s:8:"original";a:2:{i:0;s:44:"[QUOTE="Maiorov.S, post: 30843, member: 82"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:1:{i:0;s:66:". Уже писал, напишите Сергею Папкову.";}}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:81:"http://figurementors.com/a-few-thoughts-on-my-way-of-painting-busts-by-jason-zhou";}}i:3;s:529:". Вот здесь Джейсон Шу в разделе о консистенции краски (заметьте,что он расписывает акрилом !) пишет что чем более резкий переход вы хотите получить ,тем гуще должна быть краска(как он пишет,в идеале-как из баночки ,не разбавленная водой). И -наоборот ,разбавляя ее мы получим мягкие переходы";}, 1632305603, 1715052154
    Run Time: 0.003133
  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, 30847, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"152";s:8:"original";a:2:{i:0;s:10:"[USER=152]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:10:"dickytaxer";}}i:1;s:313:", Спасибо за ссылку. Интересные у него приемчики: "However, when I feel the paint is a bit too diluted, a quick tip that I usually use is to gently blow the brush having paint on its tip with my mouth for a few seconds to make it the right consistency for stippling to work"";}, 1632305603, 1715052154
    Run Time: 0.003006
  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: post, 30850, a:2:{i:0;a:4:{s:3:"tag";s:5:"quote";s:6:"option";s:43:"Евгений 78, post: 30847, member: 554";s:8:"original";a:2:{i:0;s:53:"[QUOTE="Евгений 78, post: 30847, member: 554"]";i:1;s:8:"[/QUOTE]";}s:8:"children";a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"152";s:8:"original";a:2:{i:0;s:10:"[USER=152]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:10:"dickytaxer";}}i:1;s:313:", Спасибо за ссылку. Интересные у него приемчики: "However, when I feel the paint is a bit too diluted, a quick tip that I usually use is to gently blow the brush having paint on its tip with my mouth for a few seconds to make it the right consistency for stippling to work"";}}i:1;s:186:" Да да ! если жидковата -подуй на кончик!))). Удачи в творчестве.И ,может быть , покажете как получается?)))";}, 1632305603, 1715052154
    Run Time: 0.004112
  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, 30851, a:2:{i:0;a:4:{s:3:"tag";s:4:"user";s:6:"option";s:3:"152";s:8:"original";a:2:{i:0;s:10:"[USER=152]";i:1;s:7:"[/USER]";}s:8:"children";a:1:{i:0;s:10:"dickytaxer";}}i:1;s:310:", Обещать не могу, это похоже какой-то высший пилотажв росписи: Hold your breath for a few seconds when painting small details such as very thin straight line or tiny dots. This helps eliminate possible vibrancy coming from your own breath during the painting.";}, 1632305603, 1715052154
    Run Time: 0.003152
  42. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('notices')
    	AND style_id = ?
    	AND language_id = ?
    Params: 14, 2
    Run Time: 0.000135
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  43. 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.000098
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (173, XenForo Classes: 67)

  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/Nobita/AvatarAlive/Option.php
  161. library/XenForo/Model/Avatar.php
  162. library/XenForo/Helper/File.php
  163. library/bdMedal/Model/Medal.php
  164. library/bdMedal/DataWriter/Medal.php
  165. library/XenForo/DataWriter.php
  166. library/bdMedal/Helper/Template.php
  167. library/XenForo/ViewPublic/Helper/User.php
  168. library/XenForo/Model/UserField.php
  169. library/bdMedal/Model/Awarded.php
  170. library/XenGallery/Route/Prefix/Media.php
  171. library/SvgOfftop/SvgOfftop.php
  172. library/XenForo/Debug.php
  173. library/XenForo/ViewRenderer/Json.php