Page Time: 0.0330s

Memory: 4.1438 MB (Peak: 5.1996 MB)

Queries (16, time: 0.0043s, 13.0%)

  1. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000076
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  2. SELECT user.*
    	,
    		user_profile.*,
    		user_option.*,
    		user_privacy.*,
    		permission_combination.cache_value AS global_permission_cache,
    		IF (session_activity.view_date IS NULL, user.last_activity, session_activity.view_date) AS effective_last_activity,
    		session_activity.view_date, session_activity.controller_name, session_activity.controller_action, session_activity.params, session_activity.ip,
    		0 AS following_0
    FROM xf_user AS user
    
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = user.user_id)
    		LEFT JOIN xf_user_option AS user_option ON
    			(user_option.user_id = user.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = user.user_id)
    		LEFT JOIN xf_permission_combination AS permission_combination ON
    			(permission_combination.permission_combination_id = user.permission_combination_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(session_activity.user_id = user.user_id AND session_activity.unique_key = CAST(user.user_id AS BINARY))
    WHERE user.user_id = ?
    Params: 5845
    Run Time: 0.000646
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuserconstPRIMARYPRIMARY4const1 
    SIMPLEuser_profileconstPRIMARYPRIMARY4const1 
    SIMPLEuser_optionconstPRIMARYPRIMARY4const1 
    SIMPLEuser_privacyconstPRIMARYPRIMARY4const1 
    SIMPLEpermission_combinationconstPRIMARYPRIMARY4const1 
    SIMPLEsession_activityconstPRIMARYPRIMARY22const,const0Unique row not found
  3. SELECT COUNT(*)
    FROM xf_profile_post AS profile_post
    
    WHERE (profile_post.profile_user_id = 5845) AND (profile_post.message_state IN ('visible'))
    Run Time: 0.000186
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrefprofile_user_id_post_dateprofile_user_id_post_date4const1Using where
  4. SELECT profile_post.*
    	,
    	posting_user.*,
    	IF(posting_user.username IS NULL, profile_post.username, posting_user.username) AS username,
    	0 AS like_date
    FROM xf_profile_post AS profile_post
    
    	LEFT JOIN xf_user AS posting_user ON
    		(posting_user.user_id = profile_post.user_id)
    WHERE (profile_post.profile_user_id = 5845) AND (profile_post.message_state IN ('visible'))
    ORDER BY profile_post.post_date DESC
     LIMIT 10
    Run Time: 0.000346
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEprofile_postrefprofile_user_id_post_dateprofile_user_id_post_date4const1Using where
    SIMPLEposting_usereq_refPRIMARYPRIMARY4vozer_net_53c5.profile_post.user_id1 
  5. SELECT user_field.*
    	,
    	field_value.field_value
    FROM xf_user_field AS user_field
    
    	LEFT JOIN xf_user_field_value AS field_value ON
    		(field_value.field_id = user_field.field_id AND field_value.user_id = 5845)
    WHERE (user_field.display_group <> 'preferences' AND user_field.viewable_profile = 1)
    ORDER BY user_field.display_group, user_field.display_order
    Run Time: 0.000342
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_fieldALLdisplay_group_order   6Using where; Using filesort
    SIMPLEfield_valueeq_refPRIMARY,field_idPRIMARY31const,vozer_net_53c5.user_field.field_id1 
  6. SELECT
    	user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_user_follow AS user_follow
    INNER JOIN xf_user AS user ON
    	(user.user_id = user_follow.follow_user_id AND user.is_banned = 0)
    INNER JOIN xf_user_profile AS user_profile ON
    	(user_profile.user_id = user.user_id)
    INNER JOIN xf_user_option AS user_option ON
    	(user_option.user_id = user.user_id)
    WHERE user_follow.user_id = ?
    ORDER BY RAND()
     LIMIT 6
    Params: 5845
    Run Time: 0.000782
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_followrefPRIMARY,follow_user_idPRIMARY4const1Using index; Using temporary; Using filesort
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.follow_user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.follow_user_id1Using where
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.follow_user_id1 
  7. SELECT COUNT(*)
    FROM xf_user_follow
    WHERE follow_user_id = ?
    Params: 5845
    Run Time: 0.000128
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_user_followreffollow_user_idfollow_user_id4const1Using index
  8. SELECT user.*,
    	user_profile.*,
    	user_option.*
    FROM xf_user_follow AS user_follow
    INNER JOIN xf_user AS user ON
    	(user.user_id = user_follow.user_id AND user.is_banned = 0)
    INNER JOIN xf_user_profile AS user_profile ON
    	(user_profile.user_id = user.user_id)
    INNER JOIN xf_user_option AS user_option ON
    	(user_option.user_id = user.user_id)
    WHERE user_follow.follow_user_id = ?
    ORDER BY RAND()
     LIMIT 6
    Params: 5845
    Run Time: 0.000819
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEuser_followrefPRIMARY,follow_user_idfollow_user_id4const1Using index; Using temporary; Using filesort
    SIMPLEuser_optioneq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.user_id1 
    SIMPLEusereq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.user_id1Using where
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4vozer_net_53c5.user_follow.user_id1 
  9. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 072b274358c18a8b2c164451b401adc0, , 1711630766
    Run Time: 0.000112
  10. 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_Member, Member, valid, user_id=5845, 1711627166,
    Run Time: 0.000107
  11. select value, hits 
    from dark_azucloud_terms_pages pages 
    left join dark_azucloud_terms terms on pages.term_id = terms.id 
    where route = ? and terms.block = 0 and terms.value is not null and last_clicked > ? 
    order by hits desc, last_clicked desc
    limit ?
    Params: members/levyvy.5845/, 1709035166, 10
    Run Time: 0.000269
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEpagesrefterm_id_route,route,route_hits_last_clickedroute_hits_last_clicked452const1Using where
    SIMPLEtermseq_refPRIMARY,value,blockPRIMARY4vozer_net_53c5.pages.term_id1Using where
  12. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('page_nav', 'bb_code_tag_vfchh', 'bb_code_tag_code', 'bb_code_tag_php', 'bb_code_tag_html', 'bb_code_tag_quote', 'bb_code_tag_attach', 'bb_code_tag_spoiler', 'wf_widget_wrapper', 'wf_widget_profile_posts', 'BRC_sidebar_visitor_panel_stats', 'BRC_navigation_visitor_tabs_end', 'member_view', 'dark_taigachat_links', 'wf_hook_moderator_bar', 'wf_revealer', 'dark_taigachat', 'dark_taigachat_list', 'threadrating_rate', 'PAGE_CONTAINER')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000218
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledrangePRIMARYPRIMARY60 20Using where
  13. SELECT title, phrase_text
    FROM xf_phrase_compiled
    WHERE language_id = ?
    	AND title IN ('BRC_action_login', 'BRC_action_login_description', 'BRC_action_exchange', 'BRC_action_exchange_description', 'BRC_action_withdraw', 'BRC_action_withdraw_description', 'BRC_action_steal', 'BRC_action_steal_description', 'BRC_action_paypalPayment', 'BRC_action_paypalPayment_description', 'BRC_action_paypalPaymentRe', 'BRC_action_paypalPaymentRe_description', 'BRC_action_registration', 'BRC_action_registration_description', 'BRC_action_facebookAssociate', 'BRC_action_facebookAssociate_description', 'BRC_action_facebookDisassociate', 'BRC_action_facebookDisassociate_description', 'BRC_action_twitterAssociate', 'BRC_action_twitterAssociate_description', 'BRC_action_twitterDisassociate', 'BRC_action_twitterDisassociate_description', 'BRC_action_googleAssociate', 'BRC_action_googleAssociate_description', 'BRC_action_googleDisassociate', 'BRC_action_googleDisassociate_description', 'BRC_action_birthday', 'BRC_action_birthday_description', 'BRC_action_importVbb', 'BRC_action_importVbb_description', 'BRC_action_interest', 'BRC_action_interest_description', 'BRC_action_updateFullProfile', 'BRC_action_updateFullProfile_description', 'BRC_action_updateFullProfileRe', 'BRC_action_updateFullProfileRe_description', 'BRC_action_uploadAvatar', 'BRC_action_uploadAvatar_description', 'BRC_action_uploadAvatarRe', 'BRC_action_uploadAvatarRe_description', 'BRC_action_updateStatus', 'BRC_action_updateStatus_description', 'BRC_action_follow', 'BRC_action_follow_description', 'BRC_action_followRe', 'BRC_action_followRe_description', 'BRC_action_getFollower', 'BRC_action_getFollower_description', 'BRC_action_getFollowerRe', 'BRC_action_getFollowerRe_description', 'BRC_action_profilePost', 'BRC_action_profilePost_description', 'BRC_action_getProfilePost', 'BRC_action_getProfilePost_description', 'BRC_action_likeProfilePost', 'BRC_action_likeProfilePost_description', 'BRC_action_likeProfilePostRe', 'BRC_action_likeProfilePostRe_description', 'BRC_action_receiveProfilePostLike', 'BRC_action_receiveProfilePostLike_description', 'BRC_action_receiveProfilePostLikeRe', 'BRC_action_receiveProfilePostLikeRe_description', 'BRC_action_createConversation', 'BRC_action_createConversation_description', 'BRC_action_createConversationRe', 'BRC_action_createConversationRe_description', 'BRC_action_receiveConversation', 'BRC_action_receiveConversation_description', 'BRC_action_replyConversation', 'BRC_action_replyConversation_description', 'BRC_action_conversationGetReply', 'BRC_action_conversationGetReply_description', 'BRC_action_trophyReward', 'BRC_action_trophyReward_description', 'BRC_action_dailyReward', 'BRC_action_dailyReward_description', 'BRC_action_salary', 'BRC_action_salary_description', 'BRC_action_createNewThread', 'BRC_action_createNewThread_description', 'BRC_action_threadDeleted', 'BRC_action_threadDeleted_description', 'BRC_action_threadGetReply', 'BRC_action_threadGetReply_description', 'BRC_action_threadViewed', 'BRC_action_threadViewed_description', 'BRC_action_readThread', 'BRC_action_readThread_description', 'BRC_action_watchThread', 'BRC_action_watchThread_description', 'BRC_action_watchThreadRe', 'BRC_action_watchThreadRe_description', 'BRC_action_threadGetWatched', 'BRC_action_threadGetWatched_description', 'BRC_action_threadGetWatchedRe', 'BRC_action_threadGetWatchedRe_description', 'BRC_action_createNewPoll', 'BRC_action_createNewPoll_description', 'BRC_action_votePoll', 'BRC_action_votePoll_description', 'BRC_action_pollGetVote', 'BRC_action_pollGetVote_description', 'BRC_action_threadSticky', 'BRC_action_threadSticky_description', 'BRC_action_threadStickyRe', 'BRC_action_threadStickyRe_description', 'BRC_action_newPost', 'BRC_action_newPost_description', 'BRC_action_postDeleted', 'BRC_action_postDeleted_description', 'BRC_action_uploadAttachment', 'BRC_action_uploadAttachment_description', 'BRC_action_uploadAttachmentRe', 'BRC_action_uploadAttachmentRe_description', 'BRC_action_downloadAttachment', 'BRC_action_downloadAttachment_description', 'BRC_action_attachmentDownloaded', 'BRC_action_attachmentDownloaded_description', 'BRC_action_likePost', 'BRC_action_likePost_description', 'BRC_action_likePostRe', 'BRC_action_likePostRe_description', 'BRC_action_receivePostLike', 'BRC_action_receivePostLike_description', 'BRC_action_receivePostLikeRe', 'BRC_action_receivePostLikeRe_description', 'BRC_action_reportPost', 'BRC_action_reportPost_description', 'BRC_action_postReported', 'BRC_action_postReported_description', 'BRC_action_BRRS_referral', 'BRC_action_BRRS_referral_explain', 'BRC_action_BRRSBuyReferralTimes', 'BRC_action_BRRS_referralCredit', 'BRC_action_BRRS_referralCredit_explain', 'BRC_action_BRCIPurchaseUserUpgrade', 'BRC_action_BRCIPurchaseUserUpgrade_explain', 'BRC_action_AzuCloud', 'BRC_action_AzuCloud_explain', 'user_field_aim_desc', 'user_field_icq_desc', 'user_field_yahoo_desc', 'user_field_skype_desc', 'user_field_facebook_desc', 'user_field_twitter_desc')
    Params: 2
    Run Time: 0.000089
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_phrase_compiledrangePRIMARYPRIMARY106 145Using where
  14. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRRS_member_view_sidebar_middle2')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000075
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  15. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRRS_member_view_tabs_heading')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000045
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 
  16. SELECT title, template_compiled
    FROM xf_template_compiled
    WHERE title IN ('BRRS_member_view_tabs_content')
    	AND style_id = ?
    	AND language_id = ?
    Params: 2, 2
    Run Time: 0.000043
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_template_compiledconstPRIMARYPRIMARY60const,const,const1 

Included Files (211, XenForo Classes: 56)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/Cache.php
  19. library/Zend/Cache/Backend/Memcached.php
  20. library/Zend/Cache/Backend/ExtendedInterface.php
  21. library/Zend/Cache/Backend/Interface.php
  22. library/Zend/Cache/Backend.php
  23. library/Zend/Cache/Core.php
  24. library/XenForo/CodeEvent.php
  25. library/XenForo/Options.php
  26. library/XenForo/Link.php
  27. library/XenForo/Template/Helper/Core.php
  28. library/Cng/TopX/Listener.php
  29. library/WidgetFramework/Listener.php
  30. library/WidgetFramework/Option.php
  31. library/Cng/ViRewrite/Listener.php
  32. library/Brivium/BriviumHelper/EventListeners.php
  33. library/Brivium/BriviumHelper/1020171/EventListeners.php
  34. library/Brivium/Credits/Listener/Listener.php
  35. library/phc/KeywordManagement/Listener/Listener.php
  36. library/XenForo/ControllerPublic/Abstract.php
  37. library/XenForo/Controller.php
  38. library/Dark/TaigaChat/EventListener/Listener.php
  39. library/Mod/ForumViewing/Listener/Listener.php
  40. library/XenForo/Phrase.php
  41. library/Brivium/Credits/Currency.php
  42. library/Brivium/Credits/Action.php
  43. library/Brivium/ReferralCreditSystem/EventListeners/Listener.php
  44. library/Brivium/CreditsIntegration/UserUpgrades/EventListeners/Listener.php
  45. library/Dark/AzuCloud/EventListener/FrontControllerPreView.php
  46. library/Brivium/Credits/ActionHandler/Login/ActionHandler.php
  47. library/Brivium/Credits/ActionHandler/Abstract.php
  48. library/Brivium/Credits/ActionHandler/Exchange/ActionHandler.php
  49. library/Brivium/Credits/ActionHandler/Withdraw/ActionHandler.php
  50. library/Brivium/Credits/ActionHandler/Steal/ActionHandler.php
  51. library/Brivium/Credits/ActionHandler/PaypalPayment/ActionHandler.php
  52. library/Brivium/ReferralCreditSystem/ActionHandler/PaypalPayment/ActionHandler.php
  53. library/Brivium/Credits/ActionHandler/PaypalPaymentRe/ActionHandler.php
  54. library/Brivium/Credits/ActionHandler/Registration/ActionHandler.php
  55. library/Brivium/Credits/ActionHandler/FacebookAssociate/ActionHandler.php
  56. library/Brivium/Credits/ActionHandler/FacebookDisassociate/ActionHandler.php
  57. library/Brivium/Credits/ActionHandler/TwitterAssociate/ActionHandler.php
  58. library/Brivium/Credits/ActionHandler/TwitterDisassociate/ActionHandler.php
  59. library/Brivium/Credits/ActionHandler/GoogleAssociate/ActionHandler.php
  60. library/Brivium/Credits/ActionHandler/GoogleDisassociate/ActionHandler.php
  61. library/Brivium/Credits/ActionHandler/Birthday/ActionHandler.php
  62. library/Brivium/Credits/ActionHandler/ImportVbb/ActionHandler.php
  63. library/Brivium/Credits/ActionHandler/Interest/ActionHandler.php
  64. library/Brivium/Credits/ActionHandler/UpdateFullProfile/ActionHandler.php
  65. library/Brivium/Credits/ActionHandler/UpdateFullProfileRe/ActionHandler.php
  66. library/Brivium/Credits/ActionHandler/UploadAvatar/ActionHandler.php
  67. library/Brivium/Credits/ActionHandler/UploadAvatarRe/ActionHandler.php
  68. library/Brivium/Credits/ActionHandler/UpdateStatus/ActionHandler.php
  69. library/Brivium/Credits/ActionHandler/Follow/ActionHandler.php
  70. library/Brivium/Credits/ActionHandler/FollowRe/ActionHandler.php
  71. library/Brivium/Credits/ActionHandler/GetFollower/ActionHandler.php
  72. library/Brivium/Credits/ActionHandler/GetFollowerRe/ActionHandler.php
  73. library/Brivium/Credits/ActionHandler/ProfilePost/ActionHandler.php
  74. library/Brivium/Credits/ActionHandler/GetProfilePost/ActionHandler.php
  75. library/Brivium/Credits/ActionHandler/LikeProfilePost/ActionHandler.php
  76. library/Brivium/Credits/ActionHandler/LikeProfilePostRe/ActionHandler.php
  77. library/Brivium/Credits/ActionHandler/ReceiveProfilePostLike/ActionHandler.php
  78. library/Brivium/Credits/ActionHandler/ReceiveProfilePostLikeRe/ActionHandler.php
  79. library/Brivium/Credits/ActionHandler/CreateConversation/ActionHandler.php
  80. library/Brivium/Credits/ActionHandler/CreateConversationRe/ActionHandler.php
  81. library/Brivium/Credits/ActionHandler/ReceiveConversation/ActionHandler.php
  82. library/Brivium/Credits/ActionHandler/ReplyConversation/ActionHandler.php
  83. library/Brivium/Credits/ActionHandler/ConversationGetReply/ActionHandler.php
  84. library/Brivium/Credits/ActionHandler/TrophyReward/ActionHandler.php
  85. library/Brivium/Credits/ActionHandler/DailyReward/ActionHandler.php
  86. library/Brivium/Credits/ActionHandler/Salary/ActionHandler.php
  87. library/Brivium/Credits/ActionHandler/CreateNewThread/ActionHandler.php
  88. library/Brivium/Credits/ActionHandler/ThreadDeleted/ActionHandler.php
  89. library/Brivium/Credits/ActionHandler/ThreadGetReply/ActionHandler.php
  90. library/Brivium/Credits/ActionHandler/ThreadViewed/ActionHandler.php
  91. library/Brivium/Credits/ActionHandler/ReadThread/ActionHandler.php
  92. library/Brivium/Credits/ActionHandler/WatchThread/ActionHandler.php
  93. library/Brivium/Credits/ActionHandler/WatchThreadRe/ActionHandler.php
  94. library/Brivium/Credits/ActionHandler/ThreadGetWatched/ActionHandler.php
  95. library/Brivium/Credits/ActionHandler/ThreadGetWatchedRe/ActionHandler.php
  96. library/Brivium/Credits/ActionHandler/CreateNewPoll/ActionHandler.php
  97. library/Brivium/Credits/ActionHandler/VotePoll/ActionHandler.php
  98. library/Brivium/Credits/ActionHandler/PollGetVote/ActionHandler.php
  99. library/Brivium/Credits/ActionHandler/ThreadSticky/ActionHandler.php
  100. library/Brivium/Credits/ActionHandler/ThreadStickyRe/ActionHandler.php
  101. library/Brivium/Credits/ActionHandler/NewPost/ActionHandler.php
  102. library/Brivium/Credits/ActionHandler/PostDeleted/ActionHandler.php
  103. library/Brivium/Credits/ActionHandler/UploadAttachment/ActionHandler.php
  104. library/Brivium/Credits/ActionHandler/UploadAttachmentRe/ActionHandler.php
  105. library/Brivium/Credits/ActionHandler/DownloadAttachment/ActionHandler.php
  106. library/Brivium/Credits/ActionHandler/AttachmentDownloaded/ActionHandler.php
  107. library/Brivium/Credits/ActionHandler/LikePost/ActionHandler.php
  108. library/Brivium/Credits/ActionHandler/LikePostRe/ActionHandler.php
  109. library/Brivium/Credits/ActionHandler/ReceivePostLike/ActionHandler.php
  110. library/Brivium/Credits/ActionHandler/ReceivePostLikeRe/ActionHandler.php
  111. library/Brivium/Credits/ActionHandler/ReportPost/ActionHandler.php
  112. library/Brivium/Credits/ActionHandler/PostReported/ActionHandler.php
  113. library/Brivium/ReferralCreditSystem/ActionHandler/Referral/ActionHandler.php
  114. library/Brivium/ReferralCreditSystem/ActionHandler/BuyReferralTimes/ActionHandler.php
  115. library/Brivium/ReferralCreditSystem/ActionHandler/ReferralCredit/ActionHandler.php
  116. library/Brivium/CreditsIntegration/UserUpgrades/ActionHandler/PurchaseUserUpgrade/ActionHandler.php
  117. library/Dark/AzuCloud/ActionHandler/AzuCloud.php
  118. library/Brivium/Credits/Events.php
  119. library/Mod/TitleControl/Listener.php
  120. library/Dark/AzuCloud/Listener.php
  121. library/XenForo/Router.php
  122. library/XenForo/Route/Filter.php
  123. library/XenForo/Route/Interface.php
  124. library/XenForo/Route/ResponseSuffix.php
  125. library/XenForo/Route/Prefix.php
  126. library/WidgetFramework/Route/Filter/PageX.php
  127. library/XenForo/Route/Prefix/Members.php
  128. library/XenForo/RouteMatch.php
  129. library/XenForo/ControllerPublic/Member.php
  130. library/VfcodersHH/Listener/LoadClass.php
  131. library/ThreadRating/Listener/Class.php
  132. library/Brivium/Credits/ControllerPublic/Member.php
  133. library/Brivium/ReferralCreditSystem/ControllerPublic/Member.php
  134. library/VfcodersHH/ControllerPublic/Member.php
  135. library/XenForo/Input.php
  136. library/XenForo/Session.php
  137. library/Zend/Db.php
  138. library/Zend/Db/Adapter/Mysqli.php
  139. library/Zend/Db/Adapter/Abstract.php
  140. library/Zend/Db/Select.php
  141. library/Zend/Db/Expr.php
  142. library/Zend/Db/Profiler.php
  143. library/Zend/Db/Statement/Mysqli.php
  144. library/Zend/Db/Statement.php
  145. library/Zend/Db/Statement/Interface.php
  146. library/XenForo/Helper/Ip.php
  147. library/XenForo/Visitor.php
  148. library/XenForo/Model/User.php
  149. library/WidgetFramework/XenForo/Model/User.php
  150. library/Brivium/Credits/Model/User.php
  151. library/Brivium/ReferralCreditSystem/Model/User.php
  152. library/Zend/Db/Profiler/Query.php
  153. library/XenForo/Permission.php
  154. library/XenForo/Helper/Php.php
  155. library/XenForo/Locale.php
  156. library/Mod/StyleOverride/Listen.php
  157. library/XenForo/ControllerResponse/Reroute.php
  158. library/XenForo/ControllerResponse/Abstract.php
  159. library/XenForo/ControllerHelper/UserProfile.php
  160. library/XenForo/ControllerHelper/Abstract.php
  161. library/XenForo/Model/UserProfile.php
  162. library/XenForo/Model/ProfilePost.php
  163. library/WidgetFramework/XenForo/Model/ProfilePost.php
  164. library/XenForo/Model/UserField.php
  165. library/XenForo/Model/UserIgnore.php
  166. library/XenForo/Model/Conversation.php
  167. library/XenForo/ControllerResponse/View.php
  168. library/Brivium/Credits/Model/Credit.php
  169. library/Brivium/ReferralCreditSystem/Model/UserReferral.php
  170. library/XenForo/Helper/Cookie.php
  171. library/XenForo/ViewRenderer/HtmlPublic.php
  172. library/XenForo/ViewRenderer/Abstract.php
  173. library/XenForo/Template/Public.php
  174. library/XenForo/Template/Abstract.php
  175. library/WidgetFramework/Core.php
  176. library/XenForo/Model/Moderator.php
  177. library/Brivium/Credits/Model/Moderator.php
  178. library/WidgetFramework/Model/Widget.php
  179. library/WidgetFramework/Helper/Sort.php
  180. library/WidgetFramework/WidgetRenderer.php
  181. library/Dark/AzuCloud/Model/Nakano.php
  182. library/XenForo/ViewPublic/Member/View.php
  183. library/XenForo/ViewPublic/Base.php
  184. library/XenForo/View.php
  185. library/WidgetFramework/XenForo/View1.php
  186. library/XenForo/BbCode/Parser.php
  187. library/XenForo/BbCode/Formatter/Base.php
  188. library/SV/LazyImageLoader/Listener.php
  189. library/phc/KeywordManagement/Extend/BbCode/Formatter/Base.php
  190. library/SV/LazyImageLoader/XenForo/BbCode/Formatter/Base.php
  191. library/WidgetFramework/XenForo/BbCode/Formatter/Base.php
  192. library/VfcodersHH/BbCode/Formatter/Base.php
  193. library/VfcodersHH/Helper/Tags.php
  194. library/SV/LazyImageLoader/Helper.php
  195. library/XenForo/BbCode/TextWrapper.php
  196. library/WidgetFramework/WidgetRenderer/ProfilePosts.php
  197. library/WidgetFramework/Model/Cache.php
  198. library/WidgetFramework/WidgetRenderer/HtmlWithoutWrapper.php
  199. library/WidgetFramework/WidgetRenderer/Html.php
  200. library/VfcodersHH/Listener/TemplateCreate.php
  201. library/Dark/TaigaChat/EventListener/NavigationTabs.php
  202. library/WidgetFramework/Template/Extended.php
  203. library/ThreadRating/Listener/Template.php
  204. library/XenForo/ViewPublic/Helper/User.php
  205. library/VfcodersHH/Listener/Hook.php
  206. library/WidgetFramework/Helper/String.php
  207. library/WidgetFramework/WidgetRenderer/Empty.php
  208. library/XenForo/Helper/Criteria.php
  209. library/XenForo/Debug.php
  210. library/Mod/TitleControl/Helper.php
  211. library/XenForo/ViewRenderer/Json.php