Page Time: 0.1352s

Memory: 10.5529 MB (Peak: 11.8208 MB)

Queries (12, time: 0.0163s, 12.0%)

  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.000620
    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.000156
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000143
    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.000127
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000272
    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: 311528
    Run Time: 0.000461
    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: 25
    Run Time: 0.000418
    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: 311528
    Run Time: 0.009012
    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. INSERT  INTO xf_thread_view
    	(thread_id)
    VALUES
    	(?)
    Params: 311528
    Run Time: 0.000087
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: bb94c48aeabe12f341d46ab94202fbca, , 1715054698
    Run Time: 0.002400
  11. 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=311528, 1715051098,
    Run Time: 0.000110
  12. 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, 318156, a:17:{i:0;s:389:"B 站这个还在快速上升的平台,绝不能只是偏安一隅的小破站,要成为社会中重要的组成部分,要和“次元壁”外的力量和解。男女老少的朋友圈,被 B 站的宣传片刷屏。这是五四青年节的前夜,宣传片名为《bilibili 献给新一代的演讲》,在《新闻联播》开始前 12 分钟,视频在央视一套播出。 ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0505/c656bc022a95b29.png";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0505/c656bc022a95b29.png']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/0505/c656bc022a95b29.png";}}}}i:2;s:153:" 老戏骨何冰题为《后浪》的演讲,穿插着 B 站年轻 up 主们各种视频的剪辑,配上悠长激昂的配乐,一夜之间打动了";i:3;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:195:"https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_76344%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar";s:8:"original";a:2:{i:0;s:203:"[URL='https://c.duomai.com/track.php?site_id=242986&euid=&t=https%3A%2F%2Flist.jd.com%2Flist.html%3Fcat%3D737%2C794%2C798%26ev%3D4155_76344%26sort%3Dsort_rank_asc%26trans%3D1%26JL%3D2_1_0%23J_crumbsBar']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"电视";}}i:4;s:92:"机前和朋友圈里的“前浪”们,也打穿了 B 站与主流文化的那堵墙。 ";i:5;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://static.cnbetacdn.com/article/2020/0505/6a66413e3f98c6f.jpeg";s:8:"original";a:2:{i:0;s:75:"[URL='https://static.cnbetacdn.com/article/2020/0505/6a66413e3f98c6f.jpeg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:97:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/0505/6a66413e3f98c6f.jpeg";}}}}i:6;s:514:" 没什么好奇怪的 不到一天的时间,视频在 B 站播放量超过 500 万,弹幕超过 6 万,评论近 3 万。 微博上,由人民日报、澎湃新闻等媒体主持的相关话题,阅读总数过亿,讨论超 10 万。 更显传播能力的,B 站在朋友圈投放的广告,引发了刷屏的热潮。有趣的是,这条“献给新一代”的演讲,在很多人看来,几乎大多是“上一代”在转发评论,B 站安身立命的“Z 世代”反而很少出现。 ";i:7;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://static.cnbetacdn.com/article/2020/0505/c82c121ac975c14.jpeg";s:8:"original";a:2:{i:0;s:75:"[URL='https://static.cnbetacdn.com/article/2020/0505/c82c121ac975c14.jpeg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:97:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/0505/c82c121ac975c14.jpeg";}}}}i:8;s:1393:" B 站在朋友圈投放的广告被疯狂转发 这样的情况引起了不少“上一代”的自嘲,甚至有很多人觉得年轻人并不理会这样“古典”的演讲形式。 其实这很好理解,《后浪》虽然名为“献给下一代”,内容也是对年轻人的喊话,但它的视角,依然是“前浪”,它在“前浪”话语权的中心,反过来向“上一代”输送了“新一代”的生活方式。 演讲人何冰今年 52 岁,是国家一级演员,有着很多国民级的代表作品,他是央视电视剧黄金时段的常客。同时,在 B 站上,何冰的代表作《大宋提刑官》也具有一定的名气,播放量接近 500 万,相关的二次创作也有很多超过百万播放的作品。 B 站制作了这样一个广告片,以主流世界认同的方式,通过两代人都认可的演讲者,把这一代年轻人积极的一面呈现给主流世界。 归根结底,这是 B 站的一次“破壁行动”。它引发的刷屏事件可以说是今年营销领域影响力最大的一次——集中爆发的效果在短时间内甚至超越了年初的 B 站跨年晚会。 与非年轻人的和解 比起在朋友圈被疯狂转发,《后浪》更大的意义在于它登上了 CCTV 的黄金时间。片尾与 B 站一起出现的,是光明日报、中国青年报等主流媒体的联名。 ";i:9;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0505/815e8850c560553.png";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0505/815e8850c560553.png']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:96:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/0505/815e8850c560553.png";}}}}i:10;s:255:" 多家主流媒体与 B 站联合发布|哔哩哔哩 这是一次有着主流话语权背书的年轻人表达。而为年轻人代言的,则是 B 站。向主流世界、“上一代”们伸出橄榄枝的,也是 B 站。 “不只是我们在";i:11;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:145:"https://c.duomai.com/track.php?k=yUSQzUycwRHdo1Ddm0DZpVXZmkDN2ITPklWYmYDO5IDNy0DZp9VZ0l2cmYiJ05WZkVHdzZkMl42Yu02bj5SZy9GdzRnZvN3byNWat5yd3dnRyUiR";s:8:"original";a:2:{i:0;s:153:"[URL='https://c.duomai.com/track.php?k=yUSQzUycwRHdo1Ddm0DZpVXZmkDN2ITPklWYmYDO5IDNy0DZp9VZ0l2cmYiJ05WZkVHdzZkMl42Yu02bj5SZy9GdzRnZvN3byNWat5yd3dnRyUiR']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;s:6:"教育";}}i:12;s:301:"你们如何生活,你们也在启发我们,怎样去更好地生活。那些抱怨一代不如一代的人,应该看看你们。”通过何冰的演讲,B 站向“上一代”发出邀请——来这里看一看如何更好地生活,来这里看一看,究竟一代是否不如一代。 ";i:13;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:90:"https://imgslim.geekpark.net/uploads/image/file/e0/e5/e0e5ef0717994f59da0bdaba6eee33a8.jpg";}}i:14;s:973:" B 站年纪最小的 up 主“鹏鹏”,粉丝超 30 万|哔哩哔哩 但要知道,B 站曾经与主流世界是格格不入的,甚至为此碰过壁。2018 年夏天,还是 CCTV,在一档新闻节目里 B 站被点名批评,因为平台上存在着不合规的动漫内容。之后 B 站“内部优化整改”,app 在各大应用商店短暂下架过一段时间。也是从那之后,立足二次元亚文化的 B 站开始了与主流和解的进程。 “出圈”成了 B 站近两年发展的一个核心关键词。它的用户完成了数倍的增长,如今的月活已经达到了 1.3 亿。“出圈”的同时,随着用户越来越多,作为一个文化内容社区,B 站需要在价值观上获得主流世界的认可。 “一个快速上升的平台,绝不能只是偏安一隅的『小破站』,要成为社会中重要的组成部分,要和次元壁外的力量和解。”极客公园创始人张鹏如此评价。 ";i:15;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:67:"https://static.cnbetacdn.com/article/2020/0505/56de30edaa45347.jpeg";s:8:"original";a:2:{i:0;s:75:"[URL='https://static.cnbetacdn.com/article/2020/0505/56de30edaa45347.jpeg']";i:1;s:6:"[/URL]";}s:8:"children";a:1:{i:0;a:4:{s:3:"tag";s:3:"img";s:6:"option";N;s:8:"original";a:2:{i:0;s:5:"[IMG]";i:1;s:6:"[/IMG]";}s:8:"children";a:1:{i:0;s:97:"https://rdimg.com/proxy/https://static.cnbetacdn.com/thumb/article/2020/0505/56de30edaa45347.jpeg";}}}}i:16;s:1429:" 2019 年,何同学的 5G 科普视频达到了出圈的影响力|哔哩哔哩 最典型的表现,过去一年主流媒体入驻 B 站,表现最好的“央视新闻”,创造了 B 站从账号注册到突破百万粉丝速度最快的记录。 与此同时,B 站还在加码商业、社会等方面的内容,力推财经类、科技类、法律类 up 主及相关视频,就连版权影视内容也大手笔地买下了多部经典、主流的电影、纪录片和电视剧。 在 3 月的财报会议上,B 站董事长陈睿表示,2020 年,“用户增长依然是 B 站的工作重心之一”。为了更大范围的增长,B 站需要向主流世界抛出橄榄枝。 从这个角度上看,这次的《后浪》,是 B 站跻身主流世界进程中的一次标志性事件。它在价值观上的表达,它的表现形式,以及整起事件的影响力,都证明了这个曾经“小而美”的社区已经发生了翻天覆地的变化。 通过《后浪》,B 站正在敞开大门,不仅仅面对年轻人,更是向全年龄段,所有互联网用户。它正在成为一款全民化的社区和视频平台。 毫无疑问,B 站通过这个视频广告,获得了相当相当成功的效果。这次破壁行动的号角很是响亮,并且还不是终点。B 站,这个立志要成为中国新一代最大视频平台的公司,2020 年的破壁出圈才刚开始。";}, 1621686945, 1715051098
    Run Time: 0.002489

Included Files (108, XenForo Classes: 62)

  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/Model/Node.php
  78. library/XenForo/Route/Prefix/Categories.php
  79. library/XenForo/Route/Prefix/Forums.php
  80. library/XenForo/ControllerResponse/View.php
  81. library/XenForo/ControllerResponse/Abstract.php
  82. library/XenForo/Helper/Cookie.php
  83. library/XenResource/Listener/Template.php
  84. library/XenForo/ViewRenderer/HtmlPublic.php
  85. library/XenForo/ViewRenderer/Abstract.php
  86. library/XenForo/Template/Public.php
  87. library/XenForo/Template/Abstract.php
  88. library/XenForo/ViewPublic/Thread/View.php
  89. library/XenForo/ViewPublic/Base.php
  90. library/XenForo/View.php
  91. library/XenForo/BbCode/Parser.php
  92. library/XenForo/BbCode/Formatter/Base.php
  93. library/XenForo/ViewPublic/Helper/Message.php
  94. library/XenForo/BbCode/TextWrapper.php
  95. library/WhoHasVisited/Listener.php
  96. library/XenForo/Route/Prefix/Members.php
  97. library/XenForo/Template/FileHandler.php
  98. library/XenForo/Helper/File.php
  99. internal_data/templates/S.1,L.7,thread_view.php
  100. library/Brivium/RMDownloadTracker/EventListener/Listener.php
  101. library/XenForo/Route/Prefix/Posts.php
  102. library/XenForo/Model/Avatar.php
  103. library/XenForo/Helper/Criteria.php
  104. library/XenForo/Debug.php
  105. internal_data/templates/S.1,L.7,PAGE_CONTAINER.php
  106. internal_data/templates/S.1,L.7,xengallery_tab_links.php
  107. internal_data/templates/S.1,L.7,resources_tab_links.php
  108. library/XenForo/ViewRenderer/Json.php