Page Time: 0.4598s

Memory: 13.9494 MB (Peak: 19.7566 MB)

Queries (21, time: 0.1188s, 25.8%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000258
    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
    FROM xf_thread AS thread
    
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = thread.user_id)
    WHERE thread.thread_id = ?
    Params: 1744
    Run Time: 0.000384
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  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: 55
    Run Time: 0.000371
    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
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (1,2,5,6,7,8,10)) as positive_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (11,12,13)) as negative_rating_count
    	
    		,(select sum(count_received) from dark_postrating_count where user_id = post.user_id and rating in (14,3,4,9)) as neutral_rating_count
    	,
    pr2.rating, 
    	pr.*, post.post_id
    FROM xf_post AS post
    	
    		LEFT JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id AND thread.post_sticky = 1)
    		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 pr2 ON (post.post_id = pr2.post_id and pr2.user_id = 0)
    LEFT JOIN (
    select 
    pivot_pr.post_id
    , sum(case when pivot_pr.rating = 1 then 1 else 0 end) dark_postrating_1_count
    , sum(case when pivot_pr.rating = 14 then 1 else 0 end) dark_postrating_14_count
    , sum(case when pivot_pr.rating = 2 then 1 else 0 end) dark_postrating_2_count
    , sum(case when pivot_pr.rating = 3 then 1 else 0 end) dark_postrating_3_count
    , sum(case when pivot_pr.rating = 4 then 1 else 0 end) dark_postrating_4_count
    , sum(case when pivot_pr.rating = 5 then 1 else 0 end) dark_postrating_5_count
    , sum(case when pivot_pr.rating = 6 then 1 else 0 end) dark_postrating_6_count
    , sum(case when pivot_pr.rating = 7 then 1 else 0 end) dark_postrating_7_count
    , sum(case when pivot_pr.rating = 8 then 1 else 0 end) dark_postrating_8_count
    , sum(case when pivot_pr.rating = 9 then 1 else 0 end) dark_postrating_9_count
    , sum(case when pivot_pr.rating = 10 then 1 else 0 end) dark_postrating_10_count
    , sum(case when pivot_pr.rating = 11 then 1 else 0 end) dark_postrating_11_count
    , sum(case when pivot_pr.rating = 12 then 1 else 0 end) dark_postrating_12_count
    , sum(case when pivot_pr.rating = 13 then 1 else 0 end) dark_postrating_13_count
    
    		
    from dark_postrating pivot_pr 
    use index (`post_id_rating`)
    left join xf_post pivot_post on (pivot_pr.post_id = pivot_post.post_id)
    where pivot_post.thread_id = 1744
    group by pivot_pr.post_id
    ) pr on (pr.post_id = post.post_id)
    
    
    WHERE post.thread_id = ?
    	AND (((post.message_state IN ('visible'))
    	 AND (post.position >= 4260 AND post.position < 4280) ) OR (post.post_id = thread.first_post_id AND thread.post_sticky))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 1744
    Run Time: 0.093581
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    PRIMARYpostrefPRIMARY,thread_id_post_date,thread_id_positionthread_id_post_date4const9148Using where; Using filesort
    PRIMARYthreadeq_refPRIMARYPRIMARY4viregfum_db.post.thread_id1Using where
    PRIMARYbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,viregfum_db.post.post_id1Using where
    PRIMARYusereq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYuser_profileeq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYuser_privacyeq_refPRIMARYPRIMARY4viregfum_db.post.user_id1 
    PRIMARYsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,viregfum_db.post.user_id1Using where
    PRIMARYsession_activityeq_refPRIMARYPRIMARY22viregfum_db.post.user_id,func1Using where
    PRIMARYpr2eq_refpost_id_user_id,post_id_rating,user_id_ratingpost_id_user_id8viregfum_db.post.post_id,const1 
    PRIMARY<derived5>refkey0key05viregfum_db.post.post_id2 
    LATERAL DERIVEDpivot_prrefpost_id_ratingpost_id_rating4viregfum_db.post.post_id1Using index
    LATERAL DERIVEDpivot_posteq_refPRIMARY,thread_id_post_date,thread_id_positionPRIMARY4viregfum_db.pivot_pr.post_id1Using where
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
    DEPENDENT SUBQUERYdark_postrating_countrefuser_id_ratinguser_id_rating4viregfum_db.post.user_id1Using index condition
  5. SELECT attachment.*,
    	data.filename, data.file_size, data.file_hash, data.file_path, data.width, data.height, data.thumbnail_width, data.thumbnail_height
    FROM xf_attachment AS attachment
    INNER JOIN xf_attachment_data AS data ON
    	(data.data_id = attachment.data_id)
    WHERE attachment.content_type = ?
    	AND attachment.content_id IN (106658)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.000746
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const1Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4viregfum_db.attachment.data_id1 
  6. INSERT DELAYED INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 1744
    Run Time: 0.000414
  7. SELECT thread.*
    	,
    		0 AS thread_reply_banned
    FROM xf_thread AS thread
    
    WHERE thread.thread_id = ?
    Params: 1744
    Run Time: 0.000240
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
  8. SELECT node.*, forum.*
    	,
    	permission.cache_value AS node_permission_cache
    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: 55
    Run Time: 0.000373
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  9. 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=1744&page=214, 1711667861,
    Run Time: 0.000468
  10. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000159
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  11. SELECT *
    FROM uix_node_layout
    Run Time: 0.000243
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuix_node_layoutALL    2 
  12. SELECT data_value
    FROM xf_data_registry
    WHERE data_key = ?
    Params: uix_nodeCache
    Run Time: 0.000216
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLE       Impossible WHERE noticed after reading const tables
  13. SELECT node.*,
    	node_field.uix_node_icons,
    	node_field.uix_styling,
    	node_field.collapsed,
    	node_field.inheritClass,
    	node_field.inheritStyling
    FROM xf_node AS node
    LEFT JOIN uix_node_fields AS node_field ON (node.node_id = node_field.node_id)
    Run Time: 0.000280
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnodeALL    105 
    SIMPLEnode_fieldeq_refPRIMARYPRIMARY4viregfum_db.node.node_id1 
  14. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1711665461)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.018542
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 340Using where
    SIMPLEusereq_refPRIMARYPRIMARY4viregfum_db.session_activity.user_id1 
  15. SELECT session_activity.*
    	,
    	user.*
    FROM xf_session_activity AS session_activity
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = session_activity.user_id)
    WHERE (session_activity.view_date > 1711665461)
    ORDER BY session_activity.view_date DESC
    Run Time: 0.000814
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEsession_activityrangeview_dateview_date4 340Using where
    SIMPLEusereq_refPRIMARYPRIMARY4viregfum_db.session_activity.user_id1 
  16. SELECT *
    FROM xf_node
    
    ORDER BY lft ASC
    Run Time: 0.000340
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_nodeALL    105Using filesort
  17. SELECT content_id, cache_value
    FROM xf_permission_cache_content
    WHERE permission_combination_id = ?
    	AND content_type = 'node'
    Params: 1
    Run Time: 0.000284
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_cache_contentrefPRIMARYPRIMARY31const,const110Using where
  18. SELECT thread.*
    	,
    	user.gender, user.avatar_date, user.gravatar
    FROM xf_thread AS thread 
    
    	LEFT JOIN xf_user AS user ON
    		(user.user_id = thread.user_id)
    WHERE (thread.node_id IN (1, 10, 44, 45, 42, 50, 98, 63, 77, 89, 105, 125, 49, 126, 120, 90, 124, 48, 53, 102, 108, 15, 127, 64, 47, 54, 55, 11, 56, 22, 13, 14, 104, 38, 12, 43, 30, 60, 33, 70, 34, 83, 94, 116, 118, 121, 84, 85, 86, 87, 115, 97, 69, 91, 80, 88, 92, 46, 58, 59, 41, 40, 32, 61, 112, 36, 37, 62, 72, 35, 71, 95, 52, 106, 73, 103, 81, 107, 82, 101, 114, 113, 117, 119, 123, 111, 110, 100, 75, 74, 76, 16, 19, 17, 18, 31, 65, 66, 67, 68, 3, 4, 93, 6, 5, 23, 24, 99, 79)) AND (thread.discussion_state IN ('visible'))
    ORDER BY thread.post_date DESC
     LIMIT 15
    Run Time: 0.000218
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadindexnode_id_last_post_date,node_id_sticky_state_last_postpost_date4 15Using where
    SIMPLEusereq_refPRIMARYPRIMARY4viregfum_db.thread.user_id1 
  19. SELECT node.*, forum.*
    	
    FROM xf_forum AS forum
    INNER JOIN xf_node AS node ON (node.node_id = forum.node_id)
    
    WHERE node.node_id IN (53, 80, 10, 14, 4, 48, 22, 4, 53, 48, 126, 22, 53, 48, 125)
    Run Time: 0.000306
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEnoderangePRIMARYPRIMARY4 9Using where
    SIMPLEforumeq_refPRIMARYPRIMARY4viregfum_db.node.node_id1 
  20. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: wfc__1_thread_view, a:1:{s:14:"thread_view_12";a:2:{s:4:"html";s:3297:"<div class="avatarList"> <ul> <li class="thread-2786 thread-node-53"> <a href="members/frayz.25875/" class="avatar Av25875s" data-avatarhtml="true"><img src="styles/class/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Frayz" /></a> <a title="Сбрасываются настройки Neoline Shadow." class="Tooltip" href="threads/sbrasyvajutsja-nastrojki-neoline-shadow.2786/"> Сбрасываются настройки Neoline... </a> <div class="userTitle"> <a href="members/frayz.25875/" class="username">Frayz</a> posted <span class="DateTime" title="17 мар 2024 в 02:05">17 мар 2024</span> </div> </li> <li class="thread-2785 thread-node-80"> <a href="members/igorpv.25869/" class="avatar Av25869s" data-avatarhtml="true"><img src="styles/class/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="IgorPV" /></a> <a title="BlackSys сайт производителя в 2024 году." class="Tooltip" href="threads/blacksys-sajt-proizvoditelja-v-2024-godu.2785/"> BlackSys сайт производителя в... </a> <div class="userTitle"> <a href="members/igorpv.25869/" class="username">IgorPV</a> posted <span class="DateTime" title="14 мар 2024 в 17:24">14 мар 2024</span> </div> </li> <li class="thread-2784 thread-node-10"> <a href="members/ustas52.25829/" class="avatar Av25829s" data-avatarhtml="true"><img src="styles/class/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Ustas52" /></a> <a href="threads/korejskij-registrator-mando-z7.2784/"> Корейский регистратор Mando Z7 </a> <div class="userTitle"> <a href="members/ustas52.25829/" class="username">Ustas52</a> posted <span class="DateTime" title="20 фев 2024 в 16:51">20 фев 2024</span> </div> </li> <li class="thread-2782 thread-node-14"> <a href="members/sviatoi1988.25804/" class="avatar Av25804s" data-avatarhtml="true"><img src="styles/class/xenforo/avatars/avatar_male_s.png" width="48" height="48" alt="Sviatoi1988" /></a> <a href="threads/finevu-gx3.2782/"> FineVu GX3 </a> <div class="userTitle"> <a href="members/sviatoi1988.25804/" class="username">Sviatoi1988</a> posted <span class="DateTime" title="10 фев 2024 в 20:25">10 фев 2024</span> </div> </li> <li class="thread-2780 thread-node-4"> <a href="members/karagandinez.24193/" class="avatar Av24193s" data-avatarhtml="true"><img src="data/avatars/s/24/24193.jpg?1617208412" width="48" height="48" alt="Karagandinez" /></a> <a href="threads/s-nastupajuschim-novym-2024-godom.2780/"> С Наступающим Новым 2024 годом!!! </a> <div class="userTitle"> <a href="members/karagandinez.24193/" class="username">Karagandinez</a> posted <span class="DateTime" title="30 дек 2023 в 22:59">30 дек 2023</span> </div> </li> </ul> </div> <div id="PreviewTooltip"> <span class="arrow"><span></span></span> <div class="section"> <div class="primaryContent previewContent"> <span class="PreviewContents">Загрузка...</span> </div> </div> </div>";s:4:"time";i:1711667861;}}
    Run Time: 0.000444
  21. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('members_online_now', 'forum_statistics', 'wf_widget_threads_type_new')
    Params: 2
    Run Time: 0.000121
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 3Using where

Included Files (227, XenForo Classes: 76)

  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/CMF/Core/Autoloader.php
  9. library/CMF/Core/Listener.php
  10. library/XenForo/CodeEvent.php
  11. library/XenForo/FrontController.php
  12. library/XenForo/Dependencies/Public.php
  13. library/XenForo/Dependencies/Abstract.php
  14. library/Zend/Controller/Request/Http.php
  15. library/Zend/Controller/Request/Abstract.php
  16. library/Zend/Uri.php
  17. library/Zend/Controller/Response/Http.php
  18. library/Zend/Controller/Response/Abstract.php
  19. library/XenForo/Model/DataRegistry.php
  20. library/XenForo/Model.php
  21. library/Zend/Cache.php
  22. library/Zend/Cache/Backend/Memcached.php
  23. library/Zend/Cache/Backend/ExtendedInterface.php
  24. library/Zend/Cache/Backend/Interface.php
  25. library/Zend/Cache/Backend.php
  26. library/Zend/Cache/Core.php
  27. library/CMF/Core/Application.php
  28. library/RD/Tweak/Listener.php
  29. library/XenForo/Options.php
  30. library/XenForo/Link.php
  31. library/XenForo/Template/Helper/Core.php
  32. library/XenResource/Listener/Proxy.php
  33. library/NodesAsTabs/Listen.php
  34. library/WidgetFramework/Listener.php
  35. library/WidgetFramework/Option.php
  36. library/NFLJ/AMS/Listener/Proxy.php
  37. library/NFLJ/RMS/Listener/Proxy.php
  38. library/Audentio/UIX/Listener/CodeEvent.php
  39. library/Audentio/UIX/vendor/autoload.php
  40. library/Audentio/UIX/vendor/composer/autoload_real.php
  41. library/Audentio/UIX/vendor/composer/ClassLoader.php
  42. library/Audentio/UIX/vendor/composer/autoload_namespaces.php
  43. library/Audentio/UIX/vendor/composer/autoload_psr4.php
  44. library/Audentio/UIX/vendor/composer/autoload_classmap.php
  45. library/XenForo/Router.php
  46. library/XenForo/Route/Filter.php
  47. library/XenForo/Route/Interface.php
  48. library/XenForo/Route/ResponseSuffix.php
  49. library/XenForo/Route/Prefix.php
  50. library/WidgetFramework/Route/Filter/PageX.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/DoublePost/Listener/LoadClassController.php
  57. library/XI/Tag/CodeEvent/Listener.php
  58. library/Dark/PostRating/EventListener.php
  59. library/StickyFirstPost/Listener.php
  60. library/DigitalPointAdPositioning/Listener/LoadClassControllerPublic/Thread.php
  61. library/RD/Tweak/ControllerPublic/Extend/Thread.php
  62. library/DoublePost/ControllerPublic/Thread.php
  63. library/XI/Tag/ControllerPublic/Thread.php
  64. library/NodesAsTabs/ControllerPublic/Thread.php
  65. library/WidgetFramework/XenForo/ControllerPublic/Thread.php
  66. library/StickyFirstPost/ControllerPublic/Thread.php
  67. library/DigitalPointAdPositioning/ControllerPublic/Thread.php
  68. library/NFLJ/AMS/XenForo/ControllerPublic/Thread.php
  69. library/NFLJ/RMS/XenForo/ControllerPublic/Thread.php
  70. library/XenForo/Input.php
  71. library/XenForo/Session.php
  72. library/Zend/Db.php
  73. library/Zend/Db/Adapter/Mysqli.php
  74. library/Zend/Db/Adapter/Abstract.php
  75. library/Zend/Db/Select.php
  76. library/Zend/Db/Expr.php
  77. library/Zend/Db/Profiler.php
  78. library/Zend/Db/Statement/Mysqli.php
  79. library/Zend/Db/Statement.php
  80. library/Zend/Db/Statement/Interface.php
  81. library/XenForo/Helper/Ip.php
  82. library/XenForo/Visitor.php
  83. library/XenForo/Model/User.php
  84. library/DoublePost/Listener/LoadClassModel.php
  85. library/XenForo/Model/Import.php
  86. library/RastaLulz/LoggedInCookie/Listener/LoadClass.php
  87. library/Audentio/UIX/Model/User.php
  88. library/Dark/PostRating/Model/User.php
  89. library/WidgetFramework/XenForo/Model/User.php
  90. library/XenResource/Listener/Proxy/ModelUser.php
  91. library/RastaLulz/LoggedInCookie/Model/User.php
  92. library/NFLJ/AMS/XenForo/Model/User.php
  93. library/NFLJ/RMS/XenForo/Model/User.php
  94. library/Zend/Db/Profiler/Query.php
  95. library/XenForo/Permission.php
  96. library/XenForo/Helper/Php.php
  97. library/XenForo/Phrase.php
  98. library/XenForo/Locale.php
  99. library/RastaLulz/LoggedInCookie/Listener/VisitorSetup.php
  100. library/XenForo/Helper/Cookie.php
  101. library/DigitalPointAdPositioning/Listener/ControllerPreDispatch.php
  102. library/NFLJ/AMS/Model/Article.php
  103. library/NFLJ/RMS/Model/Item.php
  104. library/XenForo/ControllerHelper/ForumThreadPost.php
  105. library/XenForo/ControllerHelper/Abstract.php
  106. library/XenForo/Model/Thread.php
  107. library/Audentio/UIX/Model/Thread.php
  108. library/CMF/Core/Model/Thread.php
  109. library/RD/Tweak/Model/Extend/Thread.php
  110. library/Dark/PostRating/Model/Thread.php
  111. library/WidgetFramework/XenForo/Model/Thread.php
  112. library/StickyFirstPost/Model/Thread.php
  113. library/NFLJ/AMS/XenForo/Model/Thread.php
  114. library/NFLJ/RMS/XenForo/Model/Thread.php
  115. library/Dark/PostRating/Model.php
  116. library/CMF/Core/Model/DataRegistry.php
  117. library/XenForo/Model/Forum.php
  118. library/CMF/Core/Model/Forum.php
  119. library/StickyFirstPost/Model/Forum.php
  120. library/XenForo/Model/Node.php
  121. library/Audentio/UIX/Model/Node.php
  122. library/CMF/Core/Model/Node.php
  123. library/XenForo/Helper/String.php
  124. library/XenForo/Helper/Discussion.php
  125. library/XenForo/Model/Post.php
  126. library/Audentio/UIX/Model/Post.php
  127. library/CMF/Core/Model/Post.php
  128. library/DoublePost/Model/Post.php
  129. library/Dark/PostRating/Model/Post.php
  130. library/StickyFirstPost/Model/Post.php
  131. library/NFLJ/RMS/XenForo/Model/Post.php
  132. library/XenForo/Model/Attachment.php
  133. library/XenForo/Route/Prefix/Attachments.php
  134. library/XenForo/Route/Prefix/Categories.php
  135. library/XenForo/Route/Prefix/Forums.php
  136. library/XenForo/ControllerResponse/View.php
  137. library/XenForo/ControllerResponse/Abstract.php
  138. library/NodesAsTabs/API.php
  139. library/NodesAsTabs/Model/Options.php
  140. library/DigitalPointAdPositioning/Listener/ControllerPostDispatch.php
  141. library/XenResource/Listener/Template.php
  142. library/NFLJ/AMS/Listener/Template.php
  143. library/NFLJ/RMS/Listener/Template.php
  144. library/XenForo/ViewRenderer/HtmlPublic.php
  145. library/XenForo/ViewRenderer/Abstract.php
  146. library/XenForo/Template/Public.php
  147. library/XenForo/Template/Abstract.php
  148. library/WidgetFramework/Core.php
  149. library/XenForo/Model/Moderator.php
  150. library/XenResource/Listener/Proxy/ModelModerator.php
  151. library/NFLJ/AMS/XenForo/Model/Moderator.php
  152. library/NFLJ/RMS/XenForo/Model/Moderator.php
  153. library/NFLJ/RMS/Listener/WidgetFramework.php
  154. library/NFLJ/AMS/Listener/WidgetFramework.php
  155. library/WidgetFramework/Model/Widget.php
  156. library/WidgetFramework/Helper/Sort.php
  157. library/WidgetFramework/WidgetRenderer.php
  158. library/XenForo/ViewPublic/Thread/View.php
  159. library/XenForo/ViewPublic/Base.php
  160. library/XenForo/View.php
  161. library/DigitalPointAdPositioning/Listener/LoadClassViewPublic/Thread.php
  162. library/WidgetFramework/XenForo/View1.php
  163. library/DigitalPointAdPositioning/ViewPublic/Thread/View.php
  164. library/NFLJ/AMS/XenForo/ViewPublic/Thread/View.php
  165. library/NFLJ/RMS/XenForo/ViewPublic/Thread/View.php
  166. library/XenForo/BbCode/Parser.php
  167. library/XenForo/BbCode/Formatter/Base.php
  168. library/DoublePost/Listener/LoadClassbbCode.php
  169. library/DoublePost/BbCode/Formatter/Base.php
  170. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  171. library/XenForo/ViewPublic/Helper/Message.php
  172. library/XenForo/BbCode/TextWrapper.php
  173. library/DoublePost/Listener/Hook.php
  174. library/WidgetFramework/WidgetRenderer/OnlineStaff.php
  175. library/WidgetFramework/WidgetRenderer/OnlineUsers.php
  176. library/WidgetFramework/WidgetRenderer/Stats.php
  177. library/WidgetFramework/WidgetRenderer/ShareThisPage.php
  178. library/WidgetFramework/WidgetRenderer/Threads.php
  179. library/WidgetFramework/Model/Cache.php
  180. library/Audentio/UIX/Model/NodeLayout.php
  181. library/XenForo/Route/Prefix/Members.php
  182. library/NodesAsTabs/NavTabs.php
  183. library/XenForo/Route/Prefix/LinkForums.php
  184. library/WidgetFramework/Template/Extended.php
  185. library/XenForo/Model/StyleProperty.php
  186. library/NFLJ/AMS/Listener/Criteria.php
  187. library/NFLJ/RMS/Listener/Criteria.php
  188. library/XenForo/Template/FileHandler.php
  189. library/XenForo/Helper/File.php
  190. internal_data/templates/S.12,L.2,thread_view.php
  191. internal_data/templates/S.12,L.2,page_nav.php
  192. library/XenForo/Route/Prefix/Posts.php
  193. library/XenForo/Model/Avatar.php
  194. internal_data/templates/S.12,L.2,dark_postrating_message_user_info.php
  195. library/XenForo/ViewPublic/Helper/User.php
  196. library/XenForo/Model/UserField.php
  197. internal_data/templates/S.12,L.2,bb_code_tag_quote.php
  198. internal_data/templates/S.12,L.2,dark_postrating.php
  199. library/DigitalPointAdPositioning/Callback/AdBelowPost.php
  200. internal_data/templates/S.12,L.2,doublepost_bb_code_tag.php
  201. library/XenForo/Model/Session.php
  202. library/Dark/PostRating/Model/Session.php
  203. internal_data/templates/S.12,L.2,wf_widget_online_staff.php
  204. library/Zend/Exception.php
  205. internal_data/templates/S.12,L.2,wf_widget_online_users.php
  206. library/WidgetFramework/Helper/String.php
  207. internal_data/templates/S.12,L.2,wf_widget_stats.php
  208. internal_data/templates/S.12,L.2,wf_widget_share_page.php
  209. library/XenForo/NodeHandler/Category.php
  210. library/XenForo/NodeHandler/Abstract.php
  211. library/XenForo/NodeHandler/Forum.php
  212. library/XenForo/NodeHandler/LinkForum.php
  213. library/XenForo/Model/Category.php
  214. library/XenForo/Model/LinkForum.php
  215. internal_data/templates/S.12,L.2,wf_widget_threads.php
  216. library/WidgetFramework/WidgetRenderer/Empty.php
  217. internal_data/templates/S.12,L.2,wf_widget_wrapper.php
  218. library/XenForo/Debug.php
  219. internal_data/templates/S.12,L.2,PAGE_CONTAINER.php
  220. library/Audentio/UIX/Template/Helper/CanvasNavigation.php
  221. internal_data/templates/S.12,L.2,resources_tab_links.php
  222. internal_data/templates/S.12,L.2,nflj_ams_tab_links.php
  223. internal_data/templates/S.12,L.2,nflj_rms_tab_links.php
  224. internal_data/templates/S.12,L.2,navigation.php
  225. library/XenForo/ViewRenderer/Json.php
  226. internal_data/templates/S.12,L.2,SFP_js_first_post.php
  227. internal_data/templates/S.12,L.2,nat_bodyjs.php