Page Time: 0.1166s

Memory: 10.5674 MB (Peak: 11.8237 MB)

Queries (12, time: 0.0190s, 16.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.000663
    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.000173
    Select TypeTableTypePossible KeysKeyKey LenRefRowsExtra
    SIMPLExf_data_registryrangePRIMARYPRIMARY27 2Using where
  3. SELECT *
    FROM xf_brivium_addon
    ORDER BY addon_id
    Run Time: 0.000160
    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.000153
  5. SELECT cache_value
    FROM xf_permission_combination
    WHERE permission_combination_id = ?
    Params: 1
    Run Time: 0.000208
    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: 313323
    Run Time: 0.002468
    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.008100
    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: 313323
    Run Time: 0.005190
    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: 313323
    Run Time: 0.000089
  10. INSERT INTO `xf_session` (`session_id`, `session_data`, `expiry_date`) VALUES (?, ?, ?)
    Params: 97cf71421c95b2a181f6dd75742b8b6f, , 1714675169
    Run Time: 0.000588
  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=313323, 1714671569,
    Run Time: 0.000124
  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, 319951, a:25:{i:0;s:794:"人的知识就好比一个圆圈,圆圈里面是已知的、外面是未知的。知道得越多,圆圈就越大,不知道的也就越多。这句出自古希腊哲学家芝诺(Zeno)的名言,至今依然适用。短短几个世纪内,天文学领域发生了一次次重大的范式转移,人类对宇宙的认知不断深化,但实际上超出人类当前理解范围的,仍是数不胜数。 2020 年 4 月 28 日,中国“天眼”——500 米口径球面射电望远镜(Five-hundred-meter Aperture Spherical Telescope,FAST)正式开启地外文明搜索。30 日,FAST 望远镜首次发现距离地球约 85 亿光年的新快速射电暴。 不过,“天眼”能否找到外星人、快速射电暴究竟传达了何种信号,仍是未解之谜。 ";i:1;a:4:{s:3:"tag";s:3:"url";s:6:"option";s:66:"https://static.cnbetacdn.com/article/2020/0214/3a18a2e2a607e3e.jpg";s:8:"original";a:2:{i:0;s:74:"[URL='https://static.cnbetacdn.com/article/2020/0214/3a18a2e2a607e3e.jpg']";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:90:"https://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/0214/3a18a2e2a607e3e.jpg";}}}}i:2;s:1548:" 中国“天眼” 要了解浩瀚无垠的宇宙,必定要借助工具。 1931 年,在著名的美国贝尔实验室(BellLaboratory)里,专门负责搜索、鉴别电话干扰信号的无线电工程师 Karl Guthe Jansky 发现了一种每隔 23 小时 56 分 04 秒就会出现最大值的无线电干扰。 次年,Karl Guthe Jansky 在一篇文章中写到,这一干扰信号是来自银河系中的射电辐射,由此他也开创了用射电波研究天体的新纪元,天文学中最重要的工具之一——“射电望远镜”(radio telescope)得以诞生。 不过,不同于演唱会追星用的普通望远镜,射电望远镜看上去就像一口巨大的锅。 具体来讲,射电望远镜可用来观测、研究来自天体的射电波,包括收集射电波的定向天线、放大射电信号的高灵敏度接收机、信息记录、处理和显示系统等,可测量天体射电的强度、频谱及偏振等量。 值得一提的是,20 世纪 60 年代天文学领域的“四大发现”——脉冲星、类星体、宇宙微波背景辐射、星际有机分子都与射电望远镜有关。 1993 年,在东京召开的国际无线电科学联盟大会上,中国等 10 个国家的天文学家提出建造新一代射电大望远镜,希望在全球电信号环境恶化到不可收拾的地步之前,多收获一些射电信号。 1994 年,FAST 工程的概念便提出了。不过,考虑到巨额的经费和无数的科研人力,建造射电望远镜绝非易事: ";i:3;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:903:" [*] 2001 年,FAST 预研究作为中科院首批“创新工程重大项目”立项; [*] 2007 年 7 月,国家发改委批复 500 米口径球面射电望远镜国家重大科技基础设施立项建议书,同意将 FAST 项目列入国家高技术产业发展项目计划,工程进入可行性研究阶段; [*] 2011 年 3 月,FAST 工程开工报告获批,工程开工项目初步设计和概算获得中国科学院和贵州省人民政府批复; [*] 2016 年 7 月 3 日,位于贵州省平塘县的 FAST 主体工程顺利完工; [*] 2016 年 9 月 25 日,FAST 落成启用,开始接收来自宇宙深处的电磁波; [*] 2020 年 1 月 11 日,FAST 顺利通过国家验收,投入正式运行; [*] 截至 2020 年 3 月 23 日,FAST 发现并认证的脉冲星已达到 114 颗; [*] 2020 年 4 月 28 日,FAST 正式开启地外文明搜索。 ";}}i:4;s:137:" 宇宙中最精确的时钟 根据百度百科,这一耗时近 26 年立项、建造、正式投入使用的中国“天眼”,有";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:18:"四大应用价值";}}i:6;s:5:": ";i:7;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:594:" [*] 把中国空间测控能力由地球同步轨道延伸至太阳系外缘,将深空通讯数据下行速率提高 100 倍。 [*] 将脉冲星到达时间测量精度由 120 纳秒提高至 30 纳秒,成为国际上最精确的脉冲星计时阵。 [*] 以 1HZ 的分辩率诊断识别微弱的空间讯号,作为被动战略雷达,为国家安全服务。 [*] 搜索外星人信号——美国“搜寻外星人计划”(SETI)首席科学家、美国加州伯克利大学教授 Dan Werthimer 希望我国研究人员能为 FAST 加装设备,共同探索地外文明。 ";}}i:8;s:55:" 正如 FAST 望远镜总工艺师王启明表示: ";i:9;a:4:{s:3:"tag";s:6:"indent";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[INDENT]";i:1;s:9:"[/INDENT]";}s:8:"children";a:1:{i:0;s:71:" 在 FAST 的科学目标中,排在最前列的是寻找脉冲星。 ";}}i:10;s:904:" 脉冲星(Pulsar),从字面意思理解就是不断发出电磁脉冲信号的中子星。 那么,中子星又是什么星? 实际上,黑洞是一个没有大小但有质量,因此密度近乎无穷大的点。而中子星(neutron star)是除黑洞外密度最大的星体。中子星和黑洞的形成过程类似——在一个恒星即将灭亡时,其核心在自身重力的作用下迅速地收缩、塌陷、发生强力爆炸。可见,中子星的神秘性不亚于黑洞。 1967 年 10 月,剑桥大学一个实验室里,一名年仅 24 岁的女研究生 Jocelyn Bell Burnell 发现了脉冲星 PSR1919+21,这也是人类历史上发现的第一颗脉冲星。 据了解,由于脉冲星发出的信号具有严格的周期性,因此被认为是宇宙中最精确的时钟,由于其神秘性,不少网友也将其加入“宇宙级吉尼斯”之列。 ";i:11;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://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/0512/d31937dec0d2120.jpg";}}i:12;s:262:" 如上所述,FAST 望远镜目前已发现并认证的脉冲星达到 114 颗,其实力可见一斑。 能找到外星人吗? 值得我们关注的是,FAST 还有一项重要任务——探索地外文明。 中国科学院国家天文台表示: ";i:13;a:4:{s:3:"tag";s:6:"indent";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[INDENT]";i:1;s:9:"[/INDENT]";}s:8:"children";a:1:{i:0;s:406:" 2018 年 9 月,国家天文台博士生张志嵩与 Dan Werthimer 教授、北京师范大学等单位合作,在 FAST 现场对高分辨率的 SETI 后端进行了安装测试。2019 年 7 月,研究人员分析处理了漂移扫描数据,实现频率分辨率 4Hz,并成功去除大部分射频干扰,筛选出多组窄带候选信号,为开启地外文明搜索打下了坚实的基础。 ";}}i:14;s:66:" 2020 年 4 月 28 日,FAST 正式开启地外文明搜索。 ";i:15;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://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/0512/3ea53119b8eb42c.jpg";}}i:16;s:267:" 不过,即便 FAST 实力不凡,当前全世界范围内都没有确凿的证据证实外星人的存在,寻找到外星人,极有可能是我们有生之年无法见证的事情。 正如知乎一位高赞答主、天体物理学博士刘博洋所言: ";i:17;a:4:{s:3:"tag";s:6:"indent";s:6:"option";N;s:8:"original";a:2:{i:0;s:8:"[INDENT]";i:1;s:9:"[/INDENT]";}s:8:"children";a:1:{i:0;s:116:" 虽然对 FAST 在搜索地外智慧领域的未来充满期待,但还是尽人事,听天命,如此而已。 ";}}i:18;s:65:" 探索地外智慧的历史可追溯到上世纪 60 年代: ";i:19;a:4:{s:3:"tag";s:4:"list";s:6:"option";N;s:8:"original";a:2:{i:0;s:6:"[LIST]";i:1;s:7:"[/LIST]";}s:8:"children";a:1:{i:0;s:913:" [*] 1960 年,人类就已经开始接收、分析来自太空的各种可能的电波,希望探寻到关于地外文明的蛛丝马迹; [*] 1971 年,NASA 号召众多天文学家搜寻 SETI (Search for ExtraTerrestrial Intelligence,搜寻地外文明)信号,并提出了“望远镜森林”计划——建造一个由 1000 架射电望远镜组成的巨大阵列,用射电望远镜等先进设备接收从宇宙中传来的电磁波,从中分析有规律的信号,从而发现外星文明; [*] 1984 年,加州一家非营利性科研机构 SETI 研究所(NASA 和美国国家科学基金会的主要研究承包商)成立; [*] 1999 年,伯克利大学发起了“众筹”全球空闲算力分析电磁波信号寻找外星人的项目 SETI@home(Search for Extraterrestrial Intelligence at home),这一项目已于 2020 年 3 月 31 日起正式进入休眠期。 ";}}i:20;s:2:" ";i:21;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://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/0512/3c3f225dbc7fcec.png";}}i:22;s:909:" 另外,霍金曾在生前警告“人类不应主动寻找外星人”。 且不论时间、资金、人力等成本或技术水平,能否找到外星人、外星人是否会对我们带来威胁,都是未解之谜。 网络上的说法五花八门,其中不少网友也认为主动寻找外星人应当谨慎而行——倘若外星人是善意的物种,那便有了 happy ending,然而这可能会是小概率事件,而其他情形则更像是《三体》中的“黑暗森林”理论,人类可能将会面临不太好的结果。 宇宙在宣泄能量? 2020 年 4 月 30 日,FAST 望远镜首次发现距离地球约 85 亿光年的新快速射电暴。 中国科学院国家天文台表示,研究人员朱炜玮、李菂等与合作者利用自主研发的搜寻技术,结合深度学习,对海量的 FAST 数据进行快速搜索,新的快速射电暴得以发现。 ";i:23;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://rdimg.com/proxy/https://static.cnbetacdn.com/article/2020/0512/1abc802931a12ad.jpg";}}i:24;s:967:" 值得一提的是,这是 FAST 望远镜盲搜发现的首个 FRB。而这发生在宇宙深处转瞬即逝的闪动,经历了长达 85 亿年的长途旅行,终于在 2018 年 11 月 23 日到达地球。 实际上,快速射电暴(Fast Radio Burst,FRB)是宇宙中突然出现的短暂、猛烈的无线电波暴发,其持续时间极短,释放出的能量却相当于太阳一整天内释放的能量。 2019 年,加拿大天体物理学家 Victoria Kaspi 因利用被誉为“FRB 猎手”的加拿大氢强度测绘实验望远镜(CHIME)发现了 FRB,入选 Nature 年度十大科学人物。 对于 FRB,目前也只能用“来历不明”来描述,不过经常会被认为与外星文明有关,原因在于人类是用无线电波进行通信。 不难发现,不论是脉冲星、外星人,还是快速射电暴,很多时候只能打上一个问号。毕竟,在宇宙的长河中,我们都只是短暂的浪花。";}, 1621686945, 1714671569
    Run Time: 0.001075

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