Page Time: 0.1516s

Memory: 10.5748 MB (Peak: 11.8376 MB)

Queries (13, time: 0.0307s, 20.3%)

  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.000492
    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.000333
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000167
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_brivium_addonindex PRIMARY77 1 
  4. INSERT INTO xf_data_registry
    	(data_key, data_value)
    VALUES
    	(?, ?)
    ON DUPLICATE KEY UPDATE
    	data_value = VALUES(data_value)
    Params: brBriviumAddOns, a:0:{}
    Run Time: 0.000166
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000176
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_permission_combinationconstPRIMARYPRIMARY4const1 
  6. 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: 40663
    Run Time: 0.000580
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1 
    SIMPLEuserconstPRIMARYPRIMARY4const1 
  7. 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: 23
    Run Time: 0.006818
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEforumconstPRIMARYPRIMARY4const1 
    SIMPLEnodeconstPRIMARYPRIMARY4const1 
    SIMPLEpermissionconstPRIMARYPRIMARY35const,const,const1 
  8. SELECT post.*
    	,
    		thread.*, thread.user_id AS thread_user_id, thread.username AS thread_username,
    		thread.post_date AS thread_post_date,
    		post.user_id, post.username, post.post_date,
    		bb_code_parse_cache.parse_tree AS message_parsed, bb_code_parse_cache.cache_version AS message_cache_version,
    		user.*, IF(user.username IS NULL, post.username, user.username) AS username,
    		user_profile.*,
    		user_privacy.*,
    		signature_parse_cache.parse_tree AS signature_parsed, bb_code_parse_cache.cache_version AS signature_cache_version,
    		session_activity.view_date AS last_view_date,
    		0 AS like_date
    FROM xf_post AS post
    
    		INNER JOIN xf_thread AS thread ON
    			(thread.thread_id = post.thread_id)
    		LEFT JOIN xf_bb_code_parse_cache AS bb_code_parse_cache ON
    			(bb_code_parse_cache.content_type = 'post' AND bb_code_parse_cache.content_id = post.post_id)
    		LEFT JOIN xf_user AS user ON
    			(user.user_id = post.user_id)
    		LEFT JOIN xf_user_profile AS user_profile ON
    			(user_profile.user_id = post.user_id)
    		LEFT JOIN xf_user_privacy AS user_privacy ON
    			(user_privacy.user_id = post.user_id)
    		LEFT JOIN xf_bb_code_parse_cache AS signature_parse_cache ON
    			(signature_parse_cache.content_type = 'signature' AND signature_parse_cache.content_id = post.user_id)
    		LEFT JOIN xf_session_activity AS session_activity ON
    			(post.user_id > 0 AND session_activity.user_id = post.user_id AND session_activity.unique_key = CAST(post.user_id AS BINARY))
    WHERE (
    		(post.thread_id = ?  AND (post.position >= 0 AND post.position < 10) )
    		
    		
    	)
    	AND (post.message_state IN ('visible'))
    ORDER BY post.position ASC, post.post_date ASC
    Params: 40663
    Run Time: 0.018213
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEthreadconstPRIMARYPRIMARY4const1Using filesort
    SIMPLEpostrefthread_id_post_date,thread_id_positionthread_id_post_date4const1Using index condition; Using where
    SIMPLEbb_code_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.post_id1Using where
    SIMPLEusereq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_profileeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEuser_privacyeq_refPRIMARYPRIMARY4xenforo.cc.post.user_id1 
    SIMPLEsignature_parse_cacheeq_refcontent_type_idcontent_type_id31const,xenforo.cc.post.user_id1Using where
    SIMPLEsession_activityeq_refPRIMARYPRIMARY22xenforo.cc.post.user_id,func1Using where
  9. 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 (40230)
    ORDER BY attachment.content_id, attachment.attach_date
    Params: post
    Run Time: 0.001224
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLEattachmentrefcontent_type_id_datecontent_type_id_date31const,const3Using index condition; Using where
    SIMPLEdataeq_refPRIMARYPRIMARY4xenforo.cc.attachment.data_id1 
  10. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 40663
    Run Time: 0.000098
  11. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 6b2c6fdfc53ca0b021d4e5b7217b373a, , 1714939660
    Run Time: 0.001375
  12. 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=40663, 1714936060,
    Run Time: 0.000104
  13. INSERT INTO xf_bb_code_parse_cache
    	(content_type, content_id, parse_tree, cache_version, cache_date)
    VALUES (?, ?, ?, ?, ?)
    ON DUPLICATE KEY UPDATE parse_tree = VALUES(parse_tree),
    	cache_version = VALUES(cache_version),
    	cache_date = VALUES(cache_date)
    Params: post, 40230, a:8:{i:0;s:1814:"最近网上热传一张红烧肉的照片。烧肉的和吃肉的现在都成了坊间热议的人物,就连照片上那锅炖得不怎么正宗的红烧肉,也引起了大家的议论。总该有个人义勇地站出来说:“劳驾,我们从小吃到大的家常红烧肉真不是长这样的。”倒不是对烧肉人的苛求,只是这再普通不过的家常菜,离开了“家”这个烧肉的场所,偏离了给“家人”烧来吃的心意,怕真就变了味道。 红烧肉是最常见的家常食物了,每家都会烧。我记忆里的红烧肉有好几种形态。首先一种肯定是刚做好的,肥瘦相间的一碗。冒尖儿带着热气颤颤悠悠上桌。但见汁浓色重,肉皮泛着诱人的柔光。另一种形态就是冬天做好的红烧肉,放在院子里的石头桌上,上面扣好一个大盆。冰天雪地里,红烧肉隔夜变身。翌日打开大盆一看,碗面上凝固着一层不薄不厚的乳白色油膏。一块块红烧肉,凹凸有致地埋在白色油膏下,俯瞰起来还真有点水墨画的意思。过了一夜,红烧肉更加入味,有时候顾不得等着热开,用筷子扒拉出一块。肉四周还挂有些许肉冻。这个时候一口吃下去,真是酣畅过瘾。第三种形态就是以红烧肉为主,和各种搭配辅料炖出的烩菜,这也是我最爱吃红烧肉的原因。头天炖好的肉放上鸡蛋做元宝蛋,放上大白菜、百叶结、干扁豆或者粗粉条,就是有荤有素,味道合口的红烧肉衍生菜。素菜这么一做,都摇身一变,美味翻番儿了。也只有这个时候,大家都会抢着吃里面入足味的素菜,而暂时顾不上红烧肉本身了。 这么家常的红烧肉,真要做的好吃,也要讲究选料和烹调手法。 ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:6:"选料";}}i:2;s:1136:" 猪的一身都可入菜,猪肉不同部位,做法也繁多且不同。《礼记·内则》中就说:“猪‘刚鬣’则肥健”。说的就是好猪肉要选鬃毛硬挺的。这样的猪,周身肉质鲜美。猪肉切件,肥瘦相间的,就是肌间脂肪多,肉中“呈味”物质也就多,用这样的猪肉作出的菜肴,口味醇厚。“后臀尖”,后腿肉”都属这类。 我做红烧肉,都会不费周折的搭配五花肉和前腿肉同时炖。五花肉是五花肋条上剔下来的不带骨头的方肉。五花肉又分为“硬五花(硬肋)”和“软五花(软肋)”。美好的一条五花肉,肥瘦相间有致,间隔排列开来。民间称作“五花三层”。前腿肉的挟下部位又俗称“不见天” (也有一说,“不见天”是猪后腿内侧的肉),多形象的名字。这块前腿内侧的肉虽然见不到光,但因运动充足得以肥瘦相宜,是块俗称的“活肉”。五花肉和前腿肉各取一半。切成大块。对,一定得是大块。这样炖出来的肉,不但吃得过瘾,而且不柴。相当适口。 ";i:3;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:12:"烹调手法";}}i:4;s:1:" ";i:5;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"14px";s:8:"original";a:2:{i:0;s:11:"[SIZE=14px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:9:"Helvetica";s:8:"original";a:2:{i:0;s:16:"[FONT=Helvetica]";i:1;s:7:"[/FONT]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#333333";s:8:"original";a:2:{i:0;s:15:"[COLOR=#333333]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;s:1001:"我奶奶出生在苏州大户人家,家中珍馐筵席常有,她自己也会吃善做。她的一个个拿手菜,光是菜名说出来,都已经让人垂涎。得到她老人家真传的苏式红烧肉,尝过的没有不称绝的。提到这个苏式红烧肉的秘诀,真的一点就透。那就是“吃肉的原味”。我从小就记得家里人对红烧肉时“炒糖色”的作法最看不上眼。因为炒糖色既是为了给肉挂上色,也是防止肥肉部分在后续的制作过程中“跑油”而使肉块由大变小。过去穷人家吃上一顿肉不易,所以炒糖色的同时,还恨不得用足八角花椒茴香葱姜蒜,其实都是为了人为地给猪肉加味。这样,吃上一块两块的,就顶住了,想来这些画蛇添足的作法也真是窘迫生活的不得已而为之。在我奶奶看来,这种作法实在对不住自己,也更不能继承先人“烹调”的真意——所谓 “无味乃有味之始”, 原味最美。";}}}}}}i:6;s:1:" ";i:7;a:4:{s:3:"tag";s:5:"color";s:6:"option";s:7:"#333333";s:8:"original";a:2:{i:0;s:15:"[COLOR=#333333]";i:1;s:8:"[/COLOR]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"size";s:6:"option";s:4:"14px";s:8:"original";a:2:{i:0;s:11:"[SIZE=14px]";i:1;s:7:"[/SIZE]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:4:"font";s:6:"option";s:9:"Helvetica";s:8:"original";a:2:{i:0;s:16:"[FONT=Helvetica]";i:1;s:7:"[/FONT]";}s:8:"children";a:10:{i:0;s:898:"历史上有过用不同烹调方法做出的红烧肉,最早的在南北朝时就有了。《齐民要术》中记载了一个叫“奥肉”的食谱。就是肉斩件,先炒,再加猪油,酒和盐慢火煮好。然后放入瓮中,浸以猪油。吃的时候再取肉煮食。明清时的《调鼎集》里也提到过一道“灯灯肉”,也是大块猪肉入锅,加水及调味料,密封锅盖后,先用大火烧开,再撤去火,改用油灯一盏对准锅脐烧,烧上一夜至酥烂。 在美食历史和家常味觉记忆中,都占了一席重位的红烧肉,其实烹调起来相当简单。今天就和大家分享我家苏式红烧肉的做法。调味只用生抽(咸味)、老抽(上色)、姜片(去腥)、绍酒(去腥提鲜)和冰糖(提鲜增亮)。上好的猪肉,就要吃原味。至简调味,为的是一享至美真味。 ";i:1;a:4:{s:3:"tag";s:1:"b";s:6:"option";N;s:8:"original";a:2:{i:0;s:3:"[B]";i:1;s:4:"[/B]";}s:8:"children";a:1:{i:0;s:9:"食谱:";}}i:2;s:22:"家常苏式红烧肉 ";i:3;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:9:"原料:";}}i:4;s:446:" 1. 猪五花肉一斤半,猪前腿(或后腿)肉一斤半; 2. 生抽4勺(喝汤用的勺子),老抽4勺,也可根据个人口味适当增减; 3. 姜4至5片; 4. 绍酒4勺; 5. 冰糖100-150克(冰糖用刀背或者擀面棍敲成小块。苏式红烧肉偏甜,这里冰糖用量可以根据个人喜好增减); 6. 一滴滴香醋。 7. 开水(一定要加入开水,开水的量以没过肉4-5厘米为佳)。 ";i:5;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:9:"做法:";}}i:6;s:1273:" 1. 猪肉切大块(3.5厘米见方最好),浸在冷水里15-20分钟,以便“拔”出血水。拔好的猪肉,沥水待用; 2. 炒锅烧热,放一小茶匙食用油。炒香姜片后,放入肉块,不断煸炒,同时淋入“一滴滴”醋。翻炒直至肉块变色。这个时候放入老抽、生抽、绍酒,再继续煸炒2分钟左右; 3. 肉块均匀挂上调料后,加入开水。切记一定用开水,而且一次加足水! 水需没过肉块4-5厘米,盖盖儿,大火煮开。煮开后,转小火慢炖。此间不要开盖,用小火慢慢炖上2个小时再一刻钟。此时开盖,加入冰糖收汁。这里有两种收汁方法。第一种:加入冰糖后可以再盖上盖子,转中火收汁一刻钟;第二种:加入冰糖后可以打开盖子,转大火,不断把渐浓稠的汤汁,翻炒到肉上,即为“收汁”。用筷子插入一块肉里,一下插进去,而且肉有软且弹的感觉,那就大功告成了。 *上期我的文章“小面团的大世界”正好介绍了做馍的良方。就用这个馍,中间横切一刀,配上红烧肉(夹进馍之前,一定用叉子将肉块搅碎些),再来点香菜和尖椒。苏式红烧肉配上陕北的馍,出彩好吃! ";i:7;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:3:"594";}}i:8;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:3:"595";}}i:9;a:4:{s:3:"tag";s:6:"attach";s:6:"option";s:4:"full";s:8:"original";a:2:{i:0;s:13:"[ATTACH=full]";i:1;s:9:"[/ATTACH]";}s:8:"children";a:1:{i:0;s:3:"596";}}}}}}}}}, 1621686945, 1714936060
    Run Time: 0.000998

Included Files (110, XenForo Classes: 63)

  1. index.php
  2. library/XenForo/Autoloader.php
  3. library/XenForo/Application.php
  4. library/Zend/Registry.php
  5. library/Lgpl/utf8.php
  6. library/Zend/Config.php
  7. library/config.php
  8. library/XenForo/FrontController.php
  9. library/XenForo/Dependencies/Public.php
  10. library/XenForo/Dependencies/Abstract.php
  11. library/Zend/Controller/Request/Http.php
  12. library/Zend/Controller/Request/Abstract.php
  13. library/Zend/Uri.php
  14. library/Zend/Controller/Response/Http.php
  15. library/Zend/Controller/Response/Abstract.php
  16. library/XenForo/Model/DataRegistry.php
  17. library/XenForo/Model.php
  18. library/Zend/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/XenResource/Listener/Proxy.php
  33. library/XenGallery/Listener.php
  34. library/Brivium/BriviumHelper/EventListeners.php
  35. library/Brivium/BriviumHelper/1000271/EventListeners.php
  36. library/SV/RedisCache/Listener.php
  37. library/BestAnswer/Listener.php
  38. library/SV/RedisCache/XenForo/Model/DataRegistry.php
  39. library/Brivium/BriviumHelper/Model/ListenerClass.php
  40. library/Brivium/BriviumHelper/1000271/Model/ListenerClass.php
  41. library/XenForo/Router.php
  42. library/XenForo/Route/Filter.php
  43. library/XenForo/Route/Interface.php
  44. library/XenForo/Route/ResponseSuffix.php
  45. library/XenForo/Route/Prefix.php
  46. library/XenForo/Route/Prefix/Threads.php
  47. library/XenForo/RouteMatch.php
  48. library/XenForo/ControllerPublic/Thread.php
  49. library/XenForo/ControllerPublic/Abstract.php
  50. library/XenForo/Controller.php
  51. library/BestAnswer/ControllerPublic/Thread.php
  52. library/XenForo/Input.php
  53. library/XenForo/Session.php
  54. library/XenForo/Helper/Ip.php
  55. library/XenForo/Visitor.php
  56. library/XenForo/Model/User.php
  57. library/BestAnswer/Model/User.php
  58. library/XenResource/Listener/Proxy/ModelUser.php
  59. library/XenGallery/Model/User.php
  60. library/XenForo/Permission.php
  61. library/XenForo/Helper/Php.php
  62. library/XenForo/Phrase.php
  63. library/XenForo/Locale.php
  64. library/XenForo/ControllerHelper/ForumThreadPost.php
  65. library/XenForo/ControllerHelper/Abstract.php
  66. library/XenForo/Model/Thread.php
  67. library/SV/RedisCache/XenForo/Model/Thread.php
  68. library/BestAnswer/Model/Thread.php
  69. library/BestAnswer/Model/BestAnswer.php
  70. library/XenForo/Model/Forum.php
  71. library/XenForo/Helper/String.php
  72. library/XenForo/Model/Post.php
  73. library/FreddysHouse/SignatureOnce/Event/LoadClassModel.php
  74. library/BestAnswer/Model/Post.php
  75. library/FreddysHouse/SignatureOnce/Model/Post.php
  76. library/XenForo/Model/Attachment.php
  77. library/XenForo/Route/Prefix/Attachments.php
  78. library/XenForo/Model/Node.php
  79. library/XenForo/Route/Prefix/Categories.php
  80. library/XenForo/Route/Prefix/Forums.php
  81. library/XenForo/ControllerResponse/View.php
  82. library/XenForo/ControllerResponse/Abstract.php
  83. library/XenForo/Helper/Cookie.php
  84. library/XenResource/Listener/Template.php
  85. library/XenForo/ViewRenderer/HtmlPublic.php
  86. library/XenForo/ViewRenderer/Abstract.php
  87. library/XenForo/Template/Public.php
  88. library/XenForo/Template/Abstract.php
  89. library/XenForo/ViewPublic/Thread/View.php
  90. library/XenForo/ViewPublic/Base.php
  91. library/XenForo/View.php
  92. library/XenForo/BbCode/Parser.php
  93. library/XenForo/BbCode/Formatter/Base.php
  94. library/XenForo/ViewPublic/Helper/Message.php
  95. library/XenForo/BbCode/TextWrapper.php
  96. library/WhoHasVisited/Listener.php
  97. library/XenForo/Route/Prefix/Members.php
  98. library/XenForo/Template/FileHandler.php
  99. library/XenForo/Helper/File.php
  100. internal_data/templates/S.1,L.7,thread_view.php
  101. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  102. library/XenForo/Route/Prefix/Posts.php
  103. library/XenForo/Model/Avatar.php
  104. internal_data/templates/S.1,L.7,bb_code_tag_attach.php
  105. library/XenForo/Helper/Criteria.php
  106. library/XenForo/Debug.php
  107. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  108. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  109. internal_data/templates/S.1,L.7,resources_tab_links.php
  110. library/XenForo/ViewRenderer/Json.php