rsshub 1.0.0-master.ffaca71 → 1.0.0-master.ffb4767

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of rsshub might be problematic. Click here for more details.

Files changed (11246) hide show
  1. package/README.md +21 -57
  2. package/lib/api/category/one.ts +54 -0
  3. package/lib/api/index.ts +37 -0
  4. package/lib/api/namespace/all.ts +17 -0
  5. package/lib/api/namespace/one.ts +33 -0
  6. package/lib/api/radar/rules/all.ts +56 -0
  7. package/lib/api/radar/rules/one.ts +72 -0
  8. package/lib/app.test.ts +11 -0
  9. package/lib/app.tsx +57 -0
  10. package/lib/assets/logo.png +0 -0
  11. package/lib/config.test.ts +99 -0
  12. package/lib/config.ts +734 -0
  13. package/lib/errors/index.test.ts +88 -0
  14. package/lib/errors/index.tsx +81 -0
  15. package/lib/errors/types/config-not-found.ts +5 -0
  16. package/lib/errors/types/invalid-parameter.ts +5 -0
  17. package/lib/errors/types/not-found.ts +5 -0
  18. package/lib/errors/types/reject.ts +5 -0
  19. package/lib/errors/types/request-in-progress.ts +5 -0
  20. package/lib/index.ts +25 -0
  21. package/lib/middleware/access-control.test.ts +47 -0
  22. package/lib/middleware/access-control.ts +25 -0
  23. package/lib/middleware/anti-hotlink.test.ts +440 -0
  24. package/lib/middleware/anti-hotlink.ts +167 -0
  25. package/lib/middleware/cache.test.ts +189 -0
  26. package/lib/middleware/cache.ts +76 -0
  27. package/lib/middleware/debug.test.ts +40 -0
  28. package/lib/middleware/debug.ts +37 -0
  29. package/lib/middleware/filter-engine.test.ts +39 -0
  30. package/lib/middleware/header.test.ts +39 -0
  31. package/lib/middleware/header.ts +48 -0
  32. package/lib/middleware/logger.ts +44 -0
  33. package/lib/middleware/parameter.test.ts +462 -0
  34. package/lib/middleware/parameter.ts +423 -0
  35. package/lib/middleware/sentry.ts +27 -0
  36. package/lib/middleware/template.test.ts +111 -0
  37. package/lib/middleware/template.tsx +116 -0
  38. package/lib/middleware/trace.ts +25 -0
  39. package/lib/pkg.test.ts +68 -0
  40. package/lib/pkg.ts +21 -0
  41. package/lib/registry.test.ts +40 -0
  42. package/lib/registry.ts +118 -0
  43. package/lib/router.js +74 -957
  44. package/lib/routes/005/index.ts +156 -0
  45. package/lib/routes/005/namespace.ts +8 -0
  46. package/lib/routes/005/templates/description.art +27 -0
  47. package/lib/routes/0818tuan/index.ts +70 -0
  48. package/lib/routes/0818tuan/namespace.ts +6 -0
  49. package/lib/routes/0x80/index.ts +87 -0
  50. package/lib/routes/0x80/namespace.ts +7 -0
  51. package/lib/routes/12306/index.ts +132 -0
  52. package/lib/routes/12306/namespace.ts +6 -0
  53. package/lib/routes/12306/zxdt.ts +85 -0
  54. package/lib/routes/12371/namespace.ts +7 -0
  55. package/lib/routes/12371/zxfb.ts +64 -0
  56. package/lib/routes/141jav/index.ts +121 -0
  57. package/lib/routes/141jav/namespace.ts +9 -0
  58. package/lib/routes/141ppv/index.ts +124 -0
  59. package/lib/routes/141ppv/namespace.ts +9 -0
  60. package/lib/routes/163/ds.ts +60 -0
  61. package/lib/routes/163/dy.ts +51 -0
  62. package/lib/routes/163/dy2.ts +60 -0
  63. package/lib/routes/163/exclusive.ts +194 -0
  64. package/lib/routes/163/music/artist-songs.ts +61 -0
  65. package/lib/routes/163/music/artist.ts +61 -0
  66. package/lib/routes/163/music/djradio.ts +100 -0
  67. package/lib/routes/163/music/playlist.ts +76 -0
  68. package/lib/routes/163/music/userevents.ts +64 -0
  69. package/lib/routes/163/music/userplaylist.ts +78 -0
  70. package/lib/routes/163/music/userplayrecords.ts +83 -0
  71. package/lib/routes/163/namespace.ts +9 -0
  72. package/lib/routes/163/news/rank.ts +193 -0
  73. package/lib/routes/163/news/special.ts +138 -0
  74. package/lib/routes/163/open/vip.ts +92 -0
  75. package/lib/routes/163/renjian.ts +105 -0
  76. package/lib/routes/163/today.ts +85 -0
  77. package/lib/routes/163/utils.ts +40 -0
  78. package/lib/routes/18comic/album.ts +107 -0
  79. package/lib/routes/18comic/blogs.ts +97 -0
  80. package/lib/routes/18comic/index.ts +61 -0
  81. package/lib/routes/18comic/namespace.ts +9 -0
  82. package/lib/routes/18comic/search.ts +50 -0
  83. package/lib/routes/18comic/templates/description.art +12 -0
  84. package/lib/routes/18comic/utils.ts +88 -0
  85. package/lib/routes/19lou/index.ts +114 -0
  86. package/lib/routes/19lou/namespace.ts +6 -0
  87. package/lib/routes/1lou/index.ts +147 -0
  88. package/lib/routes/1lou/namespace.ts +8 -0
  89. package/lib/routes/1point3acres/blog.ts +94 -0
  90. package/lib/routes/1point3acres/category.ts +57 -0
  91. package/lib/routes/1point3acres/namespace.ts +6 -0
  92. package/lib/routes/1point3acres/offer.ts +106 -0
  93. package/lib/routes/1point3acres/section.ts +77 -0
  94. package/lib/routes/1point3acres/thread.ts +37 -0
  95. package/lib/routes/1point3acres/user/post.ts +45 -0
  96. package/lib/routes/1point3acres/user/thread.ts +45 -0
  97. package/lib/routes/1point3acres/utils.ts +79 -0
  98. package/lib/routes/1x/index.ts +121 -0
  99. package/lib/routes/1x/namespace.ts +8 -0
  100. package/lib/routes/1x/templates/description.art +17 -0
  101. package/lib/routes/2023game/index.ts +69 -0
  102. package/lib/routes/2023game/namespace.ts +6 -0
  103. package/lib/routes/2048/index.ts +173 -0
  104. package/lib/routes/2048/namespace.ts +6 -0
  105. package/lib/routes/2cycd/index.ts +66 -0
  106. package/lib/routes/2cycd/namespace.ts +6 -0
  107. package/lib/routes/36kr/hot-list.ts +88 -0
  108. package/lib/routes/36kr/index.ts +75 -0
  109. package/lib/routes/36kr/namespace.ts +6 -0
  110. package/lib/routes/36kr/utils.ts +35 -0
  111. package/lib/routes/3dmgame/game.ts +49 -0
  112. package/lib/routes/3dmgame/namespace.ts +6 -0
  113. package/lib/routes/3dmgame/news-center.ts +70 -0
  114. package/lib/routes/3dmgame/utils.ts +28 -0
  115. package/lib/routes/3kns/index.ts +121 -0
  116. package/lib/routes/3kns/namespace.ts +6 -0
  117. package/lib/routes/3kns/templates/description.art +9 -0
  118. package/lib/routes/423down/index.ts +280 -0
  119. package/lib/routes/423down/namespace.ts +8 -0
  120. package/lib/routes/423down/templates/description.art +21 -0
  121. package/lib/routes/4gamers/category.ts +47 -0
  122. package/lib/routes/4gamers/namespace.ts +6 -0
  123. package/lib/routes/4gamers/tag.ts +49 -0
  124. package/lib/routes/4gamers/templates/description.art +3 -0
  125. package/lib/routes/4gamers/templates/image.art +3 -0
  126. package/lib/routes/4gamers/topic.ts +48 -0
  127. package/lib/routes/4gamers/utils.ts +71 -0
  128. package/lib/routes/4ksj/forum.ts +196 -0
  129. package/lib/routes/4ksj/namespace.ts +6 -0
  130. package/lib/routes/4ksj/templates/description.art +59 -0
  131. package/lib/routes/500px/namespace.ts +6 -0
  132. package/lib/routes/500px/tribe-set.ts +43 -0
  133. package/lib/routes/500px/utils.ts +116 -0
  134. package/lib/routes/50forum/namespace.ts +6 -0
  135. package/lib/routes/50forum/zhuanjia.ts +67 -0
  136. package/lib/routes/51cto/namespace.ts +6 -0
  137. package/lib/routes/51cto/recommend.ts +52 -0
  138. package/lib/routes/51cto/utils.ts +21 -0
  139. package/lib/routes/51read/article.ts +82 -0
  140. package/lib/routes/51read/namespace.ts +6 -0
  141. package/lib/routes/52hrtt/index.ts +79 -0
  142. package/lib/routes/52hrtt/namespace.ts +6 -0
  143. package/lib/routes/52hrtt/symposium.ts +89 -0
  144. package/lib/routes/56kog/class.ts +37 -0
  145. package/lib/routes/56kog/namespace.ts +6 -0
  146. package/lib/routes/56kog/templates/description.art +32 -0
  147. package/lib/routes/56kog/top.ts +33 -0
  148. package/lib/routes/56kog/util.ts +111 -0
  149. package/lib/routes/591/list.ts +170 -0
  150. package/lib/routes/591/namespace.ts +6 -0
  151. package/lib/routes/5eplay/index.ts +126 -0
  152. package/lib/routes/5eplay/namespace.ts +6 -0
  153. package/lib/routes/5eplay/utils.ts +34 -0
  154. package/lib/routes/69shu/article.ts +96 -0
  155. package/lib/routes/69shu/namespace.ts +6 -0
  156. package/lib/routes/6park/index.ts +80 -0
  157. package/lib/routes/6park/namespace.ts +6 -0
  158. package/lib/routes/6park/news.ts +89 -0
  159. package/lib/routes/6v123/latest-movies.ts +39 -0
  160. package/lib/routes/6v123/latest-tvseries.ts +39 -0
  161. package/lib/routes/6v123/namespace.ts +6 -0
  162. package/lib/routes/6v123/utils.ts +86 -0
  163. package/lib/routes/78dm/index.ts +87 -0
  164. package/lib/routes/78dm/namespace.ts +6 -0
  165. package/lib/routes/7mmtv/index.ts +122 -0
  166. package/lib/routes/7mmtv/namespace.ts +6 -0
  167. package/lib/routes/81/81rc/index.ts +108 -0
  168. package/lib/routes/81/namespace.ts +8 -0
  169. package/lib/routes/8264/list.ts +172 -0
  170. package/lib/routes/8264/namespace.ts +6 -0
  171. package/lib/routes/8kcos/article.ts +24 -0
  172. package/lib/routes/8kcos/cat.ts +38 -0
  173. package/lib/routes/8kcos/const.ts +4 -0
  174. package/lib/routes/8kcos/latest.ts +50 -0
  175. package/lib/routes/8kcos/namespace.ts +6 -0
  176. package/lib/routes/8kcos/tag.ts +49 -0
  177. package/lib/routes/8world/index.ts +67 -0
  178. package/lib/routes/8world/namespace.ts +6 -0
  179. package/lib/routes/91porn/author.ts +90 -0
  180. package/lib/routes/91porn/index.ts +93 -0
  181. package/lib/routes/91porn/namespace.ts +9 -0
  182. package/lib/routes/91porn/utils.ts +11 -0
  183. package/lib/routes/95mm/category.ts +48 -0
  184. package/lib/routes/95mm/namespace.ts +6 -0
  185. package/lib/routes/95mm/tab.ts +36 -0
  186. package/lib/routes/95mm/tag.ts +34 -0
  187. package/lib/routes/95mm/utils.ts +63 -0
  188. package/lib/routes/9to5/namespace.ts +6 -0
  189. package/lib/routes/9to5/subsite.ts +79 -0
  190. package/lib/routes/9to5/utils.ts +34 -0
  191. package/lib/routes/a9vg/a9vg.ts +45 -0
  192. package/lib/routes/a9vg/namespace.ts +6 -0
  193. package/lib/routes/aamacau/index.ts +93 -0
  194. package/lib/routes/aamacau/namespace.ts +6 -0
  195. package/lib/routes/abc/index.ts +191 -0
  196. package/lib/routes/abc/namespace.ts +6 -0
  197. package/lib/routes/abmedia/category.ts +58 -0
  198. package/lib/routes/abmedia/index.ts +51 -0
  199. package/lib/routes/abmedia/namespace.ts +6 -0
  200. package/lib/routes/abskoop/index.ts +63 -0
  201. package/lib/routes/abskoop/namespace.ts +6 -0
  202. package/lib/routes/abskoop/nsfw.ts +46 -0
  203. package/lib/routes/academia/namespace.ts +6 -0
  204. package/lib/routes/academia/topics.ts +49 -0
  205. package/lib/routes/accessbriefing/index.ts +217 -0
  206. package/lib/routes/accessbriefing/namespace.ts +8 -0
  207. package/lib/routes/accessbriefing/templates/description.art +27 -0
  208. package/lib/routes/acfun/article.ts +132 -0
  209. package/lib/routes/acfun/bangumi.ts +51 -0
  210. package/lib/routes/acfun/namespace.ts +6 -0
  211. package/lib/routes/acfun/video.ts +63 -0
  212. package/lib/routes/acg17/namespace.ts +6 -0
  213. package/lib/routes/acg17/post.ts +45 -0
  214. package/lib/routes/acpaa/index.ts +77 -0
  215. package/lib/routes/acpaa/namespace.ts +6 -0
  216. package/lib/routes/acs/journal.ts +91 -0
  217. package/lib/routes/acs/namespace.ts +6 -0
  218. package/lib/routes/aeaweb/index.ts +115 -0
  219. package/lib/routes/aeaweb/namespace.ts +6 -0
  220. package/lib/routes/aeon/category.ts +51 -0
  221. package/lib/routes/aeon/namespace.ts +6 -0
  222. package/lib/routes/aeon/type.ts +57 -0
  223. package/lib/routes/aeon/utils.ts +55 -0
  224. package/lib/routes/afdian/dynamic.ts +47 -0
  225. package/lib/routes/afdian/explore.ts +78 -0
  226. package/lib/routes/afdian/namespace.ts +6 -0
  227. package/lib/routes/agefans/detail.ts +55 -0
  228. package/lib/routes/agefans/namespace.ts +6 -0
  229. package/lib/routes/agefans/update.ts +75 -0
  230. package/lib/routes/agefans/utils.ts +3 -0
  231. package/lib/routes/agirls/index.ts +60 -0
  232. package/lib/routes/agirls/namespace.ts +6 -0
  233. package/lib/routes/agirls/topic-list.ts +56 -0
  234. package/lib/routes/agirls/topic.ts +56 -0
  235. package/lib/routes/agirls/utils.ts +28 -0
  236. package/lib/routes/agora0/index.ts +83 -0
  237. package/lib/routes/agora0/namespace.ts +6 -0
  238. package/lib/routes/agora0/pen0.ts +69 -0
  239. package/lib/routes/agri/index.ts +307 -0
  240. package/lib/routes/agri/namespace.ts +8 -0
  241. package/lib/routes/agri/templates/description.art +21 -0
  242. package/lib/routes/ahjzu/namespace.ts +6 -0
  243. package/lib/routes/ahjzu/news.ts +83 -0
  244. package/lib/routes/aicaijing/index.ts +84 -0
  245. package/lib/routes/aicaijing/namespace.ts +6 -0
  246. package/lib/routes/aiea/index.ts +63 -0
  247. package/lib/routes/aiea/namespace.ts +6 -0
  248. package/lib/routes/aijishu/index.ts +50 -0
  249. package/lib/routes/aijishu/namespace.ts +6 -0
  250. package/lib/routes/aijishu/utils.ts +35 -0
  251. package/lib/routes/ainvest/article.ts +67 -0
  252. package/lib/routes/ainvest/namespace.ts +6 -0
  253. package/lib/routes/ainvest/news.ts +64 -0
  254. package/lib/routes/ainvest/utils.ts +68 -0
  255. package/lib/routes/aip/journal-pupp.ts +62 -0
  256. package/lib/routes/aip/journal.ts +84 -0
  257. package/lib/routes/aip/namespace.ts +6 -0
  258. package/lib/routes/aip/utils.ts +29 -0
  259. package/lib/routes/airchina/index.ts +64 -0
  260. package/lib/routes/airchina/namespace.ts +6 -0
  261. package/lib/routes/aisixiang/column.ts +65 -0
  262. package/lib/routes/aisixiang/namespace.ts +6 -0
  263. package/lib/routes/aisixiang/thinktank.ts +72 -0
  264. package/lib/routes/aisixiang/toplist.ts +55 -0
  265. package/lib/routes/aisixiang/utils.ts +39 -0
  266. package/lib/routes/aisixiang/zhuanti.ts +68 -0
  267. package/lib/routes/ajmide/index.ts +48 -0
  268. package/lib/routes/ajmide/namespace.ts +6 -0
  269. package/lib/routes/alipan/files.ts +80 -0
  270. package/lib/routes/alipan/namespace.ts +7 -0
  271. package/lib/routes/alipan/types.ts +62 -0
  272. package/lib/routes/aliresearch/information.ts +86 -0
  273. package/lib/routes/aliresearch/namespace.ts +6 -0
  274. package/lib/routes/alistapart/index.ts +34 -0
  275. package/lib/routes/alistapart/namespace.ts +6 -0
  276. package/lib/routes/alistapart/topic.ts +93 -0
  277. package/lib/routes/alistapart/utils.ts +22 -0
  278. package/lib/routes/aliyun/database-month.ts +66 -0
  279. package/lib/routes/aliyun/developer/group.ts +73 -0
  280. package/lib/routes/aliyun/namespace.ts +6 -0
  281. package/lib/routes/aliyun/notice.ts +83 -0
  282. package/lib/routes/aljazeera/index.ts +103 -0
  283. package/lib/routes/aljazeera/namespace.ts +6 -0
  284. package/lib/routes/ally/namespace.ts +6 -0
  285. package/lib/routes/ally/rail.ts +137 -0
  286. package/lib/routes/alpinelinux/namespace.ts +11 -0
  287. package/lib/routes/alpinelinux/pkgs.ts +104 -0
  288. package/lib/routes/alternativeto/namespace.ts +6 -0
  289. package/lib/routes/alternativeto/platform.ts +59 -0
  290. package/lib/routes/alternativeto/software.ts +59 -0
  291. package/lib/routes/alternativeto/utils.ts +21 -0
  292. package/lib/routes/amazon/awsblogs.ts +35 -0
  293. package/lib/routes/amazon/kindle-software-updates.ts +70 -0
  294. package/lib/routes/amazon/namespace.ts +6 -0
  295. package/lib/routes/android/namespace.ts +6 -0
  296. package/lib/routes/android/platform-tools-releases.ts +72 -0
  297. package/lib/routes/annualreviews/index.ts +99 -0
  298. package/lib/routes/annualreviews/namespace.ts +6 -0
  299. package/lib/routes/anquanke/category.ts +62 -0
  300. package/lib/routes/anquanke/namespace.ts +9 -0
  301. package/lib/routes/anquanke/vul.ts +36 -0
  302. package/lib/routes/apache/apisix/blog.ts +51 -0
  303. package/lib/routes/apache/namespace.ts +6 -0
  304. package/lib/routes/apiseven/blog.ts +68 -0
  305. package/lib/routes/apiseven/namespace.ts +6 -0
  306. package/lib/routes/apkpure/namespace.ts +6 -0
  307. package/lib/routes/apkpure/versions.ts +68 -0
  308. package/lib/routes/apnews/api.ts +57 -0
  309. package/lib/routes/apnews/namespace.ts +6 -0
  310. package/lib/routes/apnews/rss.ts +47 -0
  311. package/lib/routes/apnews/sitemap.ts +98 -0
  312. package/lib/routes/apnews/topics.ts +62 -0
  313. package/lib/routes/apnews/utils.ts +48 -0
  314. package/lib/routes/app-center/namespace.ts +6 -0
  315. package/lib/routes/app-center/release.ts +151 -0
  316. package/lib/routes/apple/apps.ts +159 -0
  317. package/lib/routes/apple/exchange-repair.ts +73 -0
  318. package/lib/routes/apple/namespace.ts +6 -0
  319. package/lib/routes/apple/podcast.ts +64 -0
  320. package/lib/routes/appleinsider/index.ts +88 -0
  321. package/lib/routes/appleinsider/namespace.ts +6 -0
  322. package/lib/routes/appstore/in-app-purchase.ts +80 -0
  323. package/lib/routes/appstore/namespace.ts +6 -0
  324. package/lib/routes/appstore/price.ts +82 -0
  325. package/lib/routes/appstore/xianmian.ts +53 -0
  326. package/lib/routes/appstorrent/namespace.ts +6 -0
  327. package/lib/routes/appstorrent/programs.ts +91 -0
  328. package/lib/routes/appstorrent/templates/description.art +22 -0
  329. package/lib/routes/aqara/community.ts +51 -0
  330. package/lib/routes/aqara/namespace.ts +6 -0
  331. package/lib/routes/aqara/news.ts +62 -0
  332. package/lib/routes/aqara/post.ts +104 -0
  333. package/lib/routes/aqara/region.ts +18 -0
  334. package/lib/routes/aqicn/aqi.ts +82 -0
  335. package/lib/routes/aqicn/namespace.ts +6 -0
  336. package/lib/routes/arcteryx/namespace.ts +6 -0
  337. package/lib/routes/arcteryx/new-arrivals.ts +77 -0
  338. package/lib/routes/arcteryx/outlet.ts +79 -0
  339. package/lib/routes/arcteryx/regear-new-arrivals.ts +77 -0
  340. package/lib/routes/arcteryx/utils.ts +21 -0
  341. package/lib/routes/artstation/namespace.ts +6 -0
  342. package/lib/routes/artstation/templates/description.art +17 -0
  343. package/lib/routes/artstation/user.ts +126 -0
  344. package/lib/routes/asiantolick/index.ts +132 -0
  345. package/lib/routes/asiantolick/namespace.ts +6 -0
  346. package/lib/routes/asmr-200/index.ts +66 -0
  347. package/lib/routes/asmr-200/namespace.ts +6 -0
  348. package/lib/routes/asmr-200/templates/work.art +7 -0
  349. package/lib/routes/asmr-200/type.ts +96 -0
  350. package/lib/routes/asus/bios.ts +67 -0
  351. package/lib/routes/asus/gpu-tweak.ts +56 -0
  352. package/lib/routes/asus/namespace.ts +6 -0
  353. package/lib/routes/atcoder/contest.ts +103 -0
  354. package/lib/routes/atcoder/namespace.ts +6 -0
  355. package/lib/routes/atcoder/post.ts +57 -0
  356. package/lib/routes/atptour/namespace.ts +7 -0
  357. package/lib/routes/atptour/news.ts +52 -0
  358. package/lib/routes/auto-stats/index.ts +88 -0
  359. package/lib/routes/auto-stats/namespace.ts +6 -0
  360. package/lib/routes/autocentre/index.ts +29 -0
  361. package/lib/routes/autocentre/namespace.ts +7 -0
  362. package/lib/routes/baai/events.ts +47 -0
  363. package/lib/routes/baai/hub.ts +98 -0
  364. package/lib/routes/baai/namespace.ts +6 -0
  365. package/lib/routes/baai/utils.ts +42 -0
  366. package/lib/routes/backlinko/blog.ts +70 -0
  367. package/lib/routes/backlinko/namespace.ts +6 -0
  368. package/lib/routes/bad/index.ts +67 -0
  369. package/lib/routes/bad/namespace.ts +6 -0
  370. package/lib/routes/baidu/gushitong/index.ts +56 -0
  371. package/lib/routes/baidu/namespace.ts +6 -0
  372. package/lib/routes/baidu/search.ts +77 -0
  373. package/lib/routes/baidu/templates/description.art +6 -0
  374. package/lib/routes/baidu/tieba/forum.ts +86 -0
  375. package/lib/routes/baidu/tieba/post.ts +107 -0
  376. package/lib/routes/baidu/tieba/search.ts +93 -0
  377. package/lib/routes/baidu/tieba/user.ts +53 -0
  378. package/lib/routes/baidu/top.ts +59 -0
  379. package/lib/routes/bandcamp/live.ts +66 -0
  380. package/lib/routes/bandcamp/namespace.ts +6 -0
  381. package/lib/routes/bandcamp/tag.ts +72 -0
  382. package/lib/routes/bandcamp/weekly.ts +57 -0
  383. package/lib/routes/bangumi/moe/index.ts +109 -0
  384. package/lib/routes/bangumi/namespace.ts +6 -0
  385. package/lib/routes/bangumi/online/online.ts +56 -0
  386. package/lib/routes/bangumi/tv/calendar/_base.ts +38 -0
  387. package/lib/routes/bangumi/tv/calendar/today.ts +92 -0
  388. package/lib/routes/bangumi/tv/group/reply.ts +83 -0
  389. package/lib/routes/bangumi/tv/group/topic.ts +64 -0
  390. package/lib/routes/bangumi/tv/other/followrank.ts +80 -0
  391. package/lib/routes/bangumi/tv/person/index.ts +62 -0
  392. package/lib/routes/bangumi/tv/subject/comments.ts +48 -0
  393. package/lib/routes/bangumi/tv/subject/ep.ts +36 -0
  394. package/lib/routes/bangumi/tv/subject/index.ts +57 -0
  395. package/lib/routes/bangumi/tv/subject/offcial-subject-api.ts +34 -0
  396. package/lib/routes/bangumi/tv/subject/utils.ts +3 -0
  397. package/lib/routes/bangumi/tv/user/blog.ts +68 -0
  398. package/lib/routes/bangumi/tv/user/wish.ts +62 -0
  399. package/lib/routes/baozimh/index.ts +80 -0
  400. package/lib/routes/baozimh/namespace.ts +6 -0
  401. package/lib/routes/barronschina/index.ts +100 -0
  402. package/lib/routes/barronschina/namespace.ts +6 -0
  403. package/lib/routes/bast/index.ts +84 -0
  404. package/lib/routes/bast/namespace.ts +6 -0
  405. package/lib/routes/bbc/index.ts +110 -0
  406. package/lib/routes/bbc/namespace.ts +6 -0
  407. package/lib/routes/bbc/utils.ts +35 -0
  408. package/lib/routes/bbcnewslabs/namespace.ts +6 -0
  409. package/lib/routes/bbcnewslabs/news.ts +56 -0
  410. package/lib/routes/bc3ts/list.ts +72 -0
  411. package/lib/routes/bc3ts/namespace.ts +7 -0
  412. package/lib/routes/bc3ts/templates/media.art +10 -0
  413. package/lib/routes/bc3ts/types.ts +118 -0
  414. package/lib/routes/bdys/index.ts +187 -0
  415. package/lib/routes/bdys/namespace.ts +9 -0
  416. package/lib/routes/behance/namespace.ts +6 -0
  417. package/lib/routes/behance/user.ts +88 -0
  418. package/lib/routes/beijingprice/index.ts +193 -0
  419. package/lib/routes/beijingprice/namespace.ts +8 -0
  420. package/lib/routes/bellroy/namespace.ts +6 -0
  421. package/lib/routes/bellroy/new-releases.ts +51 -0
  422. package/lib/routes/bendibao/namespace.ts +6 -0
  423. package/lib/routes/bendibao/news.ts +146 -0
  424. package/lib/routes/bestblogs/feeds.ts +107 -0
  425. package/lib/routes/bestblogs/namespace.ts +6 -0
  426. package/lib/routes/bgmlist/namespace.ts +6 -0
  427. package/lib/routes/bgmlist/onair.ts +54 -0
  428. package/lib/routes/bigquant/collections.ts +61 -0
  429. package/lib/routes/bigquant/namespace.ts +6 -0
  430. package/lib/routes/bilibili/api-interface.d.ts +493 -0
  431. package/lib/routes/bilibili/app.ts +55 -0
  432. package/lib/routes/bilibili/article.ts +62 -0
  433. package/lib/routes/bilibili/audio.ts +61 -0
  434. package/lib/routes/bilibili/bangumi.ts +65 -0
  435. package/lib/routes/bilibili/cache.ts +265 -0
  436. package/lib/routes/bilibili/coin.ts +60 -0
  437. package/lib/routes/bilibili/danmaku.ts +78 -0
  438. package/lib/routes/bilibili/dynamic.ts +380 -0
  439. package/lib/routes/bilibili/fav.ts +60 -0
  440. package/lib/routes/bilibili/followers.ts +87 -0
  441. package/lib/routes/bilibili/followings-article.ts +80 -0
  442. package/lib/routes/bilibili/followings-dynamic.ts +186 -0
  443. package/lib/routes/bilibili/followings-video.ts +84 -0
  444. package/lib/routes/bilibili/followings.ts +91 -0
  445. package/lib/routes/bilibili/hot-search.ts +54 -0
  446. package/lib/routes/bilibili/like.ts +60 -0
  447. package/lib/routes/bilibili/link-news.ts +61 -0
  448. package/lib/routes/bilibili/live-area.ts +86 -0
  449. package/lib/routes/bilibili/live-room.ts +65 -0
  450. package/lib/routes/bilibili/live-search.ts +67 -0
  451. package/lib/routes/bilibili/mall-ip.ts +53 -0
  452. package/lib/routes/bilibili/mall-new.ts +53 -0
  453. package/lib/routes/bilibili/manga-followings.ts +71 -0
  454. package/lib/routes/bilibili/manga-update.ts +57 -0
  455. package/lib/routes/bilibili/namespace.ts +6 -0
  456. package/lib/routes/bilibili/page.ts +55 -0
  457. package/lib/routes/bilibili/partion-ranking.ts +76 -0
  458. package/lib/routes/bilibili/partion.ts +168 -0
  459. package/lib/routes/bilibili/platform.ts +77 -0
  460. package/lib/routes/bilibili/popular.ts +48 -0
  461. package/lib/routes/bilibili/ranking.ts +153 -0
  462. package/lib/routes/bilibili/readlist.ts +50 -0
  463. package/lib/routes/bilibili/reply.ts +57 -0
  464. package/lib/routes/bilibili/user-bangumi.ts +61 -0
  465. package/lib/routes/bilibili/user-channel.ts +88 -0
  466. package/lib/routes/bilibili/user-collection.ts +80 -0
  467. package/lib/routes/bilibili/user-fav.ts +62 -0
  468. package/lib/routes/bilibili/utils.ts +125 -0
  469. package/lib/routes/bilibili/video-all.ts +84 -0
  470. package/lib/routes/bilibili/video.ts +78 -0
  471. package/lib/routes/bilibili/vsearch.ts +94 -0
  472. package/lib/routes/bilibili/watchlater.ts +76 -0
  473. package/lib/routes/bilibili/weekly-recommend.ts +60 -0
  474. package/lib/routes/binance/announcement.ts +168 -0
  475. package/lib/routes/binance/launchpool.ts +46 -0
  476. package/lib/routes/binance/namespace.ts +6 -0
  477. package/lib/routes/binance/types.ts +26 -0
  478. package/lib/routes/bing/daily-wallpaper.ts +80 -0
  479. package/lib/routes/bing/namespace.ts +6 -0
  480. package/lib/routes/bing/search.ts +54 -0
  481. package/lib/routes/biodiscover/index.ts +59 -0
  482. package/lib/routes/biodiscover/namespace.ts +6 -0
  483. package/lib/routes/bioone/featured.ts +78 -0
  484. package/lib/routes/bioone/journal.ts +86 -0
  485. package/lib/routes/bioone/namespace.ts +6 -0
  486. package/lib/routes/biquge/index.ts +110 -0
  487. package/lib/routes/biquge/namespace.ts +27 -0
  488. package/lib/routes/bit/cs/cs.ts +50 -0
  489. package/lib/routes/bit/cs/utils.ts +51 -0
  490. package/lib/routes/bit/jwc/jwc.ts +50 -0
  491. package/lib/routes/bit/jwc/utils.ts +47 -0
  492. package/lib/routes/bit/namespace.ts +6 -0
  493. package/lib/routes/bit/rszhaopin.ts +55 -0
  494. package/lib/routes/bit/yjs.ts +52 -0
  495. package/lib/routes/bitbucket/commits.ts +64 -0
  496. package/lib/routes/bitbucket/namespace.ts +6 -0
  497. package/lib/routes/bitbucket/tags.ts +59 -0
  498. package/lib/routes/bitget/announcement.ts +200 -0
  499. package/lib/routes/bitget/namespace.ts +6 -0
  500. package/lib/routes/bitget/type.ts +26 -0
  501. package/lib/routes/bitmovin/blog.ts +52 -0
  502. package/lib/routes/bitmovin/namespace.ts +6 -0
  503. package/lib/routes/bjfu/grs.ts +77 -0
  504. package/lib/routes/bjfu/it/index.ts +79 -0
  505. package/lib/routes/bjfu/it/utils.ts +71 -0
  506. package/lib/routes/bjfu/jwc/index.ts +78 -0
  507. package/lib/routes/bjfu/jwc/utils.ts +58 -0
  508. package/lib/routes/bjfu/kjc.ts +78 -0
  509. package/lib/routes/bjfu/namespace.ts +6 -0
  510. package/lib/routes/bjfu/news/index.ts +86 -0
  511. package/lib/routes/bjfu/news/utils.ts +59 -0
  512. package/lib/routes/bjnews/cat.ts +43 -0
  513. package/lib/routes/bjnews/column.ts +43 -0
  514. package/lib/routes/bjnews/namespace.ts +6 -0
  515. package/lib/routes/bjnews/utils.ts +19 -0
  516. package/lib/routes/bjp/apod.ts +69 -0
  517. package/lib/routes/bjp/namespace.ts +6 -0
  518. package/lib/routes/bjsk/index.ts +77 -0
  519. package/lib/routes/bjsk/keti.ts +84 -0
  520. package/lib/routes/bjsk/namespace.ts +6 -0
  521. package/lib/routes/bjtu/gs.ts +224 -0
  522. package/lib/routes/bjtu/namespace.ts +8 -0
  523. package/lib/routes/bjwxdxh/index.ts +75 -0
  524. package/lib/routes/bjwxdxh/namespace.ts +6 -0
  525. package/lib/routes/bjx/fd.ts +63 -0
  526. package/lib/routes/bjx/huanbao.ts +104 -0
  527. package/lib/routes/bjx/namespace.ts +6 -0
  528. package/lib/routes/bjx/types.ts +57 -0
  529. package/lib/routes/blizzard/namespace.ts +6 -0
  530. package/lib/routes/blizzard/news.ts +108 -0
  531. package/lib/routes/blogread/index.ts +45 -0
  532. package/lib/routes/blogread/namespace.ts +6 -0
  533. package/lib/routes/bloomberg/authors.ts +77 -0
  534. package/lib/routes/bloomberg/index.ts +65 -0
  535. package/lib/routes/bloomberg/namespace.ts +6 -0
  536. package/lib/routes/bloomberg/utils.ts +618 -0
  537. package/lib/routes/bluearchive/namespace.ts +7 -0
  538. package/lib/routes/bluearchive/news.ts +88 -0
  539. package/lib/routes/bluestacks/namespace.ts +6 -0
  540. package/lib/routes/bluestacks/release.ts +90 -0
  541. package/lib/routes/bmkg/earthquake.ts +54 -0
  542. package/lib/routes/bmkg/namespace.ts +6 -0
  543. package/lib/routes/bmkg/news.ts +68 -0
  544. package/lib/routes/bnu/bs.ts +81 -0
  545. package/lib/routes/bnu/dwxgb.ts +78 -0
  546. package/lib/routes/bnu/fdy.ts +50 -0
  547. package/lib/routes/bnu/jwb.ts +56 -0
  548. package/lib/routes/bnu/lib.ts +55 -0
  549. package/lib/routes/bnu/mba.ts +202 -0
  550. package/lib/routes/bnu/namespace.ts +6 -0
  551. package/lib/routes/boc/namespace.ts +6 -0
  552. package/lib/routes/boc/whpj.ts +129 -0
  553. package/lib/routes/bookfere/category.ts +58 -0
  554. package/lib/routes/bookfere/namespace.ts +6 -0
  555. package/lib/routes/booru/mmda.ts +134 -0
  556. package/lib/routes/booru/namespace.ts +6 -0
  557. package/lib/routes/booru/templates/description.art +25 -0
  558. package/lib/routes/bossdesign/index.ts +64 -0
  559. package/lib/routes/bossdesign/namespace.ts +6 -0
  560. package/lib/routes/brave/latest.ts +65 -0
  561. package/lib/routes/brave/namespace.ts +6 -0
  562. package/lib/routes/brooklynmuseum/exhibitions.ts +46 -0
  563. package/lib/routes/brooklynmuseum/namespace.ts +6 -0
  564. package/lib/routes/bse/index.ts +216 -0
  565. package/lib/routes/bse/namespace.ts +6 -0
  566. package/lib/routes/bsky/keyword.ts +41 -0
  567. package/lib/routes/bsky/namespace.ts +6 -0
  568. package/lib/routes/bsky/posts.ts +70 -0
  569. package/lib/routes/bsky/templates/post.art +15 -0
  570. package/lib/routes/bsky/utils.ts +48 -0
  571. package/lib/routes/bt0/mv.ts +65 -0
  572. package/lib/routes/bt0/namespace.ts +9 -0
  573. package/lib/routes/bt0/tlist.ts +67 -0
  574. package/lib/routes/bt0/util.ts +51 -0
  575. package/lib/routes/btzj/index.ts +164 -0
  576. package/lib/routes/btzj/namespace.ts +6 -0
  577. package/lib/routes/buaa/jiaowu.ts +124 -0
  578. package/lib/routes/buaa/lib/space/newbook.ts +171 -0
  579. package/lib/routes/buaa/lib/space/templates/newbook.art +44 -0
  580. package/lib/routes/buaa/namespace.ts +6 -0
  581. package/lib/routes/buaa/news/index.ts +71 -0
  582. package/lib/routes/buaa/sme.ts +101 -0
  583. package/lib/routes/bugzilla/bug.ts +59 -0
  584. package/lib/routes/bugzilla/namespace.ts +11 -0
  585. package/lib/routes/bulianglin/namespace.ts +6 -0
  586. package/lib/routes/bulianglin/rss.ts +48 -0
  587. package/lib/routes/bupt/namespace.ts +6 -0
  588. package/lib/routes/bupt/rczp.ts +77 -0
  589. package/lib/routes/byau/namespace.ts +6 -0
  590. package/lib/routes/byau/xinwen/index.ts +72 -0
  591. package/lib/routes/byteclicks/index.ts +37 -0
  592. package/lib/routes/byteclicks/namespace.ts +6 -0
  593. package/lib/routes/byteclicks/tag.ts +55 -0
  594. package/lib/routes/byteclicks/utils.ts +11 -0
  595. package/lib/routes/bytes/bytes.ts +40 -0
  596. package/lib/routes/bytes/namespace.ts +6 -0
  597. package/lib/routes/c114/namespace.ts +6 -0
  598. package/lib/routes/c114/roll.ts +83 -0
  599. package/lib/routes/caai/index.ts +42 -0
  600. package/lib/routes/caai/namespace.ts +6 -0
  601. package/lib/routes/caai/utils.ts +49 -0
  602. package/lib/routes/caam/index.ts +73 -0
  603. package/lib/routes/caam/namespace.ts +6 -0
  604. package/lib/routes/caareviews/book.ts +39 -0
  605. package/lib/routes/caareviews/essay.ts +39 -0
  606. package/lib/routes/caareviews/exhibition.ts +39 -0
  607. package/lib/routes/caareviews/namespace.ts +6 -0
  608. package/lib/routes/caareviews/utils.ts +49 -0
  609. package/lib/routes/cahkms/index.ts +105 -0
  610. package/lib/routes/cahkms/namespace.ts +6 -0
  611. package/lib/routes/caijing/namespace.ts +6 -0
  612. package/lib/routes/caijing/roll.ts +72 -0
  613. package/lib/routes/caixin/article.ts +53 -0
  614. package/lib/routes/caixin/blog.ts +103 -0
  615. package/lib/routes/caixin/category.ts +94 -0
  616. package/lib/routes/caixin/database.ts +77 -0
  617. package/lib/routes/caixin/k.ts +59 -0
  618. package/lib/routes/caixin/latest.ts +75 -0
  619. package/lib/routes/caixin/namespace.ts +7 -0
  620. package/lib/routes/caixin/templates/article.art +38 -0
  621. package/lib/routes/caixin/utils.ts +49 -0
  622. package/lib/routes/caixin/weekly.ts +77 -0
  623. package/lib/routes/caixinglobal/latest.ts +90 -0
  624. package/lib/routes/caixinglobal/namespace.ts +6 -0
  625. package/lib/routes/camchina/index.ts +80 -0
  626. package/lib/routes/camchina/namespace.ts +6 -0
  627. package/lib/routes/cankaoxiaoxi/index.ts +112 -0
  628. package/lib/routes/cankaoxiaoxi/namespace.ts +6 -0
  629. package/lib/routes/cara/constant.ts +5 -0
  630. package/lib/routes/cara/likes.ts +56 -0
  631. package/lib/routes/cara/namespace.ts +6 -0
  632. package/lib/routes/cara/portfolio.ts +40 -0
  633. package/lib/routes/cara/templates/post.art +6 -0
  634. package/lib/routes/cara/timeline.ts +56 -0
  635. package/lib/routes/cara/types.ts +45 -0
  636. package/lib/routes/cara/utils.ts +62 -0
  637. package/lib/routes/cartoonmad/comic.ts +98 -0
  638. package/lib/routes/cartoonmad/namespace.ts +6 -0
  639. package/lib/routes/cas/cg/index.ts +80 -0
  640. package/lib/routes/cas/genetics/index.ts +71 -0
  641. package/lib/routes/cas/ia/yjs.ts +50 -0
  642. package/lib/routes/cas/iee/kydt.ts +74 -0
  643. package/lib/routes/cas/is/index.ts +53 -0
  644. package/lib/routes/cas/mesalab/kb.ts +67 -0
  645. package/lib/routes/cas/namespace.ts +6 -0
  646. package/lib/routes/cas/sim/kyjz.ts +73 -0
  647. package/lib/routes/casssp/namespace.ts +6 -0
  648. package/lib/routes/casssp/news.ts +82 -0
  649. package/lib/routes/cast/index.ts +115 -0
  650. package/lib/routes/cast/namespace.ts +6 -0
  651. package/lib/routes/cau/ele.ts +68 -0
  652. package/lib/routes/cau/namespace.ts +6 -0
  653. package/lib/routes/cau/yjs.ts +67 -0
  654. package/lib/routes/caus/index.ts +111 -0
  655. package/lib/routes/caus/namespace.ts +6 -0
  656. package/lib/routes/cbaigui/index.ts +112 -0
  657. package/lib/routes/cbaigui/namespace.ts +6 -0
  658. package/lib/routes/cbaigui/utils.ts +14 -0
  659. package/lib/routes/cbc/namespace.ts +6 -0
  660. package/lib/routes/cbc/topics.ts +85 -0
  661. package/lib/routes/cbirc/index.ts +133 -0
  662. package/lib/routes/cbirc/namespace.ts +6 -0
  663. package/lib/routes/cbnweek/index.ts +62 -0
  664. package/lib/routes/cbnweek/namespace.ts +6 -0
  665. package/lib/routes/ccac/namespace.ts +6 -0
  666. package/lib/routes/ccac/news.ts +82 -0
  667. package/lib/routes/ccac/utils.ts +26 -0
  668. package/lib/routes/cccfna/index.ts +82 -0
  669. package/lib/routes/cccfna/namespace.ts +6 -0
  670. package/lib/routes/ccf/ccfcv/index.ts +94 -0
  671. package/lib/routes/ccf/namespace.ts +6 -0
  672. package/lib/routes/ccf/news.ts +74 -0
  673. package/lib/routes/ccf/tfbd/index.ts +47 -0
  674. package/lib/routes/ccf/tfbd/utils.ts +50 -0
  675. package/lib/routes/ccnu/career.ts +56 -0
  676. package/lib/routes/ccnu/cs.ts +53 -0
  677. package/lib/routes/ccnu/namespace.ts +6 -0
  678. package/lib/routes/ccnu/wu.ts +52 -0
  679. package/lib/routes/ccnu/yjs.ts +52 -0
  680. package/lib/routes/ccreports/index.ts +67 -0
  681. package/lib/routes/ccreports/namespace.ts +6 -0
  682. package/lib/routes/cctv/category.ts +52 -0
  683. package/lib/routes/cctv/jx.ts +77 -0
  684. package/lib/routes/cctv/lm.ts +114 -0
  685. package/lib/routes/cctv/namespace.ts +6 -0
  686. package/lib/routes/cctv/utils/mzzlbg.ts +42 -0
  687. package/lib/routes/cctv/utils/news.ts +109 -0
  688. package/lib/routes/cctv/utils/xinwen1j1.ts +83 -0
  689. package/lib/routes/cctv/xwlb.ts +99 -0
  690. package/lib/routes/cde/index.ts +167 -0
  691. package/lib/routes/cde/namespace.ts +6 -0
  692. package/lib/routes/cde/utils.ts +17 -0
  693. package/lib/routes/cde/xxgk.ts +98 -0
  694. package/lib/routes/cde/zdyz.ts +100 -0
  695. package/lib/routes/cdi/index.ts +84 -0
  696. package/lib/routes/cdi/namespace.ts +6 -0
  697. package/lib/routes/cdu/jwgg.ts +79 -0
  698. package/lib/routes/cdu/namespace.ts +6 -0
  699. package/lib/routes/cdzjryb/namespace.ts +6 -0
  700. package/lib/routes/cdzjryb/project-list.ts +78 -0
  701. package/lib/routes/cebbank/all.ts +78 -0
  702. package/lib/routes/cebbank/history.ts +77 -0
  703. package/lib/routes/cebbank/namespace.ts +6 -0
  704. package/lib/routes/cebbank/utils.ts +68 -0
  705. package/lib/routes/cfachina/analygarden.ts +87 -0
  706. package/lib/routes/cfachina/namespace.ts +6 -0
  707. package/lib/routes/cffex/announcement.ts +73 -0
  708. package/lib/routes/cffex/namespace.ts +6 -0
  709. package/lib/routes/cfmmc/index.ts +81 -0
  710. package/lib/routes/cfmmc/namespace.ts +6 -0
  711. package/lib/routes/cfr/index.ts +58 -0
  712. package/lib/routes/cfr/namespace.ts +6 -0
  713. package/lib/routes/cfr/types.ts +30 -0
  714. package/lib/routes/cfr/utils.ts +284 -0
  715. package/lib/routes/cgtn/namespace.ts +6 -0
  716. package/lib/routes/cgtn/podcast.ts +61 -0
  717. package/lib/routes/chaincatcher/home.ts +69 -0
  718. package/lib/routes/chaincatcher/namespace.ts +6 -0
  719. package/lib/routes/chaincatcher/news.ts +65 -0
  720. package/lib/routes/changba/namespace.ts +6 -0
  721. package/lib/routes/changba/user.ts +112 -0
  722. package/lib/routes/chaoxing/namespace.ts +6 -0
  723. package/lib/routes/chaoxing/qk.ts +95 -0
  724. package/lib/routes/chaping/banner.ts +66 -0
  725. package/lib/routes/chaping/namespace.ts +6 -0
  726. package/lib/routes/chaping/news.ts +83 -0
  727. package/lib/routes/chaping/newsflash.ts +48 -0
  728. package/lib/routes/chiculture/namespace.ts +6 -0
  729. package/lib/routes/chiculture/topic.ts +84 -0
  730. package/lib/routes/chikubi/index.ts +75 -0
  731. package/lib/routes/chikubi/namespace.ts +6 -0
  732. package/lib/routes/chikubi/utils.ts +82 -0
  733. package/lib/routes/china/finance/finance.ts +93 -0
  734. package/lib/routes/china/namespace.ts +6 -0
  735. package/lib/routes/china/news/highlights/news.ts +69 -0
  736. package/lib/routes/china/news/military/news.ts +55 -0
  737. package/lib/routes/chinadegrees/namespace.ts +6 -0
  738. package/lib/routes/chinadegrees/province.ts +124 -0
  739. package/lib/routes/chinafactcheck/index.ts +53 -0
  740. package/lib/routes/chinafactcheck/namespace.ts +6 -0
  741. package/lib/routes/chinafactcheck/utils.ts +60 -0
  742. package/lib/routes/chinaisa/index.ts +251 -0
  743. package/lib/routes/chinaisa/namespace.ts +6 -0
  744. package/lib/routes/chinamoney/channels.ts +55 -0
  745. package/lib/routes/chinamoney/namespace.ts +6 -0
  746. package/lib/routes/chinamoney/notice.ts +112 -0
  747. package/lib/routes/chinanews/index.ts +82 -0
  748. package/lib/routes/chinanews/namespace.ts +6 -0
  749. package/lib/routes/chinathinktanks/namespace.ts +6 -0
  750. package/lib/routes/chinathinktanks/viewpoint.ts +119 -0
  751. package/lib/routes/chinaventure/index.ts +93 -0
  752. package/lib/routes/chinaventure/namespace.ts +6 -0
  753. package/lib/routes/chinawriter/index.ts +97 -0
  754. package/lib/routes/chinawriter/namespace.ts +6 -0
  755. package/lib/routes/chlinlearn/daily-blog.ts +55 -0
  756. package/lib/routes/chlinlearn/namespcae.ts +6 -0
  757. package/lib/routes/chsi/hotnews.ts +74 -0
  758. package/lib/routes/chsi/kydt.ts +72 -0
  759. package/lib/routes/chsi/kyzx.ts +79 -0
  760. package/lib/routes/chsi/namespace.ts +6 -0
  761. package/lib/routes/chuanliu/namespace.ts +6 -0
  762. package/lib/routes/chuanliu/nice.ts +105 -0
  763. package/lib/routes/chuanliu/templates/description.art +23 -0
  764. package/lib/routes/chub/characters.ts +64 -0
  765. package/lib/routes/chub/namespace.ts +6 -0
  766. package/lib/routes/cib/namespace.ts +6 -0
  767. package/lib/routes/cib/whpj.ts +115 -0
  768. package/lib/routes/ciidbnu/index.ts +80 -0
  769. package/lib/routes/ciidbnu/namespace.ts +6 -0
  770. package/lib/routes/civitai/discussions.ts +74 -0
  771. package/lib/routes/civitai/models.ts +51 -0
  772. package/lib/routes/civitai/namespace.ts +6 -0
  773. package/lib/routes/ciweimao/chapter.ts +86 -0
  774. package/lib/routes/ciweimao/namespace.ts +6 -0
  775. package/lib/routes/clickme/index.ts +76 -0
  776. package/lib/routes/clickme/namespace.ts +6 -0
  777. package/lib/routes/cloudnative/blog.ts +53 -0
  778. package/lib/routes/cloudnative/namespace.ts +6 -0
  779. package/lib/routes/cls/depth.ts +108 -0
  780. package/lib/routes/cls/hot.ts +83 -0
  781. package/lib/routes/cls/namespace.ts +6 -0
  782. package/lib/routes/cls/telegraph.ts +86 -0
  783. package/lib/routes/cls/utils.ts +18 -0
  784. package/lib/routes/cma/channel.ts +135 -0
  785. package/lib/routes/cma/namespace.ts +6 -0
  786. package/lib/routes/cmde/index.ts +82 -0
  787. package/lib/routes/cmde/namespace.ts +6 -0
  788. package/lib/routes/cmpxchg8b/articles.ts +69 -0
  789. package/lib/routes/cmpxchg8b/namespace.ts +6 -0
  790. package/lib/routes/cn-healthcare/index.ts +56 -0
  791. package/lib/routes/cn-healthcare/namespace.ts +6 -0
  792. package/lib/routes/cna/index.ts +87 -0
  793. package/lib/routes/cna/namespace.ts +6 -0
  794. package/lib/routes/cna/web/index.ts +76 -0
  795. package/lib/routes/cnbc/namespace.ts +6 -0
  796. package/lib/routes/cnbc/rss.ts +83 -0
  797. package/lib/routes/cnbeta/category.ts +23 -0
  798. package/lib/routes/cnbeta/common.ts +43 -0
  799. package/lib/routes/cnbeta/index.ts +16 -0
  800. package/lib/routes/cnbeta/namespace.ts +7 -0
  801. package/lib/routes/cnbeta/topics.ts +23 -0
  802. package/lib/routes/cnbeta/utils.ts +27 -0
  803. package/lib/routes/cnblogs/common.ts +58 -0
  804. package/lib/routes/cnblogs/namespace.ts +6 -0
  805. package/lib/routes/cncf/index.ts +66 -0
  806. package/lib/routes/cncf/namespace.ts +6 -0
  807. package/lib/routes/cncf/reports.ts +53 -0
  808. package/lib/routes/cneb/namespace.ts +6 -0
  809. package/lib/routes/cneb/yjxw.ts +100 -0
  810. package/lib/routes/cneb/yjxx.ts +66 -0
  811. package/lib/routes/cngal/entry.ts +52 -0
  812. package/lib/routes/cngal/namespace.ts +6 -0
  813. package/lib/routes/cngal/weekly.ts +48 -0
  814. package/lib/routes/cnjxol/index.ts +110 -0
  815. package/lib/routes/cnjxol/namespace.ts +6 -0
  816. package/lib/routes/cnki/author.ts +80 -0
  817. package/lib/routes/cnki/debut.ts +90 -0
  818. package/lib/routes/cnki/journals.ts +74 -0
  819. package/lib/routes/cnki/namespace.ts +6 -0
  820. package/lib/routes/cnki/utils.ts +27 -0
  821. package/lib/routes/cnljxh/index.ts +80 -0
  822. package/lib/routes/cnljxh/namespace.ts +6 -0
  823. package/lib/routes/cntheory/namespace.ts +6 -0
  824. package/lib/routes/cntheory/paper.ts +111 -0
  825. package/lib/routes/cntheory/templates/description.art +2 -0
  826. package/lib/routes/cntv/column.ts +67 -0
  827. package/lib/routes/cntv/namespace.ts +6 -0
  828. package/lib/routes/codeforces/contests.ts +77 -0
  829. package/lib/routes/codeforces/namespace.ts +6 -0
  830. package/lib/routes/codeforces/recent-actions.ts +73 -0
  831. package/lib/routes/coindesk/index.ts +59 -0
  832. package/lib/routes/coindesk/namespace.ts +6 -0
  833. package/lib/routes/colamanga/manga.ts +88 -0
  834. package/lib/routes/colamanga/namespace.ts +9 -0
  835. package/lib/routes/comicat/namespace.ts +6 -0
  836. package/lib/routes/comicat/search.ts +62 -0
  837. package/lib/routes/comicskingdom/index.ts +89 -0
  838. package/lib/routes/comicskingdom/namespace.ts +6 -0
  839. package/lib/routes/consumer/index.ts +92 -0
  840. package/lib/routes/consumer/namespace.ts +6 -0
  841. package/lib/routes/consumer/shopping-guide.ts +89 -0
  842. package/lib/routes/cool18/index.ts +76 -0
  843. package/lib/routes/cool18/namespace.ts +6 -0
  844. package/lib/routes/coolapk/dyh.ts +60 -0
  845. package/lib/routes/coolapk/hot.ts +127 -0
  846. package/lib/routes/coolapk/huati.ts +44 -0
  847. package/lib/routes/coolapk/namespace.ts +6 -0
  848. package/lib/routes/coolapk/toutiao.ts +51 -0
  849. package/lib/routes/coolapk/tuwen.ts +59 -0
  850. package/lib/routes/coolapk/user-dynamic.ts +55 -0
  851. package/lib/routes/coolapk/utils.ts +144 -0
  852. package/lib/routes/coomer/artist.ts +33 -0
  853. package/lib/routes/coomer/namespace.ts +6 -0
  854. package/lib/routes/coomer/posts.ts +32 -0
  855. package/lib/routes/coomer/utils.ts +57 -0
  856. package/lib/routes/copernicium/index.ts +67 -0
  857. package/lib/routes/copernicium/namespace.ts +6 -0
  858. package/lib/routes/copymanga/comic.ts +148 -0
  859. package/lib/routes/copymanga/namespace.ts +6 -0
  860. package/lib/routes/cpcaauto/index.ts +255 -0
  861. package/lib/routes/cpcaauto/namespace.ts +8 -0
  862. package/lib/routes/cpcey/index.ts +83 -0
  863. package/lib/routes/cpcey/namespace.ts +6 -0
  864. package/lib/routes/cpuid/namespace.ts +6 -0
  865. package/lib/routes/cpuid/news.ts +55 -0
  866. package/lib/routes/cqgas/namespace.ts +6 -0
  867. package/lib/routes/cqgas/tqtz.ts +62 -0
  868. package/lib/routes/cqwu/index.ts +72 -0
  869. package/lib/routes/cqwu/namespace.ts +6 -0
  870. package/lib/routes/crac/index.ts +69 -0
  871. package/lib/routes/crac/namespace.ts +6 -0
  872. package/lib/routes/creative-comic/book.ts +95 -0
  873. package/lib/routes/creative-comic/namespace.ts +6 -0
  874. package/lib/routes/creative-comic/utils.ts +85 -0
  875. package/lib/routes/crossbell/feeds/following.ts +50 -0
  876. package/lib/routes/crossbell/namespace.ts +6 -0
  877. package/lib/routes/crossbell/notes/character.ts +48 -0
  878. package/lib/routes/crossbell/notes/index.ts +41 -0
  879. package/lib/routes/crossbell/notes/source.ts +45 -0
  880. package/lib/routes/crossbell/notes/utils.ts +16 -0
  881. package/lib/routes/cs/index.ts +140 -0
  882. package/lib/routes/cs/namespace.ts +7 -0
  883. package/lib/routes/cs/video.ts +91 -0
  884. package/lib/routes/cs/zzkx.ts +14 -0
  885. package/lib/routes/csdn/blog.ts +64 -0
  886. package/lib/routes/csdn/namespace.ts +6 -0
  887. package/lib/routes/cssn/iolaw.ts +57 -0
  888. package/lib/routes/cssn/namespace.ts +6 -0
  889. package/lib/routes/cste/index.ts +79 -0
  890. package/lib/routes/cste/namespace.ts +6 -0
  891. package/lib/routes/csu/career.ts +77 -0
  892. package/lib/routes/csu/cse.ts +64 -0
  893. package/lib/routes/csu/mail.ts +70 -0
  894. package/lib/routes/csu/namespace.ts +6 -0
  895. package/lib/routes/csu/utils.ts +15 -0
  896. package/lib/routes/cts/namespace.ts +6 -0
  897. package/lib/routes/cts/news.ts +68 -0
  898. package/lib/routes/cuc/namespace.ts +6 -0
  899. package/lib/routes/cuc/yz.ts +58 -0
  900. package/lib/routes/cuilingmag/index.ts +211 -0
  901. package/lib/routes/cuilingmag/namespace.ts +8 -0
  902. package/lib/routes/cuilingmag/templates/description.art +17 -0
  903. package/lib/routes/curiouscat/namespace.ts +6 -0
  904. package/lib/routes/curiouscat/user.ts +53 -0
  905. package/lib/routes/curius/links.ts +70 -0
  906. package/lib/routes/curius/namespace.ts +6 -0
  907. package/lib/routes/curius/templates/description.art +16 -0
  908. package/lib/routes/cw/author.ts +43 -0
  909. package/lib/routes/cw/master.ts +53 -0
  910. package/lib/routes/cw/namespace.ts +6 -0
  911. package/lib/routes/cw/sub.ts +38 -0
  912. package/lib/routes/cw/today.ts +44 -0
  913. package/lib/routes/cw/utils.ts +128 -0
  914. package/lib/routes/cyzone/author.ts +43 -0
  915. package/lib/routes/cyzone/index.ts +51 -0
  916. package/lib/routes/cyzone/label.ts +43 -0
  917. package/lib/routes/cyzone/namespace.ts +6 -0
  918. package/lib/routes/cyzone/util.ts +119 -0
  919. package/lib/routes/cztv/daily.ts +69 -0
  920. package/lib/routes/cztv/namespace.ts +6 -0
  921. package/lib/routes/cztv/zjxwlb.ts +66 -0
  922. package/lib/routes/dahecube/index.ts +85 -0
  923. package/lib/routes/dahecube/namespace.ts +6 -0
  924. package/lib/routes/dahecube/utils.ts +44 -0
  925. package/lib/routes/daily/discussed.ts +88 -0
  926. package/lib/routes/daily/index.ts +98 -0
  927. package/lib/routes/daily/namespace.ts +7 -0
  928. package/lib/routes/daily/templates/posts.art +7 -0
  929. package/lib/routes/daily/upvoted.ts +92 -0
  930. package/lib/routes/daily/user.ts +227 -0
  931. package/lib/routes/daily/utils.ts +56 -0
  932. package/lib/routes/damai/activity.ts +67 -0
  933. package/lib/routes/damai/namespace.ts +6 -0
  934. package/lib/routes/damai/templates/activity.art +5 -0
  935. package/lib/routes/dangdang/namespace.ts +6 -0
  936. package/lib/routes/dangdang/notice.ts +69 -0
  937. package/lib/routes/dapenti/namespace.ts +6 -0
  938. package/lib/routes/dapenti/subject.ts +24 -0
  939. package/lib/routes/dapenti/tugua.ts +24 -0
  940. package/lib/routes/dapenti/utils.ts +76 -0
  941. package/lib/routes/darwinawards/index.ts +72 -0
  942. package/lib/routes/darwinawards/namespace.ts +7 -0
  943. package/lib/routes/dataguidance/index.ts +66 -0
  944. package/lib/routes/dataguidance/namespace.ts +7 -0
  945. package/lib/routes/dayanzai/index.ts +85 -0
  946. package/lib/routes/dayanzai/namespace.ts +6 -0
  947. package/lib/routes/dbaplus/namespace.ts +6 -0
  948. package/lib/routes/dbaplus/rss.ts +48 -0
  949. package/lib/routes/dblp/namespace.ts +6 -0
  950. package/lib/routes/dblp/publication.ts +87 -0
  951. package/lib/routes/dcard/namespace.ts +9 -0
  952. package/lib/routes/dcard/section.ts +87 -0
  953. package/lib/routes/dcard/utils.ts +48 -0
  954. package/lib/routes/dcfever/namespace.ts +6 -0
  955. package/lib/routes/dcfever/news.ts +54 -0
  956. package/lib/routes/dcfever/reviews.ts +50 -0
  957. package/lib/routes/dcfever/trading-search.ts +48 -0
  958. package/lib/routes/dcfever/trading.ts +53 -0
  959. package/lib/routes/dcfever/utils.ts +85 -0
  960. package/lib/routes/ddosi/category.ts +68 -0
  961. package/lib/routes/ddosi/index.ts +56 -0
  962. package/lib/routes/ddosi/namespace.ts +6 -0
  963. package/lib/routes/deadbydaylight/index.ts +69 -0
  964. package/lib/routes/deadbydaylight/namespace.ts +12 -0
  965. package/lib/routes/deadline/namespace.ts +6 -0
  966. package/lib/routes/deadline/posts.ts +71 -0
  967. package/lib/routes/dedao/index.ts +55 -0
  968. package/lib/routes/dedao/knowledge.ts +91 -0
  969. package/lib/routes/dedao/list.ts +92 -0
  970. package/lib/routes/dedao/namespace.ts +6 -0
  971. package/lib/routes/dedao/user.ts +104 -0
  972. package/lib/routes/deepin/homepage.ts +43 -0
  973. package/lib/routes/deepin/namespace.ts +9 -0
  974. package/lib/routes/deeplearning/namespace.ts +6 -0
  975. package/lib/routes/deeplearning/thebatch.ts +62 -0
  976. package/lib/routes/deepmind/blog.ts +58 -0
  977. package/lib/routes/deepmind/namespace.ts +6 -0
  978. package/lib/routes/dehenglaw/index.ts +128 -0
  979. package/lib/routes/dehenglaw/namespace.ts +8 -0
  980. package/lib/routes/dehenglaw/templates/description.art +7 -0
  981. package/lib/routes/deltaio/blog.ts +59 -0
  982. package/lib/routes/deltaio/namespace.ts +6 -0
  983. package/lib/routes/devolverdigital/blog.ts +93 -0
  984. package/lib/routes/devolverdigital/namespace.ts +6 -0
  985. package/lib/routes/dewu/declaration.ts +86 -0
  986. package/lib/routes/dewu/namespace.ts +6 -0
  987. package/lib/routes/dgjyw/index.ts +77 -0
  988. package/lib/routes/dgjyw/namespace.ts +6 -0
  989. package/lib/routes/dhu/jiaowu/news.ts +86 -0
  990. package/lib/routes/dhu/namespace.ts +6 -0
  991. package/lib/routes/dhu/news/xsxx.ts +68 -0
  992. package/lib/routes/dhu/xxgk/news.ts +77 -0
  993. package/lib/routes/dhu/yjs/news.ts +70 -0
  994. package/lib/routes/dhu/yjs/zs.ts +69 -0
  995. package/lib/routes/diandong/namespace.ts +6 -0
  996. package/lib/routes/diandong/news.ts +82 -0
  997. package/lib/routes/diershoubing/namespace.ts +6 -0
  998. package/lib/routes/diershoubing/news.ts +78 -0
  999. package/lib/routes/digitalcameraworld/namespace.ts +6 -0
  1000. package/lib/routes/digitalcameraworld/news.ts +61 -0
  1001. package/lib/routes/discord/channel.ts +72 -0
  1002. package/lib/routes/discord/discord-api.ts +50 -0
  1003. package/lib/routes/discord/namespace.ts +6 -0
  1004. package/lib/routes/discord/templates/message.art +62 -0
  1005. package/lib/routes/discourse/namespace.ts +8 -0
  1006. package/lib/routes/discourse/notifications.ts +69 -0
  1007. package/lib/routes/discourse/posts.ts +49 -0
  1008. package/lib/routes/discourse/utils.ts +11 -0
  1009. package/lib/routes/discuz/discuz.ts +163 -0
  1010. package/lib/routes/discuz/namespace.ts +5 -0
  1011. package/lib/routes/disinfo/namespace.ts +6 -0
  1012. package/lib/routes/disinfo/publications.ts +82 -0
  1013. package/lib/routes/diskanalyzer/namespace.ts +6 -0
  1014. package/lib/routes/diskanalyzer/whats-new.ts +74 -0
  1015. package/lib/routes/distill/index.ts +80 -0
  1016. package/lib/routes/distill/namespace.ts +6 -0
  1017. package/lib/routes/dlnews/category.ts +109 -0
  1018. package/lib/routes/dlnews/namespace.ts +6 -0
  1019. package/lib/routes/dlnews/utils.ts +22 -0
  1020. package/lib/routes/dlsite/campaign.ts +194 -0
  1021. package/lib/routes/dlsite/ci-en/article.ts +89 -0
  1022. package/lib/routes/dlsite/index.ts +13 -0
  1023. package/lib/routes/dlsite/namespace.ts +6 -0
  1024. package/lib/routes/dlsite/new.ts +131 -0
  1025. package/lib/routes/dlsite/utils.ts +178 -0
  1026. package/lib/routes/dmzj/namespace.ts +6 -0
  1027. package/lib/routes/dmzj/news.ts +55 -0
  1028. package/lib/routes/dn/namespace.ts +6 -0
  1029. package/lib/routes/dn/news.ts +127 -0
  1030. package/lib/routes/dnaindia/common.ts +68 -0
  1031. package/lib/routes/dnaindia/namespace.ts +7 -0
  1032. package/lib/routes/dnaindia/news.ts +24 -0
  1033. package/lib/routes/dnaindia/topic.ts +28 -0
  1034. package/lib/routes/dockerhub/build.ts +58 -0
  1035. package/lib/routes/dockerhub/namespace.ts +6 -0
  1036. package/lib/routes/dockerhub/tag.ts +55 -0
  1037. package/lib/routes/dockerhub/utils.ts +10 -0
  1038. package/lib/routes/docschina/namespace.ts +6 -0
  1039. package/lib/routes/docschina/weekly.ts +66 -0
  1040. package/lib/routes/dol/announce.ts +109 -0
  1041. package/lib/routes/dol/namespace.ts +6 -0
  1042. package/lib/routes/domp4/detail.ts +128 -0
  1043. package/lib/routes/domp4/latest-movie-bt.ts +71 -0
  1044. package/lib/routes/domp4/latest.ts +60 -0
  1045. package/lib/routes/domp4/namespace.ts +15 -0
  1046. package/lib/routes/domp4/utils.ts +96 -0
  1047. package/lib/routes/dongqiudi/daily.ts +22 -0
  1048. package/lib/routes/dongqiudi/namespace.ts +9 -0
  1049. package/lib/routes/dongqiudi/player-news.ts +24 -0
  1050. package/lib/routes/dongqiudi/result.ts +47 -0
  1051. package/lib/routes/dongqiudi/special.ts +54 -0
  1052. package/lib/routes/dongqiudi/team-news.ts +24 -0
  1053. package/lib/routes/dongqiudi/top-news.ts +62 -0
  1054. package/lib/routes/dongqiudi/utils.ts +165 -0
  1055. package/lib/routes/dora-world/article.ts +87 -0
  1056. package/lib/routes/dora-world/namespace.ts +6 -0
  1057. package/lib/routes/dorohedoro/namespace.ts +6 -0
  1058. package/lib/routes/dorohedoro/news.ts +97 -0
  1059. package/lib/routes/douban/book/latest.ts +65 -0
  1060. package/lib/routes/douban/book/rank.ts +56 -0
  1061. package/lib/routes/douban/channel/subject.ts +82 -0
  1062. package/lib/routes/douban/channel/topic.ts +85 -0
  1063. package/lib/routes/douban/commercialpress/latest.ts +74 -0
  1064. package/lib/routes/douban/event/hot.ts +49 -0
  1065. package/lib/routes/douban/namespace.ts +6 -0
  1066. package/lib/routes/douban/other/bookstore.ts +49 -0
  1067. package/lib/routes/douban/other/celebrity.ts +60 -0
  1068. package/lib/routes/douban/other/classification.ts +61 -0
  1069. package/lib/routes/douban/other/discussion.ts +83 -0
  1070. package/lib/routes/douban/other/doulist.ts +84 -0
  1071. package/lib/routes/douban/other/explore-column.ts +64 -0
  1072. package/lib/routes/douban/other/explore.ts +72 -0
  1073. package/lib/routes/douban/other/group.ts +95 -0
  1074. package/lib/routes/douban/other/jobs.ts +55 -0
  1075. package/lib/routes/douban/other/later.ts +51 -0
  1076. package/lib/routes/douban/other/latest-music.ts +96 -0
  1077. package/lib/routes/douban/other/list.ts +125 -0
  1078. package/lib/routes/douban/other/playing.ts +52 -0
  1079. package/lib/routes/douban/other/recommended.ts +102 -0
  1080. package/lib/routes/douban/other/replied.ts +106 -0
  1081. package/lib/routes/douban/other/replies.ts +81 -0
  1082. package/lib/routes/douban/other/topic.ts +100 -0
  1083. package/lib/routes/douban/other/ustop.ts +41 -0
  1084. package/lib/routes/douban/other/weekly-best.ts +78 -0
  1085. package/lib/routes/douban/people/status.ts +488 -0
  1086. package/lib/routes/douban/people/wish.ts +96 -0
  1087. package/lib/routes/douyin/hashtag.ts +122 -0
  1088. package/lib/routes/douyin/live.ts +106 -0
  1089. package/lib/routes/douyin/namespace.ts +20 -0
  1090. package/lib/routes/douyin/templates/embed.art +13 -0
  1091. package/lib/routes/douyin/user.ts +104 -0
  1092. package/lib/routes/douyin/utils.ts +134 -0
  1093. package/lib/routes/douyu/group.ts +76 -0
  1094. package/lib/routes/douyu/namespace.ts +6 -0
  1095. package/lib/routes/douyu/post.ts +85 -0
  1096. package/lib/routes/douyu/room.ts +98 -0
  1097. package/lib/routes/dribbble/keyword.ts +29 -0
  1098. package/lib/routes/dribbble/namespace.ts +6 -0
  1099. package/lib/routes/dribbble/popular.ts +36 -0
  1100. package/lib/routes/dribbble/user.ts +34 -0
  1101. package/lib/routes/dribbble/utils.ts +158 -0
  1102. package/lib/routes/dtcj/datahero.ts +73 -0
  1103. package/lib/routes/dtcj/datainsight.ts +82 -0
  1104. package/lib/routes/dtcj/namespace.ts +6 -0
  1105. package/lib/routes/duckdb/namespace.ts +6 -0
  1106. package/lib/routes/duckdb/news.ts +65 -0
  1107. package/lib/routes/duozhuayu/namespace.ts +6 -0
  1108. package/lib/routes/duozhuayu/search.ts +94 -0
  1109. package/lib/routes/dushu/fuzhou/index.ts +69 -0
  1110. package/lib/routes/dushu/namespace.ts +6 -0
  1111. package/lib/routes/dut/defaults.ts +57 -0
  1112. package/lib/routes/dut/index.ts +104 -0
  1113. package/lib/routes/dut/namespace.ts +6 -0
  1114. package/lib/routes/dut/shortcuts.ts +82 -0
  1115. package/lib/routes/dx2025/index.ts +93 -0
  1116. package/lib/routes/dx2025/namespace.ts +6 -0
  1117. package/lib/routes/dxy/namespace.ts +6 -0
  1118. package/lib/routes/dxy/profile/thread.ts +107 -0
  1119. package/lib/routes/dxy/special.ts +99 -0
  1120. package/lib/routes/dxy/utils.ts +66 -0
  1121. package/lib/routes/e-hentai/index.ts +127 -0
  1122. package/lib/routes/e-hentai/namespace.ts +6 -0
  1123. package/lib/routes/eagle/blog.ts +79 -0
  1124. package/lib/routes/eagle/changelog.ts +101 -0
  1125. package/lib/routes/eagle/namespace.ts +6 -0
  1126. package/lib/routes/earthquake/ceic.ts +105 -0
  1127. package/lib/routes/earthquake/index.ts +67 -0
  1128. package/lib/routes/earthquake/namespace.ts +6 -0
  1129. package/lib/routes/eastday/24.ts +124 -0
  1130. package/lib/routes/eastday/namespace.ts +6 -0
  1131. package/lib/routes/eastday/portrait.ts +73 -0
  1132. package/lib/routes/eastday/sh.ts +75 -0
  1133. package/lib/routes/eastmoney/namespace.ts +6 -0
  1134. package/lib/routes/eastmoney/report/index.ts +135 -0
  1135. package/lib/routes/eastmoney/search/index.ts +74 -0
  1136. package/lib/routes/eastmoney/templates/stock_description.art +36 -0
  1137. package/lib/routes/eastmoney/ttjj/user.ts +85 -0
  1138. package/lib/routes/eastmoney/utils.ts +35 -0
  1139. package/lib/routes/easynomad/joblist.ts +56 -0
  1140. package/lib/routes/easynomad/namespace.ts +6 -0
  1141. package/lib/routes/ecnu/contest.ts +70 -0
  1142. package/lib/routes/ecnu/jwc.ts +67 -0
  1143. package/lib/routes/ecnu/namespace.ts +6 -0
  1144. package/lib/routes/ecnu/yjs.ts +63 -0
  1145. package/lib/routes/economist/espresso.ts +106 -0
  1146. package/lib/routes/economist/full.ts +71 -0
  1147. package/lib/routes/economist/global-business-review.ts +123 -0
  1148. package/lib/routes/economist/namespace.ts +6 -0
  1149. package/lib/routes/ecust/e/news.ts +70 -0
  1150. package/lib/routes/ecust/gschool/yjs.ts +52 -0
  1151. package/lib/routes/ecust/jwc/notice.ts +89 -0
  1152. package/lib/routes/ecust/namespace.ts +6 -0
  1153. package/lib/routes/egsea/flash.ts +55 -0
  1154. package/lib/routes/egsea/namespace.ts +6 -0
  1155. package/lib/routes/ehentai/ehapi.ts +211 -0
  1156. package/lib/routes/ehentai/favorites.ts +47 -0
  1157. package/lib/routes/ehentai/namespace.ts +11 -0
  1158. package/lib/routes/ehentai/search.ts +54 -0
  1159. package/lib/routes/ehentai/tag.ts +42 -0
  1160. package/lib/routes/ekantipur/issue.ts +95 -0
  1161. package/lib/routes/ekantipur/namespace.ts +6 -0
  1162. package/lib/routes/elasticsearch-cn/index.ts +86 -0
  1163. package/lib/routes/elasticsearch-cn/namespace.ts +6 -0
  1164. package/lib/routes/eleduck/jobs.ts +64 -0
  1165. package/lib/routes/eleduck/namespace.ts +6 -0
  1166. package/lib/routes/eleduck/posts.ts +79 -0
  1167. package/lib/routes/elsevier/issue.ts +80 -0
  1168. package/lib/routes/elsevier/journal.ts +90 -0
  1169. package/lib/routes/elsevier/namespace.ts +6 -0
  1170. package/lib/routes/embassy/index.ts +69 -0
  1171. package/lib/routes/embassy/namespace.ts +114 -0
  1172. package/lib/routes/embassy/supported-list.ts +257 -0
  1173. package/lib/routes/epicgames/index.ts +125 -0
  1174. package/lib/routes/epicgames/namespace.ts +6 -0
  1175. package/lib/routes/eprice/namespace.ts +6 -0
  1176. package/lib/routes/eprice/rss.ts +122 -0
  1177. package/lib/routes/esquirehk/namespace.ts +6 -0
  1178. package/lib/routes/esquirehk/tag.ts +104 -0
  1179. package/lib/routes/esquirehk/templates/subpages.art +30 -0
  1180. package/lib/routes/europechinese/latest.ts +66 -0
  1181. package/lib/routes/europechinese/namespace.ts +6 -0
  1182. package/lib/routes/eventernote/actors.ts +125 -0
  1183. package/lib/routes/eventernote/namespace.ts +6 -0
  1184. package/lib/routes/f-droid/apprelease.ts +57 -0
  1185. package/lib/routes/f-droid/namespace.ts +6 -0
  1186. package/lib/routes/famitsu/category.ts +152 -0
  1187. package/lib/routes/famitsu/namespace.ts +6 -0
  1188. package/lib/routes/famitsu/templates/description.art +7 -0
  1189. package/lib/routes/famitsu/types.ts +117 -0
  1190. package/lib/routes/fanbox/index.ts +62 -0
  1191. package/lib/routes/fanbox/namespace.ts +6 -0
  1192. package/lib/routes/fanbox/templates/fanbox-post.art +7 -0
  1193. package/lib/routes/fanbox/types.ts +239 -0
  1194. package/lib/routes/fanbox/utils.ts +188 -0
  1195. package/lib/routes/fanqienovel/namespace.ts +7 -0
  1196. package/lib/routes/fanqienovel/page.ts +100 -0
  1197. package/lib/routes/fansly/namespace.ts +6 -0
  1198. package/lib/routes/fansly/post.ts +53 -0
  1199. package/lib/routes/fansly/tag.ts +54 -0
  1200. package/lib/routes/fansly/templates/media.art +8 -0
  1201. package/lib/routes/fansly/templates/poll.art +4 -0
  1202. package/lib/routes/fansly/templates/tip-goal.art +2 -0
  1203. package/lib/routes/fansly/utils.ts +167 -0
  1204. package/lib/routes/fantia/namespace.ts +6 -0
  1205. package/lib/routes/fantia/search.ts +145 -0
  1206. package/lib/routes/fantia/user.ts +85 -0
  1207. package/lib/routes/fanxinzhui/index.ts +127 -0
  1208. package/lib/routes/fanxinzhui/namespace.ts +6 -0
  1209. package/lib/routes/fanxinzhui/templates/description.art +13 -0
  1210. package/lib/routes/farmatters/index.ts +115 -0
  1211. package/lib/routes/farmatters/namespace.ts +7 -0
  1212. package/lib/routes/fashionnetwork/index.ts +192 -0
  1213. package/lib/routes/fashionnetwork/namespace.ts +8 -0
  1214. package/lib/routes/fashionnetwork/templates/description.art +17 -0
  1215. package/lib/routes/fastbull/express-news.ts +58 -0
  1216. package/lib/routes/fastbull/namespace.ts +6 -0
  1217. package/lib/routes/fastbull/news.ts +86 -0
  1218. package/lib/routes/fda/cdrh.ts +78 -0
  1219. package/lib/routes/fda/namespace.ts +6 -0
  1220. package/lib/routes/fediverse/namespace.ts +6 -0
  1221. package/lib/routes/fediverse/timeline.ts +98 -0
  1222. package/lib/routes/feng/forum.ts +73 -0
  1223. package/lib/routes/feng/namespace.ts +6 -0
  1224. package/lib/routes/feng/utils.ts +76 -0
  1225. package/lib/routes/ff14/ff14-global.ts +77 -0
  1226. package/lib/routes/ff14/ff14-zh.ts +75 -0
  1227. package/lib/routes/ff14/namespace.ts +6 -0
  1228. package/lib/routes/fffdm/manhua/manhua.ts +79 -0
  1229. package/lib/routes/fffdm/namespace.ts +6 -0
  1230. package/lib/routes/finology/bullets.ts +51 -0
  1231. package/lib/routes/finology/category.ts +60 -0
  1232. package/lib/routes/finology/most-viewed.ts +50 -0
  1233. package/lib/routes/finology/namespace.ts +6 -0
  1234. package/lib/routes/finology/tag.ts +55 -0
  1235. package/lib/routes/finology/utils.ts +60 -0
  1236. package/lib/routes/finviz/namespace.ts +6 -0
  1237. package/lib/routes/finviz/news.ts +98 -0
  1238. package/lib/routes/finviz/quote.ts +59 -0
  1239. package/lib/routes/firecore/index.ts +56 -0
  1240. package/lib/routes/firecore/namespace.ts +6 -0
  1241. package/lib/routes/firefox/addons.ts +59 -0
  1242. package/lib/routes/firefox/breaches.ts +63 -0
  1243. package/lib/routes/firefox/namespace.ts +6 -0
  1244. package/lib/routes/firefox/release.ts +44 -0
  1245. package/lib/routes/fisher-spb/namespace.ts +6 -0
  1246. package/lib/routes/fisher-spb/news.ts +76 -0
  1247. package/lib/routes/fishshell/index.ts +43 -0
  1248. package/lib/routes/fishshell/namespace.ts +6 -0
  1249. package/lib/routes/fjksbm/index.ts +81 -0
  1250. package/lib/routes/fjksbm/namespace.ts +6 -0
  1251. package/lib/routes/flashcat/blog.ts +61 -0
  1252. package/lib/routes/flashcat/namespace.ts +6 -0
  1253. package/lib/routes/flyert/creditcard.ts +136 -0
  1254. package/lib/routes/flyert/namespace.ts +6 -0
  1255. package/lib/routes/flyert/preferential.ts +74 -0
  1256. package/lib/routes/flyert/utils.ts +72 -0
  1257. package/lib/routes/focustaiwan/index.ts +102 -0
  1258. package/lib/routes/focustaiwan/namespace.ts +6 -0
  1259. package/lib/routes/follow/namespace.ts +6 -0
  1260. package/lib/routes/follow/profile.ts +39 -0
  1261. package/lib/routes/follow/types.ts +38 -0
  1262. package/lib/routes/followin/index.ts +66 -0
  1263. package/lib/routes/followin/kol.ts +50 -0
  1264. package/lib/routes/followin/namespace.ts +6 -0
  1265. package/lib/routes/followin/news.ts +46 -0
  1266. package/lib/routes/followin/tag.ts +69 -0
  1267. package/lib/routes/followin/topic.ts +50 -0
  1268. package/lib/routes/followin/utils.ts +76 -0
  1269. package/lib/routes/foresightnews/article.ts +47 -0
  1270. package/lib/routes/foresightnews/column.ts +53 -0
  1271. package/lib/routes/foresightnews/index.ts +37 -0
  1272. package/lib/routes/foresightnews/namespace.ts +6 -0
  1273. package/lib/routes/foresightnews/news.ts +48 -0
  1274. package/lib/routes/foresightnews/util.ts +90 -0
  1275. package/lib/routes/foreverblog/feeds.ts +61 -0
  1276. package/lib/routes/foreverblog/namespace.ts +6 -0
  1277. package/lib/routes/fortnite/namespace.ts +6 -0
  1278. package/lib/routes/fortnite/news.ts +87 -0
  1279. package/lib/routes/fortunechina/index.ts +108 -0
  1280. package/lib/routes/fortunechina/namespace.ts +6 -0
  1281. package/lib/routes/fosshub/index.ts +71 -0
  1282. package/lib/routes/fosshub/namespace.ts +6 -0
  1283. package/lib/routes/free/namespace.ts +6 -0
  1284. package/lib/routes/free/rss.ts +35 -0
  1285. package/lib/routes/freebuf/index.ts +68 -0
  1286. package/lib/routes/freebuf/namespace.ts +6 -0
  1287. package/lib/routes/freecomputerbooks/index.ts +127 -0
  1288. package/lib/routes/freecomputerbooks/namespace.ts +6 -0
  1289. package/lib/routes/freewechat/namespace.ts +6 -0
  1290. package/lib/routes/freewechat/profile.ts +88 -0
  1291. package/lib/routes/freexcomic/book.ts +84 -0
  1292. package/lib/routes/freexcomic/namespace.ts +7 -0
  1293. package/lib/routes/ft/myft.ts +76 -0
  1294. package/lib/routes/ft/namespace.ts +6 -0
  1295. package/lib/routes/ftchinese/channel.ts +38 -0
  1296. package/lib/routes/ftchinese/namespace.ts +6 -0
  1297. package/lib/routes/ftchinese/utils.ts +90 -0
  1298. package/lib/routes/ftm/index.ts +60 -0
  1299. package/lib/routes/ftm/namespace.ts +6 -0
  1300. package/lib/routes/fuliba/latest.ts +50 -0
  1301. package/lib/routes/fuliba/namespace.ts +6 -0
  1302. package/lib/routes/furstar/archive.ts +53 -0
  1303. package/lib/routes/furstar/artists.ts +58 -0
  1304. package/lib/routes/furstar/index.ts +59 -0
  1305. package/lib/routes/furstar/namespace.ts +6 -0
  1306. package/lib/routes/furstar/utils.ts +99 -0
  1307. package/lib/routes/futunn/main.ts +80 -0
  1308. package/lib/routes/futunn/namespace.ts +6 -0
  1309. package/lib/routes/fx-markets/channel.ts +79 -0
  1310. package/lib/routes/fx-markets/namespace.ts +6 -0
  1311. package/lib/routes/fx678/kx.ts +70 -0
  1312. package/lib/routes/fx678/namespace.ts +6 -0
  1313. package/lib/routes/fxiaoke/crm.ts +86 -0
  1314. package/lib/routes/fxiaoke/namespace.ts +6 -0
  1315. package/lib/routes/fzmtr/announcements.ts +57 -0
  1316. package/lib/routes/fzmtr/namespace.ts +6 -0
  1317. package/lib/routes/galxe/index.ts +94 -0
  1318. package/lib/routes/galxe/namespace.ts +9 -0
  1319. package/lib/routes/gameapps/index.ts +94 -0
  1320. package/lib/routes/gameapps/namespace.ts +6 -0
  1321. package/lib/routes/gamebase/namespace.ts +6 -0
  1322. package/lib/routes/gamebase/news.ts +98 -0
  1323. package/lib/routes/gamegene/namespace.ts +6 -0
  1324. package/lib/routes/gamegene/news.ts +76 -0
  1325. package/lib/routes/gamer/ani/anime.ts +52 -0
  1326. package/lib/routes/gamer/ani/new-anime.ts +47 -0
  1327. package/lib/routes/gamer/gnn-index.ts +154 -0
  1328. package/lib/routes/gamer/hot.ts +76 -0
  1329. package/lib/routes/gamer/namespace.ts +6 -0
  1330. package/lib/routes/gamer520/index.ts +85 -0
  1331. package/lib/routes/gamer520/namespace.ts +6 -0
  1332. package/lib/routes/gamersecret/index.ts +106 -0
  1333. package/lib/routes/gamersecret/namespace.ts +6 -0
  1334. package/lib/routes/gamersky/ent.ts +57 -0
  1335. package/lib/routes/gamersky/namespace.ts +10 -0
  1336. package/lib/routes/gamersky/news.ts +91 -0
  1337. package/lib/routes/gamersky/review.ts +80 -0
  1338. package/lib/routes/gamersky/utils.ts +94 -0
  1339. package/lib/routes/gamme/category.ts +60 -0
  1340. package/lib/routes/gamme/namespace.ts +6 -0
  1341. package/lib/routes/gamme/tag.ts +71 -0
  1342. package/lib/routes/gcores/category.ts +171 -0
  1343. package/lib/routes/gcores/collection.ts +161 -0
  1344. package/lib/routes/gcores/namespace.ts +6 -0
  1345. package/lib/routes/gcores/radio.ts +108 -0
  1346. package/lib/routes/gcores/tag.ts +158 -0
  1347. package/lib/routes/gdsrx/index.ts +101 -0
  1348. package/lib/routes/gdsrx/namespace.ts +6 -0
  1349. package/lib/routes/gdut/namespace.ts +6 -0
  1350. package/lib/routes/gdut/news.ts +168 -0
  1351. package/lib/routes/gdut/oa-news.ts +221 -0
  1352. package/lib/routes/geekpark/index.ts +219 -0
  1353. package/lib/routes/geekpark/namespace.ts +8 -0
  1354. package/lib/routes/geekpark/templates/description.art +21 -0
  1355. package/lib/routes/gelonghui/home.ts +54 -0
  1356. package/lib/routes/gelonghui/hot-article.ts +60 -0
  1357. package/lib/routes/gelonghui/keyword.ts +54 -0
  1358. package/lib/routes/gelonghui/live.ts +59 -0
  1359. package/lib/routes/gelonghui/namespace.ts +6 -0
  1360. package/lib/routes/gelonghui/subject.ts +61 -0
  1361. package/lib/routes/gelonghui/user.ts +58 -0
  1362. package/lib/routes/gelonghui/utils.ts +25 -0
  1363. package/lib/routes/geocaching/blogs.ts +55 -0
  1364. package/lib/routes/geocaching/namespace.ts +6 -0
  1365. package/lib/routes/getdr/index.ts +63 -0
  1366. package/lib/routes/getdr/namespace.ts +6 -0
  1367. package/lib/routes/getitfree/index.ts +59 -0
  1368. package/lib/routes/getitfree/namespace.ts +6 -0
  1369. package/lib/routes/getitfree/util.ts +315 -0
  1370. package/lib/routes/gettr/namespace.ts +6 -0
  1371. package/lib/routes/gettr/user.ts +83 -0
  1372. package/lib/routes/gf-cn/namespace.ts +6 -0
  1373. package/lib/routes/gf-cn/news.ts +78 -0
  1374. package/lib/routes/gihyo/group.ts +72 -0
  1375. package/lib/routes/gihyo/namespace.ts +6 -0
  1376. package/lib/routes/gisreportsonline/index.ts +60 -0
  1377. package/lib/routes/gisreportsonline/namespace.ts +6 -0
  1378. package/lib/routes/gitee/namespace.ts +6 -0
  1379. package/lib/routes/gitee/repos/commits.ts +66 -0
  1380. package/lib/routes/gitee/repos/events.ts +92 -0
  1381. package/lib/routes/gitee/repos/releases.ts +58 -0
  1382. package/lib/routes/gitee/users/events.ts +110 -0
  1383. package/lib/routes/github/activity.ts +56 -0
  1384. package/lib/routes/github/branches.ts +55 -0
  1385. package/lib/routes/github/comments.ts +206 -0
  1386. package/lib/routes/github/contributors.ts +104 -0
  1387. package/lib/routes/github/file.ts +66 -0
  1388. package/lib/routes/github/follower.ts +75 -0
  1389. package/lib/routes/github/gist.ts +59 -0
  1390. package/lib/routes/github/issue.ts +93 -0
  1391. package/lib/routes/github/namespace.ts +15 -0
  1392. package/lib/routes/github/notifications.ts +78 -0
  1393. package/lib/routes/github/pulls.ts +72 -0
  1394. package/lib/routes/github/pulse.ts +118 -0
  1395. package/lib/routes/github/repos.ts +58 -0
  1396. package/lib/routes/github/search.ts +68 -0
  1397. package/lib/routes/github/star.ts +77 -0
  1398. package/lib/routes/github/starred-repos.ts +62 -0
  1399. package/lib/routes/github/topic.ts +73 -0
  1400. package/lib/routes/github/trending.ts +150 -0
  1401. package/lib/routes/github/wiki.ts +65 -0
  1402. package/lib/routes/gitpod/blog.ts +84 -0
  1403. package/lib/routes/gitpod/changelog.ts +60 -0
  1404. package/lib/routes/gitpod/namespace.ts +6 -0
  1405. package/lib/routes/gitpod/utils.ts +3 -0
  1406. package/lib/routes/globallawreview/index.ts +70 -0
  1407. package/lib/routes/globallawreview/namespace.ts +6 -0
  1408. package/lib/routes/go/mhlw/pdf.ts +87 -0
  1409. package/lib/routes/go/namespace.ts +8 -0
  1410. package/lib/routes/go/niid/idwr-dl.ts +104 -0
  1411. package/lib/routes/gocn/jobs.ts +53 -0
  1412. package/lib/routes/gocn/namespace.ts +6 -0
  1413. package/lib/routes/gocn/news.ts +40 -0
  1414. package/lib/routes/gocn/topics.ts +56 -0
  1415. package/lib/routes/gocn/utils.ts +36 -0
  1416. package/lib/routes/gofans/index.ts +63 -0
  1417. package/lib/routes/gofans/namespace.ts +6 -0
  1418. package/lib/routes/gofans/templates/description.art +7 -0
  1419. package/lib/routes/gogoanimehd/namespace.ts +6 -0
  1420. package/lib/routes/gogoanimehd/recent-releases.ts +62 -0
  1421. package/lib/routes/google/album.ts +55 -0
  1422. package/lib/routes/google/alerts.ts +52 -0
  1423. package/lib/routes/google/citations.ts +66 -0
  1424. package/lib/routes/google/doodles.ts +54 -0
  1425. package/lib/routes/google/extension.ts +53 -0
  1426. package/lib/routes/google/fonts.ts +78 -0
  1427. package/lib/routes/google/namespace.ts +6 -0
  1428. package/lib/routes/google/news.ts +89 -0
  1429. package/lib/routes/google/research.ts +45 -0
  1430. package/lib/routes/google/scholar.ts +71 -0
  1431. package/lib/routes/google/search.ts +85 -0
  1432. package/lib/routes/google/templates/description.art +6 -0
  1433. package/lib/routes/gov/ah/kjt.ts +229 -0
  1434. package/lib/routes/gov/ah/namespace.ts +8 -0
  1435. package/lib/routes/gov/beijing/bjedu/gh.ts +79 -0
  1436. package/lib/routes/gov/beijing/bphc/index.ts +64 -0
  1437. package/lib/routes/gov/beijing/jw/tzgg.ts +84 -0
  1438. package/lib/routes/gov/beijing/kw/index.ts +53 -0
  1439. package/lib/routes/gov/caac/cjwt.ts +87 -0
  1440. package/lib/routes/gov/caac/templates/description.art +25 -0
  1441. package/lib/routes/gov/cac/index.ts +73 -0
  1442. package/lib/routes/gov/cbirc/index.ts +371 -0
  1443. package/lib/routes/gov/ccdi/index.ts +27 -0
  1444. package/lib/routes/gov/ccdi/utils.ts +91 -0
  1445. package/lib/routes/gov/chinamine-safety/util.ts +72 -0
  1446. package/lib/routes/gov/chinamine-safety/xw.ts +46 -0
  1447. package/lib/routes/gov/chinamine-safety/zfxxgk.ts +45 -0
  1448. package/lib/routes/gov/chinatax/latest.ts +74 -0
  1449. package/lib/routes/gov/chongqing/gzw.ts +87 -0
  1450. package/lib/routes/gov/chongqing/rsks.ts +55 -0
  1451. package/lib/routes/gov/chongqing/sydwgkzp.ts +75 -0
  1452. package/lib/routes/gov/cmse/fxrw.ts +68 -0
  1453. package/lib/routes/gov/cmse/index.ts +79 -0
  1454. package/lib/routes/gov/cnnic/index.ts +64 -0
  1455. package/lib/routes/gov/csrc/auditstatus.ts +73 -0
  1456. package/lib/routes/gov/csrc/news.ts +81 -0
  1457. package/lib/routes/gov/customs/list.ts +111 -0
  1458. package/lib/routes/gov/customs/utils.ts +18 -0
  1459. package/lib/routes/gov/dianbai/dianbai.ts +26 -0
  1460. package/lib/routes/gov/forestry/gjlckjdjt.ts +127 -0
  1461. package/lib/routes/gov/gaozhou/gaozhou.ts +27 -0
  1462. package/lib/routes/gov/general/general.ts +240 -0
  1463. package/lib/routes/gov/guangdong/tqyb/sncsyjxh.ts +65 -0
  1464. package/lib/routes/gov/guangdong/tqyb/tfxtq.ts +58 -0
  1465. package/lib/routes/gov/gz/index.ts +46 -0
  1466. package/lib/routes/gov/hebei/czt.ts +76 -0
  1467. package/lib/routes/gov/huazhou/huazhou.ts +27 -0
  1468. package/lib/routes/gov/huizhou/zwgk/index.ts +79 -0
  1469. package/lib/routes/gov/hunan/changsha/major-email.ts +82 -0
  1470. package/lib/routes/gov/immiau/news.ts +62 -0
  1471. package/lib/routes/gov/jgjcndrc/index.ts +96 -0
  1472. package/lib/routes/gov/jiangsu/wlt/index.ts +99 -0
  1473. package/lib/routes/gov/jiangsu/wlt/templates/wlt.art +9 -0
  1474. package/lib/routes/gov/jinan/healthcommission/medical-exam-notice.ts +74 -0
  1475. package/lib/routes/gov/lswz/index.ts +289 -0
  1476. package/lib/routes/gov/maoming/maoming.ts +382 -0
  1477. package/lib/routes/gov/maonan/maonan.ts +123 -0
  1478. package/lib/routes/gov/mee/ywdt.ts +109 -0
  1479. package/lib/routes/gov/mem/sgcc.ts +93 -0
  1480. package/lib/routes/gov/mfa/wjdt.ts +87 -0
  1481. package/lib/routes/gov/mgs/mgs.ts +27 -0
  1482. package/lib/routes/gov/miit/wjfb.ts +86 -0
  1483. package/lib/routes/gov/miit/wjgs.ts +82 -0
  1484. package/lib/routes/gov/miit/yjzj.ts +85 -0
  1485. package/lib/routes/gov/miit/zcjd.ts +82 -0
  1486. package/lib/routes/gov/miit/zcwj.ts +73 -0
  1487. package/lib/routes/gov/mmht/mmht.ts +27 -0
  1488. package/lib/routes/gov/moa/moa.ts +257 -0
  1489. package/lib/routes/gov/moa/zdscxx.ts +111 -0
  1490. package/lib/routes/gov/moe/moe.ts +108 -0
  1491. package/lib/routes/gov/moe/s78.ts +69 -0
  1492. package/lib/routes/gov/mof/bond.ts +76 -0
  1493. package/lib/routes/gov/mofcom/article.ts +77 -0
  1494. package/lib/routes/gov/moj/aac/news.ts +72 -0
  1495. package/lib/routes/gov/moj/lfyjzj.ts +79 -0
  1496. package/lib/routes/gov/mot/index.ts +75 -0
  1497. package/lib/routes/gov/ndrc/fggz.ts +71 -0
  1498. package/lib/routes/gov/ndrc/xwdt.ts +63 -0
  1499. package/lib/routes/gov/nea/ghs.ts +84 -0
  1500. package/lib/routes/gov/news/index.ts +128 -0
  1501. package/lib/routes/gov/nifdc/index.ts +87 -0
  1502. package/lib/routes/gov/nmpa/generic.ts +70 -0
  1503. package/lib/routes/gov/nopss/index.ts +67 -0
  1504. package/lib/routes/gov/npc/index.ts +75 -0
  1505. package/lib/routes/gov/nrta/dsj.ts +82 -0
  1506. package/lib/routes/gov/nrta/news.ts +85 -0
  1507. package/lib/routes/gov/nsfc/index.ts +95 -0
  1508. package/lib/routes/gov/nsfc/shortcuts.ts +52 -0
  1509. package/lib/routes/gov/pbc/goutongjiaoliu.ts +85 -0
  1510. package/lib/routes/gov/pbc/gzlw.ts +52 -0
  1511. package/lib/routes/gov/pbc/namespace.ts +45 -0
  1512. package/lib/routes/gov/pbc/trade-announcement.ts +78 -0
  1513. package/lib/routes/gov/pbc/utils.ts +19 -0
  1514. package/lib/routes/gov/pbc/zcyj.ts +43 -0
  1515. package/lib/routes/gov/safe/business.ts +27 -0
  1516. package/lib/routes/gov/safe/complaint.ts +27 -0
  1517. package/lib/routes/gov/safe/templates/message.art +25 -0
  1518. package/lib/routes/gov/safe/util.ts +88 -0
  1519. package/lib/routes/gov/samr/xgzlyhd.ts +221 -0
  1520. package/lib/routes/gov/sasac/generic.ts +51 -0
  1521. package/lib/routes/gov/sdb/sdb.ts +27 -0
  1522. package/lib/routes/gov/sh/fgw/index.ts +155 -0
  1523. package/lib/routes/gov/sh/fgw/templates/description.art +17 -0
  1524. package/lib/routes/gov/sh/namespace.ts +8 -0
  1525. package/lib/routes/gov/sh/rsj/ksxm.ts +67 -0
  1526. package/lib/routes/gov/sh/wgj/wgj.ts +102 -0
  1527. package/lib/routes/gov/sh/wsjkw/yqtb/index.ts +58 -0
  1528. package/lib/routes/gov/sh/yjj/index.ts +72 -0
  1529. package/lib/routes/gov/shaanxi/kjt.ts +78 -0
  1530. package/lib/routes/gov/shenzhen/hrss/szksy/index.ts +69 -0
  1531. package/lib/routes/gov/shenzhen/xxgk/zfxxgj.ts +96 -0
  1532. package/lib/routes/gov/shenzhen/zjj/index.ts +73 -0
  1533. package/lib/routes/gov/shenzhen/zzb/index.ts +68 -0
  1534. package/lib/routes/gov/sichuan/deyang/govpublicinfo.ts +118 -0
  1535. package/lib/routes/gov/sichuan/deyang/mztoday.ts +167 -0
  1536. package/lib/routes/gov/stats/index.ts +144 -0
  1537. package/lib/routes/gov/suzhou/doc.ts +72 -0
  1538. package/lib/routes/gov/suzhou/fg.ts +71 -0
  1539. package/lib/routes/gov/suzhou/news.ts +167 -0
  1540. package/lib/routes/gov/taiyuan/rsj.ts +69 -0
  1541. package/lib/routes/gov/wuhan/whyw.ts +70 -0
  1542. package/lib/routes/gov/xinyi/xinyi.ts +27 -0
  1543. package/lib/routes/gov/xuzhou/hrss.ts +77 -0
  1544. package/lib/routes/gov/zhejiang/gwy.ts +134 -0
  1545. package/lib/routes/gov/zhengce/govall.ts +92 -0
  1546. package/lib/routes/gov/zhengce/index.ts +122 -0
  1547. package/lib/routes/gov/zhengce/wenjian.ts +74 -0
  1548. package/lib/routes/gov/zhengce/zhengceku.ts +41 -0
  1549. package/lib/routes/gov/zj/ningbogzw-notice.ts +50 -0
  1550. package/lib/routes/gov/zj/ningborsjnotice.ts +50 -0
  1551. package/lib/routes/gov/zj/search.ts +80 -0
  1552. package/lib/routes/gq/namespace.ts +6 -0
  1553. package/lib/routes/gq/news.ts +59 -0
  1554. package/lib/routes/greasyfork/feedback.ts +55 -0
  1555. package/lib/routes/greasyfork/namespace.ts +6 -0
  1556. package/lib/routes/greasyfork/scripts.ts +76 -0
  1557. package/lib/routes/greasyfork/versions.ts +53 -0
  1558. package/lib/routes/grist/featured.ts +57 -0
  1559. package/lib/routes/grist/index.ts +33 -0
  1560. package/lib/routes/grist/namespace.ts +6 -0
  1561. package/lib/routes/grist/series.ts +46 -0
  1562. package/lib/routes/grist/topic.ts +91 -0
  1563. package/lib/routes/grist/utils.ts +24 -0
  1564. package/lib/routes/grubstreet/index.ts +24 -0
  1565. package/lib/routes/grubstreet/namespace.ts +6 -0
  1566. package/lib/routes/grubstreet/utils.ts +83 -0
  1567. package/lib/routes/gs/developer/blog.ts +58 -0
  1568. package/lib/routes/gs/namespace.ts +9 -0
  1569. package/lib/routes/guancha/headline.ts +77 -0
  1570. package/lib/routes/guancha/index.ts +189 -0
  1571. package/lib/routes/guancha/member.ts +115 -0
  1572. package/lib/routes/guancha/namespace.ts +6 -0
  1573. package/lib/routes/guancha/personalpage.ts +91 -0
  1574. package/lib/routes/guancha/topic.ts +72 -0
  1575. package/lib/routes/guangdiu/cheaps.ts +47 -0
  1576. package/lib/routes/guangdiu/index.ts +62 -0
  1577. package/lib/routes/guangdiu/namespace.ts +6 -0
  1578. package/lib/routes/guangdiu/rank.ts +64 -0
  1579. package/lib/routes/guangdiu/search.ts +60 -0
  1580. package/lib/routes/guangzhoumetro/namespace.ts +6 -0
  1581. package/lib/routes/guangzhoumetro/news.ts +56 -0
  1582. package/lib/routes/guanhai/index.ts +70 -0
  1583. package/lib/routes/guanhai/namespace.ts +6 -0
  1584. package/lib/routes/guduodata/daily.ts +92 -0
  1585. package/lib/routes/guduodata/namespace.ts +6 -0
  1586. package/lib/routes/gumroad/index.ts +63 -0
  1587. package/lib/routes/gumroad/namespace.ts +6 -0
  1588. package/lib/routes/guokr/channel.ts +59 -0
  1589. package/lib/routes/guokr/namespace.ts +6 -0
  1590. package/lib/routes/guokr/scientific.ts +38 -0
  1591. package/lib/routes/guokr/utils.ts +37 -0
  1592. package/lib/routes/gxmzu/ai.ts +43 -0
  1593. package/lib/routes/gxmzu/lib.ts +79 -0
  1594. package/lib/routes/gxmzu/namespace.ts +6 -0
  1595. package/lib/routes/gxmzu/utils/index.ts +68 -0
  1596. package/lib/routes/gxmzu/yjs.ts +43 -0
  1597. package/lib/routes/gzdaily/app.ts +89 -0
  1598. package/lib/routes/gzdaily/namespace.ts +6 -0
  1599. package/lib/routes/gzhu/namespace.ts +6 -0
  1600. package/lib/routes/gzhu/yjs.ts +56 -0
  1601. package/lib/routes/hackernews/index.ts +138 -0
  1602. package/lib/routes/hackernews/namespace.ts +6 -0
  1603. package/lib/routes/hackertalk/index.ts +39 -0
  1604. package/lib/routes/hackertalk/namespace.ts +6 -0
  1605. package/lib/routes/hacking8/index.ts +72 -0
  1606. package/lib/routes/hacking8/namespace.ts +6 -0
  1607. package/lib/routes/hacking8/search.ts +73 -0
  1608. package/lib/routes/hackmd/namespace.ts +6 -0
  1609. package/lib/routes/hackmd/profile.ts +43 -0
  1610. package/lib/routes/hackyournews/index.ts +65 -0
  1611. package/lib/routes/hackyournews/namespace.ts +6 -0
  1612. package/lib/routes/hafu/namespace.ts +6 -0
  1613. package/lib/routes/hafu/news.ts +37 -0
  1614. package/lib/routes/hafu/utils.ts +210 -0
  1615. package/lib/routes/hakkatv/namespace.ts +6 -0
  1616. package/lib/routes/hakkatv/type.ts +94 -0
  1617. package/lib/routes/hameln/chapter.ts +85 -0
  1618. package/lib/routes/hameln/namespace.ts +6 -0
  1619. package/lib/routes/harvard/health/blog.ts +78 -0
  1620. package/lib/routes/harvard/namespace.ts +6 -0
  1621. package/lib/routes/hashnode/blog.ts +93 -0
  1622. package/lib/routes/hashnode/namespace.ts +6 -0
  1623. package/lib/routes/hbooker/chapter.ts +71 -0
  1624. package/lib/routes/hbooker/namespace.ts +6 -0
  1625. package/lib/routes/hbr/namespace.ts +6 -0
  1626. package/lib/routes/hbr/topic.ts +88 -0
  1627. package/lib/routes/hdu/cs/notice.ts +80 -0
  1628. package/lib/routes/hdu/cs/pg.ts +80 -0
  1629. package/lib/routes/hdu/namespace.ts +6 -0
  1630. package/lib/routes/healthz.ts +8 -0
  1631. package/lib/routes/hebtv/namespace.ts +6 -0
  1632. package/lib/routes/hebtv/nong-bo-shi-zai-xing-dong.ts +138 -0
  1633. package/lib/routes/hellobtc/information.ts +71 -0
  1634. package/lib/routes/hellobtc/kepu.ts +87 -0
  1635. package/lib/routes/hellobtc/namespace.ts +6 -0
  1636. package/lib/routes/hellobtc/news.ts +54 -0
  1637. package/lib/routes/hellogithub/index.ts +128 -0
  1638. package/lib/routes/hellogithub/namespace.ts +6 -0
  1639. package/lib/routes/hellogithub/report.ts +71 -0
  1640. package/lib/routes/hellogithub/volume.ts +77 -0
  1641. package/lib/routes/hex-rays/index.ts +73 -0
  1642. package/lib/routes/hex-rays/namespace.ts +6 -0
  1643. package/lib/routes/hicairo/namespace.ts +6 -0
  1644. package/lib/routes/hicairo/rss.ts +48 -0
  1645. package/lib/routes/hinatazaka46/blog.ts +96 -0
  1646. package/lib/routes/hinatazaka46/namespace.ts +6 -0
  1647. package/lib/routes/hinatazaka46/news.ts +77 -0
  1648. package/lib/routes/hit/hitgs.ts +72 -0
  1649. package/lib/routes/hit/jwc.ts +86 -0
  1650. package/lib/routes/hit/namespace.ts +9 -0
  1651. package/lib/routes/hit/today.ts +92 -0
  1652. package/lib/routes/hitcon/namespace.ts +6 -0
  1653. package/lib/routes/hitcon/templates/zeroday.art +8 -0
  1654. package/lib/routes/hitcon/zeroday.ts +109 -0
  1655. package/lib/routes/hitsz/article.ts +64 -0
  1656. package/lib/routes/hitsz/namespace.ts +6 -0
  1657. package/lib/routes/hitwh/namespace.ts +6 -0
  1658. package/lib/routes/hitwh/today.ts +80 -0
  1659. package/lib/routes/hizu/index.ts +128 -0
  1660. package/lib/routes/hizu/namespace.ts +6 -0
  1661. package/lib/routes/hk01/channel.ts +37 -0
  1662. package/lib/routes/hk01/hot.ts +46 -0
  1663. package/lib/routes/hk01/issue.ts +36 -0
  1664. package/lib/routes/hk01/latest.ts +46 -0
  1665. package/lib/routes/hk01/namespace.ts +6 -0
  1666. package/lib/routes/hk01/tag.ts +36 -0
  1667. package/lib/routes/hk01/utils.ts +44 -0
  1668. package/lib/routes/hk01/zone.ts +37 -0
  1669. package/lib/routes/hkej/index.ts +183 -0
  1670. package/lib/routes/hkej/namespace.ts +6 -0
  1671. package/lib/routes/hkepc/data.ts +60 -0
  1672. package/lib/routes/hkepc/index.ts +127 -0
  1673. package/lib/routes/hkepc/namespace.ts +6 -0
  1674. package/lib/routes/hket/index.ts +225 -0
  1675. package/lib/routes/hket/namespace.ts +6 -0
  1676. package/lib/routes/hket/templates/image.art +4 -0
  1677. package/lib/routes/hkjunkcall/index.ts +69 -0
  1678. package/lib/routes/hkjunkcall/namespace.ts +6 -0
  1679. package/lib/routes/hljucm/namespace.ts +6 -0
  1680. package/lib/routes/hljucm/yjsy.ts +79 -0
  1681. package/lib/routes/hnrb/index.ts +124 -0
  1682. package/lib/routes/hnrb/namespace.ts +6 -0
  1683. package/lib/routes/hnu/careers.ts +58 -0
  1684. package/lib/routes/hnu/namespace.ts +6 -0
  1685. package/lib/routes/hongkong/chp.ts +118 -0
  1686. package/lib/routes/hongkong/dh.ts +84 -0
  1687. package/lib/routes/hongkong/namespace.ts +6 -0
  1688. package/lib/routes/hostmonit/cloudflareyes.ts +116 -0
  1689. package/lib/routes/hostmonit/cloudflareyesv6.ts +11 -0
  1690. package/lib/routes/hostmonit/namespace.ts +6 -0
  1691. package/lib/routes/hottoys/index.ts +63 -0
  1692. package/lib/routes/hottoys/namespace.ts +6 -0
  1693. package/lib/routes/hotukdeals/hottest.ts +50 -0
  1694. package/lib/routes/hotukdeals/index.ts +53 -0
  1695. package/lib/routes/hotukdeals/namespace.ts +6 -0
  1696. package/lib/routes/houxu/events.ts +56 -0
  1697. package/lib/routes/houxu/index.ts +55 -0
  1698. package/lib/routes/houxu/lives.ts +60 -0
  1699. package/lib/routes/houxu/memory.ts +56 -0
  1700. package/lib/routes/houxu/namespace.ts +6 -0
  1701. package/lib/routes/howtoforge/namespace.ts +6 -0
  1702. package/lib/routes/howtoforge/rss.ts +48 -0
  1703. package/lib/routes/hoyolab/constant.ts +28 -0
  1704. package/lib/routes/hoyolab/namespace.ts +6 -0
  1705. package/lib/routes/hoyolab/news.ts +143 -0
  1706. package/lib/routes/hoyolab/templates/post.art +7 -0
  1707. package/lib/routes/hoyolab/utils.ts +29 -0
  1708. package/lib/routes/hpoi/all.ts +34 -0
  1709. package/lib/routes/hpoi/banner-item.ts +51 -0
  1710. package/lib/routes/hpoi/character.ts +27 -0
  1711. package/lib/routes/hpoi/info.ts +75 -0
  1712. package/lib/routes/hpoi/namespace.ts +6 -0
  1713. package/lib/routes/hpoi/user.ts +65 -0
  1714. package/lib/routes/hpoi/utils.ts +47 -0
  1715. package/lib/routes/hpoi/work.ts +27 -0
  1716. package/lib/routes/hrbeu/gx/card.ts +45 -0
  1717. package/lib/routes/hrbeu/gx/list.ts +69 -0
  1718. package/lib/routes/hrbeu/job/bigemploy.ts +50 -0
  1719. package/lib/routes/hrbeu/job/calendar.ts +81 -0
  1720. package/lib/routes/hrbeu/job/list.ts +88 -0
  1721. package/lib/routes/hrbeu/namespace.ts +6 -0
  1722. package/lib/routes/hrbeu/uae/news.ts +94 -0
  1723. package/lib/routes/hrbeu/ugs/news.ts +173 -0
  1724. package/lib/routes/hrbeu/yjsy/list.ts +85 -0
  1725. package/lib/routes/hrbust/jwzx.ts +59 -0
  1726. package/lib/routes/hrbust/namespace.ts +6 -0
  1727. package/lib/routes/hrbust/utils.ts +65 -0
  1728. package/lib/routes/huanqiu/index.ts +103 -0
  1729. package/lib/routes/huanqiu/namespace.ts +6 -0
  1730. package/lib/routes/hubu/index.ts +124 -0
  1731. package/lib/routes/hubu/namespace.ts +8 -0
  1732. package/lib/routes/hubu/zhxy.ts +228 -0
  1733. package/lib/routes/huggingface/blog-zh.ts +59 -0
  1734. package/lib/routes/huggingface/daily-papers.ts +51 -0
  1735. package/lib/routes/huggingface/namespace.ts +6 -0
  1736. package/lib/routes/hunanpea/namespace.ts +6 -0
  1737. package/lib/routes/hunanpea/rsks.ts +67 -0
  1738. package/lib/routes/hunau/gfxy/index.ts +40 -0
  1739. package/lib/routes/hunau/ied.ts +42 -0
  1740. package/lib/routes/hunau/jwc.ts +39 -0
  1741. package/lib/routes/hunau/namespace.ts +6 -0
  1742. package/lib/routes/hunau/utils/category-title.ts +31 -0
  1743. package/lib/routes/hunau/utils/common.ts +62 -0
  1744. package/lib/routes/hunau/utils/index-page.ts +10 -0
  1745. package/lib/routes/hunau/utils/news-content.ts +47 -0
  1746. package/lib/routes/hunau/xky/index.ts +41 -0
  1747. package/lib/routes/huoxian/namespace.ts +6 -0
  1748. package/lib/routes/huoxian/zone.ts +38 -0
  1749. package/lib/routes/hupu/all.ts +105 -0
  1750. package/lib/routes/hupu/bbs.ts +117 -0
  1751. package/lib/routes/hupu/index.ts +102 -0
  1752. package/lib/routes/hupu/namespace.ts +6 -0
  1753. package/lib/routes/hust/aia/news.ts +51 -0
  1754. package/lib/routes/hust/aia/notice.ts +51 -0
  1755. package/lib/routes/hust/gs.ts +281 -0
  1756. package/lib/routes/hust/namespace.ts +6 -0
  1757. package/lib/routes/hust/yjs.ts +52 -0
  1758. package/lib/routes/huxiu/brief-column.ts +49 -0
  1759. package/lib/routes/huxiu/channel.ts +65 -0
  1760. package/lib/routes/huxiu/club.ts +39 -0
  1761. package/lib/routes/huxiu/collection.ts +48 -0
  1762. package/lib/routes/huxiu/member.ts +39 -0
  1763. package/lib/routes/huxiu/moment.ts +51 -0
  1764. package/lib/routes/huxiu/namespace.ts +6 -0
  1765. package/lib/routes/huxiu/search.ts +61 -0
  1766. package/lib/routes/huxiu/tag.ts +47 -0
  1767. package/lib/routes/huxiu/templates/description.art +46 -0
  1768. package/lib/routes/huxiu/util.ts +446 -0
  1769. package/lib/routes/hypergryph/arknights/announce.ts +89 -0
  1770. package/lib/routes/hypergryph/arknights/arktca.ts +124 -0
  1771. package/lib/routes/hypergryph/arknights/japan.ts +78 -0
  1772. package/lib/routes/hypergryph/arknights/news.ts +118 -0
  1773. package/lib/routes/hypergryph/namespace.ts +7 -0
  1774. package/lib/routes/ianspriggs/index.ts +116 -0
  1775. package/lib/routes/ianspriggs/namespace.ts +6 -0
  1776. package/lib/routes/icac/namespace.ts +6 -0
  1777. package/lib/routes/icac/news.ts +72 -0
  1778. package/lib/routes/icac/utils.ts +13 -0
  1779. package/lib/routes/icbc/namespace.ts +6 -0
  1780. package/lib/routes/icbc/whpj.ts +86 -0
  1781. package/lib/routes/idaily/index.ts +85 -0
  1782. package/lib/routes/idaily/namespace.ts +6 -0
  1783. package/lib/routes/idaily/templates/description.art +17 -0
  1784. package/lib/routes/idolypride/namespace.ts +6 -0
  1785. package/lib/routes/idolypride/news.ts +54 -0
  1786. package/lib/routes/ieee/journal.ts +73 -0
  1787. package/lib/routes/ieee/namespace.ts +6 -0
  1788. package/lib/routes/ieee/templates/description.art +11 -0
  1789. package/lib/routes/ieee-security/namespace.ts +6 -0
  1790. package/lib/routes/ieee-security/sp.ts +53 -0
  1791. package/lib/routes/iehou/index.ts +125 -0
  1792. package/lib/routes/iehou/namespace.ts +8 -0
  1793. package/lib/routes/ielts/index.ts +81 -0
  1794. package/lib/routes/ielts/namespace.ts +6 -0
  1795. package/lib/routes/ifeng/feng.ts +92 -0
  1796. package/lib/routes/ifeng/namespace.ts +6 -0
  1797. package/lib/routes/ifeng/news.ts +67 -0
  1798. package/lib/routes/ifeng/templates/video.art +5 -0
  1799. package/lib/routes/ifeng/utils.ts +26 -0
  1800. package/lib/routes/ifi-audio/download.ts +58 -0
  1801. package/lib/routes/ifi-audio/namespace.ts +6 -0
  1802. package/lib/routes/iguoguo/index.ts +95 -0
  1803. package/lib/routes/iguoguo/namespace.ts +6 -0
  1804. package/lib/routes/iiilab/index.ts +39 -0
  1805. package/lib/routes/iiilab/namespace.ts +6 -0
  1806. package/lib/routes/ikea/cn/family-offers.ts +95 -0
  1807. package/lib/routes/ikea/cn/low-price.ts +47 -0
  1808. package/lib/routes/ikea/cn/new.ts +64 -0
  1809. package/lib/routes/ikea/cn/utils.ts +42 -0
  1810. package/lib/routes/ikea/gb/new.ts +82 -0
  1811. package/lib/routes/ikea/gb/offer.ts +97 -0
  1812. package/lib/routes/ikea/namespace.ts +6 -0
  1813. package/lib/routes/imagemagick/changelog.ts +72 -0
  1814. package/lib/routes/imagemagick/namespace.ts +6 -0
  1815. package/lib/routes/imdb/chart.ts +61 -0
  1816. package/lib/routes/imdb/namespace.ts +6 -0
  1817. package/lib/routes/imdb/templates/chart.art +15 -0
  1818. package/lib/routes/imdb/types.ts +103 -0
  1819. package/lib/routes/imhcg/blog.ts +47 -0
  1820. package/lib/routes/imhcg/namespace.ts +7 -0
  1821. package/lib/routes/imiker/jinghua.ts +116 -0
  1822. package/lib/routes/imiker/namespace.ts +6 -0
  1823. package/lib/routes/imiker/templates/description.art +32 -0
  1824. package/lib/routes/imop/namespace.ts +10 -0
  1825. package/lib/routes/imop/tianshu.ts +53 -0
  1826. package/lib/routes/index.tsx +10 -0
  1827. package/lib/routes/indiansinkuwait/latest.ts +69 -0
  1828. package/lib/routes/indiansinkuwait/namespace.ts +6 -0
  1829. package/lib/routes/indienova/article.ts +44 -0
  1830. package/lib/routes/indienova/column.ts +84 -0
  1831. package/lib/routes/indienova/gamedb.ts +64 -0
  1832. package/lib/routes/indienova/namespace.ts +6 -0
  1833. package/lib/routes/indienova/usergames.ts +68 -0
  1834. package/lib/routes/indienova/utils.ts +39 -0
  1835. package/lib/routes/inewsweek/index.ts +83 -0
  1836. package/lib/routes/inewsweek/namespace.ts +6 -0
  1837. package/lib/routes/infoq/namespace.ts +6 -0
  1838. package/lib/routes/infoq/recommend.ts +51 -0
  1839. package/lib/routes/infoq/topic.ts +67 -0
  1840. package/lib/routes/infoq/utils.ts +109 -0
  1841. package/lib/routes/informedainews/docs.ts +78 -0
  1842. package/lib/routes/informedainews/namespace.ts +18 -0
  1843. package/lib/routes/informs/index.ts +97 -0
  1844. package/lib/routes/informs/namespace.ts +6 -0
  1845. package/lib/routes/infzm/hot.ts +39 -0
  1846. package/lib/routes/infzm/index.ts +48 -0
  1847. package/lib/routes/infzm/types.ts +17 -0
  1848. package/lib/routes/infzm/utils.ts +34 -0
  1849. package/lib/routes/inoreader/index.ts +53 -0
  1850. package/lib/routes/inoreader/namespace.ts +6 -0
  1851. package/lib/routes/inoreader/rss.ts +66 -0
  1852. package/lib/routes/inspirehep/author.ts +46 -0
  1853. package/lib/routes/inspirehep/literature.ts +42 -0
  1854. package/lib/routes/inspirehep/namespace.ts +7 -0
  1855. package/lib/routes/inspirehep/types.ts +210 -0
  1856. package/lib/routes/inspirehep/utils.ts +15 -0
  1857. package/lib/routes/instagram/common-utils.ts +63 -0
  1858. package/lib/routes/instagram/namespace.ts +9 -0
  1859. package/lib/routes/instagram/private-api/index.ts +146 -0
  1860. package/lib/routes/instagram/private-api/utils.ts +38 -0
  1861. package/lib/routes/instagram/templates/images.art +12 -0
  1862. package/lib/routes/instagram/templates/video.art +8 -0
  1863. package/lib/routes/instagram/web-api/index.ts +118 -0
  1864. package/lib/routes/instagram/web-api/utils.ts +218 -0
  1865. package/lib/routes/instructables/namespace.ts +6 -0
  1866. package/lib/routes/instructables/projects.ts +85 -0
  1867. package/lib/routes/investor/index.ts +213 -0
  1868. package/lib/routes/investor/namespace.ts +8 -0
  1869. package/lib/routes/iplaysoft/index.ts +68 -0
  1870. package/lib/routes/iplaysoft/namespace.ts +6 -0
  1871. package/lib/routes/ippa/namespace.ts +6 -0
  1872. package/lib/routes/ippa/rss.ts +35 -0
  1873. package/lib/routes/ipsw/index.ts +109 -0
  1874. package/lib/routes/ipsw/namespace.ts +6 -0
  1875. package/lib/routes/iqilu/namespace.ts +6 -0
  1876. package/lib/routes/iqilu/program.ts +110 -0
  1877. package/lib/routes/iqiyi/album.ts +88 -0
  1878. package/lib/routes/iqiyi/namespace.ts +6 -0
  1879. package/lib/routes/iqiyi/video.ts +79 -0
  1880. package/lib/routes/iqnew/latest.ts +83 -0
  1881. package/lib/routes/iqnew/namespace.ts +6 -0
  1882. package/lib/routes/iresearch/namespace.ts +6 -0
  1883. package/lib/routes/iresearch/report.ts +89 -0
  1884. package/lib/routes/iresearch/weekly.ts +63 -0
  1885. package/lib/routes/issuehunt/funded.ts +47 -0
  1886. package/lib/routes/issuehunt/namespace.ts +6 -0
  1887. package/lib/routes/itc/collection.ts +66 -0
  1888. package/lib/routes/itc/namespace.ts +6 -0
  1889. package/lib/routes/itch/devlog.ts +95 -0
  1890. package/lib/routes/itch/index.ts +69 -0
  1891. package/lib/routes/itch/namespace.ts +6 -0
  1892. package/lib/routes/itch/posts.ts +65 -0
  1893. package/lib/routes/ithome/index.ts +109 -0
  1894. package/lib/routes/ithome/namespace.ts +6 -0
  1895. package/lib/routes/ithome/ranking.ts +93 -0
  1896. package/lib/routes/ithome/tag.ts +84 -0
  1897. package/lib/routes/ithome/templates/description.art +13 -0
  1898. package/lib/routes/ithome/tw/feeds.ts +66 -0
  1899. package/lib/routes/ithome/zt.ts +150 -0
  1900. package/lib/routes/iwara/index.ts +64 -0
  1901. package/lib/routes/iwara/namespace.ts +6 -0
  1902. package/lib/routes/iwara/subscriptions.ts +186 -0
  1903. package/lib/routes/ixigua/namespace.ts +6 -0
  1904. package/lib/routes/ixigua/user-video.ts +65 -0
  1905. package/lib/routes/j-test/namespace.ts +6 -0
  1906. package/lib/routes/j-test/news.ts +64 -0
  1907. package/lib/routes/jandan/index.ts +46 -0
  1908. package/lib/routes/jandan/namespace.ts +6 -0
  1909. package/lib/routes/jandan/section.ts +59 -0
  1910. package/lib/routes/japanpost/namespace.ts +12 -0
  1911. package/lib/routes/japanpost/router.ts +40 -0
  1912. package/lib/routes/japanpost/track.ts +115 -0
  1913. package/lib/routes/japanpost/utils.ts +89 -0
  1914. package/lib/routes/javbus/index.ts +209 -0
  1915. package/lib/routes/javbus/namespace.ts +23 -0
  1916. package/lib/routes/javdb/actors.ts +60 -0
  1917. package/lib/routes/javdb/index.ts +65 -0
  1918. package/lib/routes/javdb/lists.ts +43 -0
  1919. package/lib/routes/javdb/makers.ts +58 -0
  1920. package/lib/routes/javdb/namespace.ts +19 -0
  1921. package/lib/routes/javdb/rankings.ts +55 -0
  1922. package/lib/routes/javdb/search.ts +76 -0
  1923. package/lib/routes/javdb/series.ts +58 -0
  1924. package/lib/routes/javdb/tags.ts +55 -0
  1925. package/lib/routes/javdb/utils.ts +104 -0
  1926. package/lib/routes/javdb/videocodes.ts +56 -0
  1927. package/lib/routes/javlibrary/bestrated.ts +21 -0
  1928. package/lib/routes/javlibrary/bestreviews.ts +32 -0
  1929. package/lib/routes/javlibrary/genre.ts +26 -0
  1930. package/lib/routes/javlibrary/maker.ts +33 -0
  1931. package/lib/routes/javlibrary/mostwanted.ts +21 -0
  1932. package/lib/routes/javlibrary/namespace.ts +6 -0
  1933. package/lib/routes/javlibrary/newentries.ts +17 -0
  1934. package/lib/routes/javlibrary/newrelease.ts +21 -0
  1935. package/lib/routes/javlibrary/star.ts +39 -0
  1936. package/lib/routes/javlibrary/update.ts +17 -0
  1937. package/lib/routes/javlibrary/user.ts +22 -0
  1938. package/lib/routes/javlibrary/utils.ts +97 -0
  1939. package/lib/routes/jd/namespace.ts +6 -0
  1940. package/lib/routes/jd/price.ts +67 -0
  1941. package/lib/routes/jewishmuseum/exhibitions.ts +35 -0
  1942. package/lib/routes/jewishmuseum/namespace.ts +6 -0
  1943. package/lib/routes/jianshu/collection.ts +54 -0
  1944. package/lib/routes/jianshu/home.ts +53 -0
  1945. package/lib/routes/jianshu/namespace.ts +6 -0
  1946. package/lib/routes/jianshu/user.ts +54 -0
  1947. package/lib/routes/jianshu/utils.ts +56 -0
  1948. package/lib/routes/jiaoliudao/index.ts +41 -0
  1949. package/lib/routes/jiaoliudao/namespace.ts +6 -0
  1950. package/lib/routes/jiemian/list.ts +14 -0
  1951. package/lib/routes/jiemian/lists.ts +112 -0
  1952. package/lib/routes/jiemian/namespace.ts +6 -0
  1953. package/lib/routes/jiemian/templates/description.art +39 -0
  1954. package/lib/routes/jike/namespace.ts +6 -0
  1955. package/lib/routes/jike/topic-text.ts +47 -0
  1956. package/lib/routes/jike/topic.ts +72 -0
  1957. package/lib/routes/jike/user.ts +183 -0
  1958. package/lib/routes/jike/utils.ts +197 -0
  1959. package/lib/routes/jin10/index.ts +88 -0
  1960. package/lib/routes/jin10/namespace.ts +6 -0
  1961. package/lib/routes/jin10/topic.ts +76 -0
  1962. package/lib/routes/jingzhengu/namespace.ts +6 -0
  1963. package/lib/routes/jingzhengu/news.ts +77 -0
  1964. package/lib/routes/jingzhengu/types.ts +39 -0
  1965. package/lib/routes/jingzhengu/utils.ts +35 -0
  1966. package/lib/routes/jinritemai/docs.ts +74 -0
  1967. package/lib/routes/jinritemai/namespace.ts +6 -0
  1968. package/lib/routes/jinse/catalogue.ts +131 -0
  1969. package/lib/routes/jinse/lives.ts +112 -0
  1970. package/lib/routes/jinse/namespace.ts +6 -0
  1971. package/lib/routes/jinse/templates/description.art +34 -0
  1972. package/lib/routes/jinse/timeline.ts +123 -0
  1973. package/lib/routes/jisilu/index.ts +133 -0
  1974. package/lib/routes/jisilu/namespace.ts +6 -0
  1975. package/lib/routes/jiuyangongshe/community.ts +147 -0
  1976. package/lib/routes/jiuyangongshe/namespace.ts +7 -0
  1977. package/lib/routes/jiuyangongshe/templates/community-description.art +4 -0
  1978. package/lib/routes/jjwxc/author.ts +90 -0
  1979. package/lib/routes/jjwxc/book.ts +130 -0
  1980. package/lib/routes/jjwxc/namespace.ts +6 -0
  1981. package/lib/routes/jjwxc/templates/author.art +28 -0
  1982. package/lib/routes/jjwxc/templates/book.art +44 -0
  1983. package/lib/routes/jlu/ccst/xwzx/index.ts +63 -0
  1984. package/lib/routes/jlu/jwc.ts +55 -0
  1985. package/lib/routes/jlu/namespace.ts +6 -0
  1986. package/lib/routes/joins/chinese.ts +218 -0
  1987. package/lib/routes/joins/namespace.ts +8 -0
  1988. package/lib/routes/joins/templates/description.art +17 -0
  1989. package/lib/routes/jornada/index.ts +93 -0
  1990. package/lib/routes/jornada/namespace.ts +6 -0
  1991. package/lib/routes/jou/home.ts +43 -0
  1992. package/lib/routes/jou/namespace.ts +6 -0
  1993. package/lib/routes/jou/utils/index.ts +69 -0
  1994. package/lib/routes/jou/yz.ts +43 -0
  1995. package/lib/routes/jpxgmn/namespace.ts +6 -0
  1996. package/lib/routes/jpxgmn/search.ts +45 -0
  1997. package/lib/routes/jpxgmn/tab.ts +57 -0
  1998. package/lib/routes/jpxgmn/templates/description.art +3 -0
  1999. package/lib/routes/jpxgmn/utils.ts +36 -0
  2000. package/lib/routes/jpxgmn/weekly.ts +54 -0
  2001. package/lib/routes/jseea/namespace.ts +6 -0
  2002. package/lib/routes/jseea/news.ts +79 -0
  2003. package/lib/routes/jsu/cxzx.ts +84 -0
  2004. package/lib/routes/jsu/jwc.ts +82 -0
  2005. package/lib/routes/jsu/math.ts +61 -0
  2006. package/lib/routes/jsu/namespace.ts +6 -0
  2007. package/lib/routes/jsu/rjxy.ts +63 -0
  2008. package/lib/routes/jsu/universityindex.ts +68 -0
  2009. package/lib/routes/jsu/utils/index.ts +50 -0
  2010. package/lib/routes/juejin/books.ts +56 -0
  2011. package/lib/routes/juejin/category.ts +62 -0
  2012. package/lib/routes/juejin/collection.ts +51 -0
  2013. package/lib/routes/juejin/column.ts +56 -0
  2014. package/lib/routes/juejin/dynamic.ts +114 -0
  2015. package/lib/routes/juejin/favorites.ts +65 -0
  2016. package/lib/routes/juejin/namespace.ts +6 -0
  2017. package/lib/routes/juejin/pins.ts +89 -0
  2018. package/lib/routes/juejin/posts.ts +50 -0
  2019. package/lib/routes/juejin/tag.ts +65 -0
  2020. package/lib/routes/juejin/trending.ts +118 -0
  2021. package/lib/routes/juejin/utils.ts +55 -0
  2022. package/lib/routes/jump/discount.ts +157 -0
  2023. package/lib/routes/jump/namespace.ts +6 -0
  2024. package/lib/routes/junhe/legal-updates.ts +98 -0
  2025. package/lib/routes/junhe/namespace.ts +8 -0
  2026. package/lib/routes/kadokawa/blog.ts +134 -0
  2027. package/lib/routes/kadokawa/namespace.ts +8 -0
  2028. package/lib/routes/kadokawa/templates/description.art +21 -0
  2029. package/lib/routes/kakuyomu/namespace.ts +6 -0
  2030. package/lib/routes/kakuyomu/types.ts +6 -0
  2031. package/lib/routes/kakuyomu/works.ts +73 -0
  2032. package/lib/routes/kamen-rider-official/namespace.ts +6 -0
  2033. package/lib/routes/kamen-rider-official/news.ts +165 -0
  2034. package/lib/routes/kantarworldpanel/index.ts +108 -0
  2035. package/lib/routes/kantarworldpanel/namespace.ts +6 -0
  2036. package/lib/routes/kanxue/namespace.ts +6 -0
  2037. package/lib/routes/kanxue/topic.ts +153 -0
  2038. package/lib/routes/kaopu/namespace.ts +6 -0
  2039. package/lib/routes/kaopu/news.ts +51 -0
  2040. package/lib/routes/kbs/namespace.ts +6 -0
  2041. package/lib/routes/kbs/news.ts +97 -0
  2042. package/lib/routes/kbs/today.ts +86 -0
  2043. package/lib/routes/kcna/namespace.ts +6 -0
  2044. package/lib/routes/kcna/news.ts +124 -0
  2045. package/lib/routes/kcna/utils.ts +60 -0
  2046. package/lib/routes/ke/namespace.ts +6 -0
  2047. package/lib/routes/ke/results.ts +61 -0
  2048. package/lib/routes/keep/namespace.ts +6 -0
  2049. package/lib/routes/keep/user.ts +84 -0
  2050. package/lib/routes/keepass/namespace.ts +6 -0
  2051. package/lib/routes/keepass/news.ts +55 -0
  2052. package/lib/routes/kelownacapnews/namespace.ts +6 -0
  2053. package/lib/routes/kelownacapnews/news.ts +93 -0
  2054. package/lib/routes/kemono/index.ts +190 -0
  2055. package/lib/routes/kemono/namespace.ts +6 -0
  2056. package/lib/routes/kemono/templates/source.art +24 -0
  2057. package/lib/routes/kepu/live.ts +118 -0
  2058. package/lib/routes/kepu/namespace.ts +6 -0
  2059. package/lib/routes/kepu/templates/description.art +33 -0
  2060. package/lib/routes/keylol/index.ts +213 -0
  2061. package/lib/routes/keylol/namespace.ts +6 -0
  2062. package/lib/routes/kimlaw/namespace.ts +6 -0
  2063. package/lib/routes/kimlaw/thesis.ts +70 -0
  2064. package/lib/routes/konghq/blog-posts.ts +78 -0
  2065. package/lib/routes/konghq/namespace.ts +7 -0
  2066. package/lib/routes/kpmg/insights.ts +143 -0
  2067. package/lib/routes/kpmg/namespace.ts +10 -0
  2068. package/lib/routes/kpmg/templates/description.art +11 -0
  2069. package/lib/routes/kuaidi100/index.ts +72 -0
  2070. package/lib/routes/kuaidi100/namespace.ts +6 -0
  2071. package/lib/routes/kuaidi100/supported-company.ts +41 -0
  2072. package/lib/routes/kuaidi100/utils.ts +260 -0
  2073. package/lib/routes/kunchengblog/essay.ts +91 -0
  2074. package/lib/routes/kunchengblog/namespace.ts +6 -0
  2075. package/lib/routes/kurogames/namespace.ts +7 -0
  2076. package/lib/routes/kurogames/wutheringwaves/news.ts +59 -0
  2077. package/lib/routes/kuwaitlocal/index.ts +75 -0
  2078. package/lib/routes/kuwaitlocal/namespace.ts +6 -0
  2079. package/lib/routes/kyodonews/index.ts +149 -0
  2080. package/lib/routes/kyodonews/namespace.ts +6 -0
  2081. package/lib/routes/laimanhua/index.ts +65 -0
  2082. package/lib/routes/laimanhua/namespace.ts +6 -0
  2083. package/lib/routes/lala/namespace.ts +6 -0
  2084. package/lib/routes/lala/rss.ts +48 -0
  2085. package/lib/routes/lang/namespace.ts +6 -0
  2086. package/lib/routes/lang/room.ts +67 -0
  2087. package/lib/routes/lanqiao/author.ts +86 -0
  2088. package/lib/routes/lanqiao/courses.ts +82 -0
  2089. package/lib/routes/lanqiao/namespace.ts +6 -0
  2090. package/lib/routes/lanqiao/questions.ts +80 -0
  2091. package/lib/routes/lanqiao/utils.ts +13 -0
  2092. package/lib/routes/laohu8/namespace.ts +6 -0
  2093. package/lib/routes/laohu8/personal.ts +57 -0
  2094. package/lib/routes/latepost/index.ts +132 -0
  2095. package/lib/routes/latepost/namespace.ts +6 -0
  2096. package/lib/routes/layoffs/index.ts +150 -0
  2097. package/lib/routes/layoffs/namespace.ts +6 -0
  2098. package/lib/routes/learnblockchain/namespace.ts +6 -0
  2099. package/lib/routes/learnblockchain/posts.ts +81 -0
  2100. package/lib/routes/learnku/namespace.ts +6 -0
  2101. package/lib/routes/learnku/topic.ts +104 -0
  2102. package/lib/routes/leetcode/articles.ts +109 -0
  2103. package/lib/routes/leetcode/dailyquestion-cn.ts +132 -0
  2104. package/lib/routes/leetcode/dailyquestion-en.ts +133 -0
  2105. package/lib/routes/leetcode/dailyquestion-solution-cn.ts +201 -0
  2106. package/lib/routes/leetcode/dailyquestion-solution-en.ts +231 -0
  2107. package/lib/routes/leetcode/namespace.ts +6 -0
  2108. package/lib/routes/leiphone/index.ts +41 -0
  2109. package/lib/routes/leiphone/namespace.ts +6 -0
  2110. package/lib/routes/leiphone/newsflash.ts +45 -0
  2111. package/lib/routes/leiphone/utils.ts +39 -0
  2112. package/lib/routes/lemmy/index.ts +89 -0
  2113. package/lib/routes/lemmy/namespace.ts +5 -0
  2114. package/lib/routes/lfsyd/home.ts +68 -0
  2115. package/lib/routes/lfsyd/namespace.ts +6 -0
  2116. package/lib/routes/lfsyd/old-home.ts +55 -0
  2117. package/lib/routes/lfsyd/tag.ts +79 -0
  2118. package/lib/routes/lfsyd/user.ts +63 -0
  2119. package/lib/routes/lfsyd/utils.ts +103 -0
  2120. package/lib/routes/lianxh/index.ts +116 -0
  2121. package/lib/routes/lianxh/namespace.ts +7 -0
  2122. package/lib/routes/lifeweek/channel.ts +40 -0
  2123. package/lib/routes/lifeweek/namespace.ts +6 -0
  2124. package/lib/routes/lifeweek/tag.ts +39 -0
  2125. package/lib/routes/lifeweek/utils.ts +18 -0
  2126. package/lib/routes/lightnovel/light-novel.ts +78 -0
  2127. package/lib/routes/lightnovel/namespace.ts +6 -0
  2128. package/lib/routes/line/namespace.ts +6 -0
  2129. package/lib/routes/line/publisher.ts +68 -0
  2130. package/lib/routes/line/today.ts +66 -0
  2131. package/lib/routes/line/utils.ts +56 -0
  2132. package/lib/routes/link3/events.ts +86 -0
  2133. package/lib/routes/link3/namespace.ts +6 -0
  2134. package/lib/routes/link3/profile.ts +143 -0
  2135. package/lib/routes/linkedin/cn/index.ts +46 -0
  2136. package/lib/routes/linkedin/cn/renderer.ts +177 -0
  2137. package/lib/routes/linkedin/cn/utils.ts +123 -0
  2138. package/lib/routes/linkedin/jobs.ts +139 -0
  2139. package/lib/routes/linkedin/models.ts +13 -0
  2140. package/lib/routes/linkedin/namespace.ts +6 -0
  2141. package/lib/routes/linkedin/utils.ts +126 -0
  2142. package/lib/routes/linkresearcher/index.ts +76 -0
  2143. package/lib/routes/linkresearcher/namespace.ts +6 -0
  2144. package/lib/routes/linovelib/namespace.ts +6 -0
  2145. package/lib/routes/linovelib/novel.ts +52 -0
  2146. package/lib/routes/linovelib/volume.ts +36 -0
  2147. package/lib/routes/liquipedia/cs-matches.ts +60 -0
  2148. package/lib/routes/liquipedia/dota2-matches.ts +71 -0
  2149. package/lib/routes/liquipedia/namespace.ts +6 -0
  2150. package/lib/routes/literotica/category.ts +69 -0
  2151. package/lib/routes/literotica/namespace.ts +6 -0
  2152. package/lib/routes/literotica/new.ts +85 -0
  2153. package/lib/routes/liulinblog/index.ts +107 -0
  2154. package/lib/routes/liulinblog/itnews.ts +13 -0
  2155. package/lib/routes/liulinblog/namespace.ts +6 -0
  2156. package/lib/routes/liveuamap/index.ts +63 -0
  2157. package/lib/routes/liveuamap/namespace.ts +6 -0
  2158. package/lib/routes/lkong/forum.ts +72 -0
  2159. package/lib/routes/lkong/namespace.ts +6 -0
  2160. package/lib/routes/lkong/query.ts +83 -0
  2161. package/lib/routes/lkong/thread.ts +73 -0
  2162. package/lib/routes/lmu/jobs.ts +96 -0
  2163. package/lib/routes/lmu/namespace.ts +17 -0
  2164. package/lib/routes/lmu/templates/jobPosting.art +11 -0
  2165. package/lib/routes/lofter/namespace.ts +6 -0
  2166. package/lib/routes/lofter/tag.ts +116 -0
  2167. package/lib/routes/lofter/user.ts +82 -0
  2168. package/lib/routes/logclub/index.ts +144 -0
  2169. package/lib/routes/logclub/namespace.ts +6 -0
  2170. package/lib/routes/logclub/report.ts +124 -0
  2171. package/lib/routes/logonews/index.ts +96 -0
  2172. package/lib/routes/logonews/namespace.ts +6 -0
  2173. package/lib/routes/loltw/namespace.ts +6 -0
  2174. package/lib/routes/loltw/news.ts +62 -0
  2175. package/lib/routes/loongarch/namespace.ts +6 -0
  2176. package/lib/routes/loongarch/post.ts +59 -0
  2177. package/lib/routes/lovelive-anime/namespace.ts +6 -0
  2178. package/lib/routes/lovelive-anime/news.ts +86 -0
  2179. package/lib/routes/lovelive-anime/schedules.ts +67 -0
  2180. package/lib/routes/lovelive-anime/topics.ts +113 -0
  2181. package/lib/routes/lrepacks/index.ts +201 -0
  2182. package/lib/routes/lrepacks/namespace.ts +8 -0
  2183. package/lib/routes/lrepacks/templates/description.art +21 -0
  2184. package/lib/routes/lsnu/jiaowc/tzgg.ts +82 -0
  2185. package/lib/routes/lsnu/namespace.ts +6 -0
  2186. package/lib/routes/luma/index.ts +92 -0
  2187. package/lib/routes/luma/namespace.ts +6 -0
  2188. package/lib/routes/luogu/contest.ts +99 -0
  2189. package/lib/routes/luogu/daily.ts +64 -0
  2190. package/lib/routes/luogu/namespace.ts +6 -0
  2191. package/lib/routes/luogu/user-blog.ts +73 -0
  2192. package/lib/routes/luogu/user-feed.ts +57 -0
  2193. package/lib/routes/luolei/index.ts +149 -0
  2194. package/lib/routes/luolei/namespace.ts +8 -0
  2195. package/lib/routes/luolei/templates/description.art +19 -0
  2196. package/lib/routes/luxiangdong/archive.ts +53 -0
  2197. package/lib/routes/luxiangdong/namespace.ts +6 -0
  2198. package/lib/routes/lvv2/namespace.ts +6 -0
  2199. package/lib/routes/lvv2/news.ts +104 -0
  2200. package/lib/routes/lvv2/top.ts +106 -0
  2201. package/lib/routes/lxixsxa/discography.ts +82 -0
  2202. package/lib/routes/lxixsxa/information.ts +76 -0
  2203. package/lib/routes/lxixsxa/jsonp-helper.ts +17 -0
  2204. package/lib/routes/lxixsxa/namespace.ts +6 -0
  2205. package/lib/routes/m4/index.ts +99 -0
  2206. package/lib/routes/m4/namespace.ts +6 -0
  2207. package/lib/routes/m4/templates/description.art +21 -0
  2208. package/lib/routes/maccms/index.ts +72 -0
  2209. package/lib/routes/maccms/namespace.ts +9 -0
  2210. package/lib/routes/maccms/templates/vod.art +12 -0
  2211. package/lib/routes/maccms/type.ts +102 -0
  2212. package/lib/routes/macfilos/blog.ts +87 -0
  2213. package/lib/routes/macfilos/namespace.ts +6 -0
  2214. package/lib/routes/macmenubar/namespace.ts +6 -0
  2215. package/lib/routes/macmenubar/recently.ts +66 -0
  2216. package/lib/routes/macupdate/app.ts +67 -0
  2217. package/lib/routes/macupdate/namespace.ts +6 -0
  2218. package/lib/routes/magazinelib/latest-magazine.ts +78 -0
  2219. package/lib/routes/magazinelib/namespace.ts +6 -0
  2220. package/lib/routes/magnumphotos/magazine.ts +63 -0
  2221. package/lib/routes/magnumphotos/namespace.ts +6 -0
  2222. package/lib/routes/mail/imap.ts +109 -0
  2223. package/lib/routes/mail/namespace.ts +5 -0
  2224. package/lib/routes/mangadex/index.ts +84 -0
  2225. package/lib/routes/mangadex/namespace.ts +6 -0
  2226. package/lib/routes/manhuagui/comic.ts +139 -0
  2227. package/lib/routes/manhuagui/namespace.ts +6 -0
  2228. package/lib/routes/manhuagui/subscribe.ts +92 -0
  2229. package/lib/routes/manyvids/namespace.ts +7 -0
  2230. package/lib/routes/manyvids/templates/video.art +3 -0
  2231. package/lib/routes/manyvids/types.ts +89 -0
  2232. package/lib/routes/manyvids/video.ts +51 -0
  2233. package/lib/routes/mastodon/account-id.ts +30 -0
  2234. package/lib/routes/mastodon/acct.ts +40 -0
  2235. package/lib/routes/mastodon/namespace.ts +14 -0
  2236. package/lib/routes/mastodon/timeline-local.ts +43 -0
  2237. package/lib/routes/mastodon/timeline-remote.ts +43 -0
  2238. package/lib/routes/mastodon/utils.ts +135 -0
  2239. package/lib/routes/matters/author.ts +63 -0
  2240. package/lib/routes/matters/latest.ts +74 -0
  2241. package/lib/routes/matters/namespace.ts +7 -0
  2242. package/lib/routes/matters/tags.ts +85 -0
  2243. package/lib/routes/matters/utils.ts +30 -0
  2244. package/lib/routes/mckinsey/cn/category-map.ts +77 -0
  2245. package/lib/routes/mckinsey/cn/index.ts +73 -0
  2246. package/lib/routes/mckinsey/namespace.ts +6 -0
  2247. package/lib/routes/mcmod/index.ts +105 -0
  2248. package/lib/routes/mcmod/namespace.ts +6 -0
  2249. package/lib/routes/mcmod/templates/mod.art +13 -0
  2250. package/lib/routes/mdpi/journal.ts +92 -0
  2251. package/lib/routes/mdpi/namespace.ts +6 -0
  2252. package/lib/routes/medieval-china/namespace.ts +6 -0
  2253. package/lib/routes/medieval-china/post.ts +60 -0
  2254. package/lib/routes/medium/following.ts +59 -0
  2255. package/lib/routes/medium/for-you.ts +59 -0
  2256. package/lib/routes/medium/graphql.ts +185 -0
  2257. package/lib/routes/medium/list.ts +58 -0
  2258. package/lib/routes/medium/namespace.ts +6 -0
  2259. package/lib/routes/medium/parse-article.ts +61 -0
  2260. package/lib/routes/medium/tag.ts +62 -0
  2261. package/lib/routes/medsci/index.ts +128 -0
  2262. package/lib/routes/medsci/namespace.ts +6 -0
  2263. package/lib/routes/meituan/namespace.ts +6 -0
  2264. package/lib/routes/meituan/tech.ts +67 -0
  2265. package/lib/routes/metacritic/index.ts +142 -0
  2266. package/lib/routes/metacritic/namespace.ts +6 -0
  2267. package/lib/routes/metacritic/release.ts +54 -0
  2268. package/lib/routes/metacritic/util.ts +39 -0
  2269. package/lib/routes/meteor/boards.ts +37 -0
  2270. package/lib/routes/meteor/index.ts +65 -0
  2271. package/lib/routes/meteor/namespace.ts +6 -0
  2272. package/lib/routes/meteor/utils.ts +89 -0
  2273. package/lib/routes/metmuseum/exhibitions.ts +39 -0
  2274. package/lib/routes/metmuseum/namespace.ts +6 -0
  2275. package/lib/routes/metrics.ts +12 -0
  2276. package/lib/routes/mi/crowdfunding.ts +37 -0
  2277. package/lib/routes/mi/golden.ts +32 -0
  2278. package/lib/routes/mi/namespace.ts +6 -0
  2279. package/lib/routes/microsoft/addon.ts +56 -0
  2280. package/lib/routes/microsoft/mcr.ts +63 -0
  2281. package/lib/routes/microsoft/namespace.ts +6 -0
  2282. package/lib/routes/mihoyo/bbs/cache.ts +42 -0
  2283. package/lib/routes/mihoyo/bbs/follow-list.ts +72 -0
  2284. package/lib/routes/mihoyo/bbs/img-ranking.ts +144 -0
  2285. package/lib/routes/mihoyo/bbs/official.ts +166 -0
  2286. package/lib/routes/mihoyo/bbs/static-data.ts +141 -0
  2287. package/lib/routes/mihoyo/bbs/timeline.ts +74 -0
  2288. package/lib/routes/mihoyo/bbs/user-post.ts +51 -0
  2289. package/lib/routes/mihoyo/bbs/utils.ts +37 -0
  2290. package/lib/routes/mihoyo/namespace.ts +6 -0
  2291. package/lib/routes/mihoyo/sr/news.ts +100 -0
  2292. package/lib/routes/mihoyo/templates/official.art +7 -0
  2293. package/lib/routes/mihoyo/ys/news.ts +195 -0
  2294. package/lib/routes/mindmeister/example.ts +95 -0
  2295. package/lib/routes/mindmeister/namespace.ts +6 -0
  2296. package/lib/routes/minecraft/blockedservers.ts +52 -0
  2297. package/lib/routes/minecraft/java-runtime.ts +127 -0
  2298. package/lib/routes/minecraft/namespace.ts +6 -0
  2299. package/lib/routes/minecraft/version.ts +137 -0
  2300. package/lib/routes/mingpao/index.ts +111 -0
  2301. package/lib/routes/mingpao/namespace.ts +6 -0
  2302. package/lib/routes/mingpao/templates/fancybox.art +7 -0
  2303. package/lib/routes/miniflux/entry.ts +315 -0
  2304. package/lib/routes/miniflux/namespace.ts +6 -0
  2305. package/lib/routes/miniflux/subscription.ts +129 -0
  2306. package/lib/routes/mirror/index.ts +62 -0
  2307. package/lib/routes/mirror/namespace.ts +6 -0
  2308. package/lib/routes/mirrormedia/category.ts +101 -0
  2309. package/lib/routes/mirrormedia/index.ts +43 -0
  2310. package/lib/routes/mirrormedia/namespace.ts +6 -0
  2311. package/lib/routes/mirrormedia/utils.ts +19 -0
  2312. package/lib/routes/missav/namespace.ts +6 -0
  2313. package/lib/routes/missav/new.ts +64 -0
  2314. package/lib/routes/missav/templates/preview.art +3 -0
  2315. package/lib/routes/misskey/featured-notes.ts +49 -0
  2316. package/lib/routes/misskey/namespace.ts +6 -0
  2317. package/lib/routes/misskey/user-timeline.ts +42 -0
  2318. package/lib/routes/misskey/utils.ts +71 -0
  2319. package/lib/routes/mittrchina/index.ts +125 -0
  2320. package/lib/routes/mittrchina/namespace.ts +6 -0
  2321. package/lib/routes/miui/community/user.ts +69 -0
  2322. package/lib/routes/miui/firmware/index.ts +55 -0
  2323. package/lib/routes/miui/namespace.ts +6 -0
  2324. package/lib/routes/mixcloud/index.ts +156 -0
  2325. package/lib/routes/mixcloud/namespace.ts +6 -0
  2326. package/lib/routes/mixcloud/queries.ts +2274 -0
  2327. package/lib/routes/modb/namespace.ts +6 -0
  2328. package/lib/routes/modb/topic.ts +78 -0
  2329. package/lib/routes/modelscope/community.ts +84 -0
  2330. package/lib/routes/modelscope/datasets.ts +85 -0
  2331. package/lib/routes/modelscope/models.ts +72 -0
  2332. package/lib/routes/modelscope/namespace.ts +6 -0
  2333. package/lib/routes/modelscope/studios.ts +87 -0
  2334. package/lib/routes/modian/namespace.ts +6 -0
  2335. package/lib/routes/modian/zhongchou.ts +101 -0
  2336. package/lib/routes/modrinth/api.d.ts +101 -0
  2337. package/lib/routes/modrinth/namespace.ts +6 -0
  2338. package/lib/routes/modrinth/templates/version.art +8 -0
  2339. package/lib/routes/modrinth/versions.ts +127 -0
  2340. package/lib/routes/mohw/clarification.ts +76 -0
  2341. package/lib/routes/mohw/namespace.ts +6 -0
  2342. package/lib/routes/mox/index.ts +117 -0
  2343. package/lib/routes/mox/namespace.ts +6 -0
  2344. package/lib/routes/mpaypass/main.ts +79 -0
  2345. package/lib/routes/mpaypass/namespace.ts +6 -0
  2346. package/lib/routes/mpaypass/news.ts +65 -0
  2347. package/lib/routes/mrdx/daily.ts +105 -0
  2348. package/lib/routes/mrdx/namespace.ts +6 -0
  2349. package/lib/routes/mrdx/utils.ts +15 -0
  2350. package/lib/routes/mrm/index.ts +65 -0
  2351. package/lib/routes/mrm/namespace.ts +6 -0
  2352. package/lib/routes/mvm/index.ts +86 -0
  2353. package/lib/routes/mvm/namespace.ts +6 -0
  2354. package/lib/routes/my-formosa/index.ts +78 -0
  2355. package/lib/routes/my-formosa/namespace.ts +6 -0
  2356. package/lib/routes/mydrivers/cid.ts +47 -0
  2357. package/lib/routes/mydrivers/index.ts +73 -0
  2358. package/lib/routes/mydrivers/namespace.ts +6 -0
  2359. package/lib/routes/mydrivers/rank.ts +70 -0
  2360. package/lib/routes/mydrivers/util.ts +116 -0
  2361. package/lib/routes/myfans/namespace.ts +6 -0
  2362. package/lib/routes/myfans/post.ts +64 -0
  2363. package/lib/routes/myfans/templates/post.art +8 -0
  2364. package/lib/routes/myfans/types.ts +104 -0
  2365. package/lib/routes/myfans/utils.ts +39 -0
  2366. package/lib/routes/myfigurecollection/activity.ts +124 -0
  2367. package/lib/routes/myfigurecollection/index.ts +115 -0
  2368. package/lib/routes/myfigurecollection/namespace.ts +6 -0
  2369. package/lib/routes/mygopen/index.ts +55 -0
  2370. package/lib/routes/mygopen/namespace.ts +6 -0
  2371. package/lib/routes/mymusicsheet/namespace.ts +6 -0
  2372. package/lib/routes/mymusicsheet/usersheets.ts +149 -0
  2373. package/lib/routes/mysql/namespace.ts +6 -0
  2374. package/lib/routes/mysql/release.ts +84 -0
  2375. package/lib/routes/nasa/apod-cn.ts +52 -0
  2376. package/lib/routes/nasa/apod-ncku.ts +77 -0
  2377. package/lib/routes/nasa/apod.ts +78 -0
  2378. package/lib/routes/nasa/namespace.ts +6 -0
  2379. package/lib/routes/natgeo/dailyphoto.ts +61 -0
  2380. package/lib/routes/natgeo/dailyselection.ts +49 -0
  2381. package/lib/routes/natgeo/namespace.ts +6 -0
  2382. package/lib/routes/natgeo/natgeo.ts +82 -0
  2383. package/lib/routes/nationalgeographic/latest-stories.ts +85 -0
  2384. package/lib/routes/nationalgeographic/namespace.ts +6 -0
  2385. package/lib/routes/nationalgeographic/templates/stories.art +44 -0
  2386. package/lib/routes/nature/cover.ts +94 -0
  2387. package/lib/routes/nature/highlight.ts +50 -0
  2388. package/lib/routes/nature/namespace.ts +9 -0
  2389. package/lib/routes/nature/news-and-comment.ts +52 -0
  2390. package/lib/routes/nature/news.ts +56 -0
  2391. package/lib/routes/nature/research.ts +80 -0
  2392. package/lib/routes/nature/siteindex.ts +68 -0
  2393. package/lib/routes/nature/utils.ts +1093 -0
  2394. package/lib/routes/nautil/namespace.ts +6 -0
  2395. package/lib/routes/nautil/topics.ts +86 -0
  2396. package/lib/routes/nbd/daily.ts +28 -0
  2397. package/lib/routes/nbd/index.ts +84 -0
  2398. package/lib/routes/nbd/namespace.ts +6 -0
  2399. package/lib/routes/nber/all.ts +19 -0
  2400. package/lib/routes/nber/common.ts +52 -0
  2401. package/lib/routes/nber/namespace.ts +7 -0
  2402. package/lib/routes/nber/new.ts +20 -0
  2403. package/lib/routes/ncc-cma/cmdp.ts +349 -0
  2404. package/lib/routes/ncc-cma/namespace.ts +8 -0
  2405. package/lib/routes/ncc-cma/templates/description.art +9 -0
  2406. package/lib/routes/ncepu/master/masterinfo.ts +96 -0
  2407. package/lib/routes/ncepu/namespace.ts +6 -0
  2408. package/lib/routes/ncpssd/namespace.ts +6 -0
  2409. package/lib/routes/ncpssd/newlist.ts +98 -0
  2410. package/lib/routes/ncu/jwc.ts +69 -0
  2411. package/lib/routes/ncu/namespace.ts +6 -0
  2412. package/lib/routes/ncwu/namespace.ts +6 -0
  2413. package/lib/routes/ncwu/notice.ts +52 -0
  2414. package/lib/routes/ndss-symposium/namespace.ts +6 -0
  2415. package/lib/routes/ndss-symposium/ndss.ts +107 -0
  2416. package/lib/routes/neatdownloadmanager/download.ts +71 -0
  2417. package/lib/routes/neatdownloadmanager/namespace.ts +6 -0
  2418. package/lib/routes/neea/index.ts +147 -0
  2419. package/lib/routes/neea/jlpt.ts +75 -0
  2420. package/lib/routes/neea/namespace.ts +6 -0
  2421. package/lib/routes/nenu/namespace.ts +6 -0
  2422. package/lib/routes/nenu/sohac.ts +70 -0
  2423. package/lib/routes/nenu/yjsy.ts +74 -0
  2424. package/lib/routes/netflav/index.ts +57 -0
  2425. package/lib/routes/netflav/namespace.ts +6 -0
  2426. package/lib/routes/neu/bmie.ts +131 -0
  2427. package/lib/routes/neu/namespace.ts +6 -0
  2428. package/lib/routes/neu/news.ts +86 -0
  2429. package/lib/routes/newmuseum/exhibitions.ts +46 -0
  2430. package/lib/routes/newmuseum/namespace.ts +6 -0
  2431. package/lib/routes/newrank/douyin.ts +91 -0
  2432. package/lib/routes/newrank/namespace.ts +10 -0
  2433. package/lib/routes/newrank/utils.ts +106 -0
  2434. package/lib/routes/newrank/wechat.ts +90 -0
  2435. package/lib/routes/news/namespace.ts +6 -0
  2436. package/lib/routes/news/templates/description.art +21 -0
  2437. package/lib/routes/news/xhsxw.ts +110 -0
  2438. package/lib/routes/newsmarket/index.ts +95 -0
  2439. package/lib/routes/newsmarket/namespace.ts +6 -0
  2440. package/lib/routes/newyorker/namespace.ts +6 -0
  2441. package/lib/routes/newyorker/news.ts +69 -0
  2442. package/lib/routes/newzmz/index.ts +96 -0
  2443. package/lib/routes/newzmz/namespace.ts +6 -0
  2444. package/lib/routes/newzmz/util.ts +163 -0
  2445. package/lib/routes/nextapple/namespace.ts +6 -0
  2446. package/lib/routes/nextapple/realtime.ts +77 -0
  2447. package/lib/routes/nextjs/blog.ts +63 -0
  2448. package/lib/routes/nextjs/namespace.ts +6 -0
  2449. package/lib/routes/nga/forum.ts +92 -0
  2450. package/lib/routes/nga/namespace.ts +6 -0
  2451. package/lib/routes/nga/post.ts +141 -0
  2452. package/lib/routes/ngocn2/index.ts +85 -0
  2453. package/lib/routes/ngocn2/namespace.ts +6 -0
  2454. package/lib/routes/nhentai/index.ts +56 -0
  2455. package/lib/routes/nhentai/namespace.ts +7 -0
  2456. package/lib/routes/nhentai/search.ts +47 -0
  2457. package/lib/routes/nhentai/util.ts +146 -0
  2458. package/lib/routes/nhk/namespace.ts +6 -0
  2459. package/lib/routes/nhk/news-web-easy.ts +78 -0
  2460. package/lib/routes/nhk/news.ts +81 -0
  2461. package/lib/routes/niaogebiji/cat.ts +79 -0
  2462. package/lib/routes/niaogebiji/index.ts +57 -0
  2463. package/lib/routes/niaogebiji/namespace.ts +6 -0
  2464. package/lib/routes/niaogebiji/today.ts +60 -0
  2465. package/lib/routes/nifd/namespace.ts +6 -0
  2466. package/lib/routes/nifd/research.ts +75 -0
  2467. package/lib/routes/nikkei/asia/index.ts +70 -0
  2468. package/lib/routes/nikkei/cn/index.ts +137 -0
  2469. package/lib/routes/nikkei/index.ts +46 -0
  2470. package/lib/routes/nikkei/namespace.ts +6 -0
  2471. package/lib/routes/nikkei/news.ts +111 -0
  2472. package/lib/routes/nintendo/direct.ts +59 -0
  2473. package/lib/routes/nintendo/eshop-cn.ts +60 -0
  2474. package/lib/routes/nintendo/eshop-hk.ts +97 -0
  2475. package/lib/routes/nintendo/eshop-jp.ts +51 -0
  2476. package/lib/routes/nintendo/eshop-us.ts +49 -0
  2477. package/lib/routes/nintendo/namespace.ts +6 -0
  2478. package/lib/routes/nintendo/news-china.ts +62 -0
  2479. package/lib/routes/nintendo/news.ts +49 -0
  2480. package/lib/routes/nintendo/system-update.ts +63 -0
  2481. package/lib/routes/nintendo/utils.ts +166 -0
  2482. package/lib/routes/nippon/index.ts +59 -0
  2483. package/lib/routes/nippon/namespace.ts +6 -0
  2484. package/lib/routes/njglyy/namespace.ts +6 -0
  2485. package/lib/routes/njglyy/utils/index.ts +49 -0
  2486. package/lib/routes/njglyy/ygbjypx.ts +43 -0
  2487. package/lib/routes/njit/jwc.ts +129 -0
  2488. package/lib/routes/njit/namespace.ts +6 -0
  2489. package/lib/routes/njit/tzgg.ts +100 -0
  2490. package/lib/routes/njnu/ceai/ceai.ts +67 -0
  2491. package/lib/routes/njnu/ceai/utils.ts +53 -0
  2492. package/lib/routes/njnu/jwc/jwc.ts +66 -0
  2493. package/lib/routes/njnu/jwc/utils.ts +57 -0
  2494. package/lib/routes/njnu/namespace.ts +6 -0
  2495. package/lib/routes/nju/admission.ts +64 -0
  2496. package/lib/routes/nju/dafls.ts +62 -0
  2497. package/lib/routes/nju/exchangesys.ts +68 -0
  2498. package/lib/routes/nju/gra.ts +64 -0
  2499. package/lib/routes/nju/hosptial.ts +64 -0
  2500. package/lib/routes/nju/hqjt.ts +62 -0
  2501. package/lib/routes/nju/itsc.ts +69 -0
  2502. package/lib/routes/nju/jjc.ts +65 -0
  2503. package/lib/routes/nju/jw.ts +88 -0
  2504. package/lib/routes/nju/namespace.ts +6 -0
  2505. package/lib/routes/nju/rczp.ts +76 -0
  2506. package/lib/routes/nju/scit.ts +58 -0
  2507. package/lib/routes/nju/zbb.ts +101 -0
  2508. package/lib/routes/nju/zcc.ts +63 -0
  2509. package/lib/routes/njucm/grabs.ts +43 -0
  2510. package/lib/routes/njucm/namespace.ts +6 -0
  2511. package/lib/routes/njucm/utils/index.ts +46 -0
  2512. package/lib/routes/njuferret/blog.ts +41 -0
  2513. package/lib/routes/njuferret/namespace.ts +10 -0
  2514. package/lib/routes/njupt/jwc.ts +113 -0
  2515. package/lib/routes/njupt/namespace.ts +6 -0
  2516. package/lib/routes/njust/cwc.ts +62 -0
  2517. package/lib/routes/njust/dgxg.ts +63 -0
  2518. package/lib/routes/njust/eo.ts +83 -0
  2519. package/lib/routes/njust/eoe.ts +62 -0
  2520. package/lib/routes/njust/gs.ts +69 -0
  2521. package/lib/routes/njust/jwc.ts +64 -0
  2522. package/lib/routes/njust/namespace.ts +6 -0
  2523. package/lib/routes/njust/utils.ts +35 -0
  2524. package/lib/routes/njxzc/home.ts +51 -0
  2525. package/lib/routes/njxzc/lib.ts +51 -0
  2526. package/lib/routes/njxzc/namespace.ts +6 -0
  2527. package/lib/routes/njxzc/utils/index.ts +65 -0
  2528. package/lib/routes/nlc/namespace.ts +6 -0
  2529. package/lib/routes/nlc/read.ts +95 -0
  2530. package/lib/routes/nlc/templates/description.art +17 -0
  2531. package/lib/routes/nltimes/namespace.ts +6 -0
  2532. package/lib/routes/nltimes/news.ts +118 -0
  2533. package/lib/routes/nmc/namespace.ts +6 -0
  2534. package/lib/routes/nmc/weatheralarm.ts +75 -0
  2535. package/lib/routes/nmtv/column.ts +78 -0
  2536. package/lib/routes/nmtv/namespace.ts +6 -0
  2537. package/lib/routes/nodejs/blog.ts +100 -0
  2538. package/lib/routes/nodejs/namespace.ts +6 -0
  2539. package/lib/routes/nogizaka46/blog.ts +103 -0
  2540. package/lib/routes/nogizaka46/namespace.ts +6 -0
  2541. package/lib/routes/nogizaka46/news.ts +58 -0
  2542. package/lib/routes/nosec/index.ts +100 -0
  2543. package/lib/routes/nosec/namespace.ts +6 -0
  2544. package/lib/routes/notateslaapp/namespace.ts +6 -0
  2545. package/lib/routes/notateslaapp/update.ts +61 -0
  2546. package/lib/routes/notefolio/namespace.ts +6 -0
  2547. package/lib/routes/notefolio/search.ts +192 -0
  2548. package/lib/routes/notion/database.ts +206 -0
  2549. package/lib/routes/notion/namespace.ts +13 -0
  2550. package/lib/routes/notion/release.ts +81 -0
  2551. package/lib/routes/now/namespace.ts +6 -0
  2552. package/lib/routes/now/news.ts +104 -0
  2553. package/lib/routes/nowcoder/discuss.ts +80 -0
  2554. package/lib/routes/nowcoder/experience.ts +80 -0
  2555. package/lib/routes/nowcoder/jobcenter.ts +103 -0
  2556. package/lib/routes/nowcoder/namespace.ts +6 -0
  2557. package/lib/routes/nowcoder/recommend.ts +45 -0
  2558. package/lib/routes/nowcoder/schedule.ts +58 -0
  2559. package/lib/routes/npm/namespace.ts +6 -0
  2560. package/lib/routes/npm/package.ts +61 -0
  2561. package/lib/routes/npr/full.ts +108 -0
  2562. package/lib/routes/npr/namespace.ts +6 -0
  2563. package/lib/routes/ntdm/namespace.ts +6 -0
  2564. package/lib/routes/ntdm/utils.ts +3 -0
  2565. package/lib/routes/ntdm/video.ts +57 -0
  2566. package/lib/routes/ntdtv/channel.ts +72 -0
  2567. package/lib/routes/ntdtv/namespace.ts +6 -0
  2568. package/lib/routes/nua/dc.ts +96 -0
  2569. package/lib/routes/nua/gra.ts +50 -0
  2570. package/lib/routes/nua/index.ts +50 -0
  2571. package/lib/routes/nua/lib.ts +70 -0
  2572. package/lib/routes/nua/namespace.ts +6 -0
  2573. package/lib/routes/nua/sxw.ts +53 -0
  2574. package/lib/routes/nua/utils.ts +73 -0
  2575. package/lib/routes/nuaa/college/cae.ts +88 -0
  2576. package/lib/routes/nuaa/college/cs.ts +101 -0
  2577. package/lib/routes/nuaa/jwc/jwc.ts +99 -0
  2578. package/lib/routes/nuaa/namespace.ts +6 -0
  2579. package/lib/routes/nuaa/utils/pypasswaf.ts +23 -0
  2580. package/lib/routes/nuaa/yjsy/yjsy.ts +97 -0
  2581. package/lib/routes/nudt/namespace.ts +6 -0
  2582. package/lib/routes/nudt/yjszs.ts +68 -0
  2583. package/lib/routes/nuist/bulletin.ts +97 -0
  2584. package/lib/routes/nuist/cas.ts +94 -0
  2585. package/lib/routes/nuist/jwc.ts +66 -0
  2586. package/lib/routes/nuist/library/lib.ts +58 -0
  2587. package/lib/routes/nuist/namespace.ts +19 -0
  2588. package/lib/routes/nuist/scs.ts +78 -0
  2589. package/lib/routes/nuist/sese.ts +68 -0
  2590. package/lib/routes/nuist/xgc.ts +75 -0
  2591. package/lib/routes/nuist/yjs.ts +70 -0
  2592. package/lib/routes/nwafu/all.ts +68 -0
  2593. package/lib/routes/nwafu/namespace.ts +6 -0
  2594. package/lib/routes/nwafu/utils.ts +33 -0
  2595. package/lib/routes/nyaa/main.ts +63 -0
  2596. package/lib/routes/nyaa/namespace.ts +16 -0
  2597. package/lib/routes/nymity/censorbib.ts +51 -0
  2598. package/lib/routes/nymity/namespace.ts +6 -0
  2599. package/lib/routes/nytimes/book.ts +110 -0
  2600. package/lib/routes/nytimes/daily-briefing-chinese.ts +98 -0
  2601. package/lib/routes/nytimes/index.ts +155 -0
  2602. package/lib/routes/nytimes/namespace.ts +6 -0
  2603. package/lib/routes/nytimes/utils.ts +111 -0
  2604. package/lib/routes/oceanengine/arithmetic-index.ts +159 -0
  2605. package/lib/routes/oceanengine/namespace.ts +6 -0
  2606. package/lib/routes/odaily/activity.ts +78 -0
  2607. package/lib/routes/odaily/namespace.ts +6 -0
  2608. package/lib/routes/odaily/newsflash.ts +51 -0
  2609. package/lib/routes/odaily/post.ts +92 -0
  2610. package/lib/routes/odaily/search-news.ts +50 -0
  2611. package/lib/routes/odaily/user.ts +83 -0
  2612. package/lib/routes/odaily/utils.ts +3 -0
  2613. package/lib/routes/oeeee/app/channel.ts +48 -0
  2614. package/lib/routes/oeeee/app/reporter.ts +54 -0
  2615. package/lib/routes/oeeee/namespace.ts +6 -0
  2616. package/lib/routes/oeeee/utils.ts +39 -0
  2617. package/lib/routes/oeeee/web.ts +61 -0
  2618. package/lib/routes/oilchem/index.ts +93 -0
  2619. package/lib/routes/oilchem/namespace.ts +6 -0
  2620. package/lib/routes/oilchem/routes.ts +671 -0
  2621. package/lib/routes/olevod/namespace.ts +6 -0
  2622. package/lib/routes/olevod/vod.ts +49 -0
  2623. package/lib/routes/olevod/vodlist.ts +48 -0
  2624. package/lib/routes/ollama/blog.ts +39 -0
  2625. package/lib/routes/ollama/models.ts +42 -0
  2626. package/lib/routes/ollama/namespace.ts +6 -0
  2627. package/lib/routes/oncc/index.ts +111 -0
  2628. package/lib/routes/oncc/money18.ts +141 -0
  2629. package/lib/routes/oncc/namespace.ts +6 -0
  2630. package/lib/routes/onehu/common.ts +36 -0
  2631. package/lib/routes/onehu/namespace.ts +6 -0
  2632. package/lib/routes/onet/namespace.ts +6 -0
  2633. package/lib/routes/onet/news.ts +86 -0
  2634. package/lib/routes/onet/templates/article.art +5 -0
  2635. package/lib/routes/onet/templates/image.art +9 -0
  2636. package/lib/routes/onet/utils.ts +51 -0
  2637. package/lib/routes/oo-software/changelog.ts +65 -0
  2638. package/lib/routes/oo-software/namespace.ts +6 -0
  2639. package/lib/routes/openai/blog.ts +66 -0
  2640. package/lib/routes/openai/chatgpt.ts +119 -0
  2641. package/lib/routes/openai/common.ts +73 -0
  2642. package/lib/routes/openai/namespace.ts +6 -0
  2643. package/lib/routes/openai/research.ts +51 -0
  2644. package/lib/routes/openwrt/namespace.ts +6 -0
  2645. package/lib/routes/openwrt/releases.ts +39 -0
  2646. package/lib/routes/orcid/index.ts +74 -0
  2647. package/lib/routes/orcid/namespace.ts +6 -0
  2648. package/lib/routes/oreno3d/get-sec-page-data.ts +75 -0
  2649. package/lib/routes/oreno3d/main.ts +183 -0
  2650. package/lib/routes/oreno3d/namespace.ts +9 -0
  2651. package/lib/routes/oschina/namespace.ts +6 -0
  2652. package/lib/routes/oschina/news.ts +139 -0
  2653. package/lib/routes/oschina/topic.ts +78 -0
  2654. package/lib/routes/oschina/user.ts +75 -0
  2655. package/lib/routes/oshwhub/explore.ts +145 -0
  2656. package/lib/routes/oshwhub/namespace.ts +6 -0
  2657. package/lib/routes/osu/beatmaps/packs.ts +54 -0
  2658. package/lib/routes/osu/namespace.ts +6 -0
  2659. package/lib/routes/otobanana/cast.ts +54 -0
  2660. package/lib/routes/otobanana/livestream.ts +54 -0
  2661. package/lib/routes/otobanana/namespace.ts +6 -0
  2662. package/lib/routes/otobanana/templates/description.art +11 -0
  2663. package/lib/routes/otobanana/timeline.ts +54 -0
  2664. package/lib/routes/otobanana/utils.ts +63 -0
  2665. package/lib/routes/ouc/hqsz.ts +90 -0
  2666. package/lib/routes/ouc/it-postgraduate.ts +52 -0
  2667. package/lib/routes/ouc/it-tx.ts +74 -0
  2668. package/lib/routes/ouc/it.ts +73 -0
  2669. package/lib/routes/ouc/jwc.ts +65 -0
  2670. package/lib/routes/ouc/jwgl.ts +71 -0
  2671. package/lib/routes/ouc/namespace.ts +6 -0
  2672. package/lib/routes/ouc/yjs.ts +52 -0
  2673. package/lib/routes/oup/index.ts +84 -0
  2674. package/lib/routes/oup/namespace.ts +6 -0
  2675. package/lib/routes/outagereport/index.ts +71 -0
  2676. package/lib/routes/outagereport/namespace.ts +6 -0
  2677. package/lib/routes/p-articles/contributors.ts +53 -0
  2678. package/lib/routes/p-articles/namespace.ts +13 -0
  2679. package/lib/routes/p-articles/section.ts +60 -0
  2680. package/lib/routes/p-articles/utils.ts +21 -0
  2681. package/lib/routes/panewslab/author.ts +74 -0
  2682. package/lib/routes/panewslab/namespace.ts +6 -0
  2683. package/lib/routes/panewslab/news.ts +44 -0
  2684. package/lib/routes/panewslab/profundity.ts +83 -0
  2685. package/lib/routes/panewslab/topic.ts +74 -0
  2686. package/lib/routes/papers/index.ts +128 -0
  2687. package/lib/routes/papers/namespace.ts +8 -0
  2688. package/lib/routes/papers/templates/description.art +15 -0
  2689. package/lib/routes/paradigm/namespace.ts +6 -0
  2690. package/lib/routes/paradigm/writing.ts +70 -0
  2691. package/lib/routes/parliament/namespace.ts +6 -0
  2692. package/lib/routes/parliament/section77.ts +190 -0
  2693. package/lib/routes/patagonia/namespace.ts +6 -0
  2694. package/lib/routes/patagonia/new-arrivals.ts +86 -0
  2695. package/lib/routes/paulgraham/article.ts +88 -0
  2696. package/lib/routes/paulgraham/namespace.ts +6 -0
  2697. package/lib/routes/penguin-random-house/articles.ts +52 -0
  2698. package/lib/routes/penguin-random-house/namespace.ts +6 -0
  2699. package/lib/routes/penguin-random-house/thereaddown.ts +52 -0
  2700. package/lib/routes/penguin-random-house/utils.ts +119 -0
  2701. package/lib/routes/people/index.ts +90 -0
  2702. package/lib/routes/people/liuyan.ts +83 -0
  2703. package/lib/routes/people/namespace.ts +6 -0
  2704. package/lib/routes/people/xjpjh.ts +95 -0
  2705. package/lib/routes/peopo/namespace.ts +6 -0
  2706. package/lib/routes/peopo/topic.ts +91 -0
  2707. package/lib/routes/phoronix/index.ts +264 -0
  2708. package/lib/routes/phoronix/namespace.ts +6 -0
  2709. package/lib/routes/pianyivps/namespace.ts +6 -0
  2710. package/lib/routes/pianyivps/rss.ts +35 -0
  2711. package/lib/routes/pianyuan/app.ts +69 -0
  2712. package/lib/routes/pianyuan/namespace.ts +6 -0
  2713. package/lib/routes/pianyuan/search.ts +61 -0
  2714. package/lib/routes/pianyuan/utils.ts +86 -0
  2715. package/lib/routes/picnob/namespace.ts +6 -0
  2716. package/lib/routes/picnob/templates/desc.art +13 -0
  2717. package/lib/routes/picnob/user.ts +138 -0
  2718. package/lib/routes/picnob/utils.ts +18 -0
  2719. package/lib/routes/picuki/namespace.ts +6 -0
  2720. package/lib/routes/picuki/profile.ts +215 -0
  2721. package/lib/routes/picuki/utils.ts +24 -0
  2722. package/lib/routes/pikabu/community.ts +45 -0
  2723. package/lib/routes/pikabu/namespace.ts +6 -0
  2724. package/lib/routes/pikabu/templates/video.art +8 -0
  2725. package/lib/routes/pikabu/user.ts +70 -0
  2726. package/lib/routes/pikabu/utils.ts +42 -0
  2727. package/lib/routes/pincong/hot.ts +48 -0
  2728. package/lib/routes/pincong/index.ts +57 -0
  2729. package/lib/routes/pincong/namespace.ts +6 -0
  2730. package/lib/routes/pincong/topic.ts +39 -0
  2731. package/lib/routes/pincong/utils.ts +21 -0
  2732. package/lib/routes/pingwest/namespace.ts +6 -0
  2733. package/lib/routes/pingwest/status.ts +72 -0
  2734. package/lib/routes/pingwest/tag.ts +76 -0
  2735. package/lib/routes/pingwest/user.ts +94 -0
  2736. package/lib/routes/pingwest/utils.ts +89 -0
  2737. package/lib/routes/pixabay/namespace.ts +6 -0
  2738. package/lib/routes/pixabay/search.ts +85 -0
  2739. package/lib/routes/pixiv/api/get-bookmarks.ts +23 -0
  2740. package/lib/routes/pixiv/api/get-illust-follows.ts +20 -0
  2741. package/lib/routes/pixiv/api/get-illusts.ts +22 -0
  2742. package/lib/routes/pixiv/api/get-ranking.ts +30 -0
  2743. package/lib/routes/pixiv/api/get-user-detail.ts +27 -0
  2744. package/lib/routes/pixiv/api/search-illust.ts +24 -0
  2745. package/lib/routes/pixiv/api/search-popular-illust.ts +23 -0
  2746. package/lib/routes/pixiv/bookmarks.ts +66 -0
  2747. package/lib/routes/pixiv/constants.ts +8 -0
  2748. package/lib/routes/pixiv/illustfollow.ts +70 -0
  2749. package/lib/routes/pixiv/namespace.ts +6 -0
  2750. package/lib/routes/pixiv/novels.ts +71 -0
  2751. package/lib/routes/pixiv/pixiv-got.ts +65 -0
  2752. package/lib/routes/pixiv/ranking.ts +184 -0
  2753. package/lib/routes/pixiv/search.ts +121 -0
  2754. package/lib/routes/pixiv/token.ts +77 -0
  2755. package/lib/routes/pixiv/user.ts +67 -0
  2756. package/lib/routes/pixiv/utils.ts +17 -0
  2757. package/lib/routes/piyao/jrpy.ts +65 -0
  2758. package/lib/routes/piyao/namespace.ts +6 -0
  2759. package/lib/routes/pkmer/namespace.ts +6 -0
  2760. package/lib/routes/pkmer/recent.ts +61 -0
  2761. package/lib/routes/pku/bbs/hot.ts +85 -0
  2762. package/lib/routes/pku/cls/announcement.ts +68 -0
  2763. package/lib/routes/pku/cls/lecture.ts +50 -0
  2764. package/lib/routes/pku/eecs.ts +73 -0
  2765. package/lib/routes/pku/hr.ts +85 -0
  2766. package/lib/routes/pku/namespace.ts +6 -0
  2767. package/lib/routes/pku/nsd.ts +95 -0
  2768. package/lib/routes/pku/pkuyjs.ts +54 -0
  2769. package/lib/routes/pku/rccp/mzyt.ts +48 -0
  2770. package/lib/routes/pku/scc/recruit.ts +80 -0
  2771. package/lib/routes/pku/ss/admission.ts +41 -0
  2772. package/lib/routes/pku/ss/common.ts +33 -0
  2773. package/lib/routes/pku/ss/notice.ts +30 -0
  2774. package/lib/routes/pku/ss/pg-admin.ts +41 -0
  2775. package/lib/routes/pku/utils.ts +13 -0
  2776. package/lib/routes/playno1/av.ts +68 -0
  2777. package/lib/routes/playno1/namespace.ts +6 -0
  2778. package/lib/routes/playno1/st.ts +65 -0
  2779. package/lib/routes/playno1/utils.ts +29 -0
  2780. package/lib/routes/playpcesor/namespace.ts +6 -0
  2781. package/lib/routes/playpcesor/rss.ts +48 -0
  2782. package/lib/routes/plurk/anonymous.ts +49 -0
  2783. package/lib/routes/plurk/hotlinks.ts +46 -0
  2784. package/lib/routes/plurk/namespace.ts +6 -0
  2785. package/lib/routes/plurk/news.ts +50 -0
  2786. package/lib/routes/plurk/search.ts +47 -0
  2787. package/lib/routes/plurk/top.ts +57 -0
  2788. package/lib/routes/plurk/topic.ts +58 -0
  2789. package/lib/routes/plurk/user.ts +51 -0
  2790. package/lib/routes/plurk/utils.ts +52 -0
  2791. package/lib/routes/pnas/index.ts +121 -0
  2792. package/lib/routes/pnas/namespace.ts +6 -0
  2793. package/lib/routes/podwise/collections.ts +46 -0
  2794. package/lib/routes/podwise/episodes.ts +119 -0
  2795. package/lib/routes/podwise/namespace.ts +9 -0
  2796. package/lib/routes/pornhub/category-url.ts +52 -0
  2797. package/lib/routes/pornhub/category.ts +64 -0
  2798. package/lib/routes/pornhub/model.ts +55 -0
  2799. package/lib/routes/pornhub/namespace.ts +6 -0
  2800. package/lib/routes/pornhub/pornstar.ts +60 -0
  2801. package/lib/routes/pornhub/search.ts +42 -0
  2802. package/lib/routes/pornhub/templates/description.art +11 -0
  2803. package/lib/routes/pornhub/users.ts +56 -0
  2804. package/lib/routes/pornhub/utils.ts +33 -0
  2805. package/lib/routes/postman/namespace.ts +6 -0
  2806. package/lib/routes/postman/release-notes.ts +53 -0
  2807. package/lib/routes/priconne-redive/namespace.ts +6 -0
  2808. package/lib/routes/priconne-redive/news.ts +181 -0
  2809. package/lib/routes/producthunt/namespace.ts +7 -0
  2810. package/lib/routes/producthunt/today.ts +73 -0
  2811. package/lib/routes/ps/monthly-games.ts +60 -0
  2812. package/lib/routes/ps/namespace.ts +6 -0
  2813. package/lib/routes/ps/templates/monthly-games.art +1 -0
  2814. package/lib/routes/ps/trophy.ts +105 -0
  2815. package/lib/routes/psyche/namespace.ts +6 -0
  2816. package/lib/routes/psyche/templates/essay.art +3 -0
  2817. package/lib/routes/psyche/templates/video.art +10 -0
  2818. package/lib/routes/psyche/topic.ts +46 -0
  2819. package/lib/routes/psyche/type.ts +53 -0
  2820. package/lib/routes/psyche/utils.ts +107 -0
  2821. package/lib/routes/pts/curations.ts +72 -0
  2822. package/lib/routes/pts/index.ts +81 -0
  2823. package/lib/routes/pts/live.ts +77 -0
  2824. package/lib/routes/pts/namespace.ts +6 -0
  2825. package/lib/routes/pts/projects.ts +72 -0
  2826. package/lib/routes/pubmed/namespace.ts +6 -0
  2827. package/lib/routes/pubmed/trending.ts +70 -0
  2828. package/lib/routes/pubscholar/explore.ts +62 -0
  2829. package/lib/routes/pubscholar/namespace.ts +7 -0
  2830. package/lib/routes/pubscholar/types.ts +41 -0
  2831. package/lib/routes/pubscholar/utils.ts +44 -0
  2832. package/lib/routes/pumc/mdadmission.ts +88 -0
  2833. package/lib/routes/pumc/namespace.ts +6 -0
  2834. package/lib/routes/putty/changes.ts +61 -0
  2835. package/lib/routes/putty/namespace.ts +6 -0
  2836. package/lib/routes/pwc/namespace.ts +6 -0
  2837. package/lib/routes/pwc/sustainability.ts +88 -0
  2838. package/lib/routes/qbitai/category.ts +54 -0
  2839. package/lib/routes/qbitai/namespace.ts +6 -0
  2840. package/lib/routes/qbitai/tag.ts +51 -0
  2841. package/lib/routes/qbittorrent/namespace.ts +6 -0
  2842. package/lib/routes/qbittorrent/news.ts +82 -0
  2843. package/lib/routes/qdu/houqin.ts +89 -0
  2844. package/lib/routes/qdu/jwc.ts +78 -0
  2845. package/lib/routes/qdu/namespace.ts +6 -0
  2846. package/lib/routes/qianp/namespace.ts +6 -0
  2847. package/lib/routes/qianp/news.ts +66 -0
  2848. package/lib/routes/qianp/utils.ts +17 -0
  2849. package/lib/routes/qianzhan/column.ts +73 -0
  2850. package/lib/routes/qianzhan/namespace.ts +6 -0
  2851. package/lib/routes/qianzhan/rank.ts +70 -0
  2852. package/lib/routes/qidian/author.ts +68 -0
  2853. package/lib/routes/qidian/chapter.ts +58 -0
  2854. package/lib/routes/qidian/forum.ts +62 -0
  2855. package/lib/routes/qidian/free-next.ts +68 -0
  2856. package/lib/routes/qidian/free.ts +71 -0
  2857. package/lib/routes/qidian/namespace.ts +6 -0
  2858. package/lib/routes/qingting/channel.ts +52 -0
  2859. package/lib/routes/qingting/namespace.ts +6 -0
  2860. package/lib/routes/qingting/podcast.ts +125 -0
  2861. package/lib/routes/qipamaijia/index.ts +58 -0
  2862. package/lib/routes/qipamaijia/namespace.ts +6 -0
  2863. package/lib/routes/qiyoujiage/namespace.ts +6 -0
  2864. package/lib/routes/qiyoujiage/price.ts +36 -0
  2865. package/lib/routes/qlu/namespace.ts +6 -0
  2866. package/lib/routes/qlu/notice.ts +75 -0
  2867. package/lib/routes/qm120/namespace.ts +6 -0
  2868. package/lib/routes/qm120/news.ts +87 -0
  2869. package/lib/routes/qoo-app/apps/card.ts +57 -0
  2870. package/lib/routes/qoo-app/apps/comment.ts +68 -0
  2871. package/lib/routes/qoo-app/apps/note.ts +67 -0
  2872. package/lib/routes/qoo-app/apps/post.ts +71 -0
  2873. package/lib/routes/qoo-app/namespace.ts +6 -0
  2874. package/lib/routes/qoo-app/news.ts +63 -0
  2875. package/lib/routes/qoo-app/notes/note.ts +65 -0
  2876. package/lib/routes/qoo-app/notes/topic.ts +28 -0
  2877. package/lib/routes/qoo-app/notes/user.ts +39 -0
  2878. package/lib/routes/qoo-app/user/app-comment.ts +63 -0
  2879. package/lib/routes/qoo-app/utils.ts +48 -0
  2880. package/lib/routes/qq/ac/comic.ts +57 -0
  2881. package/lib/routes/qq/ac/rank.ts +51 -0
  2882. package/lib/routes/qq/ac/utils.ts +72 -0
  2883. package/lib/routes/qq/cfhd/index.ts +140 -0
  2884. package/lib/routes/qq/fact/index.ts +90 -0
  2885. package/lib/routes/qq/kg/cache.ts +29 -0
  2886. package/lib/routes/qq/kg/reply.ts +40 -0
  2887. package/lib/routes/qq/kg/user.ts +69 -0
  2888. package/lib/routes/qq/namespace.ts +8 -0
  2889. package/lib/routes/qq88/index.ts +83 -0
  2890. package/lib/routes/qq88/namespace.ts +6 -0
  2891. package/lib/routes/qqorw/index.ts +105 -0
  2892. package/lib/routes/qqorw/namespace.ts +6 -0
  2893. package/lib/routes/questmobile/namespace.ts +6 -0
  2894. package/lib/routes/questmobile/report.ts +260 -0
  2895. package/lib/routes/questmobile/templates/description.art +17 -0
  2896. package/lib/routes/questn/community.ts +76 -0
  2897. package/lib/routes/questn/events.ts +101 -0
  2898. package/lib/routes/questn/namespace.ts +6 -0
  2899. package/lib/routes/questn/util.ts +16 -0
  2900. package/lib/routes/quicker/namespace.ts +6 -0
  2901. package/lib/routes/quicker/qa.ts +104 -0
  2902. package/lib/routes/quicker/share.ts +93 -0
  2903. package/lib/routes/quicker/user.ts +85 -0
  2904. package/lib/routes/quicker/versions.ts +45 -0
  2905. package/lib/routes/qust/jw.ts +55 -0
  2906. package/lib/routes/qust/namespace.ts +6 -0
  2907. package/lib/routes/qweather/3days.ts +103 -0
  2908. package/lib/routes/qweather/namespace.ts +6 -0
  2909. package/lib/routes/qweather/now.ts +74 -0
  2910. package/lib/routes/qweather/templates/3days.art +22 -0
  2911. package/lib/routes/radio/album.ts +119 -0
  2912. package/lib/routes/radio/index.ts +86 -0
  2913. package/lib/routes/radio/namespace.ts +6 -0
  2914. package/lib/routes/radio/zhibo.ts +109 -0
  2915. package/lib/routes/radio-canada/latest.ts +78 -0
  2916. package/lib/routes/radio-canada/namespace.ts +6 -0
  2917. package/lib/routes/rarehistoricalphotos/index.ts +43 -0
  2918. package/lib/routes/rarehistoricalphotos/namespace.ts +6 -0
  2919. package/lib/routes/rattibha/namespace.ts +6 -0
  2920. package/lib/routes/rattibha/user.ts +70 -0
  2921. package/lib/routes/rawkuma/manga.ts +109 -0
  2922. package/lib/routes/rawkuma/namespace.ts +6 -0
  2923. package/lib/routes/raycast/changelog.ts +54 -0
  2924. package/lib/routes/raycast/namespace.ts +7 -0
  2925. package/lib/routes/react/blog.ts +57 -0
  2926. package/lib/routes/react/namespace.ts +6 -0
  2927. package/lib/routes/reactiflux/namespace.ts +7 -0
  2928. package/lib/routes/reactiflux/transcripts.ts +103 -0
  2929. package/lib/routes/reactnewsletter/namespace.ts +6 -0
  2930. package/lib/routes/reactnewsletter/reactnewsletter.ts +40 -0
  2931. package/lib/routes/readhub/daily.ts +72 -0
  2932. package/lib/routes/readhub/index.ts +88 -0
  2933. package/lib/routes/readhub/namespace.ts +6 -0
  2934. package/lib/routes/readhub/util.ts +67 -0
  2935. package/lib/routes/readwise/list.ts +152 -0
  2936. package/lib/routes/readwise/namespace.ts +6 -0
  2937. package/lib/routes/rebase/geekdaily.ts +35 -0
  2938. package/lib/routes/rebase/namespace.ts +6 -0
  2939. package/lib/routes/remnote/changelog.ts +57 -0
  2940. package/lib/routes/remnote/namespace.ts +6 -0
  2941. package/lib/routes/researchgate/namespace.ts +6 -0
  2942. package/lib/routes/researchgate/publications.ts +86 -0
  2943. package/lib/routes/reuters/common.ts +201 -0
  2944. package/lib/routes/reuters/investigates.ts +59 -0
  2945. package/lib/routes/reuters/namespace.ts +9 -0
  2946. package/lib/routes/rfa/index.ts +78 -0
  2947. package/lib/routes/rfa/namespace.ts +6 -0
  2948. package/lib/routes/rfi/namespace.ts +6 -0
  2949. package/lib/routes/rfi/news.ts +85 -0
  2950. package/lib/routes/right/forum.ts +85 -0
  2951. package/lib/routes/right/namespace.ts +6 -0
  2952. package/lib/routes/robots.txt.ts +13 -0
  2953. package/lib/routes/rodong/namespace.ts +6 -0
  2954. package/lib/routes/rodong/news.ts +75 -0
  2955. package/lib/routes/routledge/book-series.ts +95 -0
  2956. package/lib/routes/routledge/namespace.ts +6 -0
  2957. package/lib/routes/routledge/templates/description.art +7 -0
  2958. package/lib/routes/rsc/journal.ts +136 -0
  2959. package/lib/routes/rsc/namespace.ts +6 -0
  2960. package/lib/routes/rss3/index.ts +157 -0
  2961. package/lib/routes/rss3/interfaces/metadata.ts +67 -0
  2962. package/lib/routes/rss3/namespace.ts +7 -0
  2963. package/lib/routes/rsshub/namespace.ts +6 -0
  2964. package/lib/routes/rsshub/referer-map.ts +14 -0
  2965. package/lib/routes/rsshub/routes.ts +105 -0
  2966. package/lib/routes/rsshub/transform/html.ts +119 -0
  2967. package/lib/routes/rsshub/transform/json.ts +113 -0
  2968. package/lib/routes/rsshub/transform/sitemap.ts +59 -0
  2969. package/lib/routes/ruancan/category.ts +34 -0
  2970. package/lib/routes/ruancan/index.ts +22 -0
  2971. package/lib/routes/ruancan/namespace.ts +6 -0
  2972. package/lib/routes/ruancan/search.ts +34 -0
  2973. package/lib/routes/ruancan/user.ts +22 -0
  2974. package/lib/routes/ruancan/utils.ts +68 -0
  2975. package/lib/routes/ruc/ai.ts +87 -0
  2976. package/lib/routes/ruc/hr.ts +89 -0
  2977. package/lib/routes/ruc/namespace.ts +9 -0
  2978. package/lib/routes/runtrail/namespace.ts +6 -0
  2979. package/lib/routes/runtrail/posts.ts +49 -0
  2980. package/lib/routes/rustcc/jobs.ts +64 -0
  2981. package/lib/routes/rustcc/namespace.ts +6 -0
  2982. package/lib/routes/rustcc/news.ts +55 -0
  2983. package/lib/routes/sakurazaka46/blog.ts +114 -0
  2984. package/lib/routes/sakurazaka46/namespace.ts +6 -0
  2985. package/lib/routes/sakurazaka46/news.ts +77 -0
  2986. package/lib/routes/samd/namespace.ts +6 -0
  2987. package/lib/routes/samd/news.ts +74 -0
  2988. package/lib/routes/samsung/namespace.ts +6 -0
  2989. package/lib/routes/samsung/research/blog.ts +75 -0
  2990. package/lib/routes/sara/index.ts +66 -0
  2991. package/lib/routes/sara/namespace.ts +6 -0
  2992. package/lib/routes/saraba1st/digest.ts +115 -0
  2993. package/lib/routes/saraba1st/namespace.ts +6 -0
  2994. package/lib/routes/saraba1st/thread.ts +83 -0
  2995. package/lib/routes/sass/gs/index.ts +74 -0
  2996. package/lib/routes/sass/namespace.ts +6 -0
  2997. package/lib/routes/scau/namespace.ts +6 -0
  2998. package/lib/routes/scau/yjs.ts +52 -0
  2999. package/lib/routes/scau/yjsy.ts +52 -0
  3000. package/lib/routes/science/blogs.ts +96 -0
  3001. package/lib/routes/science/cover.ts +100 -0
  3002. package/lib/routes/science/current.ts +80 -0
  3003. package/lib/routes/science/early.ts +61 -0
  3004. package/lib/routes/science/namespace.ts +6 -0
  3005. package/lib/routes/science/utils.ts +63 -0
  3006. package/lib/routes/sciencedirect/cf-email.ts +39 -0
  3007. package/lib/routes/sciencedirect/journal.ts +94 -0
  3008. package/lib/routes/sciencedirect/namespace.ts +6 -0
  3009. package/lib/routes/sciencenet/blog.ts +98 -0
  3010. package/lib/routes/sciencenet/namespace.ts +6 -0
  3011. package/lib/routes/sciencenet/user.ts +90 -0
  3012. package/lib/routes/scmp/coronavirus.ts +22 -0
  3013. package/lib/routes/scmp/index.ts +87 -0
  3014. package/lib/routes/scmp/namespace.ts +6 -0
  3015. package/lib/routes/scmp/topic.ts +91 -0
  3016. package/lib/routes/scmp/utils.ts +87 -0
  3017. package/lib/routes/scnu/announcements-router.ts +1 -0
  3018. package/lib/routes/scnu/cs/match.ts +61 -0
  3019. package/lib/routes/scnu/jw.ts +58 -0
  3020. package/lib/routes/scnu/library.ts +58 -0
  3021. package/lib/routes/scnu/namespace.ts +6 -0
  3022. package/lib/routes/scnu/news-router.ts +1 -0
  3023. package/lib/routes/scnu/physics-school-announcements-and-news.ts +95 -0
  3024. package/lib/routes/scnu/research-news-router.ts +1 -0
  3025. package/lib/routes/scnu/ss.ts +53 -0
  3026. package/lib/routes/scnu/yjs.ts +49 -0
  3027. package/lib/routes/sctv/namespace.ts +6 -0
  3028. package/lib/routes/sctv/programme.ts +156 -0
  3029. package/lib/routes/scut/gzic/media.ts +71 -0
  3030. package/lib/routes/scut/gzic/news.ts +65 -0
  3031. package/lib/routes/scut/gzic/notice.ts +88 -0
  3032. package/lib/routes/scut/jwc/news.ts +131 -0
  3033. package/lib/routes/scut/jwc/notice.ts +146 -0
  3034. package/lib/routes/scut/jwc/school.ts +144 -0
  3035. package/lib/routes/scut/namespace.ts +6 -0
  3036. package/lib/routes/scut/scet/notice.ts +50 -0
  3037. package/lib/routes/scut/seie/news-ccenter.ts +81 -0
  3038. package/lib/routes/scut/smae/notice.ts +77 -0
  3039. package/lib/routes/scut/yjs.ts +55 -0
  3040. package/lib/routes/scvtc/namespace.ts +6 -0
  3041. package/lib/routes/scvtc/xygg.ts +66 -0
  3042. package/lib/routes/sdu/cmse.ts +82 -0
  3043. package/lib/routes/sdu/cs.ts +80 -0
  3044. package/lib/routes/sdu/data.ts +110 -0
  3045. package/lib/routes/sdu/epe.ts +78 -0
  3046. package/lib/routes/sdu/extractor/index.ts +21 -0
  3047. package/lib/routes/sdu/extractor/sdrj.ts +23 -0
  3048. package/lib/routes/sdu/extractor/view.ts +23 -0
  3049. package/lib/routes/sdu/extractor/wh/jwc.ts +26 -0
  3050. package/lib/routes/sdu/extractor/wh/news.ts +23 -0
  3051. package/lib/routes/sdu/mech.ts +83 -0
  3052. package/lib/routes/sdu/namespace.ts +6 -0
  3053. package/lib/routes/sdu/sc.ts +84 -0
  3054. package/lib/routes/sdu/wh/jwc.ts +65 -0
  3055. package/lib/routes/sdu/wh/news.ts +61 -0
  3056. package/lib/routes/sdust/namespace.ts +6 -0
  3057. package/lib/routes/sdust/yjsy/zhaosheng.ts +81 -0
  3058. package/lib/routes/sdzk/index.ts +80 -0
  3059. package/lib/routes/sdzk/namespace.ts +6 -0
  3060. package/lib/routes/sec-in/index.ts +27 -0
  3061. package/lib/routes/sec-in/namespace.ts +6 -0
  3062. package/lib/routes/sec-wiki/namespace.ts +6 -0
  3063. package/lib/routes/sec-wiki/weekly.ts +35 -0
  3064. package/lib/routes/secrss/author.ts +55 -0
  3065. package/lib/routes/secrss/category.ts +57 -0
  3066. package/lib/routes/secrss/namespace.ts +6 -0
  3067. package/lib/routes/seekingalpha/index.ts +120 -0
  3068. package/lib/routes/seekingalpha/namespace.ts +6 -0
  3069. package/lib/routes/seekingalpha/templates/summary.art +4 -0
  3070. package/lib/routes/sega/maimaidx.ts +64 -0
  3071. package/lib/routes/sega/namespace.ts +6 -0
  3072. package/lib/routes/sega/pjsekai.ts +75 -0
  3073. package/lib/routes/segmentfault/blogs.ts +46 -0
  3074. package/lib/routes/segmentfault/channel.ts +59 -0
  3075. package/lib/routes/segmentfault/namespace.ts +6 -0
  3076. package/lib/routes/segmentfault/user.ts +48 -0
  3077. package/lib/routes/segmentfault/utils.ts +61 -0
  3078. package/lib/routes/sehuatang/index.ts +164 -0
  3079. package/lib/routes/sehuatang/namespace.ts +6 -0
  3080. package/lib/routes/sehuatang/user.ts +138 -0
  3081. package/lib/routes/sensortower/blog.ts +102 -0
  3082. package/lib/routes/sensortower/namespace.ts +6 -0
  3083. package/lib/routes/setn/index.ts +138 -0
  3084. package/lib/routes/setn/namespace.ts +6 -0
  3085. package/lib/routes/seu/cse/index.ts +91 -0
  3086. package/lib/routes/seu/namespace.ts +6 -0
  3087. package/lib/routes/seu/radio/academic.ts +69 -0
  3088. package/lib/routes/seu/yjs.ts +63 -0
  3089. package/lib/routes/seu/yzb/index.ts +79 -0
  3090. package/lib/routes/sfacg/namespace.ts +6 -0
  3091. package/lib/routes/sfacg/novel-chapter.ts +76 -0
  3092. package/lib/routes/shcstheatre/namespace.ts +6 -0
  3093. package/lib/routes/shcstheatre/programs.ts +68 -0
  3094. package/lib/routes/shiep/config.ts +61 -0
  3095. package/lib/routes/shiep/index.ts +121 -0
  3096. package/lib/routes/shiep/namespace.ts +6 -0
  3097. package/lib/routes/shiep/radar.ts +317 -0
  3098. package/lib/routes/shisu/en.ts +75 -0
  3099. package/lib/routes/shisu/namespace.ts +6 -0
  3100. package/lib/routes/shisu/news.ts +92 -0
  3101. package/lib/routes/shmeea/index.ts +80 -0
  3102. package/lib/routes/shmeea/namespace.ts +7 -0
  3103. package/lib/routes/shmeea/self-study.ts +87 -0
  3104. package/lib/routes/shmtu/jwc.ts +85 -0
  3105. package/lib/routes/shmtu/namespace.ts +6 -0
  3106. package/lib/routes/shmtu/portal.ts +112 -0
  3107. package/lib/routes/shmtu/www.ts +86 -0
  3108. package/lib/routes/shoac/namespace.ts +6 -0
  3109. package/lib/routes/shoac/recent-show.ts +101 -0
  3110. package/lib/routes/shoac/templates/detail.art +25 -0
  3111. package/lib/routes/shopback/namespace.ts +6 -0
  3112. package/lib/routes/shopback/store.ts +61 -0
  3113. package/lib/routes/shopify/apps/[handle].reviews.ts +78 -0
  3114. package/lib/routes/shopify/apps/const.ts +1 -0
  3115. package/lib/routes/shopify/apps/search.ts +82 -0
  3116. package/lib/routes/shopify/namespace.ts +6 -0
  3117. package/lib/routes/shoppingdesign/namespace.ts +6 -0
  3118. package/lib/routes/shoppingdesign/posts.ts +69 -0
  3119. package/lib/routes/showstart/artist.ts +43 -0
  3120. package/lib/routes/showstart/brand.ts +43 -0
  3121. package/lib/routes/showstart/const.ts +4 -0
  3122. package/lib/routes/showstart/event.ts +43 -0
  3123. package/lib/routes/showstart/namespace.ts +6 -0
  3124. package/lib/routes/showstart/search.ts +104 -0
  3125. package/lib/routes/showstart/service.ts +186 -0
  3126. package/lib/routes/showstart/site.ts +41 -0
  3127. package/lib/routes/showstart/utils.ts +87 -0
  3128. package/lib/routes/shu/index.ts +77 -0
  3129. package/lib/routes/shu/jwb.ts +63 -0
  3130. package/lib/routes/shu/namespace.ts +6 -0
  3131. package/lib/routes/shuiguopai/index.ts +105 -0
  3132. package/lib/routes/shuiguopai/namespace.ts +6 -0
  3133. package/lib/routes/shuiguopai/templates/description.art +8 -0
  3134. package/lib/routes/sicau/dky.ts +81 -0
  3135. package/lib/routes/sicau/jiaowu.ts +77 -0
  3136. package/lib/routes/sicau/jk.ts +210 -0
  3137. package/lib/routes/sicau/namespace.ts +6 -0
  3138. package/lib/routes/sicau/yan.ts +81 -0
  3139. package/lib/routes/sicau/zsjy.ts +82 -0
  3140. package/lib/routes/sigsac/ccs.ts +77 -0
  3141. package/lib/routes/sigsac/namespace.ts +6 -0
  3142. package/lib/routes/simpleinfo/index.ts +90 -0
  3143. package/lib/routes/simpleinfo/namespace.ts +6 -0
  3144. package/lib/routes/sina/chuangshiji.ts +43 -0
  3145. package/lib/routes/sina/discovery.ts +55 -0
  3146. package/lib/routes/sina/finance/china.ts +55 -0
  3147. package/lib/routes/sina/finance/stock/usstock.ts +67 -0
  3148. package/lib/routes/sina/namespace.ts +6 -0
  3149. package/lib/routes/sina/rollnews.ts +54 -0
  3150. package/lib/routes/sina/sports.ts +52 -0
  3151. package/lib/routes/sina/templates/video.art +5 -0
  3152. package/lib/routes/sina/utils.ts +103 -0
  3153. package/lib/routes/sinchew/index.ts +88 -0
  3154. package/lib/routes/sinchew/namespace.ts +6 -0
  3155. package/lib/routes/sis001/author.ts +52 -0
  3156. package/lib/routes/sis001/common.ts +38 -0
  3157. package/lib/routes/sis001/forum.ts +55 -0
  3158. package/lib/routes/sis001/namespace.ts +6 -0
  3159. package/lib/routes/sjtu/gs.ts +101 -0
  3160. package/lib/routes/sjtu/jwc.ts +142 -0
  3161. package/lib/routes/sjtu/namespace.ts +6 -0
  3162. package/lib/routes/sjtu/seiee/academic.ts +17 -0
  3163. package/lib/routes/sjtu/seiee/bjwb.ts +44 -0
  3164. package/lib/routes/sjtu/seiee/index.ts +97 -0
  3165. package/lib/routes/sjtu/seiee/utils.ts +41 -0
  3166. package/lib/routes/sjtu/seiee/xsb.ts +52 -0
  3167. package/lib/routes/sjtu/tongqu/activity.ts +69 -0
  3168. package/lib/routes/sjtu/yzb/zkxx.ts +74 -0
  3169. package/lib/routes/sketis/isabelle-dev/blog/index.ts +77 -0
  3170. package/lib/routes/sketis/namespace.ts +6 -0
  3171. package/lib/routes/skysports/namespace.ts +6 -0
  3172. package/lib/routes/skysports/news.ts +75 -0
  3173. package/lib/routes/slowmist/namespace.ts +6 -0
  3174. package/lib/routes/slowmist/slowmist.ts +77 -0
  3175. package/lib/routes/smashingmagazine/category.ts +125 -0
  3176. package/lib/routes/smashingmagazine/namespace.ts +6 -0
  3177. package/lib/routes/smzdm/article.ts +68 -0
  3178. package/lib/routes/smzdm/baoliao.ts +68 -0
  3179. package/lib/routes/smzdm/haowen-fenlei.ts +80 -0
  3180. package/lib/routes/smzdm/haowen.ts +68 -0
  3181. package/lib/routes/smzdm/keyword.ts +62 -0
  3182. package/lib/routes/smzdm/namespace.ts +9 -0
  3183. package/lib/routes/smzdm/product.ts +86 -0
  3184. package/lib/routes/smzdm/ranking.ts +252 -0
  3185. package/lib/routes/snowpeak/namespace.ts +6 -0
  3186. package/lib/routes/snowpeak/us-new-arrivals.ts +73 -0
  3187. package/lib/routes/sobooks/date.ts +32 -0
  3188. package/lib/routes/sobooks/index.ts +42 -0
  3189. package/lib/routes/sobooks/namespace.ts +6 -0
  3190. package/lib/routes/sobooks/tag.ts +41 -0
  3191. package/lib/routes/sobooks/utils.ts +52 -0
  3192. package/lib/routes/sogou/doodles.ts +45 -0
  3193. package/lib/routes/sogou/namespace.ts +6 -0
  3194. package/lib/routes/sogou/search.ts +77 -0
  3195. package/lib/routes/sogou/templates/description.art +6 -0
  3196. package/lib/routes/sohu/mp.ts +210 -0
  3197. package/lib/routes/sohu/namespace.ts +6 -0
  3198. package/lib/routes/solidot/_article.ts +50 -0
  3199. package/lib/routes/solidot/main.ts +71 -0
  3200. package/lib/routes/solidot/namespace.ts +6 -0
  3201. package/lib/routes/sony/downloads.ts +75 -0
  3202. package/lib/routes/sony/namespace.ts +6 -0
  3203. package/lib/routes/soundofhope/channel.ts +70 -0
  3204. package/lib/routes/soundofhope/namespace.ts +6 -0
  3205. package/lib/routes/sourceforge/index.ts +55 -0
  3206. package/lib/routes/sourceforge/namespace.ts +6 -0
  3207. package/lib/routes/southcn/namespace.ts +6 -0
  3208. package/lib/routes/southcn/nfapp/column.ts +75 -0
  3209. package/lib/routes/southcn/nfapp/reporter.ts +57 -0
  3210. package/lib/routes/southcn/nfapp/utils.ts +21 -0
  3211. package/lib/routes/spotify/artist.ts +69 -0
  3212. package/lib/routes/spotify/artists-top.ts +57 -0
  3213. package/lib/routes/spotify/namespace.ts +6 -0
  3214. package/lib/routes/spotify/playlist.ts +61 -0
  3215. package/lib/routes/spotify/saved.ts +68 -0
  3216. package/lib/routes/spotify/show.ts +72 -0
  3217. package/lib/routes/spotify/tracks-top.ts +57 -0
  3218. package/lib/routes/spotify/utils.ts +58 -0
  3219. package/lib/routes/springer/journal.ts +98 -0
  3220. package/lib/routes/springer/namespace.ts +6 -0
  3221. package/lib/routes/sputniknews/index.ts +160 -0
  3222. package/lib/routes/sputniknews/namespace.ts +6 -0
  3223. package/lib/routes/sqmc/namespace.ts +6 -0
  3224. package/lib/routes/sqmc/www.ts +77 -0
  3225. package/lib/routes/sse/convert.ts +58 -0
  3226. package/lib/routes/sse/disclosure.ts +66 -0
  3227. package/lib/routes/sse/inquire.ts +73 -0
  3228. package/lib/routes/sse/namespace.ts +6 -0
  3229. package/lib/routes/sse/renewal.ts +85 -0
  3230. package/lib/routes/sse/sselawsrules.ts +370 -0
  3231. package/lib/routes/ssm/namespace.ts +6 -0
  3232. package/lib/routes/ssm/news.ts +66 -0
  3233. package/lib/routes/sspai/activity.ts +108 -0
  3234. package/lib/routes/sspai/author.ts +89 -0
  3235. package/lib/routes/sspai/bookmarks.ts +65 -0
  3236. package/lib/routes/sspai/column.ts +87 -0
  3237. package/lib/routes/sspai/index.ts +69 -0
  3238. package/lib/routes/sspai/matrix.ts +70 -0
  3239. package/lib/routes/sspai/namespace.ts +6 -0
  3240. package/lib/routes/sspai/prime-community.ts +83 -0
  3241. package/lib/routes/sspai/series-update.ts +61 -0
  3242. package/lib/routes/sspai/series.ts +73 -0
  3243. package/lib/routes/sspai/shortcuts-gallery.ts +54 -0
  3244. package/lib/routes/sspai/tag.ts +73 -0
  3245. package/lib/routes/sspai/topic.ts +81 -0
  3246. package/lib/routes/sspai/topics.ts +64 -0
  3247. package/lib/routes/sspu/jwc.ts +58 -0
  3248. package/lib/routes/sspu/namespace.ts +6 -0
  3249. package/lib/routes/sspu/pe.ts +80 -0
  3250. package/lib/routes/startuplatte/index.ts +84 -0
  3251. package/lib/routes/startuplatte/namespace.ts +6 -0
  3252. package/lib/routes/stbu/jsjxy.ts +80 -0
  3253. package/lib/routes/stbu/namespace.ts +6 -0
  3254. package/lib/routes/stbu/xyxw.ts +78 -0
  3255. package/lib/routes/stcn/index.ts +119 -0
  3256. package/lib/routes/stcn/namespace.ts +6 -0
  3257. package/lib/routes/stdaily/digitalpaper.ts +148 -0
  3258. package/lib/routes/stdaily/namespace.ts +6 -0
  3259. package/lib/routes/steam/appcommunityfeed.ts +92 -0
  3260. package/lib/routes/steam/namespace.ts +6 -0
  3261. package/lib/routes/steam/search.ts +64 -0
  3262. package/lib/routes/steam/sharefile-changelog.ts +65 -0
  3263. package/lib/routes/steam/templates/appcommunityfeed-description.art +4 -0
  3264. package/lib/routes/steam/templates/workshop-search-description.art +5 -0
  3265. package/lib/routes/steam/workshop-search.ts +109 -0
  3266. package/lib/routes/stheadline/namespace.ts +6 -0
  3267. package/lib/routes/stheadline/std/realtime.ts +57 -0
  3268. package/lib/routes/stockedge/daily-news.ts +55 -0
  3269. package/lib/routes/stockedge/namespace.ts +6 -0
  3270. package/lib/routes/stockedge/utils.ts +30 -0
  3271. package/lib/routes/storm/index.ts +91 -0
  3272. package/lib/routes/storm/namespace.ts +6 -0
  3273. package/lib/routes/storyfm/episodes.ts +92 -0
  3274. package/lib/routes/storyfm/index.ts +69 -0
  3275. package/lib/routes/storyfm/namespace.ts +6 -0
  3276. package/lib/routes/stratechery/index.ts +28 -0
  3277. package/lib/routes/stratechery/namespace.ts +6 -0
  3278. package/lib/routes/stream-capital/namespace.ts +6 -0
  3279. package/lib/routes/stream-capital/search.ts +79 -0
  3280. package/lib/routes/stream-capital/types.ts +44 -0
  3281. package/lib/routes/stream-capital/utils.ts +18 -0
  3282. package/lib/routes/studygolang/go.ts +29 -0
  3283. package/lib/routes/studygolang/jobs.ts +24 -0
  3284. package/lib/routes/studygolang/namespace.ts +6 -0
  3285. package/lib/routes/studygolang/utils.ts +76 -0
  3286. package/lib/routes/studygolang/weekly.ts +24 -0
  3287. package/lib/routes/subhd/index.ts +88 -0
  3288. package/lib/routes/subhd/namespace.ts +6 -0
  3289. package/lib/routes/supchina/index.ts +83 -0
  3290. package/lib/routes/supchina/namespace.ts +6 -0
  3291. package/lib/routes/supchina/podcasts.ts +94 -0
  3292. package/lib/routes/surfshark/blog.ts +103 -0
  3293. package/lib/routes/surfshark/namespace.ts +6 -0
  3294. package/lib/routes/sustainabilitymag/articles.ts +146 -0
  3295. package/lib/routes/sustainabilitymag/namespace.ts +6 -0
  3296. package/lib/routes/sustech/bidding.ts +59 -0
  3297. package/lib/routes/sustech/namespace.ts +6 -0
  3298. package/lib/routes/sustech/newshub-zh.ts +64 -0
  3299. package/lib/routes/sustech/yjs.ts +54 -0
  3300. package/lib/routes/swissinfo/index.ts +98 -0
  3301. package/lib/routes/swissinfo/namespace.ts +6 -0
  3302. package/lib/routes/swjtu/gsee/yjs.ts +76 -0
  3303. package/lib/routes/swjtu/jtys/yjs.ts +76 -0
  3304. package/lib/routes/swjtu/jwc.ts +93 -0
  3305. package/lib/routes/swjtu/jyzpxx.ts +54 -0
  3306. package/lib/routes/swjtu/namespace.ts +6 -0
  3307. package/lib/routes/swjtu/utils.ts +32 -0
  3308. package/lib/routes/swjtu/xg.ts +112 -0
  3309. package/lib/routes/swpu/bgw.ts +86 -0
  3310. package/lib/routes/swpu/cjxy.ts +83 -0
  3311. package/lib/routes/swpu/dean.ts +87 -0
  3312. package/lib/routes/swpu/dxy.ts +89 -0
  3313. package/lib/routes/swpu/is.ts +83 -0
  3314. package/lib/routes/swpu/namespace.ts +6 -0
  3315. package/lib/routes/swpu/scs.ts +86 -0
  3316. package/lib/routes/swpu/utils.ts +20 -0
  3317. package/lib/routes/syosetu/chapter.ts +87 -0
  3318. package/lib/routes/syosetu/namespace.ts +6 -0
  3319. package/lib/routes/sysu/cse.ts +128 -0
  3320. package/lib/routes/sysu/namespace.ts +6 -0
  3321. package/lib/routes/sysu/ygafz.ts +102 -0
  3322. package/lib/routes/szse/inquire.ts +80 -0
  3323. package/lib/routes/szse/namespace.ts +6 -0
  3324. package/lib/routes/szse/notice.ts +97 -0
  3325. package/lib/routes/szse/projectdynamic.ts +152 -0
  3326. package/lib/routes/szse/rule.ts +350 -0
  3327. package/lib/routes/szu/namespace.ts +6 -0
  3328. package/lib/routes/szu/yz/index.ts +74 -0
  3329. package/lib/routes/szu/yz/utils.ts +72 -0
  3330. package/lib/routes/t66y/index.ts +109 -0
  3331. package/lib/routes/t66y/namespace.ts +6 -0
  3332. package/lib/routes/t66y/post.ts +99 -0
  3333. package/lib/routes/t66y/utils.ts +57 -0
  3334. package/lib/routes/tableau/namespace.ts +6 -0
  3335. package/lib/routes/tableau/viz-of-the-day.ts +45 -0
  3336. package/lib/routes/taiwannews/hot.ts +79 -0
  3337. package/lib/routes/taiwannews/namespace.ts +6 -0
  3338. package/lib/routes/tangshufang/index.ts +95 -0
  3339. package/lib/routes/tangshufang/namespace.ts +6 -0
  3340. package/lib/routes/taobao/namespace.ts +6 -0
  3341. package/lib/routes/taobao/zhongchou.ts +71 -0
  3342. package/lib/routes/taoguba/blog.ts +109 -0
  3343. package/lib/routes/taoguba/index.ts +94 -0
  3344. package/lib/routes/taoguba/namespace.ts +6 -0
  3345. package/lib/routes/taptap/changelog.ts +71 -0
  3346. package/lib/routes/taptap/namespace.ts +10 -0
  3347. package/lib/routes/taptap/review.ts +166 -0
  3348. package/lib/routes/taptap/topic.ts +116 -0
  3349. package/lib/routes/taptap/utils.ts +50 -0
  3350. package/lib/routes/tass/namespace.ts +6 -0
  3351. package/lib/routes/tass/news.ts +87 -0
  3352. package/lib/routes/techcrunch/namespace.ts +6 -0
  3353. package/lib/routes/techcrunch/news.ts +57 -0
  3354. package/lib/routes/techcrunch/templates/description.art +7 -0
  3355. package/lib/routes/techflowpost/express.ts +47 -0
  3356. package/lib/routes/techflowpost/index.ts +45 -0
  3357. package/lib/routes/techflowpost/namespace.ts +6 -0
  3358. package/lib/routes/techpowerup/index.ts +85 -0
  3359. package/lib/routes/techpowerup/namespace.ts +6 -0
  3360. package/lib/routes/techpowerup/review.ts +96 -0
  3361. package/lib/routes/techpowerup/utils.ts +76 -0
  3362. package/lib/routes/telecompaper/namespace.ts +6 -0
  3363. package/lib/routes/telecompaper/news.ts +137 -0
  3364. package/lib/routes/telecompaper/search.ts +107 -0
  3365. package/lib/routes/telegram/blog.ts +61 -0
  3366. package/lib/routes/telegram/channel.ts +726 -0
  3367. package/lib/routes/telegram/namespace.ts +6 -0
  3368. package/lib/routes/telegram/stickerpack.ts +46 -0
  3369. package/lib/routes/telegram/tglib/channel.ts +159 -0
  3370. package/lib/routes/telegram/tglib/client.ts +189 -0
  3371. package/lib/routes/tencent/cloud/developer/column.ts +81 -0
  3372. package/lib/routes/tencent/namespace.ts +6 -0
  3373. package/lib/routes/tencent/news/author.ts +102 -0
  3374. package/lib/routes/tencent/news/coronavirus/data.ts +83 -0
  3375. package/lib/routes/tencent/news/coronavirus/total.ts +51 -0
  3376. package/lib/routes/tencent/news/coronavirus/utils.ts +15 -0
  3377. package/lib/routes/tencent/pvp/newsindex.ts +88 -0
  3378. package/lib/routes/tencent/qq/sdk/changelog.ts +76 -0
  3379. package/lib/routes/tencent/templates/news/image.art +4 -0
  3380. package/lib/routes/tesla/cx.ts +218 -0
  3381. package/lib/routes/tesla/namespace.ts +6 -0
  3382. package/lib/routes/tesla/price/get-price.ts +23 -0
  3383. package/lib/routes/tesla/price/index.ts +66 -0
  3384. package/lib/routes/test/index.ts +417 -0
  3385. package/lib/routes/test/namespace.ts +5 -0
  3386. package/lib/routes/tfc-taiwan/common.ts +38 -0
  3387. package/lib/routes/tfc-taiwan/index.ts +17 -0
  3388. package/lib/routes/tfc-taiwan/namespace.ts +6 -0
  3389. package/lib/routes/tfc-taiwan/topic.ts +17 -0
  3390. package/lib/routes/tfc-taiwan/utils.ts +55 -0
  3391. package/lib/routes/tgbus/list.ts +67 -0
  3392. package/lib/routes/tgbus/namespace.ts +6 -0
  3393. package/lib/routes/tgbus/utils.ts +19 -0
  3394. package/lib/routes/the/index.ts +211 -0
  3395. package/lib/routes/the/namespace.ts +8 -0
  3396. package/lib/routes/the/templates/description.art +27 -0
  3397. package/lib/routes/the/util.ts +307 -0
  3398. package/lib/routes/theatlantic/namespace.ts +6 -0
  3399. package/lib/routes/theatlantic/news.ts +61 -0
  3400. package/lib/routes/theatlantic/utils.ts +58 -0
  3401. package/lib/routes/theblockbeats/index.ts +112 -0
  3402. package/lib/routes/theblockbeats/namespace.ts +6 -0
  3403. package/lib/routes/theblockbeats/templates/description.art +5 -0
  3404. package/lib/routes/thecover/channel.ts +89 -0
  3405. package/lib/routes/thecover/namespace.ts +6 -0
  3406. package/lib/routes/thehindu/namespace.ts +6 -0
  3407. package/lib/routes/thehindu/topic.ts +82 -0
  3408. package/lib/routes/theinitium/author.ts +23 -0
  3409. package/lib/routes/theinitium/channel.ts +28 -0
  3410. package/lib/routes/theinitium/follow.ts +43 -0
  3411. package/lib/routes/theinitium/namespace.ts +11 -0
  3412. package/lib/routes/theinitium/tags.ts +23 -0
  3413. package/lib/routes/theinitium/utils.ts +167 -0
  3414. package/lib/routes/themoviedb/api-key.ts +24 -0
  3415. package/lib/routes/themoviedb/collection.ts +40 -0
  3416. package/lib/routes/themoviedb/episodes.ts +46 -0
  3417. package/lib/routes/themoviedb/namespace.ts +9 -0
  3418. package/lib/routes/themoviedb/seasons.ts +50 -0
  3419. package/lib/routes/themoviedb/sheet.ts +75 -0
  3420. package/lib/routes/themoviedb/trending.ts +43 -0
  3421. package/lib/routes/themoviedb/utils.ts +37 -0
  3422. package/lib/routes/thenewslens/index.ts +92 -0
  3423. package/lib/routes/thenewslens/namespace.ts +6 -0
  3424. package/lib/routes/thepaper/839studio/category.ts +54 -0
  3425. package/lib/routes/thepaper/839studio/studio.ts +41 -0
  3426. package/lib/routes/thepaper/channel.ts +60 -0
  3427. package/lib/routes/thepaper/factpaper.ts +91 -0
  3428. package/lib/routes/thepaper/featured.ts +43 -0
  3429. package/lib/routes/thepaper/list.ts +145 -0
  3430. package/lib/routes/thepaper/namespace.ts +7 -0
  3431. package/lib/routes/thepaper/sidebar.ts +39 -0
  3432. package/lib/routes/thepaper/utils.ts +88 -0
  3433. package/lib/routes/thepetcity/index.ts +69 -0
  3434. package/lib/routes/thepetcity/namespace.ts +6 -0
  3435. package/lib/routes/thepetcity/terms-map.ts +28 -0
  3436. package/lib/routes/theverge/index.ts +133 -0
  3437. package/lib/routes/theverge/namespace.ts +6 -0
  3438. package/lib/routes/thoughtco/index.ts +413 -0
  3439. package/lib/routes/thoughtco/namespace.ts +6 -0
  3440. package/lib/routes/thoughtworks/index.ts +71 -0
  3441. package/lib/routes/thoughtworks/namespace.ts +6 -0
  3442. package/lib/routes/threads/index.ts +110 -0
  3443. package/lib/routes/threads/namespace.ts +6 -0
  3444. package/lib/routes/threads/utils.ts +166 -0
  3445. package/lib/routes/thwiki/index.ts +58 -0
  3446. package/lib/routes/thwiki/namespace.ts +6 -0
  3447. package/lib/routes/tiktok/namespace.ts +6 -0
  3448. package/lib/routes/tiktok/templates/user.art +7 -0
  3449. package/lib/routes/tiktok/user.ts +90 -0
  3450. package/lib/routes/timednews/namespace.ts +6 -0
  3451. package/lib/routes/timednews/news.ts +127 -0
  3452. package/lib/routes/tingshuitz/changsha.ts +68 -0
  3453. package/lib/routes/tingshuitz/dalian.ts +54 -0
  3454. package/lib/routes/tingshuitz/dongguan.ts +53 -0
  3455. package/lib/routes/tingshuitz/guangzhou.ts +42 -0
  3456. package/lib/routes/tingshuitz/hangzhou.ts +59 -0
  3457. package/lib/routes/tingshuitz/namespace.ts +7 -0
  3458. package/lib/routes/tingshuitz/nanjing.ts +58 -0
  3459. package/lib/routes/tingshuitz/shenzhen.ts +58 -0
  3460. package/lib/routes/tingshuitz/wuhan.ts +47 -0
  3461. package/lib/routes/tingshuitz/xian.ts +50 -0
  3462. package/lib/routes/tingshuitz/xiaoshan.ts +59 -0
  3463. package/lib/routes/tingshuitz/yangjiang.ts +54 -0
  3464. package/lib/routes/tingtingfm/namespace.ts +6 -0
  3465. package/lib/routes/tingtingfm/program.ts +132 -0
  3466. package/lib/routes/tingtingfm/utils.ts +29 -0
  3467. package/lib/routes/tisi/index.ts +58 -0
  3468. package/lib/routes/tisi/namespace.ts +6 -0
  3469. package/lib/routes/tju/cic/index.ts +132 -0
  3470. package/lib/routes/tju/namespace.ts +6 -0
  3471. package/lib/routes/tju/news/index.ts +150 -0
  3472. package/lib/routes/tju/oaa/index.ts +135 -0
  3473. package/lib/routes/tju/yzb/index.ts +140 -0
  3474. package/lib/routes/tokeninsight/blog.ts +78 -0
  3475. package/lib/routes/tokeninsight/bulletin.ts +70 -0
  3476. package/lib/routes/tokeninsight/namespace.ts +9 -0
  3477. package/lib/routes/tokeninsight/report.ts +83 -0
  3478. package/lib/routes/tongji/bks.ts +55 -0
  3479. package/lib/routes/tongji/namespace.ts +6 -0
  3480. package/lib/routes/tongji/sse/_article.ts +25 -0
  3481. package/lib/routes/tongji/sse/notice.ts +71 -0
  3482. package/lib/routes/tongji/yjs.ts +52 -0
  3483. package/lib/routes/tongli/namespace.ts +6 -0
  3484. package/lib/routes/tongli/news.ts +75 -0
  3485. package/lib/routes/toodaylab/index.ts +108 -0
  3486. package/lib/routes/toodaylab/namespace.ts +6 -0
  3487. package/lib/routes/tophub/index.ts +64 -0
  3488. package/lib/routes/tophub/list.ts +76 -0
  3489. package/lib/routes/tophub/namespace.ts +9 -0
  3490. package/lib/routes/tophub/templates/rank.art +22 -0
  3491. package/lib/routes/topys/index.ts +93 -0
  3492. package/lib/routes/topys/namespace.ts +6 -0
  3493. package/lib/routes/towardsdatascience/latest.ts +67 -0
  3494. package/lib/routes/towardsdatascience/namespace.ts +6 -0
  3495. package/lib/routes/tradingview/blog.ts +115 -0
  3496. package/lib/routes/tradingview/desktop.ts +86 -0
  3497. package/lib/routes/tradingview/namespace.ts +6 -0
  3498. package/lib/routes/tradingview/pine.ts +68 -0
  3499. package/lib/routes/tradingview/templates/description.art +13 -0
  3500. package/lib/routes/transcriptforest/index.ts +135 -0
  3501. package/lib/routes/transcriptforest/namespace.ts +6 -0
  3502. package/lib/routes/transcriptforest/templates/description.art +23 -0
  3503. package/lib/routes/trending/all-trending.ts +228 -0
  3504. package/lib/routes/trending/namespace.ts +6 -0
  3505. package/lib/routes/trendingpapers/namespace.ts +6 -0
  3506. package/lib/routes/trendingpapers/papers.ts +59 -0
  3507. package/lib/routes/tribalfootball/latest.ts +87 -0
  3508. package/lib/routes/tribalfootball/namespace.ts +6 -0
  3509. package/lib/routes/trow/namespace.ts +6 -0
  3510. package/lib/routes/trow/portal.ts +71 -0
  3511. package/lib/routes/tsdm39/bd.ts +101 -0
  3512. package/lib/routes/tsdm39/namespace.ts +7 -0
  3513. package/lib/routes/tsinghua/lib/zydt.ts +129 -0
  3514. package/lib/routes/tsinghua/namespace.ts +8 -0
  3515. package/lib/routes/ttv/index.ts +78 -0
  3516. package/lib/routes/ttv/namespace.ts +6 -0
  3517. package/lib/routes/tvb/namespace.ts +6 -0
  3518. package/lib/routes/tvb/news.ts +119 -0
  3519. package/lib/routes/tvtropes/featured.ts +98 -0
  3520. package/lib/routes/tvtropes/namespace.ts +6 -0
  3521. package/lib/routes/tvtropes/templates/description.art +23 -0
  3522. package/lib/routes/twitch/live.ts +107 -0
  3523. package/lib/routes/twitch/namespace.ts +6 -0
  3524. package/lib/routes/twitch/schedule.ts +101 -0
  3525. package/lib/routes/twitch/video.ts +100 -0
  3526. package/lib/routes/twitter/api/developer-api/search.ts +23 -0
  3527. package/lib/routes/twitter/api/developer-api/user.ts +38 -0
  3528. package/lib/routes/twitter/api/index.ts +44 -0
  3529. package/lib/routes/twitter/api/mobile-api/api.ts +286 -0
  3530. package/lib/routes/twitter/api/mobile-api/constants.ts +86 -0
  3531. package/lib/routes/twitter/api/mobile-api/login.ts +208 -0
  3532. package/lib/routes/twitter/api/mobile-api/token.ts +36 -0
  3533. package/lib/routes/twitter/api/web-api/api.ts +216 -0
  3534. package/lib/routes/twitter/api/web-api/constants.ts +114 -0
  3535. package/lib/routes/twitter/api/web-api/login.ts +66 -0
  3536. package/lib/routes/twitter/api/web-api/utils.ts +213 -0
  3537. package/lib/routes/twitter/home-latest.ts +60 -0
  3538. package/lib/routes/twitter/home.ts +60 -0
  3539. package/lib/routes/twitter/keyword.ts +55 -0
  3540. package/lib/routes/twitter/likes.ts +46 -0
  3541. package/lib/routes/twitter/list.ts +57 -0
  3542. package/lib/routes/twitter/media.ts +62 -0
  3543. package/lib/routes/twitter/namespace.ts +47 -0
  3544. package/lib/routes/twitter/trends.ts +44 -0
  3545. package/lib/routes/twitter/tweet.ts +65 -0
  3546. package/lib/routes/twitter/user.ts +77 -0
  3547. package/lib/routes/twitter/utils.ts +498 -0
  3548. package/lib/routes/twreporter/category.ts +116 -0
  3549. package/lib/routes/twreporter/fetch-article.ts +110 -0
  3550. package/lib/routes/twreporter/namespace.ts +6 -0
  3551. package/lib/routes/twreporter/newest.ts +52 -0
  3552. package/lib/routes/twreporter/templates/image.art +3 -0
  3553. package/lib/routes/twreporter/templates/youtube.art +1 -0
  3554. package/lib/routes/txrjy/fornumtopic.ts +98 -0
  3555. package/lib/routes/txrjy/namespace.ts +6 -0
  3556. package/lib/routes/tynu/namespace.ts +6 -0
  3557. package/lib/routes/tynu/tynu.ts +55 -0
  3558. package/lib/routes/typora/changelog-dev.ts +57 -0
  3559. package/lib/routes/typora/changelog.ts +66 -0
  3560. package/lib/routes/typora/namespace.ts +6 -0
  3561. package/lib/routes/typst/namespace.ts +13 -0
  3562. package/lib/routes/typst/universe.ts +108 -0
  3563. package/lib/routes/u3c3/index.ts +93 -0
  3564. package/lib/routes/u3c3/namespace.ts +6 -0
  3565. package/lib/routes/u9a9/index.ts +83 -0
  3566. package/lib/routes/u9a9/namespace.ts +6 -0
  3567. package/lib/routes/uber/blog.ts +85 -0
  3568. package/lib/routes/uber/namespace.ts +6 -0
  3569. package/lib/routes/ucas/ai.ts +53 -0
  3570. package/lib/routes/ucas/index.ts +82 -0
  3571. package/lib/routes/ucas/namespace.ts +6 -0
  3572. package/lib/routes/ucas/rader.ts +47 -0
  3573. package/lib/routes/uchicago/current.ts +107 -0
  3574. package/lib/routes/uchicago/namespace.ts +6 -0
  3575. package/lib/routes/udn/breaking-news.ts +134 -0
  3576. package/lib/routes/udn/global/index.ts +91 -0
  3577. package/lib/routes/udn/global/tag.ts +78 -0
  3578. package/lib/routes/udn/namespace.ts +6 -0
  3579. package/lib/routes/uestc/auto.ts +71 -0
  3580. package/lib/routes/uestc/cqe.ts +91 -0
  3581. package/lib/routes/uestc/gr.ts +74 -0
  3582. package/lib/routes/uestc/jwc.ts +82 -0
  3583. package/lib/routes/uestc/namespace.ts +6 -0
  3584. package/lib/routes/uestc/news.ts +81 -0
  3585. package/lib/routes/uestc/scse.ts +116 -0
  3586. package/lib/routes/uestc/sice.ts +72 -0
  3587. package/lib/routes/uestc/sise.ts +111 -0
  3588. package/lib/routes/uibe/hr.ts +88 -0
  3589. package/lib/routes/uibe/namespace.ts +6 -0
  3590. package/lib/routes/ulapia/index.ts +69 -0
  3591. package/lib/routes/ulapia/namespace.ts +6 -0
  3592. package/lib/routes/ulapia/research.ts +64 -0
  3593. package/lib/routes/uniqlo/namespace.ts +6 -0
  3594. package/lib/routes/uniqlo/new.ts +81 -0
  3595. package/lib/routes/unraid/community-apps.ts +60 -0
  3596. package/lib/routes/unraid/namespace.ts +6 -0
  3597. package/lib/routes/unusualwhales/namespace.ts +6 -0
  3598. package/lib/routes/unusualwhales/news.ts +49 -0
  3599. package/lib/routes/upc/jsj.ts +100 -0
  3600. package/lib/routes/upc/jwc.ts +121 -0
  3601. package/lib/routes/upc/main.ts +95 -0
  3602. package/lib/routes/upc/namespace.ts +6 -0
  3603. package/lib/routes/upc/yjs.ts +53 -0
  3604. package/lib/routes/uptimerobot/namespace.ts +6 -0
  3605. package/lib/routes/uptimerobot/rss.ts +161 -0
  3606. package/lib/routes/uraaka-joshi/namespace.ts +6 -0
  3607. package/lib/routes/uraaka-joshi/uraaka-joshi-user.ts +132 -0
  3608. package/lib/routes/uraaka-joshi/uraaka-joshi.ts +105 -0
  3609. package/lib/routes/urbandictionary/namespace.ts +6 -0
  3610. package/lib/routes/urbandictionary/random.ts +52 -0
  3611. package/lib/routes/usenix/loginonline.ts +63 -0
  3612. package/lib/routes/usenix/namespace.ts +6 -0
  3613. package/lib/routes/usenix/usenix.ts +78 -0
  3614. package/lib/routes/usepanda/index.ts +48 -0
  3615. package/lib/routes/usepanda/namespace.ts +6 -0
  3616. package/lib/routes/ustb/namespace.ts +6 -0
  3617. package/lib/routes/ustb/tj/news.ts +83 -0
  3618. package/lib/routes/ustb/yjsy/news.ts +484 -0
  3619. package/lib/routes/ustb/yzxc/tzgg.ts +75 -0
  3620. package/lib/routes/ustc/eeis.ts +91 -0
  3621. package/lib/routes/ustc/gs.ts +90 -0
  3622. package/lib/routes/ustc/index.ts +108 -0
  3623. package/lib/routes/ustc/job.ts +223 -0
  3624. package/lib/routes/ustc/jwc.ts +86 -0
  3625. package/lib/routes/ustc/math.ts +94 -0
  3626. package/lib/routes/ustc/namespace.ts +6 -0
  3627. package/lib/routes/ustc/scms.ts +97 -0
  3628. package/lib/routes/ustc/sist.ts +91 -0
  3629. package/lib/routes/usts/jwch.ts +76 -0
  3630. package/lib/routes/usts/namespace.ts +6 -0
  3631. package/lib/routes/utgd/category.ts +61 -0
  3632. package/lib/routes/utgd/namespace.ts +6 -0
  3633. package/lib/routes/utgd/templates/description.art +11 -0
  3634. package/lib/routes/utgd/timeline.ts +49 -0
  3635. package/lib/routes/utgd/topic.ts +65 -0
  3636. package/lib/routes/utgd/utils.ts +41 -0
  3637. package/lib/routes/uw/gix/news.ts +95 -0
  3638. package/lib/routes/uw/namespace.ts +6 -0
  3639. package/lib/routes/v1tx/index.ts +71 -0
  3640. package/lib/routes/v1tx/namespace.ts +6 -0
  3641. package/lib/routes/v2ex/namespace.ts +6 -0
  3642. package/lib/routes/v2ex/post.ts +59 -0
  3643. package/lib/routes/v2ex/tab.ts +77 -0
  3644. package/lib/routes/v2ex/topics.ts +65 -0
  3645. package/lib/routes/v2ex/xna.ts +55 -0
  3646. package/lib/routes/v2rayshare/index.ts +37 -0
  3647. package/lib/routes/v2rayshare/namespace.ts +6 -0
  3648. package/lib/routes/vcb-s/category.ts +83 -0
  3649. package/lib/routes/vcb-s/index.ts +57 -0
  3650. package/lib/routes/vcb-s/namespace.ts +6 -0
  3651. package/lib/routes/verfghbw/namespace.ts +6 -0
  3652. package/lib/routes/verfghbw/press.ts +84 -0
  3653. package/lib/routes/vice/namespace.ts +6 -0
  3654. package/lib/routes/vice/templates/article.art +19 -0
  3655. package/lib/routes/vice/topic.ts +103 -0
  3656. package/lib/routes/vimeo/category.ts +90 -0
  3657. package/lib/routes/vimeo/channel.ts +100 -0
  3658. package/lib/routes/vimeo/namespace.ts +6 -0
  3659. package/lib/routes/vimeo/usr-videos.ts +104 -0
  3660. package/lib/routes/vocus/namespace.ts +6 -0
  3661. package/lib/routes/vocus/publication.ts +67 -0
  3662. package/lib/routes/vocus/user.ts +63 -0
  3663. package/lib/routes/vocus/utils.ts +46 -0
  3664. package/lib/routes/vom/featured.ts +79 -0
  3665. package/lib/routes/vom/namespace.ts +6 -0
  3666. package/lib/routes/wallhaven/index.ts +86 -0
  3667. package/lib/routes/wallhaven/namespace.ts +13 -0
  3668. package/lib/routes/wallpaperhub/index.ts +46 -0
  3669. package/lib/routes/wallpaperhub/namespace.ts +6 -0
  3670. package/lib/routes/wallstreetcn/hot.ts +82 -0
  3671. package/lib/routes/wallstreetcn/live.ts +80 -0
  3672. package/lib/routes/wallstreetcn/namespace.ts +6 -0
  3673. package/lib/routes/wallstreetcn/news.ts +103 -0
  3674. package/lib/routes/wanqu/namespace.ts +6 -0
  3675. package/lib/routes/wanqu/news.ts +52 -0
  3676. package/lib/routes/warthunder/namespace.ts +6 -0
  3677. package/lib/routes/warthunder/news.ts +79 -0
  3678. package/lib/routes/watasuke/blog.ts +42 -0
  3679. package/lib/routes/watasuke/namespace.ts +7 -0
  3680. package/lib/routes/wchscu/namespace.ts +6 -0
  3681. package/lib/routes/wchscu/recruit.ts +73 -0
  3682. package/lib/routes/wdc/download.ts +56 -0
  3683. package/lib/routes/wdc/namespace.ts +6 -0
  3684. package/lib/routes/web/articles.ts +25 -0
  3685. package/lib/routes/web/blog.ts +25 -0
  3686. package/lib/routes/web/namespace.ts +6 -0
  3687. package/lib/routes/web/series.ts +32 -0
  3688. package/lib/routes/web/utils.ts +68 -0
  3689. package/lib/routes/web3caff/index.ts +73 -0
  3690. package/lib/routes/web3caff/namespace.ts +6 -0
  3691. package/lib/routes/wechat/announce.ts +58 -0
  3692. package/lib/routes/wechat/ce.ts +94 -0
  3693. package/lib/routes/wechat/data258.ts +148 -0
  3694. package/lib/routes/wechat/ershcimi.ts +52 -0
  3695. package/lib/routes/wechat/feeddd.ts +43 -0
  3696. package/lib/routes/wechat/mp.ts +81 -0
  3697. package/lib/routes/wechat/msgalbum.ts +61 -0
  3698. package/lib/routes/wechat/namespace.ts +9 -0
  3699. package/lib/routes/wechat/sogou.ts +77 -0
  3700. package/lib/routes/wechat/tgchannel.ts +185 -0
  3701. package/lib/routes/wechat/uread.ts +71 -0
  3702. package/lib/routes/wechat/wechat2rss.ts +47 -0
  3703. package/lib/routes/weekendhk/namespace.ts +6 -0
  3704. package/lib/routes/weekendhk/posts.ts +44 -0
  3705. package/lib/routes/weibo/friends.ts +163 -0
  3706. package/lib/routes/weibo/group.ts +119 -0
  3707. package/lib/routes/weibo/keyword.ts +70 -0
  3708. package/lib/routes/weibo/namespace.ts +41 -0
  3709. package/lib/routes/weibo/oasis/user.ts +46 -0
  3710. package/lib/routes/weibo/search/hot.ts +178 -0
  3711. package/lib/routes/weibo/search/template/digest.art +17 -0
  3712. package/lib/routes/weibo/super-index.ts +87 -0
  3713. package/lib/routes/weibo/timeline.ts +188 -0
  3714. package/lib/routes/weibo/user-bookmarks.ts +191 -0
  3715. package/lib/routes/weibo/user.ts +184 -0
  3716. package/lib/routes/weibo/utils.ts +494 -0
  3717. package/lib/routes/wellcee/namespace.ts +7 -0
  3718. package/lib/routes/wellcee/rent.ts +81 -0
  3719. package/lib/routes/wellcee/support-city.ts +46 -0
  3720. package/lib/routes/wellcee/templates/house.art +18 -0
  3721. package/lib/routes/wellcee/types.ts +58 -0
  3722. package/lib/routes/wellcee/utils.ts +45 -0
  3723. package/lib/routes/wenku8/chapter.ts +54 -0
  3724. package/lib/routes/wenku8/index.ts +60 -0
  3725. package/lib/routes/wenku8/namespace.ts +6 -0
  3726. package/lib/routes/wenku8/volume.ts +60 -0
  3727. package/lib/routes/wfdf/namespace.ts +6 -0
  3728. package/lib/routes/wfdf/news.ts +54 -0
  3729. package/lib/routes/wfu/jwc.ts +79 -0
  3730. package/lib/routes/wfu/namespace.ts +6 -0
  3731. package/lib/routes/wfu/news.ts +128 -0
  3732. package/lib/routes/whitehouse/briefing-room.ts +79 -0
  3733. package/lib/routes/whitehouse/namespace.ts +6 -0
  3734. package/lib/routes/whitehouse/ostp.ts +76 -0
  3735. package/lib/routes/who/namespace.ts +6 -0
  3736. package/lib/routes/who/news-room.ts +113 -0
  3737. package/lib/routes/who/news.ts +74 -0
  3738. package/lib/routes/who/speeches.ts +77 -0
  3739. package/lib/routes/whu/cs.ts +109 -0
  3740. package/lib/routes/whu/gs/index.ts +115 -0
  3741. package/lib/routes/whu/hyxt.ts +59 -0
  3742. package/lib/routes/whu/namespace.ts +6 -0
  3743. package/lib/routes/whu/news.ts +82 -0
  3744. package/lib/routes/whu/rsgis.ts +277 -0
  3745. package/lib/routes/whu/util.ts +143 -0
  3746. package/lib/routes/wikinews/index.ts +68 -0
  3747. package/lib/routes/wikinews/namespace.ts +6 -0
  3748. package/lib/routes/winstall/namespace.ts +6 -0
  3749. package/lib/routes/winstall/update.ts +71 -0
  3750. package/lib/routes/wired/namespace.ts +7 -0
  3751. package/lib/routes/wired/tag.ts +97 -0
  3752. package/lib/routes/wired/types.ts +81 -0
  3753. package/lib/routes/wise/namespace.ts +6 -0
  3754. package/lib/routes/wise/pair.ts +89 -0
  3755. package/lib/routes/wizfile/index.ts +66 -0
  3756. package/lib/routes/wizfile/namespace.ts +6 -0
  3757. package/lib/routes/wmc-bj/namespace.ts +6 -0
  3758. package/lib/routes/wmc-bj/publish.ts +69 -0
  3759. package/lib/routes/wmc-bj/templates/description.art +5 -0
  3760. package/lib/routes/wmpvp/index.ts +69 -0
  3761. package/lib/routes/wmpvp/namespace.ts +6 -0
  3762. package/lib/routes/wnacg/category.ts +17 -0
  3763. package/lib/routes/wnacg/common.ts +111 -0
  3764. package/lib/routes/wnacg/index.ts +16 -0
  3765. package/lib/routes/wnacg/namespace.ts +6 -0
  3766. package/lib/routes/wnacg/tag.ts +17 -0
  3767. package/lib/routes/wordpress/index.ts +172 -0
  3768. package/lib/routes/wordpress/namespace.ts +8 -0
  3769. package/lib/routes/wordpress/util.ts +307 -0
  3770. package/lib/routes/worldjournal/index.ts +76 -0
  3771. package/lib/routes/worldjournal/namespace.ts +6 -0
  3772. package/lib/routes/worldofwarships/devblog.ts +76 -0
  3773. package/lib/routes/worldofwarships/namespace.ts +13 -0
  3774. package/lib/routes/woshipm/namespace.ts +6 -0
  3775. package/lib/routes/woshipm/popular.ts +63 -0
  3776. package/lib/routes/woshipm/user-article.ts +62 -0
  3777. package/lib/routes/woshipm/utils.ts +18 -0
  3778. package/lib/routes/woshipm/wen.ts +62 -0
  3779. package/lib/routes/wsj/namespace.ts +6 -0
  3780. package/lib/routes/wsj/news.ts +83 -0
  3781. package/lib/routes/wsj/utils.ts +124 -0
  3782. package/lib/routes/wsyu/namespace.ts +6 -0
  3783. package/lib/routes/wsyu/news.ts +108 -0
  3784. package/lib/routes/wtu/index.ts +59 -0
  3785. package/lib/routes/wtu/job.ts +108 -0
  3786. package/lib/routes/wtu/namespace.ts +6 -0
  3787. package/lib/routes/wyzxwk/article.ts +130 -0
  3788. package/lib/routes/wyzxwk/namespace.ts +6 -0
  3789. package/lib/routes/wzu/namespace.ts +6 -0
  3790. package/lib/routes/wzu/news.ts +93 -0
  3791. package/lib/routes/x-mol/namespace.ts +6 -0
  3792. package/lib/routes/x-mol/news.ts +93 -0
  3793. package/lib/routes/x-mol/paper.ts +93 -0
  3794. package/lib/routes/x-mol/utils.ts +3 -0
  3795. package/lib/routes/x6d/index.ts +141 -0
  3796. package/lib/routes/x6d/namespace.ts +6 -0
  3797. package/lib/routes/xaufe/jiaowu.ts +92 -0
  3798. package/lib/routes/xaufe/namespace.ts +6 -0
  3799. package/lib/routes/xaut/index.ts +95 -0
  3800. package/lib/routes/xaut/jwc.ts +92 -0
  3801. package/lib/routes/xaut/namespace.ts +6 -0
  3802. package/lib/routes/xaut/rsc.ts +94 -0
  3803. package/lib/routes/xboxfan/namespace.ts +6 -0
  3804. package/lib/routes/xboxfan/news.ts +70 -0
  3805. package/lib/routes/xianbao/index.ts +142 -0
  3806. package/lib/routes/xianbao/namespace.ts +6 -0
  3807. package/lib/routes/xiaoheihe/add2cart.ts +63 -0
  3808. package/lib/routes/xiaoheihe/discount.ts +102 -0
  3809. package/lib/routes/xiaoheihe/namespace.ts +6 -0
  3810. package/lib/routes/xiaoheihe/news.ts +61 -0
  3811. package/lib/routes/xiaoheihe/user.ts +69 -0
  3812. package/lib/routes/xiaoheihe/util.ts +75 -0
  3813. package/lib/routes/xiaohongshu/board.ts +55 -0
  3814. package/lib/routes/xiaohongshu/namespace.ts +6 -0
  3815. package/lib/routes/xiaohongshu/notes.ts +39 -0
  3816. package/lib/routes/xiaohongshu/user.ts +86 -0
  3817. package/lib/routes/xiaohongshu/util.ts +199 -0
  3818. package/lib/routes/xiaomiyoupin/crowdfunding.ts +71 -0
  3819. package/lib/routes/xiaomiyoupin/latest.ts +40 -0
  3820. package/lib/routes/xiaomiyoupin/namespace.ts +6 -0
  3821. package/lib/routes/xiaomiyoupin/utils.ts +21 -0
  3822. package/lib/routes/xiaote/index.ts +73 -0
  3823. package/lib/routes/xiaote/namespace.ts +6 -0
  3824. package/lib/routes/xiaoyuzhou/namespace.ts +6 -0
  3825. package/lib/routes/xiaoyuzhou/pickup.ts +112 -0
  3826. package/lib/routes/xiaoyuzhou/podcast.ts +62 -0
  3827. package/lib/routes/xiaozhuanlan/column.ts +78 -0
  3828. package/lib/routes/xiaozhuanlan/namespace.ts +6 -0
  3829. package/lib/routes/xidian/cs.ts +143 -0
  3830. package/lib/routes/xidian/gr.ts +289 -0
  3831. package/lib/routes/xidian/jwc.ts +78 -0
  3832. package/lib/routes/xidian/namespace.ts +6 -0
  3833. package/lib/routes/ximalaya/album.ts +260 -0
  3834. package/lib/routes/ximalaya/namespace.ts +6 -0
  3835. package/lib/routes/ximalaya/types.ts +68 -0
  3836. package/lib/routes/ximalaya/utils.ts +166 -0
  3837. package/lib/routes/xinhuanet/app.ts +109 -0
  3838. package/lib/routes/xinhuanet/namespace.ts +8 -0
  3839. package/lib/routes/xinpianchang/index.ts +44 -0
  3840. package/lib/routes/xinpianchang/namespace.ts +6 -0
  3841. package/lib/routes/xinpianchang/rank.ts +61 -0
  3842. package/lib/routes/xinpianchang/util.ts +108 -0
  3843. package/lib/routes/xjtu/2yuan/news.ts +93 -0
  3844. package/lib/routes/xjtu/dean.ts +91 -0
  3845. package/lib/routes/xjtu/dyyy/index.ts +53 -0
  3846. package/lib/routes/xjtu/ee.ts +70 -0
  3847. package/lib/routes/xjtu/gs/tzgg.ts +65 -0
  3848. package/lib/routes/xjtu/international.ts +60 -0
  3849. package/lib/routes/xjtu/job.ts +109 -0
  3850. package/lib/routes/xjtu/namespace.ts +6 -0
  3851. package/lib/routes/xjtu/std.ts +84 -0
  3852. package/lib/routes/xkb/index.ts +86 -0
  3853. package/lib/routes/xkb/namespace.ts +6 -0
  3854. package/lib/routes/xmanhua/index.ts +88 -0
  3855. package/lib/routes/xmanhua/namespace.ts +6 -0
  3856. package/lib/routes/xmnn/epaper.ts +114 -0
  3857. package/lib/routes/xmnn/namespace.ts +6 -0
  3858. package/lib/routes/xmnn/news.ts +74 -0
  3859. package/lib/routes/xmut/jwc/bkjw.ts +71 -0
  3860. package/lib/routes/xmut/jwc/yjs.ts +60 -0
  3861. package/lib/routes/xmut/namespace.ts +6 -0
  3862. package/lib/routes/xsijishe/forum.ts +99 -0
  3863. package/lib/routes/xsijishe/namespace.ts +6 -0
  3864. package/lib/routes/xsijishe/rank.ts +101 -0
  3865. package/lib/routes/xueqiu/column.ts +66 -0
  3866. package/lib/routes/xueqiu/cookies.ts +28 -0
  3867. package/lib/routes/xueqiu/favorite.ts +71 -0
  3868. package/lib/routes/xueqiu/fund.ts +69 -0
  3869. package/lib/routes/xueqiu/hots.ts +67 -0
  3870. package/lib/routes/xueqiu/namespace.ts +6 -0
  3871. package/lib/routes/xueqiu/snb.ts +71 -0
  3872. package/lib/routes/xueqiu/stock-comments.ts +73 -0
  3873. package/lib/routes/xueqiu/stock-info.ts +98 -0
  3874. package/lib/routes/xueqiu/timeline.ts +94 -0
  3875. package/lib/routes/xueqiu/today.ts +86 -0
  3876. package/lib/routes/xueqiu/user-stock.ts +78 -0
  3877. package/lib/routes/xueqiu/user.ts +101 -0
  3878. package/lib/routes/xunhupay/index.ts +49 -0
  3879. package/lib/routes/xunhupay/namespace.ts +6 -0
  3880. package/lib/routes/xys/namespace.ts +6 -0
  3881. package/lib/routes/xys/new.ts +103 -0
  3882. package/lib/routes/xyzrank/index.ts +129 -0
  3883. package/lib/routes/xyzrank/namespace.ts +13 -0
  3884. package/lib/routes/yahoo/namespace.ts +6 -0
  3885. package/lib/routes/yahoo/news/index.ts +149 -0
  3886. package/lib/routes/yahoo/news/listid.ts +67 -0
  3887. package/lib/routes/yahoo/news/provider-helper.ts +48 -0
  3888. package/lib/routes/yahoo/news/provider.ts +63 -0
  3889. package/lib/routes/yahoo/news/utils.ts +134 -0
  3890. package/lib/routes/yahoo/templates/youtube.art +1 -0
  3891. package/lib/routes/yamibo/bbs/forum.ts +116 -0
  3892. package/lib/routes/yamibo/bbs/thread.ts +84 -0
  3893. package/lib/routes/yamibo/namespace.ts +6 -0
  3894. package/lib/routes/yamibo/utils.ts +114 -0
  3895. package/lib/routes/yande/namespace.ts +7 -0
  3896. package/lib/routes/yande/post.ts +84 -0
  3897. package/lib/routes/yangtzeu/dongke.ts +70 -0
  3898. package/lib/routes/yangtzeu/namespace.ts +6 -0
  3899. package/lib/routes/ycwb/index.ts +116 -0
  3900. package/lib/routes/ycwb/namespace.ts +6 -0
  3901. package/lib/routes/yenpress/namespace.ts +7 -0
  3902. package/lib/routes/yenpress/series.ts +115 -0
  3903. package/lib/routes/yenpress/templates/series.art +25 -0
  3904. package/lib/routes/ygkkk/namespace.ts +6 -0
  3905. package/lib/routes/ygkkk/rss.ts +48 -0
  3906. package/lib/routes/yicai/author.ts +52 -0
  3907. package/lib/routes/yicai/brief.ts +53 -0
  3908. package/lib/routes/yicai/carousel.ts +48 -0
  3909. package/lib/routes/yicai/dt.ts +174 -0
  3910. package/lib/routes/yicai/feed.ts +55 -0
  3911. package/lib/routes/yicai/headline.ts +39 -0
  3912. package/lib/routes/yicai/latest.ts +39 -0
  3913. package/lib/routes/yicai/namespace.ts +6 -0
  3914. package/lib/routes/yicai/news.ts +92 -0
  3915. package/lib/routes/yicai/templates/description.art +39 -0
  3916. package/lib/routes/yicai/utils.ts +65 -0
  3917. package/lib/routes/yicai/video.ts +102 -0
  3918. package/lib/routes/yicai/vip.ts +52 -0
  3919. package/lib/routes/ymgal/article.ts +84 -0
  3920. package/lib/routes/ymgal/game.ts +69 -0
  3921. package/lib/routes/ymgal/namespace.ts +6 -0
  3922. package/lib/routes/yoasobi-music/info.ts +97 -0
  3923. package/lib/routes/yoasobi-music/jsonp-helper.ts +17 -0
  3924. package/lib/routes/yoasobi-music/live.ts +80 -0
  3925. package/lib/routes/yoasobi-music/media.ts +87 -0
  3926. package/lib/routes/yoasobi-music/namespace.ts +6 -0
  3927. package/lib/routes/yomiuri/namespace.ts +6 -0
  3928. package/lib/routes/yomiuri/news.ts +124 -0
  3929. package/lib/routes/yomujp/level.ts +127 -0
  3930. package/lib/routes/yomujp/namespace.ts +6 -0
  3931. package/lib/routes/youku/channel.ts +84 -0
  3932. package/lib/routes/youku/namespace.ts +6 -0
  3933. package/lib/routes/youtube/channel.ts +76 -0
  3934. package/lib/routes/youtube/charts.ts +151 -0
  3935. package/lib/routes/youtube/community.ts +70 -0
  3936. package/lib/routes/youtube/custom.ts +79 -0
  3937. package/lib/routes/youtube/live.ts +76 -0
  3938. package/lib/routes/youtube/namespace.ts +6 -0
  3939. package/lib/routes/youtube/playlist.ts +60 -0
  3940. package/lib/routes/youtube/subscriptions.ts +97 -0
  3941. package/lib/routes/youtube/user.ts +91 -0
  3942. package/lib/routes/youtube/utils.ts +168 -0
  3943. package/lib/routes/youzhiyouxing/materials.ts +86 -0
  3944. package/lib/routes/youzhiyouxing/namespace.ts +6 -0
  3945. package/lib/routes/yuque/book.ts +126 -0
  3946. package/lib/routes/yuque/namespace.ts +6 -0
  3947. package/lib/routes/yuque/utils.ts +79 -0
  3948. package/lib/routes/yxdown/namespace.ts +6 -0
  3949. package/lib/routes/yxdown/news.ts +80 -0
  3950. package/lib/routes/yxdown/recommend.ts +80 -0
  3951. package/lib/routes/yxdown/utils.ts +14 -0
  3952. package/lib/routes/yxdzqb/index.ts +84 -0
  3953. package/lib/routes/yxdzqb/namespace.ts +6 -0
  3954. package/lib/routes/yxrb/home.ts +90 -0
  3955. package/lib/routes/yxrb/namespace.ts +6 -0
  3956. package/lib/routes/yyets/article.ts +68 -0
  3957. package/lib/routes/yyets/namespace.ts +6 -0
  3958. package/lib/routes/yyets/today.ts +62 -0
  3959. package/lib/routes/yystv/category.ts +86 -0
  3960. package/lib/routes/yystv/docs.ts +68 -0
  3961. package/lib/routes/yystv/namespace.ts +6 -0
  3962. package/lib/routes/zagg/namespace.ts +6 -0
  3963. package/lib/routes/zagg/new-arrivals.ts +75 -0
  3964. package/lib/routes/zaker/index.ts +80 -0
  3965. package/lib/routes/zaker/namespace.ts +6 -0
  3966. package/lib/routes/zaobao/interactive.ts +25 -0
  3967. package/lib/routes/zaobao/namespace.ts +9 -0
  3968. package/lib/routes/zaobao/other.ts +29 -0
  3969. package/lib/routes/zaobao/realtime.ts +59 -0
  3970. package/lib/routes/zaobao/util.ts +185 -0
  3971. package/lib/routes/zaobao/znews.ts +71 -0
  3972. package/lib/routes/zaozao/article.ts +64 -0
  3973. package/lib/routes/zaozao/namespace.ts +6 -0
  3974. package/lib/routes/zcmu/jwc/index.ts +63 -0
  3975. package/lib/routes/zcmu/namespace.ts +6 -0
  3976. package/lib/routes/zcmu/yxy/index.ts +64 -0
  3977. package/lib/routes/zcool/discover.ts +302 -0
  3978. package/lib/routes/zcool/locations.ts +6829 -0
  3979. package/lib/routes/zcool/namespace.ts +6 -0
  3980. package/lib/routes/zcool/top.ts +76 -0
  3981. package/lib/routes/zcool/user.ts +84 -0
  3982. package/lib/routes/zcool/utils.ts +14 -0
  3983. package/lib/routes/zhibo8/forum.ts +66 -0
  3984. package/lib/routes/zhibo8/luxiang.ts +52 -0
  3985. package/lib/routes/zhibo8/more.ts +104 -0
  3986. package/lib/routes/zhibo8/namespace.ts +6 -0
  3987. package/lib/routes/zhibo8/post.ts +68 -0
  3988. package/lib/routes/zhihu/activities.ts +156 -0
  3989. package/lib/routes/zhihu/answers.ts +96 -0
  3990. package/lib/routes/zhihu/bookstore/newest.ts +49 -0
  3991. package/lib/routes/zhihu/collection.ts +103 -0
  3992. package/lib/routes/zhihu/daily-section.ts +78 -0
  3993. package/lib/routes/zhihu/daily.ts +106 -0
  3994. package/lib/routes/zhihu/execlib/x-zse-96-v3.ts +127 -0
  3995. package/lib/routes/zhihu/hot.ts +109 -0
  3996. package/lib/routes/zhihu/namespace.ts +9 -0
  3997. package/lib/routes/zhihu/pin/daily.ts +44 -0
  3998. package/lib/routes/zhihu/pin/hotlist.ts +43 -0
  3999. package/lib/routes/zhihu/pin/people.ts +43 -0
  4000. package/lib/routes/zhihu/pin/utils.ts +68 -0
  4001. package/lib/routes/zhihu/posts.ts +87 -0
  4002. package/lib/routes/zhihu/question.ts +78 -0
  4003. package/lib/routes/zhihu/timeline.ts +147 -0
  4004. package/lib/routes/zhihu/topic.ts +117 -0
  4005. package/lib/routes/zhihu/types.ts +104 -0
  4006. package/lib/routes/zhihu/utils.ts +117 -0
  4007. package/lib/routes/zhihu/weekly.ts +56 -0
  4008. package/lib/routes/zhihu/xhu/activities.ts +162 -0
  4009. package/lib/routes/zhihu/xhu/answers.ts +56 -0
  4010. package/lib/routes/zhihu/xhu/auth.ts +31 -0
  4011. package/lib/routes/zhihu/xhu/collection.ts +100 -0
  4012. package/lib/routes/zhihu/xhu/posts.ts +53 -0
  4013. package/lib/routes/zhihu/xhu/question.ts +69 -0
  4014. package/lib/routes/zhihu/xhu/topic.ts +94 -0
  4015. package/lib/routes/zhihu/xhu/zhuanlan.ts +116 -0
  4016. package/lib/routes/zhihu/zhuanlan.ts +130 -0
  4017. package/lib/routes/zhitongcaijing/index.ts +157 -0
  4018. package/lib/routes/zhitongcaijing/namespace.ts +6 -0
  4019. package/lib/routes/zhiy/letter.ts +58 -0
  4020. package/lib/routes/zhiy/namespace.ts +6 -0
  4021. package/lib/routes/zhiy/post.ts +97 -0
  4022. package/lib/routes/zhiy/utils.ts +10 -0
  4023. package/lib/routes/zhonglun/index.ts +135 -0
  4024. package/lib/routes/zhonglun/namespace.ts +8 -0
  4025. package/lib/routes/zhonglun/templates/description.art +7 -0
  4026. package/lib/routes/zhubai/index.ts +56 -0
  4027. package/lib/routes/zhubai/namespace.ts +6 -0
  4028. package/lib/routes/zhubai/top20.ts +95 -0
  4029. package/lib/routes/zhujiceping/namespace.ts +6 -0
  4030. package/lib/routes/zhujiceping/rss.ts +48 -0
  4031. package/lib/routes/zhuwang/index.ts +71 -0
  4032. package/lib/routes/zhuwang/namespace.ts +6 -0
  4033. package/lib/routes/zimuxia/index.ts +87 -0
  4034. package/lib/routes/zimuxia/namespace.ts +6 -0
  4035. package/lib/routes/zimuxia/portfolio.ts +79 -0
  4036. package/lib/routes/zjgtjy/index.ts +46 -0
  4037. package/lib/routes/zjgtjy/namespace.ts +6 -0
  4038. package/lib/routes/zjol/namespace.ts +6 -0
  4039. package/lib/routes/zjol/paper.ts +117 -0
  4040. package/lib/routes/zju/career/index.ts +65 -0
  4041. package/lib/routes/zju/cst/custom.ts +71 -0
  4042. package/lib/routes/zju/cst/index.ts +107 -0
  4043. package/lib/routes/zju/grs/index.ts +66 -0
  4044. package/lib/routes/zju/list.ts +82 -0
  4045. package/lib/routes/zju/namespace.ts +6 -0
  4046. package/lib/routes/zju/physics/index.ts +74 -0
  4047. package/lib/routes/zjut/da/index.ts +92 -0
  4048. package/lib/routes/zjut/namespace.ts +6 -0
  4049. package/lib/routes/zjut/news.ts +82 -0
  4050. package/lib/routes/zjuvag/blog.ts +52 -0
  4051. package/lib/routes/zjuvag/namespace.ts +6 -0
  4052. package/lib/routes/zodgame/forum.ts +121 -0
  4053. package/lib/routes/zodgame/namespace.ts +6 -0
  4054. package/lib/routes/zotero/namespace.ts +6 -0
  4055. package/lib/routes/zotero/versions.ts +57 -0
  4056. package/lib/routes/zrblog/namespace.ts +6 -0
  4057. package/lib/routes/zrblog/rss.ts +48 -0
  4058. package/lib/routes/zsxq/group.ts +63 -0
  4059. package/lib/routes/zsxq/namespace.ts +6 -0
  4060. package/lib/routes/zsxq/types.ts +158 -0
  4061. package/lib/routes/zsxq/user.ts +58 -0
  4062. package/lib/routes/zsxq/utils.ts +71 -0
  4063. package/lib/routes/zuel/namespace.ts +6 -0
  4064. package/lib/routes/zuel/notice.ts +78 -0
  4065. package/lib/routes/zuvio/boards.ts +34 -0
  4066. package/lib/routes/zuvio/namespace.ts +6 -0
  4067. package/lib/routes/zuvio/student5.ts +78 -0
  4068. package/lib/routes/zuvio/utils.ts +72 -0
  4069. package/lib/routes/zyshow/index.ts +58 -0
  4070. package/lib/routes/zyshow/namespace.ts +6 -0
  4071. package/lib/routes/zyw/hot.ts +88 -0
  4072. package/lib/routes/zyw/namespace.ts +6 -0
  4073. package/lib/routes-deprecated/10000link/news.js +59 -0
  4074. package/lib/routes-deprecated/12379/index.js +23 -0
  4075. package/lib/routes-deprecated/199it/category.js +10 -0
  4076. package/lib/routes-deprecated/199it/tag.js +10 -0
  4077. package/lib/routes-deprecated/199it/utils.js +44 -0
  4078. package/lib/routes-deprecated/21caijing/channel.js +76 -0
  4079. package/lib/routes-deprecated/60s-science/transcript.js +60 -0
  4080. package/lib/routes-deprecated/755/user.js +71 -0
  4081. package/lib/routes-deprecated/99percentinvisible/transcript.js +46 -0
  4082. package/lib/routes-deprecated/acm/amturingaward.js +68 -0
  4083. package/lib/routes-deprecated/acwifi/index.js +48 -0
  4084. package/lib/routes-deprecated/adquan/index.js +67 -0
  4085. package/lib/routes-deprecated/aiyanxishe/home.js +134 -0
  4086. package/lib/routes-deprecated/amazfitwatchfaces/search.js +7 -0
  4087. package/lib/routes-deprecated/amd/graphicsdrivers.js +114 -0
  4088. package/lib/routes-deprecated/aozora/newbook.js +93 -0
  4089. package/lib/routes-deprecated/appsales/index.js +66 -0
  4090. package/lib/routes-deprecated/archdaily/home.js +47 -0
  4091. package/lib/routes-deprecated/asahi/index.js +90 -0
  4092. package/lib/routes-deprecated/autotrader/index.js +69 -0
  4093. package/lib/routes-deprecated/avgle/videos.js +46 -0
  4094. package/lib/routes-deprecated/axis-studios/work.js +75 -0
  4095. package/lib/routes-deprecated/babykingdom/index.js +64 -0
  4096. package/lib/routes-deprecated/bahamut/creation-index.js +73 -0
  4097. package/lib/routes-deprecated/bahamut/utils.js +65 -0
  4098. package/lib/routes-deprecated/bandisoft/index.js +42 -0
  4099. package/lib/routes-deprecated/banyuetan/index.js +56 -0
  4100. package/lib/routes-deprecated/benedictevans/recent.js +41 -0
  4101. package/lib/routes-deprecated/bibgame/category.js +56 -0
  4102. package/lib/routes-deprecated/blogs/hedwig.js +42 -0
  4103. package/lib/routes-deprecated/blogs/wangyin.js +50 -0
  4104. package/lib/routes-deprecated/blow-studio/work.js +71 -0
  4105. package/lib/routes-deprecated/blur-studio/index.js +79 -0
  4106. package/lib/routes-deprecated/booth-pm/shop.js +58 -0
  4107. package/lib/routes-deprecated/ccg/index.js +49 -0
  4108. package/lib/routes-deprecated/cell/cell/index.js +113 -0
  4109. package/lib/routes-deprecated/cell/cover.js +106 -0
  4110. package/lib/routes-deprecated/cfan/news.js +49 -0
  4111. package/lib/routes-deprecated/cgtn/most.js +48 -0
  4112. package/lib/routes-deprecated/cgtn/opinions.js +50 -0
  4113. package/lib/routes-deprecated/chaoli/index.js +50 -0
  4114. package/lib/routes-deprecated/checkee/index.js +57 -0
  4115. package/lib/routes-deprecated/chicagotribune/index.js +77 -0
  4116. package/lib/routes-deprecated/chiphell/forum.js +67 -0
  4117. package/lib/routes-deprecated/chocolatey/software.js +55 -0
  4118. package/lib/routes-deprecated/chouti/top.js +28 -0
  4119. package/lib/routes-deprecated/chsi/zszcgd.js +51 -0
  4120. package/lib/routes-deprecated/citavi/index.js +52 -0
  4121. package/lib/routes-deprecated/cnu/discovery.js +59 -0
  4122. package/lib/routes-deprecated/cnu/selected.js +52 -0
  4123. package/lib/routes-deprecated/cnu/utils.js +28 -0
  4124. package/lib/routes-deprecated/cpython/index.js +30 -0
  4125. package/lib/routes-deprecated/csc/notice.js +99 -0
  4126. package/lib/routes-deprecated/daxiaamu/home.js +45 -0
  4127. package/lib/routes-deprecated/ddrk/index.js +32 -0
  4128. package/lib/routes-deprecated/ddrk/list.js +37 -0
  4129. package/lib/routes-deprecated/deepl/blog.js +34 -0
  4130. package/lib/routes-deprecated/dev.to/top.js +40 -0
  4131. package/lib/routes-deprecated/dgtle/index.js +57 -0
  4132. package/lib/routes-deprecated/dgtle/keyword.js +30 -0
  4133. package/lib/routes-deprecated/dgtle/trade.js +42 -0
  4134. package/lib/routes-deprecated/dida365/habit-checkins.js +84 -0
  4135. package/lib/routes-deprecated/digitaling/article.js +71 -0
  4136. package/lib/routes-deprecated/digitaling/index.js +42 -0
  4137. package/lib/routes-deprecated/digitaling/project.js +55 -0
  4138. package/lib/routes-deprecated/discuss/index.js +71 -0
  4139. package/lib/routes-deprecated/disqus/posts.js +53 -0
  4140. package/lib/routes-deprecated/dongmanmanhua/comic.js +45 -0
  4141. package/lib/routes-deprecated/duozhi/index.js +45 -0
  4142. package/lib/routes-deprecated/edrawsoft/mindmap.js +95 -0
  4143. package/lib/routes-deprecated/eeo/index.js +79 -0
  4144. package/lib/routes-deprecated/eleme/open/announce.js +32 -0
  4145. package/lib/routes-deprecated/emi-nitta/home.js +69 -0
  4146. package/lib/routes-deprecated/enclavebooks/category.js +76 -0
  4147. package/lib/routes-deprecated/enclavebooks/collection.js +44 -0
  4148. package/lib/routes-deprecated/enclavebooks/user.js +44 -0
  4149. package/lib/routes-deprecated/engadget/home.js +67 -0
  4150. package/lib/routes-deprecated/etherscan/transactions.js +37 -0
  4151. package/lib/routes-deprecated/everything/changes.js +33 -0
  4152. package/lib/routes-deprecated/fanfou/favorites.js +36 -0
  4153. package/lib/routes-deprecated/fanfou/home-timeline.js +32 -0
  4154. package/lib/routes-deprecated/fanfou/public-timeline.js +34 -0
  4155. package/lib/routes-deprecated/fanfou/user-timeline.js +35 -0
  4156. package/lib/routes-deprecated/fanfou/utils.js +40 -0
  4157. package/lib/routes-deprecated/fashionnetwork/headline.js +56 -0
  4158. package/lib/routes-deprecated/fashionnetwork/news.js +74 -0
  4159. package/lib/routes-deprecated/furaffinity/home.js +72 -0
  4160. package/lib/routes-deprecated/furaffinity/status.js +38 -0
  4161. package/lib/routes-deprecated/furaffinity/user.js +108 -0
  4162. package/lib/routes-deprecated/galaxylab/index.js +35 -0
  4163. package/lib/routes-deprecated/gaoqing/utils.js +57 -0
  4164. package/lib/routes-deprecated/gitlab/explore.js +43 -0
  4165. package/lib/routes-deprecated/gitlab/release.js +35 -0
  4166. package/lib/routes-deprecated/gitlab/tag.js +35 -0
  4167. package/lib/routes-deprecated/go.jp/mofa/main.js +94 -0
  4168. package/lib/routes-deprecated/gocomics/index.js +64 -0
  4169. package/lib/routes-deprecated/gov/beijing/eea.js +92 -0
  4170. package/lib/routes-deprecated/gov/beijing/mhc.js +68 -0
  4171. package/lib/routes-deprecated/gov/chongqing/ljxq/zwgk.js +67 -0
  4172. package/lib/routes-deprecated/gov/city/nanjing/get-content.js +69 -0
  4173. package/lib/routes-deprecated/gov/city/nanjing/index.js +32 -0
  4174. package/lib/routes-deprecated/gov/cnca/hydt.js +54 -0
  4175. package/lib/routes-deprecated/gov/cnca/jgdt.js +54 -0
  4176. package/lib/routes-deprecated/gov/cnca/zxtz.js +63 -0
  4177. package/lib/routes-deprecated/gov/cppcc/index.js +48 -0
  4178. package/lib/routes-deprecated/gov/guangdong/edu.js +83 -0
  4179. package/lib/routes-deprecated/gov/guangdong/eea.js +59 -0
  4180. package/lib/routes-deprecated/gov/harbin/kjj.js +39 -0
  4181. package/lib/routes-deprecated/gov/hubei/hbsia.js +101 -0
  4182. package/lib/routes-deprecated/gov/hunan/notice.js +80 -0
  4183. package/lib/routes-deprecated/gov/mohrss/sbjm.js +59 -0
  4184. package/lib/routes-deprecated/gov/mohurd/policy.js +39 -0
  4185. package/lib/routes-deprecated/gov/ngd/index.js +51 -0
  4186. package/lib/routes-deprecated/gov/nppa/channels.js +58 -0
  4187. package/lib/routes-deprecated/gov/nppa/contents.js +38 -0
  4188. package/lib/routes-deprecated/gov/province/jiangsu/get-content.js +77 -0
  4189. package/lib/routes-deprecated/gov/province/jiangsu/index.js +66 -0
  4190. package/lib/routes-deprecated/gov/sapprft/7026.js +98 -0
  4191. package/lib/routes-deprecated/gov/shanghai/sthj.js +26 -0
  4192. package/lib/routes-deprecated/gov/taiwan/mnd.js +63 -0
  4193. package/lib/routes-deprecated/gov/veterans/china.js +76 -0
  4194. package/lib/routes-deprecated/gov/veterans/hebei.js +69 -0
  4195. package/lib/routes-deprecated/gov/wuhan/kjj.js +63 -0
  4196. package/lib/routes-deprecated/gov/wuhan/wehdz.js +63 -0
  4197. package/lib/routes-deprecated/gov/xinwen/tujie.js +75 -0
  4198. package/lib/routes-deprecated/guanggoo/index.js +81 -0
  4199. package/lib/routes-deprecated/guardian/guardian.js +45 -0
  4200. package/lib/routes-deprecated/guat/news.js +68 -0
  4201. package/lib/routes-deprecated/guet/news.js +95 -0
  4202. package/lib/routes-deprecated/gwern/category.js +58 -0
  4203. package/lib/routes-deprecated/hackerone/hacktivity.js +47 -0
  4204. package/lib/routes-deprecated/hackerone/search.js +48 -0
  4205. package/lib/routes-deprecated/haohaozhu/discover.js +42 -0
  4206. package/lib/routes-deprecated/haohaozhu/whole-house.js +75 -0
  4207. package/lib/routes-deprecated/hdx/explore.js +57 -0
  4208. package/lib/routes-deprecated/hentai-cosplays/utils.js +52 -0
  4209. package/lib/routes-deprecated/hexo/fluid.js +49 -0
  4210. package/lib/routes-deprecated/hexo/next.js +49 -0
  4211. package/lib/routes-deprecated/hexo/yilia.js +34 -0
  4212. package/lib/routes-deprecated/hkej/index.js +138 -0
  4213. package/lib/routes-deprecated/huya/live.js +33 -0
  4214. package/lib/routes-deprecated/icourse163/newest.js +77 -0
  4215. package/lib/routes-deprecated/idownloadblog/index.js +51 -0
  4216. package/lib/routes-deprecated/ifanr/index.js +71 -0
  4217. package/lib/routes-deprecated/ifnews/column.js +76 -0
  4218. package/lib/routes-deprecated/im2maker/index.js +60 -0
  4219. package/lib/routes-deprecated/index.js +100 -0
  4220. package/lib/routes-deprecated/jpmorganchase/research.js +52 -0
  4221. package/lib/routes-deprecated/jx3/news.js +52 -0
  4222. package/lib/routes-deprecated/kaiyan/index.js +53 -0
  4223. package/lib/routes-deprecated/kongfz/shop.js +58 -0
  4224. package/lib/routes-deprecated/kuai/id.js +38 -0
  4225. package/lib/routes-deprecated/kuai/index.js +38 -0
  4226. package/lib/routes-deprecated/laosiji/feed.js +24 -0
  4227. package/lib/routes-deprecated/laosiji/hotshow.js +33 -0
  4228. package/lib/routes-deprecated/lastfm/loved.js +27 -0
  4229. package/lib/routes-deprecated/lastfm/recent.js +27 -0
  4230. package/lib/routes-deprecated/lastfm/top.js +27 -0
  4231. package/lib/routes-deprecated/law/dh.js +39 -0
  4232. package/lib/routes-deprecated/law/gf.js +41 -0
  4233. package/lib/routes-deprecated/law/hq.js +39 -0
  4234. package/lib/routes-deprecated/law/hw.js +39 -0
  4235. package/lib/routes-deprecated/law/jctd.js +41 -0
  4236. package/lib/routes-deprecated/law/jh.js +41 -0
  4237. package/lib/routes-deprecated/law/jtc.js +41 -0
  4238. package/lib/routes-deprecated/law/ts.js +41 -0
  4239. package/lib/routes-deprecated/law/zl.js +40 -0
  4240. package/lib/routes-deprecated/letterboxd/utils.js +140 -0
  4241. package/lib/routes-deprecated/lifetimes/index.js +99 -0
  4242. package/lib/routes-deprecated/liyuan-forums/threads.js +76 -0
  4243. package/lib/routes-deprecated/lol/newsindex.js +87 -0
  4244. package/lib/routes-deprecated/lolapp/article.js +53 -0
  4245. package/lib/routes-deprecated/lwn/alerts.js +57 -0
  4246. package/lib/routes-deprecated/mafengwo/note.js +53 -0
  4247. package/lib/routes-deprecated/magireco/announcements.js +27 -0
  4248. package/lib/routes-deprecated/magireco/event-banner.js +35 -0
  4249. package/lib/routes-deprecated/maoyan/hot-complete.js +83 -0
  4250. package/lib/routes-deprecated/mcdonalds/news.js +53 -0
  4251. package/lib/routes-deprecated/mediadigest/category.js +130 -0
  4252. package/lib/routes-deprecated/meihua/article.js +54 -0
  4253. package/lib/routes-deprecated/meihua/shots.js +58 -0
  4254. package/lib/routes-deprecated/meituan/open/announce.js +45 -0
  4255. package/lib/routes-deprecated/method-studios/index.js +60 -0
  4256. package/lib/routes-deprecated/mhw/news.js +47 -0
  4257. package/lib/routes-deprecated/mhw/update.js +65 -0
  4258. package/lib/routes-deprecated/micmicidol/article.js +28 -0
  4259. package/lib/routes-deprecated/microsoft-store/updates.js +30 -0
  4260. package/lib/routes-deprecated/mihoyo/bh2.js +43 -0
  4261. package/lib/routes-deprecated/mihoyo/bh3.js +60 -0
  4262. package/lib/routes-deprecated/missevan/drama.js +40 -0
  4263. package/lib/routes-deprecated/missevan/latest.js +47 -0
  4264. package/lib/routes-deprecated/moxingfans/index.js +50 -0
  4265. package/lib/routes-deprecated/muchong/journal.js +52 -0
  4266. package/lib/routes-deprecated/netflix/newsroom.js +82 -0
  4267. package/lib/routes-deprecated/nobelprize/index.js +79 -0
  4268. package/lib/routes-deprecated/noi/index.js +40 -0
  4269. package/lib/routes-deprecated/noi/province-news.js +40 -0
  4270. package/lib/routes-deprecated/noi/rg-news.js +47 -0
  4271. package/lib/routes-deprecated/noi/winners-list.js +41 -0
  4272. package/lib/routes-deprecated/novel/biquge.js +66 -0
  4273. package/lib/routes-deprecated/novel/biqugeinfo.js +66 -0
  4274. package/lib/routes-deprecated/novel/uukanshu.js +39 -0
  4275. package/lib/routes-deprecated/one/index.js +48 -0
  4276. package/lib/routes-deprecated/owspace/read.js +141 -0
  4277. package/lib/routes-deprecated/paidai/utils.js +26 -0
  4278. package/lib/routes-deprecated/patchwork.kernel.org/comments.js +33 -0
  4279. package/lib/routes-deprecated/piapro/public.js +54 -0
  4280. package/lib/routes-deprecated/piapro/user.js +47 -0
  4281. package/lib/routes-deprecated/piapro/utils.js +45 -0
  4282. package/lib/routes-deprecated/pmcaff/feed.js +51 -0
  4283. package/lib/routes-deprecated/pmcaff/list.js +67 -0
  4284. package/lib/routes-deprecated/potplayer/update.js +42 -0
  4285. package/lib/routes-deprecated/project-zero-issues/index.js +48 -0
  4286. package/lib/routes-deprecated/psnine/game.js +32 -0
  4287. package/lib/routes-deprecated/psnine/index.js +33 -0
  4288. package/lib/routes-deprecated/psnine/shuzhe.js +33 -0
  4289. package/lib/routes-deprecated/psnine/trade.js +39 -0
  4290. package/lib/routes-deprecated/ptpress/book.js +34 -0
  4291. package/lib/routes-deprecated/qstheory/index.js +122 -0
  4292. package/lib/routes-deprecated/quantamagazine/archive.js +81 -0
  4293. package/lib/routes-deprecated/qutoutiao/category.js +42 -0
  4294. package/lib/routes-deprecated/react/react-native-weekly.js +35 -0
  4295. package/lib/routes-deprecated/remote-work/index.js +88 -0
  4296. package/lib/routes-deprecated/rescuetime/release-notes.js +37 -0
  4297. package/lib/routes-deprecated/rthk-news/index.js +60 -0
  4298. package/lib/routes-deprecated/scboy/thread.js +50 -0
  4299. package/lib/routes-deprecated/sexinsex/index.js +101 -0
  4300. package/lib/routes-deprecated/shanbay/checkin.js +48 -0
  4301. package/lib/routes-deprecated/shanbay/footprints.js +42 -0
  4302. package/lib/routes-deprecated/simonsfoundation/articles.js +48 -0
  4303. package/lib/routes-deprecated/simpread/changelog.js +79 -0
  4304. package/lib/routes-deprecated/sketch/updates.js +40 -0
  4305. package/lib/routes-deprecated/socialbeta/home.js +42 -0
  4306. package/lib/routes-deprecated/socialclub/events.js +28 -0
  4307. package/lib/routes-deprecated/soul/hot.js +86 -0
  4308. package/lib/routes-deprecated/soundcloud/utils.js +47 -0
  4309. package/lib/routes-deprecated/technologyreview/topic.js +35 -0
  4310. package/lib/routes-deprecated/tencent/tucaoqq/post.js +39 -0
  4311. package/lib/routes-deprecated/tencent/wechat/miniprogram/devtools.js +37 -0
  4312. package/lib/routes-deprecated/tencent/wechat/miniprogram/framework.js +35 -0
  4313. package/lib/routes-deprecated/tencent/wechat/miniprogram/wxcloud.js +47 -0
  4314. package/lib/routes-deprecated/tianyancha/hot.js +48 -0
  4315. package/lib/routes-deprecated/tingdiantz/95598.js +41 -0
  4316. package/lib/routes-deprecated/titsguru/model.js +16 -0
  4317. package/lib/routes-deprecated/titsguru/util.js +68 -0
  4318. package/lib/routes-deprecated/totalcommander/whatsnew.js +32 -0
  4319. package/lib/routes-deprecated/touhougarakuta/index.js +68 -0
  4320. package/lib/routes-deprecated/touhougarakuta/json2html.js +113 -0
  4321. package/lib/routes-deprecated/tprtc/cqzr.js +80 -0
  4322. package/lib/routes-deprecated/tprtc/news.js +71 -0
  4323. package/lib/routes-deprecated/tprtc/qyzc.js +84 -0
  4324. package/lib/routes-deprecated/ui-cn/article.js +44 -0
  4325. package/lib/routes-deprecated/unit-image/films.js +141 -0
  4326. package/lib/routes-deprecated/universities/ahau/cs_news/utils.js +50 -0
  4327. package/lib/routes-deprecated/universities/ahau/jwc/utils.js +50 -0
  4328. package/lib/routes-deprecated/universities/ahau/main/utils.js +50 -0
  4329. package/lib/routes-deprecated/universities/ahmu/news.js +51 -0
  4330. package/lib/routes-deprecated/universities/ahut/cstzgg.js +45 -0
  4331. package/lib/routes-deprecated/universities/ahut/jwc.js +43 -0
  4332. package/lib/routes-deprecated/universities/ahut/news.js +44 -0
  4333. package/lib/routes-deprecated/universities/bupt/funbox.js +40 -0
  4334. package/lib/routes-deprecated/universities/bupt/grs.js +64 -0
  4335. package/lib/routes-deprecated/universities/bupt/news.js +34 -0
  4336. package/lib/routes-deprecated/universities/bupt/portal.js +34 -0
  4337. package/lib/routes-deprecated/universities/bupt/utils.js +67 -0
  4338. package/lib/routes-deprecated/universities/bupt/yz.js +154 -0
  4339. package/lib/routes-deprecated/universities/bwu/utils.js +50 -0
  4340. package/lib/routes-deprecated/universities/cpu/home.js +52 -0
  4341. package/lib/routes-deprecated/universities/cpu/jwc.js +52 -0
  4342. package/lib/routes-deprecated/universities/cpu/yjsy.js +52 -0
  4343. package/lib/routes-deprecated/universities/cqu/jwc/announcement.js +53 -0
  4344. package/lib/routes-deprecated/universities/cqu/net/info.js +60 -0
  4345. package/lib/routes-deprecated/universities/cqu/news/tz.js +71 -0
  4346. package/lib/routes-deprecated/universities/cqu/news/utils.js +48 -0
  4347. package/lib/routes-deprecated/universities/cqu/sci/info.js +62 -0
  4348. package/lib/routes-deprecated/universities/cqu/youth/info.js +65 -0
  4349. package/lib/routes-deprecated/universities/cug/gcxy/index.js +114 -0
  4350. package/lib/routes-deprecated/universities/cug/news.js +63 -0
  4351. package/lib/routes-deprecated/universities/cuit/cxxww.js +63 -0
  4352. package/lib/routes-deprecated/universities/dlmu/news.js +42 -0
  4353. package/lib/routes-deprecated/universities/dlu/jiaowu/news.js +36 -0
  4354. package/lib/routes-deprecated/universities/fudan/cce.js +52 -0
  4355. package/lib/routes-deprecated/universities/gdou/jwc/utils.js +72 -0
  4356. package/lib/routes-deprecated/universities/gzmtu/jwc/utils.js +86 -0
  4357. package/lib/routes-deprecated/universities/gzmtu/tsg/utils.js +86 -0
  4358. package/lib/routes-deprecated/universities/hhu/lib-news.js +57 -0
  4359. package/lib/routes-deprecated/universities/hhu/lib-newsc.js +75 -0
  4360. package/lib/routes-deprecated/universities/hnust/graduate/index.js +40 -0
  4361. package/lib/routes-deprecated/universities/jnu/yw/index.js +81 -0
  4362. package/lib/routes-deprecated/universities/kmust/job/careers.js +33 -0
  4363. package/lib/routes-deprecated/universities/kmust/job/jobfairs.js +32 -0
  4364. package/lib/routes-deprecated/universities/kmust/jwc.js +44 -0
  4365. package/lib/routes-deprecated/universities/lit/jwc.js +50 -0
  4366. package/lib/routes-deprecated/universities/lit/tw.js +56 -0
  4367. package/lib/routes-deprecated/universities/lit/xwzx.js +73 -0
  4368. package/lib/routes-deprecated/universities/lntu/jwnews.js +46 -0
  4369. package/lib/routes-deprecated/universities/lyu/news/utils.js +42 -0
  4370. package/lib/routes-deprecated/universities/mit/graduateadmissions.js +63 -0
  4371. package/lib/routes-deprecated/universities/nciae/news.js +58 -0
  4372. package/lib/routes-deprecated/universities/nciae/tzgg.js +58 -0
  4373. package/lib/routes-deprecated/universities/nciae/xsxx.js +58 -0
  4374. package/lib/routes-deprecated/universities/njfu/jwc.js +47 -0
  4375. package/lib/routes-deprecated/universities/njtech/jwc.js +54 -0
  4376. package/lib/routes-deprecated/universities/nuc/index.js +91 -0
  4377. package/lib/routes-deprecated/universities/nudt/yjszs.js +60 -0
  4378. package/lib/routes-deprecated/universities/shanghaitech/activity.js +34 -0
  4379. package/lib/routes-deprecated/universities/shanghaitech/sist/activity.js +51 -0
  4380. package/lib/routes-deprecated/universities/shou/www.js +64 -0
  4381. package/lib/routes-deprecated/universities/slu/utils.js +74 -0
  4382. package/lib/routes-deprecated/universities/swufe/seie/index.js +71 -0
  4383. package/lib/routes-deprecated/universities/swust/cs.js +77 -0
  4384. package/lib/routes-deprecated/universities/swust/helper.js +47 -0
  4385. package/lib/routes-deprecated/universities/swust/jwc-news.js +45 -0
  4386. package/lib/routes-deprecated/universities/swust/jwc-notice.js +51 -0
  4387. package/lib/routes-deprecated/universities/thu/index.js +102 -0
  4388. package/lib/routes-deprecated/universities/usst/jwc.js +62 -0
  4389. package/lib/routes-deprecated/universities/utdallas/isso.js +54 -0
  4390. package/lib/routes-deprecated/universities/ynnu/edu/base64.js +354 -0
  4391. package/lib/routes-deprecated/universities/ynnu/edu/news.js +109 -0
  4392. package/lib/routes-deprecated/universities/ynu/utils.js +64 -0
  4393. package/lib/routes-deprecated/universities/yzu/home.js +83 -0
  4394. package/lib/routes-deprecated/universities/yzu/yjszs.js +81 -0
  4395. package/lib/routes-deprecated/universities/zjgsu/tzgg/utils.js +54 -0
  4396. package/lib/routes-deprecated/universities/zjut/design.js +59 -0
  4397. package/lib/routes-deprecated/universities/zjut/index.js +59 -0
  4398. package/lib/routes-deprecated/universities/zucc/cssearch/index.js +47 -0
  4399. package/lib/routes-deprecated/universities/zucc/news/index.js +66 -0
  4400. package/lib/routes-deprecated/universities/zzu/news.js +80 -0
  4401. package/lib/routes-deprecated/universities/zzu/soft/news.js +68 -0
  4402. package/lib/routes-deprecated/us/supremecourt/argument-audio.js +61 -0
  4403. package/lib/routes-deprecated/uwants/index.js +70 -0
  4404. package/lib/routes-deprecated/voa/index.js +54 -0
  4405. package/lib/routes-deprecated/vol/lastupdate.js +51 -0
  4406. package/lib/routes-deprecated/vulture/utils.js +113 -0
  4407. package/lib/routes-deprecated/watchface/update.js +42 -0
  4408. package/lib/routes-deprecated/webtoons/comic.js +54 -0
  4409. package/lib/routes-deprecated/webtoons/naver.js +50 -0
  4410. package/lib/routes-deprecated/weexcn/index.js +69 -0
  4411. package/lib/routes-deprecated/wegene/column.js +25 -0
  4412. package/lib/routes-deprecated/weidian/goods.js +37 -0
  4413. package/lib/routes-deprecated/whb/zhuzhan.js +76 -0
  4414. package/lib/routes-deprecated/wto/dispute-settlement.js +37 -0
  4415. package/lib/routes-deprecated/xiachufang/utils.js +95 -0
  4416. package/lib/routes-deprecated/xuangubao/subject.js +42 -0
  4417. package/lib/routes-deprecated/xuetangx/course-list.js +54 -0
  4418. package/lib/routes-deprecated/xyplorer/whatsnew.js +32 -0
  4419. package/lib/routes-deprecated/yinxiang/card.js +41 -0
  4420. package/lib/routes-deprecated/yinxiang/category.js +42 -0
  4421. package/lib/routes-deprecated/yinxiang/note.js +37 -0
  4422. package/lib/routes-deprecated/yinxiang/personal.js +43 -0
  4423. package/lib/routes-deprecated/yinxiang/tag.js +42 -0
  4424. package/lib/routes-deprecated/youdao/latest.js +47 -0
  4425. package/lib/routes-deprecated/youdao/xueba.js +64 -0
  4426. package/lib/routes-deprecated/yuzu-emu/entry.js +52 -0
  4427. package/lib/routes-deprecated/zhishifenzi/depth.js +54 -0
  4428. package/lib/routes-deprecated/zhishifenzi/innovation.js +61 -0
  4429. package/lib/routes-deprecated/zhishifenzi/news.js +66 -0
  4430. package/lib/routes-deprecated/zhuixinfan/list.js +51 -0
  4431. package/lib/routes-deprecated/zimuku/index.js +41 -0
  4432. package/lib/routes-deprecated/zreading/home.js +50 -0
  4433. package/lib/routes-deprecated/zsnews/index.js +31 -0
  4434. package/lib/routes.test.ts +84 -0
  4435. package/lib/setup.test.ts +249 -0
  4436. package/lib/types.ts +294 -0
  4437. package/lib/utils/cache/base.ts +17 -0
  4438. package/lib/utils/cache/index.ts +99 -0
  4439. package/lib/utils/cache/memory.ts +42 -0
  4440. package/lib/utils/cache/redis.ts +75 -0
  4441. package/lib/utils/cache.test.ts +91 -0
  4442. package/lib/utils/camelcase-keys.spec.ts +127 -0
  4443. package/lib/utils/camelcase-keys.ts +27 -0
  4444. package/lib/utils/common-config.test.ts +78 -0
  4445. package/lib/utils/common-config.ts +75 -0
  4446. package/lib/utils/common-utils.test.ts +41 -0
  4447. package/lib/utils/common-utils.ts +46 -0
  4448. package/lib/utils/debug-info.ts +24 -0
  4449. package/lib/utils/git-hash.ts +14 -0
  4450. package/lib/utils/got-deprecated.ts +79 -0
  4451. package/lib/utils/got.test.ts +77 -0
  4452. package/lib/utils/got.ts +86 -0
  4453. package/lib/utils/helpers.test.ts +8 -0
  4454. package/lib/utils/helpers.ts +32 -0
  4455. package/lib/utils/logger.ts +46 -0
  4456. package/lib/utils/md5.test.ts +8 -0
  4457. package/lib/utils/md5.ts +5 -0
  4458. package/lib/utils/ofetch.test.ts +51 -0
  4459. package/lib/utils/ofetch.ts +31 -0
  4460. package/lib/utils/otel/index.ts +2 -0
  4461. package/lib/utils/otel/metric.ts +66 -0
  4462. package/lib/utils/otel/trace.ts +28 -0
  4463. package/lib/utils/parse-date.test.ts +163 -0
  4464. package/lib/utils/parse-date.ts +207 -0
  4465. package/lib/utils/proxy/index.ts +56 -0
  4466. package/lib/utils/proxy/pac-proxy.test.ts +80 -0
  4467. package/lib/utils/proxy/pac-proxy.ts +72 -0
  4468. package/lib/utils/proxy/unify-proxy.test.ts +141 -0
  4469. package/lib/utils/proxy/unify-proxy.ts +113 -0
  4470. package/lib/utils/puppeteer-utils.test.ts +101 -0
  4471. package/lib/utils/puppeteer-utils.ts +58 -0
  4472. package/lib/utils/puppeteer.test.ts +144 -0
  4473. package/lib/utils/puppeteer.ts +64 -0
  4474. package/lib/utils/rand-user-agent.test.ts +37 -0
  4475. package/lib/utils/rand-user-agent.ts +30 -0
  4476. package/lib/utils/readable-social.ts +42 -0
  4477. package/lib/utils/render.ts +5 -0
  4478. package/lib/utils/request-rewriter/fetch.ts +69 -0
  4479. package/lib/utils/request-rewriter/get.ts +77 -0
  4480. package/lib/utils/request-rewriter/index.ts +19 -0
  4481. package/lib/utils/request-rewriter.test.ts +151 -0
  4482. package/lib/utils/rss-parser.test.ts +9 -0
  4483. package/lib/utils/rss-parser.ts +13 -0
  4484. package/lib/utils/timezone.test.ts +9 -0
  4485. package/lib/utils/timezone.ts +14 -0
  4486. package/lib/utils/valid-host.test.ts +21 -0
  4487. package/lib/utils/valid-host.ts +14 -0
  4488. package/lib/utils/wait.test.ts +14 -0
  4489. package/lib/utils/wait.ts +7 -0
  4490. package/lib/utils/wechat-mp.test.ts +503 -0
  4491. package/lib/utils/wechat-mp.ts +645 -0
  4492. package/lib/views/atom.tsx +49 -0
  4493. package/lib/views/error.tsx +144 -0
  4494. package/lib/views/index.tsx +204 -0
  4495. package/lib/views/json.ts +48 -0
  4496. package/lib/views/layout.tsx +50 -0
  4497. package/lib/views/rss.tsx +55 -0
  4498. package/lib/views/rss3.test.ts +99 -0
  4499. package/lib/views/rss3.ts +62 -0
  4500. package/package.json +131 -152
  4501. package/lib/api_router.js +0 -26
  4502. package/lib/app.js +0 -94
  4503. package/lib/config.js +0 -346
  4504. package/lib/core_router.js +0 -17
  4505. package/lib/errors/RequestInProgress.js +0 -3
  4506. package/lib/errors/index.js +0 -3
  4507. package/lib/index.js +0 -35
  4508. package/lib/maintainer.js +0 -57
  4509. package/lib/middleware/access-control.js +0 -55
  4510. package/lib/middleware/anti-hotlink.js +0 -148
  4511. package/lib/middleware/api-response-handler.js +0 -147
  4512. package/lib/middleware/api-template.js +0 -9
  4513. package/lib/middleware/cache/index.js +0 -138
  4514. package/lib/middleware/cache/memory.js +0 -36
  4515. package/lib/middleware/cache/redis.js +0 -68
  4516. package/lib/middleware/debug.js +0 -25
  4517. package/lib/middleware/header.js +0 -45
  4518. package/lib/middleware/load-on-demand.js +0 -36
  4519. package/lib/middleware/onerror.js +0 -113
  4520. package/lib/middleware/parameter.js +0 -382
  4521. package/lib/middleware/template.js +0 -126
  4522. package/lib/middleware/utf8.js +0 -6
  4523. package/lib/pkg.js +0 -39
  4524. package/lib/protected_router.js +0 -11
  4525. package/lib/radar-rules.js +0 -1182
  4526. package/lib/radar.js +0 -102
  4527. package/lib/routes/005tv/zx.js +0 -24
  4528. package/lib/routes/10000link/news.js +0 -59
  4529. package/lib/routes/12379/index.js +0 -23
  4530. package/lib/routes/199it/category.js +0 -10
  4531. package/lib/routes/199it/tag.js +0 -10
  4532. package/lib/routes/199it/utils.js +0 -44
  4533. package/lib/routes/1draw/index.js +0 -44
  4534. package/lib/routes/1x/index.js +0 -69
  4535. package/lib/routes/21caijing/channel.js +0 -75
  4536. package/lib/routes/3ycy/home.js +0 -58
  4537. package/lib/routes/4gamers/category.js +0 -20
  4538. package/lib/routes/4gamers/tag.js +0 -20
  4539. package/lib/routes/4gamers/topic.js +0 -20
  4540. package/lib/routes/51voa/channel.js +0 -158
  4541. package/lib/routes/60s-science/transcript.js +0 -60
  4542. package/lib/routes/755/user.js +0 -71
  4543. package/lib/routes/8btc/author.js +0 -49
  4544. package/lib/routes/8btc/news/flash.js +0 -41
  4545. package/lib/routes/91ddcc/stage.js +0 -48
  4546. package/lib/routes/91ddcc/user.js +0 -45
  4547. package/lib/routes/93/index.js +0 -50
  4548. package/lib/routes/99percentinvisible/transcript.js +0 -46
  4549. package/lib/routes/a9vg/a9vg.js +0 -36
  4550. package/lib/routes/acm/amturingaward.js +0 -68
  4551. package/lib/routes/acwifi/index.js +0 -48
  4552. package/lib/routes/adquan/index.js +0 -72
  4553. package/lib/routes/afdian/dynamic.js +0 -36
  4554. package/lib/routes/afdian/explore.js +0 -57
  4555. package/lib/routes/aiyanxishe/home.js +0 -130
  4556. package/lib/routes/aliyun-kernel/index.js +0 -60
  4557. package/lib/routes/allnow/column.js +0 -7
  4558. package/lib/routes/allnow/index.js +0 -5
  4559. package/lib/routes/allnow/tag.js +0 -7
  4560. package/lib/routes/allnow/user.js +0 -7
  4561. package/lib/routes/allnow/utils.js +0 -67
  4562. package/lib/routes/alter-cn/news.js +0 -44
  4563. package/lib/routes/amazfitwatchfaces/search.js +0 -7
  4564. package/lib/routes/amazon/ku.js +0 -57
  4565. package/lib/routes/amd/graphicsdrivers.js +0 -114
  4566. package/lib/routes/andyt/index.js +0 -36
  4567. package/lib/routes/anigamer/anime.js +0 -14
  4568. package/lib/routes/anigamer/new_anime.js +0 -22
  4569. package/lib/routes/animen/news.js +0 -84
  4570. package/lib/routes/anitama/channel.js +0 -64
  4571. package/lib/routes/anki/changes.js +0 -39
  4572. package/lib/routes/aom/journal.js +0 -107
  4573. package/lib/routes/aozora/newbook.js +0 -93
  4574. package/lib/routes/appsales/index.js +0 -66
  4575. package/lib/routes/aptonic/action.js +0 -38
  4576. package/lib/routes/archdaily/home.js +0 -47
  4577. package/lib/routes/asahi/area.js +0 -57
  4578. package/lib/routes/asahi/index.js +0 -94
  4579. package/lib/routes/atfd/index.js +0 -46
  4580. package/lib/routes/autotrader/index.js +0 -69
  4581. package/lib/routes/avgle/videos.js +0 -46
  4582. package/lib/routes/axis-studios/work.js +0 -82
  4583. package/lib/routes/babehub/index.js +0 -30
  4584. package/lib/routes/babehub/search.js +0 -15
  4585. package/lib/routes/babehub/utils.js +0 -71
  4586. package/lib/routes/babykingdom/index.js +0 -46
  4587. package/lib/routes/bahamut/creation_index.js +0 -73
  4588. package/lib/routes/bahamut/utils.js +0 -65
  4589. package/lib/routes/baidu/daily.js +0 -55
  4590. package/lib/routes/baidu/doodles.js +0 -27
  4591. package/lib/routes/bandisoft/index.js +0 -42
  4592. package/lib/routes/banyuetan/index.js +0 -56
  4593. package/lib/routes/bell-labs/events-news.js +0 -70
  4594. package/lib/routes/benedictevans/recent.js +0 -41
  4595. package/lib/routes/bibgame/category.js +0 -56
  4596. package/lib/routes/bihu/activaties.js +0 -76
  4597. package/lib/routes/bing/index.js +0 -26
  4598. package/lib/routes/biobio/index.js +0 -40
  4599. package/lib/routes/biobio/others.js +0 -45
  4600. package/lib/routes/bioon/latest.js +0 -51
  4601. package/lib/routes/bishijie/kuaixun.js +0 -21
  4602. package/lib/routes/bjnews/epaper.js +0 -80
  4603. package/lib/routes/bjnews/news.js +0 -43
  4604. package/lib/routes/blogread/newest.js +0 -30
  4605. package/lib/routes/blogs/diygod/animal-crossing.js +0 -39
  4606. package/lib/routes/blogs/diygod/gk.js +0 -33
  4607. package/lib/routes/blogs/hedwig.js +0 -42
  4608. package/lib/routes/blogs/jianning.js +0 -45
  4609. package/lib/routes/blogs/wangyin.js +0 -50
  4610. package/lib/routes/blogs/wordpress.js +0 -50
  4611. package/lib/routes/blow-studio/work.js +0 -71
  4612. package/lib/routes/blur-studio/index.js +0 -81
  4613. package/lib/routes/bof/home.js +0 -42
  4614. package/lib/routes/bookscomtw/newbooks.js +0 -37
  4615. package/lib/routes/booksource/index.js +0 -22
  4616. package/lib/routes/booth-pm/shop.js +0 -60
  4617. package/lib/routes/boston/index.js +0 -73
  4618. package/lib/routes/buaq/index.js +0 -31
  4619. package/lib/routes/ccg/index.js +0 -49
  4620. package/lib/routes/cell/cell/index.js +0 -113
  4621. package/lib/routes/cell/cover.js +0 -106
  4622. package/lib/routes/cfan/news.js +0 -49
  4623. package/lib/routes/cfd/gbp_div.js +0 -28
  4624. package/lib/routes/cgtn/most.js +0 -48
  4625. package/lib/routes/cgtn/opinions.js +0 -50
  4626. package/lib/routes/cgtn/pick.js +0 -45
  4627. package/lib/routes/cgtn/top.js +0 -45
  4628. package/lib/routes/changku/index.js +0 -39
  4629. package/lib/routes/chaoli/index.js +0 -50
  4630. package/lib/routes/checkee/index.js +0 -56
  4631. package/lib/routes/chicagotribune/index.js +0 -77
  4632. package/lib/routes/chinadialogue/column.js +0 -58
  4633. package/lib/routes/chinadialogue/topics.js +0 -55
  4634. package/lib/routes/chinalaborwatch/reports.js +0 -53
  4635. package/lib/routes/chinatimes/index.js +0 -115
  4636. package/lib/routes/chiphell/forum.js +0 -67
  4637. package/lib/routes/chocolatey/software.js +0 -55
  4638. package/lib/routes/chouti/top.js +0 -28
  4639. package/lib/routes/chrome/extensions.js +0 -30
  4640. package/lib/routes/chsi/zszcgd.js +0 -51
  4641. package/lib/routes/chuiniu/column.js +0 -89
  4642. package/lib/routes/chuiniu/column_list.js +0 -36
  4643. package/lib/routes/citavi/index.js +0 -52
  4644. package/lib/routes/ciweimao/chapter.js +0 -34
  4645. package/lib/routes/cktest/app.js +0 -34
  4646. package/lib/routes/cktest/policy.js +0 -43
  4647. package/lib/routes/cmes/news.js +0 -64
  4648. package/lib/routes/cnu/discovery.js +0 -59
  4649. package/lib/routes/cnu/selected.js +0 -52
  4650. package/lib/routes/cnu/utils.js +0 -28
  4651. package/lib/routes/codeceo/category.js +0 -51
  4652. package/lib/routes/codeceo/home.js +0 -49
  4653. package/lib/routes/commonapp/blog.js +0 -42
  4654. package/lib/routes/coronavirus/caixin.js +0 -34
  4655. package/lib/routes/coronavirus/dxy-data.js +0 -86
  4656. package/lib/routes/coronavirus/dxy.js +0 -27
  4657. package/lib/routes/coronavirus/mogov-2019ncov.js +0 -49
  4658. package/lib/routes/coronavirus/nhc.js +0 -30
  4659. package/lib/routes/coronavirus/scmp.js +0 -32
  4660. package/lib/routes/coronavirus/sg-moh.js +0 -40
  4661. package/lib/routes/coronavirus/yahoo-japan.js +0 -77
  4662. package/lib/routes/cpta/notice.js +0 -41
  4663. package/lib/routes/cpython/index.js +0 -32
  4664. package/lib/routes/craigslist/search.js +0 -51
  4665. package/lib/routes/cria/news.js +0 -57
  4666. package/lib/routes/cs/news.js +0 -69
  4667. package/lib/routes/csc/notice.js +0 -99
  4668. package/lib/routes/curseforge/files.js +0 -36
  4669. package/lib/routes/curseforge/generalfiles.js +0 -42
  4670. package/lib/routes/cve/search.js +0 -26
  4671. package/lib/routes/d1bz/novel.js +0 -72
  4672. package/lib/routes/d2/daily.js +0 -49
  4673. package/lib/routes/damai/activity.js +0 -28
  4674. package/lib/routes/daxiaamu/home.js +0 -45
  4675. package/lib/routes/dayone/blog.js +0 -56
  4676. package/lib/routes/ddrk/index.js +0 -32
  4677. package/lib/routes/ddrk/list.js +0 -37
  4678. package/lib/routes/deepl/blog.js +0 -34
  4679. package/lib/routes/deeplearningai/thebatch.js +0 -29
  4680. package/lib/routes/dengekionline/new.js +0 -133
  4681. package/lib/routes/dev.to/top.js +0 -40
  4682. package/lib/routes/dgtle/index.js +0 -57
  4683. package/lib/routes/dgtle/keyword.js +0 -29
  4684. package/lib/routes/dgtle/trade.js +0 -42
  4685. package/lib/routes/dhl/shipment-tracking.js +0 -56
  4686. package/lib/routes/dianping/user.js +0 -98
  4687. package/lib/routes/dida365/habit-checkins.js +0 -83
  4688. package/lib/routes/digic-pictures/index.js +0 -72
  4689. package/lib/routes/digitaling/article.js +0 -71
  4690. package/lib/routes/digitaling/index.js +0 -42
  4691. package/lib/routes/digitaling/project.js +0 -55
  4692. package/lib/routes/dilbert/strip.js +0 -54
  4693. package/lib/routes/dilidili/fanju.js +0 -78
  4694. package/lib/routes/discuss/index.js +0 -71
  4695. package/lib/routes/disqus/posts.js +0 -53
  4696. package/lib/routes/dockone/weekly.js +0 -60
  4697. package/lib/routes/donews/index.js +0 -59
  4698. package/lib/routes/donews/utils.js +0 -19
  4699. package/lib/routes/dongmanmanhua/comic.js +0 -45
  4700. package/lib/routes/dsb/area.js +0 -33
  4701. package/lib/routes/duozhi/index.js +0 -48
  4702. package/lib/routes/dxy/vaccine.js +0 -109
  4703. package/lib/routes/dysfz/index.js +0 -20
  4704. package/lib/routes/edge/addon.js +0 -32
  4705. package/lib/routes/edrawsoft/mindmap.js +0 -99
  4706. package/lib/routes/eeo/index.js +0 -83
  4707. package/lib/routes/egsea/flash.js +0 -40
  4708. package/lib/routes/eleme/open/announce.js +0 -35
  4709. package/lib/routes/eleme/open-be/announce.js +0 -21
  4710. package/lib/routes/elife/index.js +0 -67
  4711. package/lib/routes/elitebabes/index.js +0 -30
  4712. package/lib/routes/elitebabes/search.js +0 -15
  4713. package/lib/routes/elitebabes/utils.js +0 -88
  4714. package/lib/routes/elitebabes/videos.js +0 -26
  4715. package/lib/routes/emi-nitta/home.js +0 -74
  4716. package/lib/routes/enclavebooks/category.js +0 -77
  4717. package/lib/routes/enclavebooks/collection.js +0 -44
  4718. package/lib/routes/enclavebooks/user.js +0 -44
  4719. package/lib/routes/engadget/home.js +0 -67
  4720. package/lib/routes/esquirehk/tag.js +0 -71
  4721. package/lib/routes/etherscan/transactions.js +0 -37
  4722. package/lib/routes/everything/changes.js +0 -33
  4723. package/lib/routes/facebook/page.js +0 -128
  4724. package/lib/routes/fanbox/conv.js +0 -227
  4725. package/lib/routes/fanbox/header.js +0 -13
  4726. package/lib/routes/fanbox/main.js +0 -45
  4727. package/lib/routes/fanfou/favorites.js +0 -36
  4728. package/lib/routes/fanfou/home_timeline.js +0 -32
  4729. package/lib/routes/fanfou/public_timeline.js +0 -34
  4730. package/lib/routes/fanfou/user_timeline.js +0 -35
  4731. package/lib/routes/fanfou/utils.js +0 -40
  4732. package/lib/routes/fanxinzhui/latest.js +0 -52
  4733. package/lib/routes/fashionnetwork/headline.js +0 -56
  4734. package/lib/routes/fashionnetwork/news.js +0 -74
  4735. package/lib/routes/fdroid/apprelease.js +0 -33
  4736. package/lib/routes/feed-the-beast/modpack.js +0 -31
  4737. package/lib/routes/feixuew/index.js +0 -63
  4738. package/lib/routes/fir/update.js +0 -31
  4739. package/lib/routes/fitchratings/site.js +0 -33
  4740. package/lib/routes/fjnews/fznews.js +0 -55
  4741. package/lib/routes/fjnews/jjnews.js +0 -43
  4742. package/lib/routes/fontstory/tw.js +0 -48
  4743. package/lib/routes/fulinian/index.js +0 -50
  4744. package/lib/routes/furaffinity/home.js +0 -59
  4745. package/lib/routes/furaffinity/status.js +0 -39
  4746. package/lib/routes/furaffinity/user.js +0 -96
  4747. package/lib/routes/gab/explore.js +0 -31
  4748. package/lib/routes/galaxylab/index.js +0 -35
  4749. package/lib/routes/galgame/hhgal.js +0 -70
  4750. package/lib/routes/galgame/sayhuahuo.js +0 -22
  4751. package/lib/routes/galgame/zdfx.js +0 -30
  4752. package/lib/routes/gamegrape/index.js +0 -73
  4753. package/lib/routes/gamersky/ent.js +0 -89
  4754. package/lib/routes/gamersky/news.js +0 -34
  4755. package/lib/routes/gaoqing/utils.js +0 -57
  4756. package/lib/routes/gaoqingla/latest.js +0 -37
  4757. package/lib/routes/gbcc/trust.js +0 -28
  4758. package/lib/routes/geekpark/breakingnews.js +0 -25
  4759. package/lib/routes/geektime/news.js +0 -54
  4760. package/lib/routes/girlimg/album.js +0 -57
  4761. package/lib/routes/gitchat/newest.js +0 -23
  4762. package/lib/routes/gitea/blog.js +0 -70
  4763. package/lib/routes/gitlab/explore.js +0 -43
  4764. package/lib/routes/gitlab/release.js +0 -35
  4765. package/lib/routes/gitlab/tag.js +0 -35
  4766. package/lib/routes/go.jp/mofa/main.js +0 -95
  4767. package/lib/routes/gocomics/index.js +0 -64
  4768. package/lib/routes/gov/beijing/eea.js +0 -92
  4769. package/lib/routes/gov/beijing/mhc.js +0 -68
  4770. package/lib/routes/gov/chongqing/ljxq/zwgk.js +0 -67
  4771. package/lib/routes/gov/city/nanjing/getContent.js +0 -69
  4772. package/lib/routes/gov/city/nanjing/index.js +0 -32
  4773. package/lib/routes/gov/cnca/hydt.js +0 -54
  4774. package/lib/routes/gov/cnca/jgdt.js +0 -54
  4775. package/lib/routes/gov/cnca/zxtz.js +0 -63
  4776. package/lib/routes/gov/cppcc/index.js +0 -48
  4777. package/lib/routes/gov/guangdong/edu.js +0 -83
  4778. package/lib/routes/gov/guangdong/eea.js +0 -59
  4779. package/lib/routes/gov/harbin/kjj.js +0 -39
  4780. package/lib/routes/gov/hubei/hbsia.js +0 -101
  4781. package/lib/routes/gov/hunan/notice.js +0 -80
  4782. package/lib/routes/gov/mohrss/sbjm.js +0 -59
  4783. package/lib/routes/gov/mohurd/policy.js +0 -39
  4784. package/lib/routes/gov/ndrc/xwdt.js +0 -54
  4785. package/lib/routes/gov/ngd/index.js +0 -51
  4786. package/lib/routes/gov/nppa/channels.js +0 -57
  4787. package/lib/routes/gov/nppa/contents.js +0 -37
  4788. package/lib/routes/gov/province/jiangsu/getContent.js +0 -77
  4789. package/lib/routes/gov/province/jiangsu/index.js +0 -66
  4790. package/lib/routes/gov/sapprft/7026.js +0 -97
  4791. package/lib/routes/gov/shanghai/sthj.js +0 -26
  4792. package/lib/routes/gov/suzhou/doc.js +0 -39
  4793. package/lib/routes/gov/suzhou/news.js +0 -142
  4794. package/lib/routes/gov/suzhou/utils.js +0 -20
  4795. package/lib/routes/gov/taiwan/mnd.js +0 -63
  4796. package/lib/routes/gov/veterans/china.js +0 -76
  4797. package/lib/routes/gov/veterans/hebei.js +0 -73
  4798. package/lib/routes/gov/wuhan/kjj.js +0 -63
  4799. package/lib/routes/gov/wuhan/wehdz.js +0 -63
  4800. package/lib/routes/gov/xinwen/tujie.js +0 -75
  4801. package/lib/routes/gracg/user.js +0 -65
  4802. package/lib/routes/gradcafe/result.js +0 -37
  4803. package/lib/routes/guanggoo/index.js +0 -81
  4804. package/lib/routes/guardian/guardian.js +0 -45
  4805. package/lib/routes/guat/news.js +0 -68
  4806. package/lib/routes/guet/news.js +0 -95
  4807. package/lib/routes/guiltfree/onsale.js +0 -48
  4808. package/lib/routes/gvm/index.js +0 -94
  4809. package/lib/routes/gwern/category.js +0 -58
  4810. package/lib/routes/hackerone/hacktivity.js +0 -47
  4811. package/lib/routes/hackerone/search.js +0 -48
  4812. package/lib/routes/haimaoba/comics.js +0 -57
  4813. package/lib/routes/haohaozhu/discover.js +0 -42
  4814. package/lib/routes/haohaozhu/whole-house.js +0 -75
  4815. package/lib/routes/hdx/explore.js +0 -57
  4816. package/lib/routes/hentai-cosplays/hentai-cosplays.js +0 -11
  4817. package/lib/routes/hentai-cosplays/utils.js +0 -52
  4818. package/lib/routes/hexo/fluid.js +0 -49
  4819. package/lib/routes/hexo/next.js +0 -49
  4820. package/lib/routes/hexo/yilia.js +0 -34
  4821. package/lib/routes/hkcd/pdf.js +0 -30
  4822. package/lib/routes/hkcnews/news.js +0 -63
  4823. package/lib/routes/hkej/index.js +0 -138
  4824. package/lib/routes/hkgolden/index.js +0 -110
  4825. package/lib/routes/hopper/index.js +0 -82
  4826. package/lib/routes/hpoi/index.js +0 -47
  4827. package/lib/routes/hpoi/info.js +0 -51
  4828. package/lib/routes/hpoi/user.js +0 -37
  4829. package/lib/routes/huawei/xinsheng/index.js +0 -61
  4830. package/lib/routes/hugo/releases.js +0 -53
  4831. package/lib/routes/huya/live.js +0 -33
  4832. package/lib/routes/icourse163/newest.js +0 -77
  4833. package/lib/routes/idaily/index.js +0 -21
  4834. package/lib/routes/idownloadblog/index.js +0 -51
  4835. package/lib/routes/iea/index.js +0 -53
  4836. package/lib/routes/ifanr/index.js +0 -75
  4837. package/lib/routes/ifnews/column.js +0 -75
  4838. package/lib/routes/iie/blog.js +0 -47
  4839. package/lib/routes/im2maker/index.js +0 -60
  4840. package/lib/routes/imaijia/category.js +0 -63
  4841. package/lib/routes/imuseum/index.js +0 -49
  4842. package/lib/routes/index.js +0 -112
  4843. package/lib/routes/indienova/article.js +0 -53
  4844. package/lib/routes/infzm/news.js +0 -62
  4845. package/lib/routes/instapaper/person.js +0 -28
  4846. package/lib/routes/iplay/home.js +0 -26
  4847. package/lib/routes/iplay/utils.js +0 -57
  4848. package/lib/routes/ipsw/index.js +0 -112
  4849. package/lib/routes/itjuzi/invest.js +0 -32
  4850. package/lib/routes/itjuzi/merge.js +0 -32
  4851. package/lib/routes/itslide/new.js +0 -40
  4852. package/lib/routes/iyiou/index.js +0 -41
  4853. package/lib/routes/iyouport/index.js +0 -35
  4854. package/lib/routes/iyouport/utils.js +0 -22
  4855. package/lib/routes/jdlingyu/index.js +0 -45
  4856. package/lib/routes/jianshu/collection.js +0 -29
  4857. package/lib/routes/jianshu/home.js +0 -27
  4858. package/lib/routes/jianshu/trending.js +0 -28
  4859. package/lib/routes/jianshu/user.js +0 -29
  4860. package/lib/routes/jianshu/utils.js +0 -66
  4861. package/lib/routes/jiazhen108/index.js +0 -47
  4862. package/lib/routes/jijitang/article.js +0 -19
  4863. package/lib/routes/jijitang/publication.js +0 -18
  4864. package/lib/routes/jingdong/zhongchou.js +0 -78
  4865. package/lib/routes/jinritoutiao/keyword.js +0 -27
  4866. package/lib/routes/jinse/catalogue.js +0 -20
  4867. package/lib/routes/jinse/lives.js +0 -20
  4868. package/lib/routes/jinse/timeline.js +0 -21
  4869. package/lib/routes/jpmorganchase/research.js +0 -52
  4870. package/lib/routes/jskou/index.js +0 -21
  4871. package/lib/routes/juesheng/index.js +0 -49
  4872. package/lib/routes/justrun/index.js +0 -44
  4873. package/lib/routes/jx3/news.js +0 -58
  4874. package/lib/routes/kaggle/competitions.js +0 -51
  4875. package/lib/routes/kaggle/discussion.js +0 -72
  4876. package/lib/routes/kaggle/user.js +0 -19
  4877. package/lib/routes/kaiyan/index.js +0 -53
  4878. package/lib/routes/kaopunews/index.js +0 -28
  4879. package/lib/routes/kirara/news.js +0 -30
  4880. package/lib/routes/konami/pesmobile.js +0 -31
  4881. package/lib/routes/kongfz/shop.js +0 -58
  4882. package/lib/routes/kpmg/insights.js +0 -79
  4883. package/lib/routes/krankenkassen/index.js +0 -54
  4884. package/lib/routes/ku/index.js +0 -31
  4885. package/lib/routes/kuai/id.js +0 -38
  4886. package/lib/routes/kuai/index.js +0 -38
  4887. package/lib/routes/kzfeed/topic.js +0 -122
  4888. package/lib/routes/laosiji/feed.js +0 -23
  4889. package/lib/routes/laosiji/hotshow.js +0 -32
  4890. package/lib/routes/lastfm/loved.js +0 -27
  4891. package/lib/routes/lastfm/recent.js +0 -27
  4892. package/lib/routes/lastfm/top.js +0 -27
  4893. package/lib/routes/law/dh.js +0 -39
  4894. package/lib/routes/law/gf.js +0 -41
  4895. package/lib/routes/law/hq.js +0 -39
  4896. package/lib/routes/law/hw.js +0 -39
  4897. package/lib/routes/law/jctd.js +0 -41
  4898. package/lib/routes/law/jh.js +0 -41
  4899. package/lib/routes/law/jtc.js +0 -41
  4900. package/lib/routes/law/ts.js +0 -41
  4901. package/lib/routes/law/zl.js +0 -40
  4902. package/lib/routes/leboncoin/ad.js +0 -136
  4903. package/lib/routes/leetcode/check-cn.js +0 -98
  4904. package/lib/routes/leetcode/check-us.js +0 -32
  4905. package/lib/routes/leetcode/utils.js +0 -54
  4906. package/lib/routes/letterboxd/utils.js +0 -140
  4907. package/lib/routes/liequtv/room.js +0 -36
  4908. package/lib/routes/lifetimes/index.js +0 -99
  4909. package/lib/routes/lingyi/index.js +0 -64
  4910. package/lib/routes/linkedkeeper/index.js +0 -37
  4911. package/lib/routes/liwushuo/index.js +0 -28
  4912. package/lib/routes/liyuan-forums/threads.js +0 -76
  4913. package/lib/routes/lol/newsindex.js +0 -95
  4914. package/lib/routes/lolapp/article.js +0 -53
  4915. package/lib/routes/loveheaven/update.js +0 -45
  4916. package/lib/routes/lowendtalk/discussion.js +0 -43
  4917. package/lib/routes/lwn/alerts.js +0 -57
  4918. package/lib/routes/macau-bolsas/index.js +0 -47
  4919. package/lib/routes/macked/app.js +0 -25
  4920. package/lib/routes/macwk/soft.js +0 -32
  4921. package/lib/routes/mafengwo/note.js +0 -53
  4922. package/lib/routes/magireco/announcements.js +0 -26
  4923. package/lib/routes/magireco/event_banner.js +0 -34
  4924. package/lib/routes/makeuseof/index.js +0 -59
  4925. package/lib/routes/manhuadui/manhua.js +0 -36
  4926. package/lib/routes/manong-weekly/issues.js +0 -33
  4927. package/lib/routes/manxiaosi/book.js +0 -49
  4928. package/lib/routes/maoyan/hotComplete.js +0 -87
  4929. package/lib/routes/matataki/site/posts/author.js +0 -17
  4930. package/lib/routes/matataki/site/posts/favorite.js +0 -42
  4931. package/lib/routes/matataki/site/posts/scoreranking.js +0 -15
  4932. package/lib/routes/matataki/site/posts/tag.js +0 -16
  4933. package/lib/routes/matataki/site/posts/timeranking.js +0 -15
  4934. package/lib/routes/matataki/site/posts/token.js +0 -18
  4935. package/lib/routes/matataki/utils/matataki-utils.js +0 -125
  4936. package/lib/routes/matters/author.js +0 -49
  4937. package/lib/routes/matters/latest.js +0 -69
  4938. package/lib/routes/matters/tags.js +0 -56
  4939. package/lib/routes/maxnews/dota2.js +0 -45
  4940. package/lib/routes/mcdonalds/news.js +0 -53
  4941. package/lib/routes/mediadigest/category.js +0 -130
  4942. package/lib/routes/meihua/article.js +0 -54
  4943. package/lib/routes/meihua/shots.js +0 -58
  4944. package/lib/routes/meituan/open/announce.js +0 -45
  4945. package/lib/routes/meituan/tech/home.js +0 -45
  4946. package/lib/routes/mercari/index.js +0 -67
  4947. package/lib/routes/method-studios/index.js +0 -60
  4948. package/lib/routes/metred/fuli.js +0 -42
  4949. package/lib/routes/mhw/news.js +0 -48
  4950. package/lib/routes/mhw/update.js +0 -66
  4951. package/lib/routes/mi/board.js +0 -36
  4952. package/lib/routes/mi/crowdfunding.js +0 -31
  4953. package/lib/routes/mi/golden.js +0 -22
  4954. package/lib/routes/mi/miui/index.js +0 -58
  4955. package/lib/routes/micmicidol/article.js +0 -28
  4956. package/lib/routes/microsoft-store/updates.js +0 -30
  4957. package/lib/routes/mihoyo/bh2.js +0 -43
  4958. package/lib/routes/mihoyo/bh3.js +0 -60
  4959. package/lib/routes/mind42/index.js +0 -7
  4960. package/lib/routes/mind42/search.js +0 -5
  4961. package/lib/routes/mind42/tag.js +0 -5
  4962. package/lib/routes/mind42/utils.js +0 -47
  4963. package/lib/routes/mingjian/index.js +0 -46
  4964. package/lib/routes/miniapp/article.js +0 -57
  4965. package/lib/routes/miniapp/store/newest.js +0 -36
  4966. package/lib/routes/miniflux/get_entries.js +0 -264
  4967. package/lib/routes/miniflux/get_feeds.js +0 -90
  4968. package/lib/routes/missevan/drama.js +0 -40
  4969. package/lib/routes/missevan/latest.js +0 -47
  4970. package/lib/routes/mitbbs/index.js +0 -54
  4971. package/lib/routes/mitre/publications.js +0 -27
  4972. package/lib/routes/mlhang/latest.js +0 -23
  4973. package/lib/routes/mlog-club/projects.js +0 -33
  4974. package/lib/routes/mlog-club/topics.js +0 -37
  4975. package/lib/routes/mobdata/report.js +0 -30
  4976. package/lib/routes/modian/zhongchou.js +0 -61
  4977. package/lib/routes/moxingfans/index.js +0 -50
  4978. package/lib/routes/moxingnet/index.js +0 -61
  4979. package/lib/routes/mp4ba/index.js +0 -133
  4980. package/lib/routes/mqube/latest.js +0 -21
  4981. package/lib/routes/mqube/tag.js +0 -23
  4982. package/lib/routes/mqube/top.js +0 -21
  4983. package/lib/routes/mqube/user.js +0 -25
  4984. package/lib/routes/muchong/journal.js +0 -52
  4985. package/lib/routes/mzitu/category.js +0 -26
  4986. package/lib/routes/mzitu/home.js +0 -32
  4987. package/lib/routes/mzitu/post.js +0 -41
  4988. package/lib/routes/mzitu/tag.js +0 -25
  4989. package/lib/routes/mzitu/tags.js +0 -23
  4990. package/lib/routes/mzitu/util.js +0 -51
  4991. package/lib/routes/namoc/announcement.js +0 -64
  4992. package/lib/routes/namoc/exhibition.js +0 -67
  4993. package/lib/routes/namoc/media.js +0 -67
  4994. package/lib/routes/namoc/news.js +0 -67
  4995. package/lib/routes/namoc/specials.js +0 -42
  4996. package/lib/routes/nba/app_news.js +0 -40
  4997. package/lib/routes/netflix/newsroom.js +0 -82
  4998. package/lib/routes/network360/jobs.js +0 -24
  4999. package/lib/routes/newsmth/account.js +0 -39
  5000. package/lib/routes/newsmth/section.js +0 -99
  5001. package/lib/routes/nfmovies/index.js +0 -58
  5002. package/lib/routes/ningmeng/song.js +0 -77
  5003. package/lib/routes/nobelprize/index.js +0 -79
  5004. package/lib/routes/noi/index.js +0 -40
  5005. package/lib/routes/noi/province-news.js +0 -40
  5006. package/lib/routes/noi/rg-news.js +0 -47
  5007. package/lib/routes/noi/winners-list.js +0 -41
  5008. package/lib/routes/northhouse/index.js +0 -54
  5009. package/lib/routes/nosec/index.js +0 -73
  5010. package/lib/routes/novel/axdzs.js +0 -67
  5011. package/lib/routes/novel/biquge.js +0 -66
  5012. package/lib/routes/novel/biqugeinfo.js +0 -69
  5013. package/lib/routes/novel/booksky.js +0 -44
  5014. package/lib/routes/novel/dcrsw.js +0 -58
  5015. package/lib/routes/novel/ptwxz.js +0 -76
  5016. package/lib/routes/novel/uukanshu.js +0 -39
  5017. package/lib/routes/novel/wenxuemi.js +0 -63
  5018. package/lib/routes/novel/zhaishuyuan.js +0 -84
  5019. package/lib/routes/obsidian/announcements.js +0 -22
  5020. package/lib/routes/one/index.js +0 -48
  5021. package/lib/routes/or/index.js +0 -54
  5022. package/lib/routes/ow/patch.js +0 -23
  5023. package/lib/routes/owspace/read.js +0 -141
  5024. package/lib/routes/p-articles/contributors.js +0 -45
  5025. package/lib/routes/p-articles/section.js +0 -53
  5026. package/lib/routes/p-articles/utils.js +0 -29
  5027. package/lib/routes/paidai/utils.js +0 -26
  5028. package/lib/routes/partnershiponai/resources.js +0 -49
  5029. package/lib/routes/patchwork.kernel.org/comments.js +0 -33
  5030. package/lib/routes/pcr/news-cn.js +0 -28
  5031. package/lib/routes/pcr/news-tw.js +0 -67
  5032. package/lib/routes/pcr/news.js +0 -31
  5033. package/lib/routes/pediy/topic.js +0 -117
  5034. package/lib/routes/pediy/utils.js +0 -27
  5035. package/lib/routes/pgyer/app.js +0 -91
  5036. package/lib/routes/piaohua/hot.js +0 -37
  5037. package/lib/routes/piapro/public.js +0 -54
  5038. package/lib/routes/piapro/user.js +0 -47
  5039. package/lib/routes/piapro/utils.js +0 -45
  5040. package/lib/routes/pintu360/index.js +0 -54
  5041. package/lib/routes/pjsk/news.js +0 -49
  5042. package/lib/routes/plainlaw/archives.js +0 -42
  5043. package/lib/routes/pmcaff/feed.js +0 -51
  5044. package/lib/routes/pmcaff/list.js +0 -67
  5045. package/lib/routes/pmcaff/user.js +0 -56
  5046. package/lib/routes/pocket/trending.js +0 -31
  5047. package/lib/routes/polar/blog.js +0 -47
  5048. package/lib/routes/popiask/questions.js +0 -41
  5049. package/lib/routes/popiask/tapechat_questions.js +0 -43
  5050. package/lib/routes/popyard/index.js +0 -93
  5051. package/lib/routes/pork-price/index.js +0 -49
  5052. package/lib/routes/potplayer/update.js +0 -42
  5053. package/lib/routes/processon/popular.js +0 -51
  5054. package/lib/routes/project-zero-issues/index.js +0 -48
  5055. package/lib/routes/ps/list.js +0 -34
  5056. package/lib/routes/ps/product.js +0 -133
  5057. package/lib/routes/ps/ps4updates.js +0 -60
  5058. package/lib/routes/ps/trophy.js +0 -86
  5059. package/lib/routes/psnine/game.js +0 -32
  5060. package/lib/routes/psnine/index.js +0 -33
  5061. package/lib/routes/psnine/shuzhe.js +0 -33
  5062. package/lib/routes/psnine/trade.js +0 -39
  5063. package/lib/routes/ptpress/book.js +0 -34
  5064. package/lib/routes/putonghua/hangzhou.js +0 -45
  5065. package/lib/routes/qlwb/city.js +0 -54
  5066. package/lib/routes/qlwb/news.js +0 -37
  5067. package/lib/routes/qstheory/index.js +0 -122
  5068. package/lib/routes/qtfyfl/category.js +0 -91
  5069. package/lib/routes/quantamagazine/archive.js +0 -81
  5070. package/lib/routes/questmobile/report.js +0 -121
  5071. package/lib/routes/qutoutiao/category.js +0 -44
  5072. package/lib/routes/react/react-native-weekly.js +0 -35
  5073. package/lib/routes/remote-work/index.js +0 -88
  5074. package/lib/routes/rescuetime/release-notes.js +0 -37
  5075. package/lib/routes/rs05/rs05.js +0 -35
  5076. package/lib/routes/rthk-news/index.js +0 -60
  5077. package/lib/routes/s-hentai/index.js +0 -64
  5078. package/lib/routes/sagawa/index.js +0 -67
  5079. package/lib/routes/sankakucomplex/post.js +0 -50
  5080. package/lib/routes/sans/summit_archive.js +0 -24
  5081. package/lib/routes/sbs/chinese.js +0 -70
  5082. package/lib/routes/scala-blog/scala-blog.js +0 -29
  5083. package/lib/routes/scboy/thread.js +0 -50
  5084. package/lib/routes/sckjt/news.js +0 -35
  5085. package/lib/routes/scoresaber/user.js +0 -44
  5086. package/lib/routes/sexinsex/index.js +0 -101
  5087. package/lib/routes/sf/sffq-announce.js +0 -22
  5088. package/lib/routes/shanbay/checkin.js +0 -48
  5089. package/lib/routes/shanbay/footprints.js +0 -42
  5090. package/lib/routes/shengwugu/index.js +0 -41
  5091. package/lib/routes/shinybbs/index.js +0 -60
  5092. package/lib/routes/shinybbs/latest.js +0 -57
  5093. package/lib/routes/shinybbs/p.js +0 -38
  5094. package/lib/routes/showroom/room.js +0 -31
  5095. package/lib/routes/shuax/project.js +0 -37
  5096. package/lib/routes/shuhui/comics.js +0 -95
  5097. package/lib/routes/simonsfoundation/articles.js +0 -53
  5098. package/lib/routes/simpread/changelog.js +0 -79
  5099. package/lib/routes/sixthtone/news.js +0 -52
  5100. package/lib/routes/sketch/updates.js +0 -40
  5101. package/lib/routes/socialbeta/home.js +0 -42
  5102. package/lib/routes/socialbeta/hunt.js +0 -29
  5103. package/lib/routes/socialclub/events.js +0 -28
  5104. package/lib/routes/sogou/doodles.js +0 -26
  5105. package/lib/routes/soomal/topics.js +0 -130
  5106. package/lib/routes/soul/hot.js +0 -74
  5107. package/lib/routes/soundcloud/utils.js +0 -47
  5108. package/lib/routes/steam/search.js +0 -57
  5109. package/lib/routes/stork/keyword.js +0 -58
  5110. package/lib/routes/t66y/index.js +0 -156
  5111. package/lib/routes/t66y/post.js +0 -153
  5112. package/lib/routes/tahui/rptlist.js +0 -48
  5113. package/lib/routes/tam/forecast.js +0 -53
  5114. package/lib/routes/tanwu/products.js +0 -27
  5115. package/lib/routes/technologyreview/topic.js +0 -35
  5116. package/lib/routes/tencent/bigdata/index.js +0 -53
  5117. package/lib/routes/tencent/bugly/changelog.js +0 -49
  5118. package/lib/routes/tencent/egame/room.js +0 -52
  5119. package/lib/routes/tencent/gameinstitute/community.js +0 -60
  5120. package/lib/routes/tencent/guyu/channel.js +0 -64
  5121. package/lib/routes/tencent/tucaoqq/post.js +0 -39
  5122. package/lib/routes/tencent/video/playlist.js +0 -46
  5123. package/lib/routes/tencent/wechat/miniprogram/devtools.js +0 -38
  5124. package/lib/routes/tencent/wechat/miniprogram/framework.js +0 -35
  5125. package/lib/routes/tencent/wechat/miniprogram/plugins.js +0 -54
  5126. package/lib/routes/tencent/wechat/miniprogram/wxcloud.js +0 -47
  5127. package/lib/routes/thrillist/index.js +0 -67
  5128. package/lib/routes/tianya/comments.js +0 -41
  5129. package/lib/routes/tianya/index.js +0 -32
  5130. package/lib/routes/tianya/user.js +0 -34
  5131. package/lib/routes/tianyancha/hot.js +0 -48
  5132. package/lib/routes/tingdiantz/95598.js +0 -46
  5133. package/lib/routes/titsguru/model.js +0 -16
  5134. package/lib/routes/titsguru/util.js +0 -68
  5135. package/lib/routes/tongli/news.js +0 -45
  5136. package/lib/routes/totalcommander/whatsnew.js +0 -32
  5137. package/lib/routes/touhougarakuta/index.js +0 -68
  5138. package/lib/routes/touhougarakuta/json2html.js +0 -113
  5139. package/lib/routes/tprtc/cqzr.js +0 -80
  5140. package/lib/routes/tprtc/news.js +0 -71
  5141. package/lib/routes/tprtc/qyzc.js +0 -84
  5142. package/lib/routes/tssstatus/index.js +0 -35
  5143. package/lib/routes/tuicool/mags.js +0 -41
  5144. package/lib/routes/ui-cn/article.js +0 -51
  5145. package/lib/routes/uisdc/news.js +0 -34
  5146. package/lib/routes/uisdc/talk.js +0 -58
  5147. package/lib/routes/uisdc/topic.js +0 -55
  5148. package/lib/routes/uisdc/zt.js +0 -65
  5149. package/lib/routes/unit-image/films.js +0 -141
  5150. package/lib/routes/universities/ahau/cs_news/utils.js +0 -50
  5151. package/lib/routes/universities/ahau/jwc/utils.js +0 -50
  5152. package/lib/routes/universities/ahau/main/utils.js +0 -50
  5153. package/lib/routes/universities/ahmu/news.js +0 -51
  5154. package/lib/routes/universities/ahut/cstzgg.js +0 -45
  5155. package/lib/routes/universities/ahut/jwc.js +0 -43
  5156. package/lib/routes/universities/ahut/news.js +0 -44
  5157. package/lib/routes/universities/bjtu/gs/index.js +0 -130
  5158. package/lib/routes/universities/buaa/news/index.js +0 -66
  5159. package/lib/routes/universities/buaa/utils.js +0 -57
  5160. package/lib/routes/universities/bupt/funbox.js +0 -40
  5161. package/lib/routes/universities/bupt/grs.js +0 -64
  5162. package/lib/routes/universities/bupt/news.js +0 -34
  5163. package/lib/routes/universities/bupt/portal.js +0 -34
  5164. package/lib/routes/universities/bupt/utils.js +0 -72
  5165. package/lib/routes/universities/bupt/yz.js +0 -155
  5166. package/lib/routes/universities/bwu/utils.js +0 -50
  5167. package/lib/routes/universities/cpu/home.js +0 -52
  5168. package/lib/routes/universities/cpu/jwc.js +0 -52
  5169. package/lib/routes/universities/cpu/yjsy.js +0 -52
  5170. package/lib/routes/universities/cqu/jwc/announcement.js +0 -53
  5171. package/lib/routes/universities/cqu/net/info.js +0 -60
  5172. package/lib/routes/universities/cqu/news/tz.js +0 -71
  5173. package/lib/routes/universities/cqu/news/utils.js +0 -48
  5174. package/lib/routes/universities/cqu/sci/info.js +0 -59
  5175. package/lib/routes/universities/cqu/youth/info.js +0 -62
  5176. package/lib/routes/universities/cug/gcxy/index.js +0 -114
  5177. package/lib/routes/universities/cug/news.js +0 -63
  5178. package/lib/routes/universities/cuit/cxxww.js +0 -63
  5179. package/lib/routes/universities/dlmu/news.js +0 -44
  5180. package/lib/routes/universities/dlu/jiaowu/news.js +0 -37
  5181. package/lib/routes/universities/fudan/cce.js +0 -52
  5182. package/lib/routes/universities/gdou/jwc/utils.js +0 -72
  5183. package/lib/routes/universities/gzmtu/jwc/utils.js +0 -86
  5184. package/lib/routes/universities/gzmtu/tsg/utils.js +0 -86
  5185. package/lib/routes/universities/harvard/health/blog.js +0 -51
  5186. package/lib/routes/universities/hhu/libNews.js +0 -57
  5187. package/lib/routes/universities/hhu/libNewsc.js +0 -75
  5188. package/lib/routes/universities/hnust/graduate/index.js +0 -40
  5189. package/lib/routes/universities/jnu/yw/index.js +0 -81
  5190. package/lib/routes/universities/kmust/job/careers.js +0 -33
  5191. package/lib/routes/universities/kmust/job/jobfairs.js +0 -32
  5192. package/lib/routes/universities/kmust/jwc.js +0 -44
  5193. package/lib/routes/universities/lit/jwc.js +0 -50
  5194. package/lib/routes/universities/lit/tw.js +0 -56
  5195. package/lib/routes/universities/lit/xwzx.js +0 -73
  5196. package/lib/routes/universities/lntu/jwnews.js +0 -46
  5197. package/lib/routes/universities/lyu/news/utils.js +0 -42
  5198. package/lib/routes/universities/mit/graduateadmissions.js +0 -63
  5199. package/lib/routes/universities/nciae/news.js +0 -58
  5200. package/lib/routes/universities/nciae/tzgg.js +0 -58
  5201. package/lib/routes/universities/nciae/xsxx.js +0 -58
  5202. package/lib/routes/universities/njfu/jwc.js +0 -52
  5203. package/lib/routes/universities/njtech/jwc.js +0 -54
  5204. package/lib/routes/universities/nuc/index.js +0 -91
  5205. package/lib/routes/universities/nudt/yjszs.js +0 -65
  5206. package/lib/routes/universities/shanghaitech/activity.js +0 -34
  5207. package/lib/routes/universities/shanghaitech/sist/activity.js +0 -51
  5208. package/lib/routes/universities/shou/www.js +0 -64
  5209. package/lib/routes/universities/slu/utils.js +0 -74
  5210. package/lib/routes/universities/swufe/seie/index.js +0 -71
  5211. package/lib/routes/universities/swust/cs.js +0 -62
  5212. package/lib/routes/universities/swust/helper.js +0 -47
  5213. package/lib/routes/universities/swust/jwc_news.js +0 -45
  5214. package/lib/routes/universities/swust/jwc_notice.js +0 -51
  5215. package/lib/routes/universities/thu/index.js +0 -107
  5216. package/lib/routes/universities/usst/jwc.js +0 -62
  5217. package/lib/routes/universities/utdallas/isso.js +0 -54
  5218. package/lib/routes/universities/ynnu/edu/base64.js +0 -351
  5219. package/lib/routes/universities/ynnu/edu/news.js +0 -109
  5220. package/lib/routes/universities/ynu/utils.js +0 -64
  5221. package/lib/routes/universities/yzu/home.js +0 -83
  5222. package/lib/routes/universities/yzu/yjszs.js +0 -81
  5223. package/lib/routes/universities/zjgsu/tzgg/utils.js +0 -54
  5224. package/lib/routes/universities/zjut/design.js +0 -59
  5225. package/lib/routes/universities/zjut/index.js +0 -59
  5226. package/lib/routes/universities/zucc/cssearch/index.js +0 -47
  5227. package/lib/routes/universities/zucc/news/index.js +0 -68
  5228. package/lib/routes/universities/zzu/news.js +0 -80
  5229. package/lib/routes/universities/zzu/soft/news.js +0 -68
  5230. package/lib/routes/us/supremecourt/argument_audio.js +0 -58
  5231. package/lib/routes/uwants/index.js +0 -70
  5232. package/lib/routes/vgtime/keyword.js +0 -46
  5233. package/lib/routes/vgtime/news.js +0 -52
  5234. package/lib/routes/vgtime/release.js +0 -20
  5235. package/lib/routes/voa/day-photos.js +0 -54
  5236. package/lib/routes/voa/index.js +0 -54
  5237. package/lib/routes/vol/lastupdate.js +0 -51
  5238. package/lib/routes/vuevideo/user.js +0 -60
  5239. package/lib/routes/vulture/utils.js +0 -113
  5240. package/lib/routes/wanwansub/index.js +0 -57
  5241. package/lib/routes/wanwansub/info.js +0 -44
  5242. package/lib/routes/watchface/update.js +0 -42
  5243. package/lib/routes/weatheralarm/index.js +0 -26
  5244. package/lib/routes/webtoons/comic.js +0 -54
  5245. package/lib/routes/webtoons/naver.js +0 -50
  5246. package/lib/routes/weexcn/index.js +0 -69
  5247. package/lib/routes/weforum/report.js +0 -56
  5248. package/lib/routes/wegene/column.js +0 -30
  5249. package/lib/routes/weidian/goods.js +0 -37
  5250. package/lib/routes/weseepro/circle.js +0 -38
  5251. package/lib/routes/weseepro/newest-direct.js +0 -69
  5252. package/lib/routes/weseepro/newest.js +0 -69
  5253. package/lib/routes/westore/new.js +0 -40
  5254. package/lib/routes/whalegogo/home.js +0 -43
  5255. package/lib/routes/whalegogo/portal.js +0 -57
  5256. package/lib/routes/whb/zhuzhan.js +0 -76
  5257. package/lib/routes/wikihow/category.js +0 -34
  5258. package/lib/routes/wikihow/index.js +0 -32
  5259. package/lib/routes/wineyun/index.js +0 -36
  5260. package/lib/routes/wired/tag.js +0 -31
  5261. package/lib/routes/wolley/host.js +0 -39
  5262. package/lib/routes/wolley/index.js +0 -47
  5263. package/lib/routes/wolley/user.js +0 -38
  5264. package/lib/routes/wto/dispute-settlement.js +0 -37
  5265. package/lib/routes/wukong/user.js +0 -93
  5266. package/lib/routes/xiachufang/utils.js +0 -100
  5267. package/lib/routes/xiaoheihe/discount.js +0 -71
  5268. package/lib/routes/xiaoheihe/news.js +0 -53
  5269. package/lib/routes/xiaoheihe/user.js +0 -51
  5270. package/lib/routes/xici/index.js +0 -33
  5271. package/lib/routes/xinquji/internal.js +0 -15
  5272. package/lib/routes/xinquji/today.js +0 -15
  5273. package/lib/routes/xposed/module.js +0 -36
  5274. package/lib/routes/xuangubao/subject.js +0 -47
  5275. package/lib/routes/xuetangx/course_list.js +0 -52
  5276. package/lib/routes/xyplorer/whatsnew.js +0 -32
  5277. package/lib/routes/yahoo-jp-tv/index.js +0 -21
  5278. package/lib/routes/yande.re/post_popular_recent.js +0 -63
  5279. package/lib/routes/yicas/blog.js +0 -52
  5280. package/lib/routes/yidoutang/index.js +0 -33
  5281. package/lib/routes/yinxiang/card.js +0 -45
  5282. package/lib/routes/yinxiang/category.js +0 -46
  5283. package/lib/routes/yinxiang/note.js +0 -41
  5284. package/lib/routes/yinxiang/personal.js +0 -47
  5285. package/lib/routes/yinxiang/tag.js +0 -46
  5286. package/lib/routes/youdao/latest.js +0 -47
  5287. package/lib/routes/youdao/xueba.js +0 -64
  5288. package/lib/routes/yuzu-emu/entry.js +0 -52
  5289. package/lib/routes/zcfy/hot.js +0 -34
  5290. package/lib/routes/zcfy/index.js +0 -34
  5291. package/lib/routes/zfrontier/board_postlist.js +0 -36
  5292. package/lib/routes/zfrontier/postlist.js +0 -33
  5293. package/lib/routes/zhanqi/room.js +0 -37
  5294. package/lib/routes/zhilian/index.js +0 -78
  5295. package/lib/routes/zhishifenzi/depth.js +0 -56
  5296. package/lib/routes/zhishifenzi/innovation.js +0 -67
  5297. package/lib/routes/zhishifenzi/news.js +0 -66
  5298. package/lib/routes/zhuixinfan/list.js +0 -51
  5299. package/lib/routes/zhutix/latest.js +0 -41
  5300. package/lib/routes/zimuku/index.js +0 -41
  5301. package/lib/routes/zimuzu/resource.js +0 -19
  5302. package/lib/routes/zimuzu/top.js +0 -27
  5303. package/lib/routes/ziroom/room.js +0 -55
  5304. package/lib/routes/zreading/home.js +0 -50
  5305. package/lib/routes/zsnews/index.js +0 -31
  5306. package/lib/routes/zzz/index.js +0 -59
  5307. package/lib/static/logo.png +0 -0
  5308. package/lib/utils/cf-email.js +0 -36
  5309. package/lib/utils/common-config.js +0 -82
  5310. package/lib/utils/common-utils.js +0 -37
  5311. package/lib/utils/date.js +0 -85
  5312. package/lib/utils/dateParser.js +0 -89
  5313. package/lib/utils/got.js +0 -44
  5314. package/lib/utils/logger.js +0 -46
  5315. package/lib/utils/md5.js +0 -5
  5316. package/lib/utils/parse-date.js +0 -199
  5317. package/lib/utils/puppeteer-utils.js +0 -63
  5318. package/lib/utils/puppeteer.js +0 -79
  5319. package/lib/utils/rand-user-agent.js +0 -30
  5320. package/lib/utils/readable-social.js +0 -46
  5321. package/lib/utils/render.js +0 -9
  5322. package/lib/utils/request-wrapper.js +0 -126
  5323. package/lib/utils/rss-parser.js +0 -13
  5324. package/lib/utils/timezone.js +0 -14
  5325. package/lib/utils/unify-proxy.js +0 -116
  5326. package/lib/utils/valid-host.js +0 -16
  5327. package/lib/utils/wait.js +0 -5
  5328. package/lib/utils/wechat-mp.js +0 -271
  5329. package/lib/v2/0818tuan/index.js +0 -47
  5330. package/lib/v2/0818tuan/maintainer.js +0 -3
  5331. package/lib/v2/0818tuan/radar.js +0 -13
  5332. package/lib/v2/0818tuan/router.js +0 -3
  5333. package/lib/v2/12306/index.js +0 -108
  5334. package/lib/v2/12306/maintainer.js +0 -4
  5335. package/lib/v2/12306/radar.js +0 -28
  5336. package/lib/v2/12306/router.js +0 -4
  5337. package/lib/v2/12306/zxdt.js +0 -67
  5338. package/lib/v2/141jav/index.js +0 -71
  5339. package/lib/v2/141jav/maintainer.js +0 -3
  5340. package/lib/v2/141jav/radar.js +0 -40
  5341. package/lib/v2/141jav/router.js +0 -3
  5342. package/lib/v2/141ppv/index.js +0 -74
  5343. package/lib/v2/141ppv/maintainer.js +0 -3
  5344. package/lib/v2/141ppv/radar.js +0 -40
  5345. package/lib/v2/141ppv/router.js +0 -3
  5346. package/lib/v2/163/ds.js +0 -33
  5347. package/lib/v2/163/dy.js +0 -29
  5348. package/lib/v2/163/dy2.js +0 -42
  5349. package/lib/v2/163/exclusive.js +0 -148
  5350. package/lib/v2/163/maintainer.js +0 -20
  5351. package/lib/v2/163/music/artist-songs.js +0 -39
  5352. package/lib/v2/163/music/artist.js +0 -39
  5353. package/lib/v2/163/music/djradio.js +0 -78
  5354. package/lib/v2/163/music/maintainer.js +0 -3
  5355. package/lib/v2/163/music/playlist.js +0 -55
  5356. package/lib/v2/163/music/userevents.js +0 -52
  5357. package/lib/v2/163/music/userplaylist.js +0 -56
  5358. package/lib/v2/163/music/userplayrecords.js +0 -55
  5359. package/lib/v2/163/news/rank.js +0 -155
  5360. package/lib/v2/163/news/special.js +0 -114
  5361. package/lib/v2/163/open/vip.js +0 -63
  5362. package/lib/v2/163/radar.js +0 -155
  5363. package/lib/v2/163/renjian.js +0 -77
  5364. package/lib/v2/163/router.js +0 -20
  5365. package/lib/v2/163/today.js +0 -55
  5366. package/lib/v2/163/utils.js +0 -40
  5367. package/lib/v2/18comic/album.js +0 -78
  5368. package/lib/v2/18comic/blogs.js +0 -66
  5369. package/lib/v2/18comic/index.js +0 -14
  5370. package/lib/v2/18comic/maintainer.js +0 -6
  5371. package/lib/v2/18comic/radar.js +0 -41
  5372. package/lib/v2/18comic/router.js +0 -6
  5373. package/lib/v2/18comic/search.js +0 -15
  5374. package/lib/v2/18comic/templates/description.art +0 -4
  5375. package/lib/v2/18comic/utils.js +0 -82
  5376. package/lib/v2/19lou/index.js +0 -78
  5377. package/lib/v2/19lou/maintainer.js +0 -3
  5378. package/lib/v2/19lou/radar.js +0 -29
  5379. package/lib/v2/19lou/router.js +0 -3
  5380. package/lib/v2/1point3acres/blog.js +0 -67
  5381. package/lib/v2/1point3acres/category.js +0 -17
  5382. package/lib/v2/1point3acres/maintainer.js +0 -9
  5383. package/lib/v2/1point3acres/offer.js +0 -69
  5384. package/lib/v2/1point3acres/radar.js +0 -53
  5385. package/lib/v2/1point3acres/router.js +0 -10
  5386. package/lib/v2/1point3acres/section.js +0 -28
  5387. package/lib/v2/1point3acres/thread.js +0 -15
  5388. package/lib/v2/1point3acres/user/post.js +0 -21
  5389. package/lib/v2/1point3acres/user/thread.js +0 -21
  5390. package/lib/v2/1point3acres/utils.js +0 -79
  5391. package/lib/v2/2047/index.js +0 -55
  5392. package/lib/v2/2047/maintainer.js +0 -3
  5393. package/lib/v2/2047/radar.js +0 -13
  5394. package/lib/v2/2047/router.js +0 -3
  5395. package/lib/v2/2048/index.js +0 -113
  5396. package/lib/v2/2048/maintainer.js +0 -3
  5397. package/lib/v2/2048/radar.js +0 -13
  5398. package/lib/v2/2048/router.js +0 -3
  5399. package/lib/v2/2cycd/index.js +0 -57
  5400. package/lib/v2/2cycd/maintainer.js +0 -3
  5401. package/lib/v2/2cycd/radar.js +0 -25
  5402. package/lib/v2/2cycd/router.js +0 -3
  5403. package/lib/v2/35photo/actual.js +0 -7
  5404. package/lib/v2/35photo/author.js +0 -9
  5405. package/lib/v2/35photo/genre.js +0 -10
  5406. package/lib/v2/35photo/interesting.js +0 -7
  5407. package/lib/v2/35photo/maintainer.js +0 -8
  5408. package/lib/v2/35photo/map.js +0 -7
  5409. package/lib/v2/35photo/new.js +0 -7
  5410. package/lib/v2/35photo/radar.js +0 -43
  5411. package/lib/v2/35photo/router.js +0 -8
  5412. package/lib/v2/35photo/utils.js +0 -57
  5413. package/lib/v2/36kr/hot-list.js +0 -59
  5414. package/lib/v2/36kr/index.js +0 -53
  5415. package/lib/v2/36kr/maintainer.js +0 -10
  5416. package/lib/v2/36kr/radar.js +0 -55
  5417. package/lib/v2/36kr/router.js +0 -4
  5418. package/lib/v2/36kr/utils.js +0 -36
  5419. package/lib/v2/3dmgame/game.js +0 -39
  5420. package/lib/v2/3dmgame/maintainer.js +0 -4
  5421. package/lib/v2/3dmgame/news_center.js +0 -42
  5422. package/lib/v2/3dmgame/radar.js +0 -19
  5423. package/lib/v2/3dmgame/router.js +0 -4
  5424. package/lib/v2/3dmgame/utils.js +0 -30
  5425. package/lib/v2/423down/index.js +0 -114
  5426. package/lib/v2/423down/maintainer.js +0 -3
  5427. package/lib/v2/423down/radar.js +0 -193
  5428. package/lib/v2/423down/router.js +0 -3
  5429. package/lib/v2/4ksj/forum.js +0 -128
  5430. package/lib/v2/4ksj/maintainer.js +0 -3
  5431. package/lib/v2/4ksj/radar.js +0 -13
  5432. package/lib/v2/4ksj/router.js +0 -3
  5433. package/lib/v2/4ksj/templates/description.art +0 -56
  5434. package/lib/v2/500px/maintainer.js +0 -4
  5435. package/lib/v2/500px/radar.js +0 -19
  5436. package/lib/v2/500px/router.js +0 -4
  5437. package/lib/v2/500px/tribeSet.js +0 -29
  5438. package/lib/v2/500px/user.js +0 -32
  5439. package/lib/v2/500px/utils.js +0 -122
  5440. package/lib/v2/50forum/maintainer.js +0 -3
  5441. package/lib/v2/50forum/radar.js +0 -13
  5442. package/lib/v2/50forum/router.js +0 -3
  5443. package/lib/v2/50forum/zhuanjia.js +0 -51
  5444. package/lib/v2/52hrtt/index.js +0 -56
  5445. package/lib/v2/52hrtt/maintainer.js +0 -4
  5446. package/lib/v2/52hrtt/radar.js +0 -19
  5447. package/lib/v2/52hrtt/router.js +0 -4
  5448. package/lib/v2/52hrtt/symposium.js +0 -56
  5449. package/lib/v2/591/list.js +0 -144
  5450. package/lib/v2/591/maintainer.js +0 -3
  5451. package/lib/v2/591/radar.js +0 -16
  5452. package/lib/v2/591/router.js +0 -3
  5453. package/lib/v2/5eplay/index.js +0 -100
  5454. package/lib/v2/5eplay/maintainer.js +0 -3
  5455. package/lib/v2/5eplay/radar.js +0 -13
  5456. package/lib/v2/5eplay/router.js +0 -3
  5457. package/lib/v2/5eplay/utils.js +0 -35
  5458. package/lib/v2/6park/index.js +0 -65
  5459. package/lib/v2/6park/maintainer.js +0 -8
  5460. package/lib/v2/6park/news.js +0 -76
  5461. package/lib/v2/6park/radar.js +0 -65
  5462. package/lib/v2/6park/router.js +0 -4
  5463. package/lib/v2/6v123/latestMovies.js +0 -14
  5464. package/lib/v2/6v123/latestTVSeries.js +0 -14
  5465. package/lib/v2/6v123/maintainer.js +0 -4
  5466. package/lib/v2/6v123/radar.js +0 -23
  5467. package/lib/v2/6v123/router.js +0 -4
  5468. package/lib/v2/6v123/utils.js +0 -83
  5469. package/lib/v2/78dm/index.js +0 -74
  5470. package/lib/v2/78dm/maintainer.js +0 -5
  5471. package/lib/v2/78dm/radar.js +0 -37
  5472. package/lib/v2/78dm/router.js +0 -3
  5473. package/lib/v2/7mmtv/index.js +0 -78
  5474. package/lib/v2/7mmtv/maintainer.js +0 -4
  5475. package/lib/v2/7mmtv/radar.js +0 -19
  5476. package/lib/v2/7mmtv/router.js +0 -3
  5477. package/lib/v2/81/81rc/index.js +0 -62
  5478. package/lib/v2/81/maintainer.js +0 -3
  5479. package/lib/v2/81/radar.js +0 -18
  5480. package/lib/v2/81/router.js +0 -3
  5481. package/lib/v2/8264/list.js +0 -92
  5482. package/lib/v2/8264/maintainer.js +0 -3
  5483. package/lib/v2/8264/radar.js +0 -355
  5484. package/lib/v2/8264/router.js +0 -3
  5485. package/lib/v2/8kcos/article.js +0 -24
  5486. package/lib/v2/8kcos/cat.js +0 -22
  5487. package/lib/v2/8kcos/const.js +0 -4
  5488. package/lib/v2/8kcos/latest.js +0 -23
  5489. package/lib/v2/8kcos/maintainer.js +0 -5
  5490. package/lib/v2/8kcos/radar.js +0 -25
  5491. package/lib/v2/8kcos/router.js +0 -5
  5492. package/lib/v2/8kcos/tag.js +0 -23
  5493. package/lib/v2/8world/index.js +0 -57
  5494. package/lib/v2/8world/maintainer.js +0 -4
  5495. package/lib/v2/8world/radar.js +0 -19
  5496. package/lib/v2/8world/router.js +0 -3
  5497. package/lib/v2/91porn/author.js +0 -60
  5498. package/lib/v2/91porn/index.js +0 -60
  5499. package/lib/v2/91porn/maintainer.js +0 -4
  5500. package/lib/v2/91porn/radar.js +0 -19
  5501. package/lib/v2/91porn/router.js +0 -4
  5502. package/lib/v2/91porn/utils.js +0 -12
  5503. package/lib/v2/95mm/category.js +0 -20
  5504. package/lib/v2/95mm/maintainer.js +0 -5
  5505. package/lib/v2/95mm/radar.js +0 -25
  5506. package/lib/v2/95mm/router.js +0 -5
  5507. package/lib/v2/95mm/tab.js +0 -9
  5508. package/lib/v2/95mm/tag.js +0 -9
  5509. package/lib/v2/95mm/utils.js +0 -60
  5510. package/lib/v2/9to5/maintainer.js +0 -3
  5511. package/lib/v2/9to5/radar.js +0 -35
  5512. package/lib/v2/9to5/router.js +0 -3
  5513. package/lib/v2/9to5/subsite.js +0 -70
  5514. package/lib/v2/9to5/utils.js +0 -36
  5515. package/lib/v2/aamacau/index.js +0 -56
  5516. package/lib/v2/aamacau/maintainer.js +0 -3
  5517. package/lib/v2/aamacau/radar.js +0 -13
  5518. package/lib/v2/aamacau/router.js +0 -3
  5519. package/lib/v2/abc/index.js +0 -162
  5520. package/lib/v2/abc/maintainer.js +0 -3
  5521. package/lib/v2/abc/radar.js +0 -13
  5522. package/lib/v2/abc/router.js +0 -3
  5523. package/lib/v2/abmedia/category.js +0 -30
  5524. package/lib/v2/abmedia/index.js +0 -26
  5525. package/lib/v2/abmedia/maintainer.js +0 -3
  5526. package/lib/v2/abmedia/radar.js +0 -19
  5527. package/lib/v2/abmedia/router.js +0 -4
  5528. package/lib/v2/abskoop/index.js +0 -47
  5529. package/lib/v2/abskoop/maintainer.js +0 -3
  5530. package/lib/v2/abskoop/nsfw.js +0 -31
  5531. package/lib/v2/abskoop/radar.js +0 -24
  5532. package/lib/v2/abskoop/router.js +0 -4
  5533. package/lib/v2/acfun/article.js +0 -100
  5534. package/lib/v2/acfun/bangumi.js +0 -28
  5535. package/lib/v2/acfun/maintainer.js +0 -5
  5536. package/lib/v2/acfun/radar.js +0 -25
  5537. package/lib/v2/acfun/router.js +0 -5
  5538. package/lib/v2/acfun/video.js +0 -45
  5539. package/lib/v2/acg17/maintainer.js +0 -3
  5540. package/lib/v2/acg17/post.js +0 -20
  5541. package/lib/v2/acg17/radar.js +0 -13
  5542. package/lib/v2/acg17/router.js +0 -3
  5543. package/lib/v2/acs/journal.js +0 -73
  5544. package/lib/v2/acs/maintainer.js +0 -3
  5545. package/lib/v2/acs/radar.js +0 -13
  5546. package/lib/v2/acs/router.js +0 -3
  5547. package/lib/v2/aeaweb/index.js +0 -81
  5548. package/lib/v2/aeaweb/maintainer.js +0 -3
  5549. package/lib/v2/aeaweb/radar.js +0 -13
  5550. package/lib/v2/aeaweb/router.js +0 -3
  5551. package/lib/v2/aeon/category.js +0 -27
  5552. package/lib/v2/aeon/maintainer.js +0 -4
  5553. package/lib/v2/aeon/radar.js +0 -19
  5554. package/lib/v2/aeon/router.js +0 -4
  5555. package/lib/v2/aeon/type.js +0 -29
  5556. package/lib/v2/aeon/utils.js +0 -50
  5557. package/lib/v2/agefans/detail.js +0 -31
  5558. package/lib/v2/agefans/maintainer.js +0 -4
  5559. package/lib/v2/agefans/radar.js +0 -22
  5560. package/lib/v2/agefans/router.js +0 -4
  5561. package/lib/v2/agefans/update.js +0 -49
  5562. package/lib/v2/agefans/utils.js +0 -5
  5563. package/lib/v2/agirls/index.js +0 -49
  5564. package/lib/v2/agirls/maintainer.js +0 -5
  5565. package/lib/v2/agirls/radar.js +0 -25
  5566. package/lib/v2/agirls/router.js +0 -5
  5567. package/lib/v2/agirls/topic.js +0 -44
  5568. package/lib/v2/agirls/topic_list.js +0 -44
  5569. package/lib/v2/agirls/utils.js +0 -37
  5570. package/lib/v2/agora0/index.js +0 -54
  5571. package/lib/v2/agora0/maintainer.js +0 -4
  5572. package/lib/v2/agora0/pen0.js +0 -43
  5573. package/lib/v2/agora0/radar.js +0 -24
  5574. package/lib/v2/agora0/router.js +0 -4
  5575. package/lib/v2/ahjzu/maintainer.js +0 -3
  5576. package/lib/v2/ahjzu/news.js +0 -57
  5577. package/lib/v2/ahjzu/radar.js +0 -13
  5578. package/lib/v2/ahjzu/router.js +0 -3
  5579. package/lib/v2/aicaijing/index.js +0 -73
  5580. package/lib/v2/aicaijing/maintainer.js +0 -6
  5581. package/lib/v2/aicaijing/radar.js +0 -31
  5582. package/lib/v2/aicaijing/router.js +0 -3
  5583. package/lib/v2/aiea/index.js +0 -39
  5584. package/lib/v2/aiea/maintainer.js +0 -3
  5585. package/lib/v2/aiea/radar.js +0 -13
  5586. package/lib/v2/aiea/router.js +0 -3
  5587. package/lib/v2/aijishu/index.js +0 -26
  5588. package/lib/v2/aijishu/maintainer.js +0 -5
  5589. package/lib/v2/aijishu/radar.js +0 -25
  5590. package/lib/v2/aijishu/router.js +0 -3
  5591. package/lib/v2/aijishu/utils.js +0 -36
  5592. package/lib/v2/ainvest/article.js +0 -42
  5593. package/lib/v2/ainvest/maintainer.js +0 -4
  5594. package/lib/v2/ainvest/news.js +0 -39
  5595. package/lib/v2/ainvest/radar.js +0 -19
  5596. package/lib/v2/ainvest/router.js +0 -4
  5597. package/lib/v2/ainvest/utils.js +0 -73
  5598. package/lib/v2/aip/journal-pupp.js +0 -58
  5599. package/lib/v2/aip/journal.js +0 -55
  5600. package/lib/v2/aip/maintainer.js +0 -3
  5601. package/lib/v2/aip/radar.js +0 -13
  5602. package/lib/v2/aip/router.js +0 -4
  5603. package/lib/v2/aip/utils.js +0 -29
  5604. package/lib/v2/airchina/index.js +0 -36
  5605. package/lib/v2/airchina/maintainer.js +0 -3
  5606. package/lib/v2/airchina/radar.js +0 -13
  5607. package/lib/v2/airchina/router.js +0 -3
  5608. package/lib/v2/aisixiang/column.js +0 -45
  5609. package/lib/v2/aisixiang/maintainer.js +0 -7
  5610. package/lib/v2/aisixiang/radar.js +0 -35
  5611. package/lib/v2/aisixiang/router.js +0 -7
  5612. package/lib/v2/aisixiang/thinktank.js +0 -49
  5613. package/lib/v2/aisixiang/toplist.js +0 -43
  5614. package/lib/v2/aisixiang/utils.js +0 -43
  5615. package/lib/v2/aisixiang/zhuanti.js +0 -45
  5616. package/lib/v2/ajmide/index.js +0 -29
  5617. package/lib/v2/ajmide/maintainer.js +0 -3
  5618. package/lib/v2/ajmide/radar.js +0 -16
  5619. package/lib/v2/ajmide/router.js +0 -3
  5620. package/lib/v2/aliresearch/information.js +0 -57
  5621. package/lib/v2/aliresearch/maintainer.js +0 -3
  5622. package/lib/v2/aliresearch/radar.js +0 -13
  5623. package/lib/v2/aliresearch/router.js +0 -3
  5624. package/lib/v2/alistapart/index.js +0 -19
  5625. package/lib/v2/alistapart/maintainer.js +0 -4
  5626. package/lib/v2/alistapart/radar.js +0 -19
  5627. package/lib/v2/alistapart/router.js +0 -4
  5628. package/lib/v2/alistapart/topic.js +0 -21
  5629. package/lib/v2/alistapart/utils.js +0 -22
  5630. package/lib/v2/aliyun/database_month.js +0 -40
  5631. package/lib/v2/aliyun/developer/group.js +0 -49
  5632. package/lib/v2/aliyun/maintainer.js +0 -5
  5633. package/lib/v2/aliyun/notice.js +0 -56
  5634. package/lib/v2/aliyun/radar.js +0 -32
  5635. package/lib/v2/aliyun/router.js +0 -5
  5636. package/lib/v2/aliyundrive/files.js +0 -59
  5637. package/lib/v2/aliyundrive/maintainer.js +0 -3
  5638. package/lib/v2/aliyundrive/radar.js +0 -13
  5639. package/lib/v2/aliyundrive/router.js +0 -3
  5640. package/lib/v2/aljazeera/index.js +0 -87
  5641. package/lib/v2/aljazeera/maintainer.js +0 -5
  5642. package/lib/v2/aljazeera/radar.js +0 -62
  5643. package/lib/v2/aljazeera/router.js +0 -3
  5644. package/lib/v2/allrecode/index.js +0 -65
  5645. package/lib/v2/allrecode/maintainer.js +0 -5
  5646. package/lib/v2/allrecode/news.js +0 -35
  5647. package/lib/v2/allrecode/radar.js +0 -25
  5648. package/lib/v2/allrecode/router.js +0 -4
  5649. package/lib/v2/ally/maintainer.js +0 -3
  5650. package/lib/v2/ally/radar.js +0 -13
  5651. package/lib/v2/ally/rail.js +0 -108
  5652. package/lib/v2/ally/router.js +0 -3
  5653. package/lib/v2/alternativeto/maintainer.js +0 -4
  5654. package/lib/v2/alternativeto/platform.js +0 -32
  5655. package/lib/v2/alternativeto/radar.js +0 -19
  5656. package/lib/v2/alternativeto/router.js +0 -4
  5657. package/lib/v2/alternativeto/software.js +0 -32
  5658. package/lib/v2/alternativeto/utils.js +0 -22
  5659. package/lib/v2/altervista/radar.js +0 -13
  5660. package/lib/v2/amazon/awsblogs.js +0 -27
  5661. package/lib/v2/amazon/kindle-software-updates.js +0 -48
  5662. package/lib/v2/amazon/maintainer.js +0 -4
  5663. package/lib/v2/amazon/radar.js +0 -24
  5664. package/lib/v2/amazon/router.js +0 -4
  5665. package/lib/v2/android/maintainer.js +0 -3
  5666. package/lib/v2/android/platform-tools-releases.js +0 -47
  5667. package/lib/v2/android/radar.js +0 -13
  5668. package/lib/v2/android/router.js +0 -3
  5669. package/lib/v2/annualreviews/index.js +0 -68
  5670. package/lib/v2/annualreviews/maintainer.js +0 -3
  5671. package/lib/v2/annualreviews/radar.js +0 -13
  5672. package/lib/v2/annualreviews/router.js +0 -3
  5673. package/lib/v2/anquanke/category.js +0 -39
  5674. package/lib/v2/anquanke/maintainer.js +0 -4
  5675. package/lib/v2/anquanke/radar.js +0 -13
  5676. package/lib/v2/anquanke/router.js +0 -4
  5677. package/lib/v2/anquanke/vul.js +0 -34
  5678. package/lib/v2/apache/apisix/blog.js +0 -32
  5679. package/lib/v2/apache/maintainer.js +0 -3
  5680. package/lib/v2/apache/radar.js +0 -13
  5681. package/lib/v2/apache/router.js +0 -3
  5682. package/lib/v2/apiseven/blog.js +0 -46
  5683. package/lib/v2/apiseven/maintainer.js +0 -3
  5684. package/lib/v2/apiseven/radar.js +0 -13
  5685. package/lib/v2/apiseven/router.js +0 -3
  5686. package/lib/v2/apkpure/maintainer.js +0 -3
  5687. package/lib/v2/apkpure/radar.js +0 -13
  5688. package/lib/v2/apkpure/router.js +0 -3
  5689. package/lib/v2/apkpure/versions.js +0 -48
  5690. package/lib/v2/apnews/maintainer.js +0 -3
  5691. package/lib/v2/apnews/radar.js +0 -13
  5692. package/lib/v2/apnews/router.js +0 -3
  5693. package/lib/v2/apnews/topics.js +0 -44
  5694. package/lib/v2/app-center/maintainer.js +0 -3
  5695. package/lib/v2/app-center/radar.js +0 -13
  5696. package/lib/v2/app-center/release.js +0 -120
  5697. package/lib/v2/app-center/router.js +0 -3
  5698. package/lib/v2/apple/apps.js +0 -107
  5699. package/lib/v2/apple/exchange_repair.js +0 -47
  5700. package/lib/v2/apple/maintainer.js +0 -4
  5701. package/lib/v2/apple/radar.js +0 -21
  5702. package/lib/v2/apple/router.js +0 -4
  5703. package/lib/v2/appledaily/index.js +0 -65
  5704. package/lib/v2/appledaily/maintainer.js +0 -3
  5705. package/lib/v2/appledaily/radar.js +0 -157
  5706. package/lib/v2/appledaily/router.js +0 -3
  5707. package/lib/v2/appleinsider/index.js +0 -59
  5708. package/lib/v2/appleinsider/maintainer.js +0 -3
  5709. package/lib/v2/appleinsider/radar.js +0 -13
  5710. package/lib/v2/appleinsider/router.js +0 -3
  5711. package/lib/v2/appstore/gofans.js +0 -34
  5712. package/lib/v2/appstore/in-app-purchase.js +0 -58
  5713. package/lib/v2/appstore/maintainer.js +0 -6
  5714. package/lib/v2/appstore/price.js +0 -53
  5715. package/lib/v2/appstore/radar.js +0 -35
  5716. package/lib/v2/appstore/router.js +0 -6
  5717. package/lib/v2/appstore/xianmian.js +0 -28
  5718. package/lib/v2/aqara/community.js +0 -32
  5719. package/lib/v2/aqara/maintainer.js +0 -7
  5720. package/lib/v2/aqara/news.js +0 -53
  5721. package/lib/v2/aqara/post.js +0 -92
  5722. package/lib/v2/aqara/radar.js +0 -39
  5723. package/lib/v2/aqara/router.js +0 -15
  5724. package/lib/v2/arcteryx/maintainer.js +0 -5
  5725. package/lib/v2/arcteryx/new-arrivals.js +0 -38
  5726. package/lib/v2/arcteryx/outlet.js +0 -40
  5727. package/lib/v2/arcteryx/radar.js +0 -29
  5728. package/lib/v2/arcteryx/regear-new-arrivals.js +0 -53
  5729. package/lib/v2/arcteryx/router.js +0 -5
  5730. package/lib/v2/arcteryx/utils.js +0 -23
  5731. package/lib/v2/arknights/announce.js +0 -55
  5732. package/lib/v2/arknights/japan.js +0 -25
  5733. package/lib/v2/arknights/maintainer.js +0 -5
  5734. package/lib/v2/arknights/news.js +0 -42
  5735. package/lib/v2/arknights/radar.js +0 -40
  5736. package/lib/v2/arknights/router.js +0 -8
  5737. package/lib/v2/ash-maurya/index.js +0 -54
  5738. package/lib/v2/ash-maurya/maintainer.js +0 -3
  5739. package/lib/v2/ash-maurya/radar.js +0 -13
  5740. package/lib/v2/ash-maurya/router.js +0 -3
  5741. package/lib/v2/asiantolick/index.js +0 -113
  5742. package/lib/v2/asiantolick/maintainer.js +0 -8
  5743. package/lib/v2/asiantolick/radar.js +0 -53
  5744. package/lib/v2/asiantolick/router.js +0 -3
  5745. package/lib/v2/asus/bios.js +0 -39
  5746. package/lib/v2/asus/gpu-tweak.js +0 -31
  5747. package/lib/v2/asus/maintainer.js +0 -4
  5748. package/lib/v2/asus/radar.js +0 -24
  5749. package/lib/v2/asus/router.js +0 -4
  5750. package/lib/v2/atcoder/contest.js +0 -64
  5751. package/lib/v2/atcoder/maintainer.js +0 -4
  5752. package/lib/v2/atcoder/post.js +0 -38
  5753. package/lib/v2/atcoder/radar.js +0 -22
  5754. package/lib/v2/atcoder/router.js +0 -4
  5755. package/lib/v2/audiobar/latest.js +0 -53
  5756. package/lib/v2/audiobar/maintainer.js +0 -3
  5757. package/lib/v2/audiobar/radar.js +0 -13
  5758. package/lib/v2/audiobar/router.js +0 -3
  5759. package/lib/v2/baai/comments.js +0 -35
  5760. package/lib/v2/baai/events.js +0 -35
  5761. package/lib/v2/baai/hub.js +0 -60
  5762. package/lib/v2/baai/maintainer.js +0 -5
  5763. package/lib/v2/baai/radar.js +0 -31
  5764. package/lib/v2/baai/router.js +0 -7
  5765. package/lib/v2/baai/utils.js +0 -33
  5766. package/lib/v2/bad/index.js +0 -58
  5767. package/lib/v2/bad/maintainer.js +0 -3
  5768. package/lib/v2/bad/radar.js +0 -13
  5769. package/lib/v2/bad/router.js +0 -3
  5770. package/lib/v2/baidu/gushitong/index.js +0 -28
  5771. package/lib/v2/baidu/maintainer.js +0 -10
  5772. package/lib/v2/baidu/radar.js +0 -82
  5773. package/lib/v2/baidu/router.js +0 -10
  5774. package/lib/v2/baidu/tieba/forum.js +0 -65
  5775. package/lib/v2/baidu/tieba/post.js +0 -80
  5776. package/lib/v2/baidu/tieba/search.js +0 -63
  5777. package/lib/v2/baidu/tieba/user.js +0 -33
  5778. package/lib/v2/baidu/top.js +0 -34
  5779. package/lib/v2/baijing/index.js +0 -54
  5780. package/lib/v2/baijing/maintainer.js +0 -3
  5781. package/lib/v2/baijing/radar.js +0 -22
  5782. package/lib/v2/baijing/router.js +0 -3
  5783. package/lib/v2/bandcamp/live.js +0 -41
  5784. package/lib/v2/bandcamp/maintainer.js +0 -5
  5785. package/lib/v2/bandcamp/radar.js +0 -25
  5786. package/lib/v2/bandcamp/router.js +0 -5
  5787. package/lib/v2/bandcamp/tag.js +0 -46
  5788. package/lib/v2/bandcamp/weekly.js +0 -29
  5789. package/lib/v2/bangumi/maintainer.js +0 -19
  5790. package/lib/v2/bangumi/moe/index.js +0 -92
  5791. package/lib/v2/bangumi/online/online.js +0 -28
  5792. package/lib/v2/bangumi/radar.js +0 -98
  5793. package/lib/v2/bangumi/router.js +0 -14
  5794. package/lib/v2/bangumi/tv/calendar/_base.js +0 -37
  5795. package/lib/v2/bangumi/tv/calendar/today.js +0 -63
  5796. package/lib/v2/bangumi/tv/group/reply.js +0 -59
  5797. package/lib/v2/bangumi/tv/group/topic.js +0 -39
  5798. package/lib/v2/bangumi/tv/other/followrank.js +0 -42
  5799. package/lib/v2/bangumi/tv/person/index.js +0 -38
  5800. package/lib/v2/bangumi/tv/subject/comments.js +0 -52
  5801. package/lib/v2/bangumi/tv/subject/ep.js +0 -32
  5802. package/lib/v2/bangumi/tv/subject/index.js +0 -28
  5803. package/lib/v2/bangumi/tv/subject/offcial-subject-api.js +0 -33
  5804. package/lib/v2/bangumi/tv/subject/utils.js +0 -5
  5805. package/lib/v2/bangumi/tv/user/blog.js +0 -43
  5806. package/lib/v2/baozimh/index.js +0 -50
  5807. package/lib/v2/baozimh/maintainer.js +0 -3
  5808. package/lib/v2/baozimh/radar.js +0 -13
  5809. package/lib/v2/baozimh/router.js +0 -3
  5810. package/lib/v2/barronschina/index.js +0 -70
  5811. package/lib/v2/barronschina/maintainer.js +0 -3
  5812. package/lib/v2/barronschina/radar.js +0 -13
  5813. package/lib/v2/barronschina/router.js +0 -3
  5814. package/lib/v2/bast/index.js +0 -74
  5815. package/lib/v2/bast/maintainer.js +0 -3
  5816. package/lib/v2/bast/radar.js +0 -13
  5817. package/lib/v2/bast/router.js +0 -3
  5818. package/lib/v2/bbc/index.js +0 -92
  5819. package/lib/v2/bbc/maintainer.js +0 -4
  5820. package/lib/v2/bbc/radar.js +0 -11
  5821. package/lib/v2/bbc/router.js +0 -3
  5822. package/lib/v2/bbc/utils.js +0 -37
  5823. package/lib/v2/bbcnewslabs/maintainer.js +0 -3
  5824. package/lib/v2/bbcnewslabs/news.js +0 -32
  5825. package/lib/v2/bbcnewslabs/radar.js +0 -13
  5826. package/lib/v2/bbcnewslabs/router.js +0 -3
  5827. package/lib/v2/bdys/index.js +0 -98
  5828. package/lib/v2/bdys/maintainer.js +0 -3
  5829. package/lib/v2/bdys/radar.js +0 -20
  5830. package/lib/v2/bdys/router.js +0 -3
  5831. package/lib/v2/behance/maintainer.js +0 -3
  5832. package/lib/v2/behance/radar.js +0 -26
  5833. package/lib/v2/behance/router.js +0 -3
  5834. package/lib/v2/behance/user.js +0 -67
  5835. package/lib/v2/bellroy/maintainer.js +0 -3
  5836. package/lib/v2/bellroy/new-releases.js +0 -26
  5837. package/lib/v2/bellroy/radar.js +0 -13
  5838. package/lib/v2/bellroy/router.js +0 -3
  5839. package/lib/v2/bendibao/maintainer.js +0 -3
  5840. package/lib/v2/bendibao/news.js +0 -109
  5841. package/lib/v2/bendibao/radar.js +0 -13
  5842. package/lib/v2/bendibao/router.js +0 -3
  5843. package/lib/v2/bgmlist/maintainer.js +0 -3
  5844. package/lib/v2/bgmlist/onair.js +0 -32
  5845. package/lib/v2/bgmlist/radar.js +0 -13
  5846. package/lib/v2/bgmlist/router.js +0 -3
  5847. package/lib/v2/bigquant/collections.js +0 -35
  5848. package/lib/v2/bigquant/maintainer.js +0 -3
  5849. package/lib/v2/bigquant/radar.js +0 -13
  5850. package/lib/v2/bigquant/router.js +0 -3
  5851. package/lib/v2/bilibili/app.js +0 -33
  5852. package/lib/v2/bilibili/article.js +0 -38
  5853. package/lib/v2/bilibili/audio.js +0 -42
  5854. package/lib/v2/bilibili/bangumi.js +0 -50
  5855. package/lib/v2/bilibili/blackboard.js +0 -31
  5856. package/lib/v2/bilibili/cache.js +0 -228
  5857. package/lib/v2/bilibili/channel.js +0 -31
  5858. package/lib/v2/bilibili/coin.js +0 -35
  5859. package/lib/v2/bilibili/danmaku.js +0 -63
  5860. package/lib/v2/bilibili/dynamic.js +0 -245
  5861. package/lib/v2/bilibili/fav.js +0 -41
  5862. package/lib/v2/bilibili/followers.js +0 -49
  5863. package/lib/v2/bilibili/followings.js +0 -52
  5864. package/lib/v2/bilibili/followings_article.js +0 -48
  5865. package/lib/v2/bilibili/followings_dynamic.js +0 -152
  5866. package/lib/v2/bilibili/followings_video.js +0 -46
  5867. package/lib/v2/bilibili/hotSearch.js +0 -29
  5868. package/lib/v2/bilibili/linkNews.js +0 -42
  5869. package/lib/v2/bilibili/liveArea.js +0 -64
  5870. package/lib/v2/bilibili/liveRoom.js +0 -41
  5871. package/lib/v2/bilibili/liveSearch.js +0 -48
  5872. package/lib/v2/bilibili/maintainer.js +0 -46
  5873. package/lib/v2/bilibili/mallIP.js +0 -34
  5874. package/lib/v2/bilibili/mallNew.js +0 -31
  5875. package/lib/v2/bilibili/manga_followings.js +0 -39
  5876. package/lib/v2/bilibili/manga_update.js +0 -33
  5877. package/lib/v2/bilibili/online.js +0 -25
  5878. package/lib/v2/bilibili/page.js +0 -36
  5879. package/lib/v2/bilibili/partion-ranking.js +0 -59
  5880. package/lib/v2/bilibili/partion.js +0 -36
  5881. package/lib/v2/bilibili/platform.js +0 -43
  5882. package/lib/v2/bilibili/popular.js +0 -29
  5883. package/lib/v2/bilibili/radar.js +0 -155
  5884. package/lib/v2/bilibili/ranking.js +0 -43
  5885. package/lib/v2/bilibili/readlist.js +0 -31
  5886. package/lib/v2/bilibili/reply.js +0 -38
  5887. package/lib/v2/bilibili/router.js +0 -46
  5888. package/lib/v2/bilibili/topic.js +0 -50
  5889. package/lib/v2/bilibili/userChannel.js +0 -70
  5890. package/lib/v2/bilibili/userCollection.js +0 -53
  5891. package/lib/v2/bilibili/userFav.js +0 -37
  5892. package/lib/v2/bilibili/user_bangumi.js +0 -36
  5893. package/lib/v2/bilibili/utils.js +0 -84
  5894. package/lib/v2/bilibili/video-all.js +0 -74
  5895. package/lib/v2/bilibili/video.js +0 -58
  5896. package/lib/v2/bilibili/vsearch.js +0 -72
  5897. package/lib/v2/bilibili/watchlater.js +0 -44
  5898. package/lib/v2/bilibili/weekly_recommend.js +0 -41
  5899. package/lib/v2/biodiscover/index.js +0 -44
  5900. package/lib/v2/biodiscover/maintainer.js +0 -3
  5901. package/lib/v2/biodiscover/radar.js +0 -13
  5902. package/lib/v2/biodiscover/router.js +0 -3
  5903. package/lib/v2/bioone/featured.js +0 -52
  5904. package/lib/v2/bioone/journal.js +0 -60
  5905. package/lib/v2/bioone/maintainer.js +0 -4
  5906. package/lib/v2/bioone/radar.js +0 -19
  5907. package/lib/v2/bioone/router.js +0 -4
  5908. package/lib/v2/biquge/index.js +0 -99
  5909. package/lib/v2/biquge/maintainer.js +0 -3
  5910. package/lib/v2/biquge/radar.js +0 -29
  5911. package/lib/v2/biquge/router.js +0 -3
  5912. package/lib/v2/bit/cs/cs.js +0 -24
  5913. package/lib/v2/bit/cs/utils.js +0 -53
  5914. package/lib/v2/bit/jwc/jwc.js +0 -24
  5915. package/lib/v2/bit/jwc/utils.js +0 -49
  5916. package/lib/v2/bit/maintainer.js +0 -6
  5917. package/lib/v2/bit/radar.js +0 -37
  5918. package/lib/v2/bit/router.js +0 -6
  5919. package/lib/v2/bit/rszhaopin.js +0 -30
  5920. package/lib/v2/bit/yjs.js +0 -27
  5921. package/lib/v2/bitbucket/commits.js +0 -40
  5922. package/lib/v2/bitbucket/maintainer.js +0 -4
  5923. package/lib/v2/bitbucket/radar.js +0 -19
  5924. package/lib/v2/bitbucket/router.js +0 -4
  5925. package/lib/v2/bitbucket/tags.js +0 -40
  5926. package/lib/v2/bitmovin/blog.js +0 -27
  5927. package/lib/v2/bitmovin/maintainer.js +0 -3
  5928. package/lib/v2/bitmovin/radar.js +0 -13
  5929. package/lib/v2/bitmovin/router.js +0 -3
  5930. package/lib/v2/bjfu/grs.js +0 -51
  5931. package/lib/v2/bjfu/it/index.js +0 -51
  5932. package/lib/v2/bjfu/it/utils.js +0 -73
  5933. package/lib/v2/bjfu/jwc/index.js +0 -50
  5934. package/lib/v2/bjfu/jwc/utils.js +0 -60
  5935. package/lib/v2/bjfu/kjc.js +0 -52
  5936. package/lib/v2/bjfu/maintainer.js +0 -7
  5937. package/lib/v2/bjfu/news/index.js +0 -58
  5938. package/lib/v2/bjfu/news/utils.js +0 -61
  5939. package/lib/v2/bjfu/radar.js +0 -45
  5940. package/lib/v2/bjfu/router.js +0 -7
  5941. package/lib/v2/bjp/apod.js +0 -43
  5942. package/lib/v2/bjp/maintainer.js +0 -3
  5943. package/lib/v2/bjp/radar.js +0 -13
  5944. package/lib/v2/bjp/router.js +0 -3
  5945. package/lib/v2/bjsk/index.js +0 -52
  5946. package/lib/v2/bjsk/keti.js +0 -54
  5947. package/lib/v2/bjsk/maintainer.js +0 -4
  5948. package/lib/v2/bjsk/radar.js +0 -21
  5949. package/lib/v2/bjsk/router.js +0 -4
  5950. package/lib/v2/bjwxdxh/index.js +0 -52
  5951. package/lib/v2/bjwxdxh/maintainer.js +0 -3
  5952. package/lib/v2/bjwxdxh/radar.js +0 -13
  5953. package/lib/v2/bjwxdxh/router.js +0 -3
  5954. package/lib/v2/bjx/huanbao.js +0 -78
  5955. package/lib/v2/bjx/maintainer.js +0 -4
  5956. package/lib/v2/bjx/radar.js +0 -21
  5957. package/lib/v2/bjx/router.js +0 -4
  5958. package/lib/v2/bjx/types.js +0 -33
  5959. package/lib/v2/blizzard/maintainer.js +0 -3
  5960. package/lib/v2/blizzard/news.js +0 -50
  5961. package/lib/v2/blizzard/radar.js +0 -13
  5962. package/lib/v2/blizzard/router.js +0 -3
  5963. package/lib/v2/blockbeats/index.js +0 -43
  5964. package/lib/v2/blockbeats/maintainer.js +0 -3
  5965. package/lib/v2/blockbeats/radar.js +0 -19
  5966. package/lib/v2/blockbeats/router.js +0 -3
  5967. package/lib/v2/bloomberg/authors.js +0 -52
  5968. package/lib/v2/bloomberg/index.js +0 -28
  5969. package/lib/v2/bloomberg/maintainer.js +0 -5
  5970. package/lib/v2/bloomberg/radar.js +0 -19
  5971. package/lib/v2/bloomberg/router.js +0 -5
  5972. package/lib/v2/bloomberg/utils.js +0 -599
  5973. package/lib/v2/bluestacks/maintainer.js +0 -3
  5974. package/lib/v2/bluestacks/radar.js +0 -13
  5975. package/lib/v2/bluestacks/release.js +0 -63
  5976. package/lib/v2/bluestacks/router.js +0 -3
  5977. package/lib/v2/bmkg/earthquake.js +0 -29
  5978. package/lib/v2/bmkg/maintainer.js +0 -4
  5979. package/lib/v2/bmkg/news.js +0 -42
  5980. package/lib/v2/bmkg/radar.js +0 -19
  5981. package/lib/v2/bmkg/router.js +0 -4
  5982. package/lib/v2/bnu/bs.js +0 -52
  5983. package/lib/v2/bnu/dwxgb.js +0 -52
  5984. package/lib/v2/bnu/fdy.js +0 -41
  5985. package/lib/v2/bnu/lib.js +0 -40
  5986. package/lib/v2/bnu/maintainer.js +0 -6
  5987. package/lib/v2/bnu/radar.js +0 -37
  5988. package/lib/v2/bnu/router.js +0 -6
  5989. package/lib/v2/boc/maintainer.js +0 -3
  5990. package/lib/v2/boc/radar.js +0 -13
  5991. package/lib/v2/boc/router.js +0 -3
  5992. package/lib/v2/boc/whpj.js +0 -100
  5993. package/lib/v2/bookfere/category.js +0 -36
  5994. package/lib/v2/bookfere/maintainer.js +0 -3
  5995. package/lib/v2/bookfere/radar.js +0 -11
  5996. package/lib/v2/bookfere/router.js +0 -3
  5997. package/lib/v2/booru/maintainer.js +0 -3
  5998. package/lib/v2/booru/mmda.js +0 -47
  5999. package/lib/v2/booru/radar.js +0 -12
  6000. package/lib/v2/booru/router.js +0 -3
  6001. package/lib/v2/bossdesign/index.js +0 -41
  6002. package/lib/v2/bossdesign/maintainer.js +0 -3
  6003. package/lib/v2/bossdesign/radar.js +0 -13
  6004. package/lib/v2/bossdesign/router.js +0 -3
  6005. package/lib/v2/brave/latest.js +0 -38
  6006. package/lib/v2/brave/maintainer.js +0 -3
  6007. package/lib/v2/brave/radar.js +0 -13
  6008. package/lib/v2/brave/router.js +0 -3
  6009. package/lib/v2/brooklynmuseum/exhibitions.js +0 -27
  6010. package/lib/v2/brooklynmuseum/maintainer.js +0 -3
  6011. package/lib/v2/brooklynmuseum/radar.js +0 -11
  6012. package/lib/v2/brooklynmuseum/router.js +0 -3
  6013. package/lib/v2/bse/index.js +0 -173
  6014. package/lib/v2/bse/maintainer.js +0 -3
  6015. package/lib/v2/bse/radar.js +0 -13
  6016. package/lib/v2/bse/router.js +0 -3
  6017. package/lib/v2/bsky/keyword.js +0 -22
  6018. package/lib/v2/bsky/maintainer.js +0 -3
  6019. package/lib/v2/bsky/radar.js +0 -13
  6020. package/lib/v2/bsky/router.js +0 -3
  6021. package/lib/v2/btzj/index.js +0 -103
  6022. package/lib/v2/btzj/maintainer.js +0 -3
  6023. package/lib/v2/btzj/radar.js +0 -13
  6024. package/lib/v2/btzj/router.js +0 -3
  6025. package/lib/v2/bupt/maintainer.js +0 -3
  6026. package/lib/v2/bupt/radar.js +0 -13
  6027. package/lib/v2/bupt/rczp.js +0 -51
  6028. package/lib/v2/bupt/router.js +0 -3
  6029. package/lib/v2/byteclicks/index.js +0 -22
  6030. package/lib/v2/byteclicks/maintainer.js +0 -4
  6031. package/lib/v2/byteclicks/radar.js +0 -19
  6032. package/lib/v2/byteclicks/router.js +0 -4
  6033. package/lib/v2/byteclicks/tag.js +0 -30
  6034. package/lib/v2/byteclicks/utils.js +0 -13
  6035. package/lib/v2/bytes/bytes.js +0 -25
  6036. package/lib/v2/bytes/maintainer.js +0 -3
  6037. package/lib/v2/bytes/radar.js +0 -13
  6038. package/lib/v2/bytes/router.js +0 -3
  6039. package/lib/v2/c114/maintainer.js +0 -3
  6040. package/lib/v2/c114/radar.js +0 -13
  6041. package/lib/v2/c114/roll.js +0 -57
  6042. package/lib/v2/c114/router.js +0 -3
  6043. package/lib/v2/caai/index.js +0 -22
  6044. package/lib/v2/caai/maintainer.js +0 -3
  6045. package/lib/v2/caai/radar.js +0 -13
  6046. package/lib/v2/caai/router.js +0 -3
  6047. package/lib/v2/caai/utils.js +0 -46
  6048. package/lib/v2/caareviews/book.js +0 -14
  6049. package/lib/v2/caareviews/essay.js +0 -14
  6050. package/lib/v2/caareviews/exhibition.js +0 -14
  6051. package/lib/v2/caareviews/maintainer.js +0 -5
  6052. package/lib/v2/caareviews/radar.js +0 -25
  6053. package/lib/v2/caareviews/router.js +0 -5
  6054. package/lib/v2/caareviews/utils.js +0 -49
  6055. package/lib/v2/cahkms/index.js +0 -69
  6056. package/lib/v2/cahkms/maintainer.js +0 -3
  6057. package/lib/v2/cahkms/radar.js +0 -13
  6058. package/lib/v2/cahkms/router.js +0 -3
  6059. package/lib/v2/caijing/maintainer.js +0 -3
  6060. package/lib/v2/caijing/radar.js +0 -13
  6061. package/lib/v2/caijing/roll.js +0 -46
  6062. package/lib/v2/caijing/router.js +0 -3
  6063. package/lib/v2/caixin/article.js +0 -27
  6064. package/lib/v2/caixin/blog.js +0 -81
  6065. package/lib/v2/caixin/category.js +0 -56
  6066. package/lib/v2/caixin/database.js +0 -48
  6067. package/lib/v2/caixin/k.js +0 -40
  6068. package/lib/v2/caixin/latest.js +0 -45
  6069. package/lib/v2/caixin/maintainer.js +0 -9
  6070. package/lib/v2/caixin/radar.js +0 -51
  6071. package/lib/v2/caixin/router.js +0 -9
  6072. package/lib/v2/caixin/templates/article.art +0 -38
  6073. package/lib/v2/caixin/utils.js +0 -52
  6074. package/lib/v2/caixin/weekly.js +0 -55
  6075. package/lib/v2/caixinglobal/latest.js +0 -64
  6076. package/lib/v2/caixinglobal/maintainer.js +0 -3
  6077. package/lib/v2/caixinglobal/radar.js +0 -13
  6078. package/lib/v2/caixinglobal/router.js +0 -3
  6079. package/lib/v2/camchina/index.js +0 -52
  6080. package/lib/v2/camchina/maintainer.js +0 -3
  6081. package/lib/v2/camchina/radar.js +0 -13
  6082. package/lib/v2/camchina/router.js +0 -3
  6083. package/lib/v2/cankaoxiaoxi/index.js +0 -68
  6084. package/lib/v2/cankaoxiaoxi/maintainer.js +0 -4
  6085. package/lib/v2/cankaoxiaoxi/radar.js +0 -16
  6086. package/lib/v2/cankaoxiaoxi/router.js +0 -4
  6087. package/lib/v2/cartoonmad/comic.js +0 -70
  6088. package/lib/v2/cartoonmad/maintainer.js +0 -3
  6089. package/lib/v2/cartoonmad/radar.js +0 -13
  6090. package/lib/v2/cartoonmad/router.js +0 -3
  6091. package/lib/v2/cas/cg/index.js +0 -52
  6092. package/lib/v2/cas/genetics/xshd.js +0 -29
  6093. package/lib/v2/cas/ia/yjs.js +0 -25
  6094. package/lib/v2/cas/iee/kydt.js +0 -48
  6095. package/lib/v2/cas/is/index.js +0 -44
  6096. package/lib/v2/cas/maintainer.js +0 -9
  6097. package/lib/v2/cas/mesalab/kb.js +0 -41
  6098. package/lib/v2/cas/radar.js +0 -68
  6099. package/lib/v2/cas/router.js +0 -9
  6100. package/lib/v2/cas/sim/kyjz.js +0 -47
  6101. package/lib/v2/cast/index.js +0 -74
  6102. package/lib/v2/cast/maintainer.js +0 -3
  6103. package/lib/v2/cast/radar.js +0 -13
  6104. package/lib/v2/cast/router.js +0 -3
  6105. package/lib/v2/cau/ele.js +0 -42
  6106. package/lib/v2/cau/maintainer.js +0 -4
  6107. package/lib/v2/cau/radar.js +0 -21
  6108. package/lib/v2/cau/router.js +0 -4
  6109. package/lib/v2/cau/yjs.js +0 -42
  6110. package/lib/v2/caus/index.js +0 -88
  6111. package/lib/v2/caus/maintainer.js +0 -3
  6112. package/lib/v2/caus/radar.js +0 -13
  6113. package/lib/v2/caus/router.js +0 -3
  6114. package/lib/v2/cbaigui/index.js +0 -100
  6115. package/lib/v2/cbaigui/maintainer.js +0 -3
  6116. package/lib/v2/cbaigui/radar.js +0 -18
  6117. package/lib/v2/cbaigui/router.js +0 -3
  6118. package/lib/v2/cbaigui/utils.js +0 -18
  6119. package/lib/v2/cbc/maintainer.js +0 -3
  6120. package/lib/v2/cbc/radar.js +0 -13
  6121. package/lib/v2/cbc/router.js +0 -3
  6122. package/lib/v2/cbc/topics.js +0 -58
  6123. package/lib/v2/cbirc/index.js +0 -119
  6124. package/lib/v2/cbirc/maintainer.js +0 -3
  6125. package/lib/v2/cbirc/radar.js +0 -13
  6126. package/lib/v2/cbirc/router.js +0 -3
  6127. package/lib/v2/cbnweek/index.js +0 -46
  6128. package/lib/v2/cbnweek/maintainer.js +0 -3
  6129. package/lib/v2/cbnweek/radar.js +0 -13
  6130. package/lib/v2/cbnweek/router.js +0 -3
  6131. package/lib/v2/ccac/maintainer.js +0 -3
  6132. package/lib/v2/ccac/news.js +0 -56
  6133. package/lib/v2/ccac/radar.js +0 -13
  6134. package/lib/v2/ccac/router.js +0 -3
  6135. package/lib/v2/ccac/utils.js +0 -32
  6136. package/lib/v2/ccf/ccfcv/index.js +0 -68
  6137. package/lib/v2/ccf/maintainer.js +0 -5
  6138. package/lib/v2/ccf/news.js +0 -45
  6139. package/lib/v2/ccf/radar.js +0 -41
  6140. package/lib/v2/ccf/router.js +0 -5
  6141. package/lib/v2/ccf/tfbd/index.js +0 -22
  6142. package/lib/v2/ccf/tfbd/utils.js +0 -47
  6143. package/lib/v2/ccnu/career.js +0 -31
  6144. package/lib/v2/ccnu/cs.js +0 -28
  6145. package/lib/v2/ccnu/maintainer.js +0 -6
  6146. package/lib/v2/ccnu/radar.js +0 -40
  6147. package/lib/v2/ccnu/router.js +0 -6
  6148. package/lib/v2/ccnu/wu.js +0 -27
  6149. package/lib/v2/ccnu/yjs.js +0 -27
  6150. package/lib/v2/ccreports/index.js +0 -41
  6151. package/lib/v2/ccreports/maintainer.js +0 -3
  6152. package/lib/v2/ccreports/radar.js +0 -13
  6153. package/lib/v2/ccreports/router.js +0 -3
  6154. package/lib/v2/cctv/category.js +0 -20
  6155. package/lib/v2/cctv/jx.js +0 -51
  6156. package/lib/v2/cctv/lm.js +0 -77
  6157. package/lib/v2/cctv/maintainer.js +0 -7
  6158. package/lib/v2/cctv/radar.js +0 -41
  6159. package/lib/v2/cctv/router.js +0 -7
  6160. package/lib/v2/cctv/special.js +0 -110
  6161. package/lib/v2/cctv/utils/mzzlbg.js +0 -41
  6162. package/lib/v2/cctv/utils/news.js +0 -105
  6163. package/lib/v2/cctv/utils/xinwen1j1.js +0 -81
  6164. package/lib/v2/cctv/xwlb.js +0 -50
  6165. package/lib/v2/cde/index.js +0 -132
  6166. package/lib/v2/cde/maintainer.js +0 -5
  6167. package/lib/v2/cde/radar.js +0 -73
  6168. package/lib/v2/cde/router.js +0 -5
  6169. package/lib/v2/cde/utils.js +0 -20
  6170. package/lib/v2/cde/xxgk.js +0 -73
  6171. package/lib/v2/cde/zdyz.js +0 -77
  6172. package/lib/v2/cdi/index.js +0 -61
  6173. package/lib/v2/cdi/maintainer.js +0 -3
  6174. package/lib/v2/cdi/radar.js +0 -13
  6175. package/lib/v2/cdi/router.js +0 -3
  6176. package/lib/v2/cdzjryb/maintainer.js +0 -3
  6177. package/lib/v2/cdzjryb/projectList.js +0 -49
  6178. package/lib/v2/cdzjryb/radar.js +0 -13
  6179. package/lib/v2/cdzjryb/router.js +0 -3
  6180. package/lib/v2/cebbank/all.js +0 -51
  6181. package/lib/v2/cebbank/history.js +0 -50
  6182. package/lib/v2/cebbank/maintainer.js +0 -4
  6183. package/lib/v2/cebbank/radar.js +0 -19
  6184. package/lib/v2/cebbank/router.js +0 -4
  6185. package/lib/v2/cebbank/utils.js +0 -70
  6186. package/lib/v2/cgtn/maintainer.js +0 -3
  6187. package/lib/v2/cgtn/podcast.js +0 -35
  6188. package/lib/v2/cgtn/radar.js +0 -13
  6189. package/lib/v2/cgtn/router.js +0 -3
  6190. package/lib/v2/chaincatcher/home.js +0 -50
  6191. package/lib/v2/chaincatcher/maintainer.js +0 -4
  6192. package/lib/v2/chaincatcher/news.js +0 -40
  6193. package/lib/v2/chaincatcher/radar.js +0 -19
  6194. package/lib/v2/chaincatcher/router.js +0 -4
  6195. package/lib/v2/changba/maintainer.js +0 -3
  6196. package/lib/v2/changba/radar.js +0 -13
  6197. package/lib/v2/changba/router.js +0 -3
  6198. package/lib/v2/changba/user.js +0 -84
  6199. package/lib/v2/chaoxing/maintainer.js +0 -3
  6200. package/lib/v2/chaoxing/qk.js +0 -59
  6201. package/lib/v2/chaoxing/radar.js +0 -13
  6202. package/lib/v2/chaoxing/router.js +0 -3
  6203. package/lib/v2/chaping/banner.js +0 -40
  6204. package/lib/v2/chaping/maintainer.js +0 -5
  6205. package/lib/v2/chaping/news.js +0 -55
  6206. package/lib/v2/chaping/newsflash.js +0 -23
  6207. package/lib/v2/chaping/radar.js +0 -31
  6208. package/lib/v2/chaping/router.js +0 -5
  6209. package/lib/v2/chiculture/maintainer.js +0 -3
  6210. package/lib/v2/chiculture/radar.js +0 -16
  6211. package/lib/v2/chiculture/router.js +0 -3
  6212. package/lib/v2/chiculture/topic.js +0 -61
  6213. package/lib/v2/china/finance/finance.js +0 -61
  6214. package/lib/v2/china/maintainer.js +0 -5
  6215. package/lib/v2/china/news/highlights/news.js +0 -40
  6216. package/lib/v2/china/news/military/news.js +0 -30
  6217. package/lib/v2/china/radar.js +0 -30
  6218. package/lib/v2/china/router.js +0 -5
  6219. package/lib/v2/chinacef/experts.js +0 -38
  6220. package/lib/v2/chinacef/hot.js +0 -38
  6221. package/lib/v2/chinacef/index.js +0 -39
  6222. package/lib/v2/chinacef/maintainer.js +0 -5
  6223. package/lib/v2/chinacef/radar.js +0 -25
  6224. package/lib/v2/chinacef/router.js +0 -5
  6225. package/lib/v2/chinacef/utils.js +0 -55
  6226. package/lib/v2/chinadegrees/maintainer.js +0 -3
  6227. package/lib/v2/chinadegrees/province.js +0 -66
  6228. package/lib/v2/chinadegrees/radar.js +0 -13
  6229. package/lib/v2/chinadegrees/router.js +0 -3
  6230. package/lib/v2/chinafactcheck/index.js +0 -37
  6231. package/lib/v2/chinafactcheck/maintainer.js +0 -3
  6232. package/lib/v2/chinafactcheck/radar.js +0 -13
  6233. package/lib/v2/chinafactcheck/router.js +0 -3
  6234. package/lib/v2/chinafactcheck/utils.js +0 -60
  6235. package/lib/v2/chinaisa/index.js +0 -83
  6236. package/lib/v2/chinaisa/maintainer.js +0 -3
  6237. package/lib/v2/chinaisa/radar.js +0 -18
  6238. package/lib/v2/chinaisa/router.js +0 -3
  6239. package/lib/v2/chinanews/index.js +0 -66
  6240. package/lib/v2/chinanews/maintainer.js +0 -3
  6241. package/lib/v2/chinanews/radar.js +0 -13
  6242. package/lib/v2/chinanews/router.js +0 -3
  6243. package/lib/v2/chinathinktanks/maintainer.js +0 -3
  6244. package/lib/v2/chinathinktanks/radar.js +0 -13
  6245. package/lib/v2/chinathinktanks/router.js +0 -3
  6246. package/lib/v2/chinathinktanks/viewpoint.js +0 -52
  6247. package/lib/v2/chinaventure/index.js +0 -63
  6248. package/lib/v2/chinaventure/maintainer.js +0 -3
  6249. package/lib/v2/chinaventure/radar.js +0 -13
  6250. package/lib/v2/chinaventure/router.js +0 -3
  6251. package/lib/v2/chinawriter/index.js +0 -88
  6252. package/lib/v2/chinawriter/maintainer.js +0 -3
  6253. package/lib/v2/chinawriter/radar.js +0 -660
  6254. package/lib/v2/chinawriter/router.js +0 -3
  6255. package/lib/v2/chsi/hotnews.js +0 -56
  6256. package/lib/v2/chsi/kydt.js +0 -51
  6257. package/lib/v2/chsi/kyzx.js +0 -51
  6258. package/lib/v2/chsi/maintainer.js +0 -5
  6259. package/lib/v2/chsi/radar.js +0 -25
  6260. package/lib/v2/chsi/router.js +0 -5
  6261. package/lib/v2/ciidbnu/index.js +0 -57
  6262. package/lib/v2/ciidbnu/maintainer.js +0 -3
  6263. package/lib/v2/ciidbnu/radar.js +0 -13
  6264. package/lib/v2/ciidbnu/router.js +0 -3
  6265. package/lib/v2/civitai/discussions.js +0 -42
  6266. package/lib/v2/civitai/maintainer.js +0 -4
  6267. package/lib/v2/civitai/models.js +0 -26
  6268. package/lib/v2/civitai/radar.js +0 -19
  6269. package/lib/v2/civitai/router.js +0 -4
  6270. package/lib/v2/clash/maintainer.js +0 -3
  6271. package/lib/v2/clash/premium.js +0 -23
  6272. package/lib/v2/clash/radar.js +0 -13
  6273. package/lib/v2/clash/router.js +0 -3
  6274. package/lib/v2/clickme/index.js +0 -56
  6275. package/lib/v2/clickme/maintainer.js +0 -3
  6276. package/lib/v2/clickme/radar.js +0 -21
  6277. package/lib/v2/clickme/router.js +0 -3
  6278. package/lib/v2/cloudnative/blog.js +0 -34
  6279. package/lib/v2/cloudnative/maintainer.js +0 -3
  6280. package/lib/v2/cloudnative/radar.js +0 -13
  6281. package/lib/v2/cloudnative/router.js +0 -3
  6282. package/lib/v2/cls/depth.js +0 -84
  6283. package/lib/v2/cls/hot.js +0 -54
  6284. package/lib/v2/cls/maintainer.js +0 -5
  6285. package/lib/v2/cls/radar.js +0 -25
  6286. package/lib/v2/cls/router.js +0 -5
  6287. package/lib/v2/cls/telegraph.js +0 -54
  6288. package/lib/v2/cls/utils.js +0 -21
  6289. package/lib/v2/cma/channel.js +0 -87
  6290. package/lib/v2/cma/maintainer.js +0 -3
  6291. package/lib/v2/cma/radar.js +0 -18
  6292. package/lib/v2/cma/router.js +0 -3
  6293. package/lib/v2/cmde/index.js +0 -72
  6294. package/lib/v2/cmde/maintainer.js +0 -3
  6295. package/lib/v2/cmde/radar.js +0 -13
  6296. package/lib/v2/cmde/router.js +0 -3
  6297. package/lib/v2/cmpxchg8b/articles.js +0 -43
  6298. package/lib/v2/cmpxchg8b/maintainer.js +0 -3
  6299. package/lib/v2/cmpxchg8b/radar.js +0 -13
  6300. package/lib/v2/cmpxchg8b/router.js +0 -3
  6301. package/lib/v2/cn-healthcare/index.js +0 -31
  6302. package/lib/v2/cn-healthcare/maintainer.js +0 -3
  6303. package/lib/v2/cn-healthcare/radar.js +0 -13
  6304. package/lib/v2/cn-healthcare/router.js +0 -3
  6305. package/lib/v2/cna/index.js +0 -64
  6306. package/lib/v2/cna/maintainer.js +0 -3
  6307. package/lib/v2/cna/radar.js +0 -13
  6308. package/lib/v2/cna/router.js +0 -3
  6309. package/lib/v2/cnbc/maintainer.js +0 -3
  6310. package/lib/v2/cnbc/radar.js +0 -21
  6311. package/lib/v2/cnbc/router.js +0 -3
  6312. package/lib/v2/cnbc/rss.js +0 -54
  6313. package/lib/v2/cnbeta/maintainer.js +0 -5
  6314. package/lib/v2/cnbeta/radar.js +0 -25
  6315. package/lib/v2/cnbeta/router.js +0 -4
  6316. package/lib/v2/cnbeta/type.js +0 -42
  6317. package/lib/v2/cnbeta/utils.js +0 -28
  6318. package/lib/v2/cnblogs/common.js +0 -30
  6319. package/lib/v2/cnblogs/maintainer.js +0 -7
  6320. package/lib/v2/cnblogs/radar.js +0 -37
  6321. package/lib/v2/cnblogs/router.js +0 -7
  6322. package/lib/v2/cncf/index.js +0 -43
  6323. package/lib/v2/cncf/maintainer.js +0 -3
  6324. package/lib/v2/cncf/radar.js +0 -31
  6325. package/lib/v2/cncf/reports.js +0 -38
  6326. package/lib/v2/cncf/router.js +0 -4
  6327. package/lib/v2/cneb/maintainer.js +0 -4
  6328. package/lib/v2/cneb/radar.js +0 -19
  6329. package/lib/v2/cneb/router.js +0 -5
  6330. package/lib/v2/cneb/yjxw.js +0 -72
  6331. package/lib/v2/cneb/yjxx.js +0 -50
  6332. package/lib/v2/cngal/entry.js +0 -25
  6333. package/lib/v2/cngal/maintainer.js +0 -4
  6334. package/lib/v2/cngal/radar.js +0 -19
  6335. package/lib/v2/cngal/router.js +0 -4
  6336. package/lib/v2/cngal/weekly.js +0 -20
  6337. package/lib/v2/cnjxol/index.js +0 -97
  6338. package/lib/v2/cnjxol/maintainer.js +0 -4
  6339. package/lib/v2/cnjxol/radar.js +0 -19
  6340. package/lib/v2/cnjxol/router.js +0 -3
  6341. package/lib/v2/cnki/author.js +0 -57
  6342. package/lib/v2/cnki/debut.js +0 -62
  6343. package/lib/v2/cnki/journals.js +0 -49
  6344. package/lib/v2/cnki/maintainer.js +0 -5
  6345. package/lib/v2/cnki/radar.js +0 -27
  6346. package/lib/v2/cnki/router.js +0 -5
  6347. package/lib/v2/cnki/utils.js +0 -26
  6348. package/lib/v2/cntheory/maintainer.js +0 -3
  6349. package/lib/v2/cntheory/paper.js +0 -89
  6350. package/lib/v2/cntheory/radar.js +0 -13
  6351. package/lib/v2/cntheory/router.js +0 -3
  6352. package/lib/v2/cntheory/templates/description.art +0 -2
  6353. package/lib/v2/cntv/column.js +0 -29
  6354. package/lib/v2/cntv/maintainer.js +0 -3
  6355. package/lib/v2/cntv/radar.js +0 -13
  6356. package/lib/v2/cntv/router.js +0 -3
  6357. package/lib/v2/codeforces/contests.js +0 -45
  6358. package/lib/v2/codeforces/maintainer.js +0 -4
  6359. package/lib/v2/codeforces/radar.js +0 -21
  6360. package/lib/v2/codeforces/recent_actions.js +0 -47
  6361. package/lib/v2/codeforces/router.js +0 -4
  6362. package/lib/v2/coindesk/index.js +0 -34
  6363. package/lib/v2/coindesk/maintainer.js +0 -3
  6364. package/lib/v2/coindesk/radar.js +0 -13
  6365. package/lib/v2/coindesk/router.js +0 -3
  6366. package/lib/v2/comicat/maintainer.js +0 -3
  6367. package/lib/v2/comicat/radar.js +0 -11
  6368. package/lib/v2/comicat/router.js +0 -3
  6369. package/lib/v2/comicat/search.js +0 -42
  6370. package/lib/v2/comicskingdom/index.js +0 -60
  6371. package/lib/v2/comicskingdom/maintainer.js +0 -3
  6372. package/lib/v2/comicskingdom/radar.js +0 -13
  6373. package/lib/v2/comicskingdom/router.js +0 -3
  6374. package/lib/v2/consumer/index.js +0 -55
  6375. package/lib/v2/consumer/maintainer.js +0 -3
  6376. package/lib/v2/consumer/radar.js +0 -13
  6377. package/lib/v2/consumer/router.js +0 -3
  6378. package/lib/v2/cool18/index.js +0 -61
  6379. package/lib/v2/cool18/maintainer.js +0 -3
  6380. package/lib/v2/cool18/radar.js +0 -13
  6381. package/lib/v2/cool18/router.js +0 -3
  6382. package/lib/v2/coolapk/dyh.js +0 -37
  6383. package/lib/v2/coolapk/hot.js +0 -97
  6384. package/lib/v2/coolapk/huati.js +0 -24
  6385. package/lib/v2/coolapk/maintainer.js +0 -9
  6386. package/lib/v2/coolapk/radar.js +0 -31
  6387. package/lib/v2/coolapk/router.js +0 -9
  6388. package/lib/v2/coolapk/toutiao.js +0 -29
  6389. package/lib/v2/coolapk/tuwen.js +0 -31
  6390. package/lib/v2/coolapk/userDynamic.js +0 -35
  6391. package/lib/v2/coolapk/utils.js +0 -149
  6392. package/lib/v2/coomer/artist.js +0 -9
  6393. package/lib/v2/coomer/maintainer.js +0 -4
  6394. package/lib/v2/coomer/posts.js +0 -7
  6395. package/lib/v2/coomer/radar.js +0 -19
  6396. package/lib/v2/coomer/router.js +0 -4
  6397. package/lib/v2/coomer/utils.js +0 -55
  6398. package/lib/v2/copymanga/comic.js +0 -126
  6399. package/lib/v2/copymanga/maintainer.js +0 -3
  6400. package/lib/v2/copymanga/radar.js +0 -19
  6401. package/lib/v2/copymanga/router.js +0 -3
  6402. package/lib/v2/cpcey/index.js +0 -60
  6403. package/lib/v2/cpcey/maintainer.js +0 -3
  6404. package/lib/v2/cpcey/radar.js +0 -27
  6405. package/lib/v2/cpcey/router.js +0 -3
  6406. package/lib/v2/cpuid/maintainer.js +0 -3
  6407. package/lib/v2/cpuid/news.js +0 -30
  6408. package/lib/v2/cpuid/radar.js +0 -13
  6409. package/lib/v2/cpuid/router.js +0 -3
  6410. package/lib/v2/cqgas/maintainer.js +0 -3
  6411. package/lib/v2/cqgas/radar.js +0 -13
  6412. package/lib/v2/cqgas/router.js +0 -3
  6413. package/lib/v2/cqgas/tqtz.js +0 -36
  6414. package/lib/v2/cqwu/index.js +0 -49
  6415. package/lib/v2/cqwu/maintainer.js +0 -3
  6416. package/lib/v2/cqwu/radar.js +0 -27
  6417. package/lib/v2/cqwu/router.js +0 -3
  6418. package/lib/v2/crac/index.js +0 -46
  6419. package/lib/v2/crac/maintainer.js +0 -3
  6420. package/lib/v2/crac/radar.js +0 -13
  6421. package/lib/v2/crac/router.js +0 -3
  6422. package/lib/v2/creative-comic/book.js +0 -66
  6423. package/lib/v2/creative-comic/maintainer.js +0 -3
  6424. package/lib/v2/creative-comic/radar.js +0 -13
  6425. package/lib/v2/creative-comic/router.js +0 -3
  6426. package/lib/v2/creative-comic/utils.js +0 -95
  6427. package/lib/v2/crossbell/feeds/following.js +0 -29
  6428. package/lib/v2/crossbell/maintainer.js +0 -6
  6429. package/lib/v2/crossbell/notes/character.js +0 -22
  6430. package/lib/v2/crossbell/notes/index.js +0 -16
  6431. package/lib/v2/crossbell/notes/source.js +0 -19
  6432. package/lib/v2/crossbell/notes/utils.js +0 -18
  6433. package/lib/v2/crossbell/radar.js +0 -24
  6434. package/lib/v2/crossbell/router.js +0 -6
  6435. package/lib/v2/csc/maintainer.js +0 -3
  6436. package/lib/v2/csc/notice.js +0 -99
  6437. package/lib/v2/csc/radar.js +0 -31
  6438. package/lib/v2/csc/router.js +0 -3
  6439. package/lib/v2/cscse/maintainer.js +0 -3
  6440. package/lib/v2/cscse/radar.js +0 -13
  6441. package/lib/v2/cscse/router.js +0 -3
  6442. package/lib/v2/cscse/tzgg.js +0 -54
  6443. package/lib/v2/csdn/blog.js +0 -39
  6444. package/lib/v2/csdn/maintainer.js +0 -3
  6445. package/lib/v2/csdn/radar.js +0 -13
  6446. package/lib/v2/csdn/router.js +0 -3
  6447. package/lib/v2/cssn/iolaw.js +0 -38
  6448. package/lib/v2/cssn/maintainer.js +0 -3
  6449. package/lib/v2/cssn/radar.js +0 -11
  6450. package/lib/v2/cssn/router.js +0 -3
  6451. package/lib/v2/cste/index.js +0 -56
  6452. package/lib/v2/cste/maintainer.js +0 -3
  6453. package/lib/v2/cste/radar.js +0 -13
  6454. package/lib/v2/cste/router.js +0 -3
  6455. package/lib/v2/csu/career.js +0 -51
  6456. package/lib/v2/csu/cse.js +0 -41
  6457. package/lib/v2/csu/mail.js +0 -47
  6458. package/lib/v2/csu/maintainer.js +0 -5
  6459. package/lib/v2/csu/radar.js +0 -29
  6460. package/lib/v2/csu/router.js +0 -5
  6461. package/lib/v2/csu/utils.js +0 -17
  6462. package/lib/v2/cts/maintainer.js +0 -3
  6463. package/lib/v2/cts/news.js +0 -40
  6464. package/lib/v2/cts/radar.js +0 -13
  6465. package/lib/v2/cts/router.js +0 -3
  6466. package/lib/v2/cuc/maintainer.js +0 -3
  6467. package/lib/v2/cuc/radar.js +0 -13
  6468. package/lib/v2/cuc/router.js +0 -3
  6469. package/lib/v2/cuc/yz.js +0 -33
  6470. package/lib/v2/curiouscat/maintainer.js +0 -3
  6471. package/lib/v2/curiouscat/radar.js +0 -13
  6472. package/lib/v2/curiouscat/router.js +0 -3
  6473. package/lib/v2/curiouscat/user.js +0 -40
  6474. package/lib/v2/curius/links.js +0 -43
  6475. package/lib/v2/curius/maintainer.js +0 -3
  6476. package/lib/v2/curius/radar.js +0 -13
  6477. package/lib/v2/curius/router.js +0 -3
  6478. package/lib/v2/curius/templates/description.art +0 -16
  6479. package/lib/v2/cw/author.js +0 -18
  6480. package/lib/v2/cw/maintainer.js +0 -6
  6481. package/lib/v2/cw/master.js +0 -18
  6482. package/lib/v2/cw/radar.js +0 -31
  6483. package/lib/v2/cw/router.js +0 -6
  6484. package/lib/v2/cw/sub.js +0 -18
  6485. package/lib/v2/cw/today.js +0 -18
  6486. package/lib/v2/cw/utils.js +0 -133
  6487. package/lib/v2/cyzone/author.js +0 -20
  6488. package/lib/v2/cyzone/index.js +0 -27
  6489. package/lib/v2/cyzone/label.js +0 -20
  6490. package/lib/v2/cyzone/maintainer.js +0 -7
  6491. package/lib/v2/cyzone/radar.js +0 -25
  6492. package/lib/v2/cyzone/router.js +0 -6
  6493. package/lib/v2/cyzone/util.js +0 -125
  6494. package/lib/v2/cztv/daily.js +0 -41
  6495. package/lib/v2/cztv/maintainer.js +0 -4
  6496. package/lib/v2/cztv/radar.js +0 -19
  6497. package/lib/v2/cztv/router.js +0 -4
  6498. package/lib/v2/cztv/zjxwlb.js +0 -38
  6499. package/lib/v2/dahecube/index.js +0 -66
  6500. package/lib/v2/dahecube/maintainer.js +0 -3
  6501. package/lib/v2/dahecube/radar.js +0 -24
  6502. package/lib/v2/dahecube/router.js +0 -3
  6503. package/lib/v2/dahecube/utils.js +0 -47
  6504. package/lib/v2/daily/discussed.js +0 -73
  6505. package/lib/v2/daily/index.js +0 -83
  6506. package/lib/v2/daily/maintainer.js +0 -5
  6507. package/lib/v2/daily/radar.js +0 -25
  6508. package/lib/v2/daily/router.js +0 -5
  6509. package/lib/v2/daily/upvoted.js +0 -77
  6510. package/lib/v2/daily/utils.js +0 -39
  6511. package/lib/v2/dapenti/maintainer.js +0 -4
  6512. package/lib/v2/dapenti/radar.js +0 -27
  6513. package/lib/v2/dapenti/router.js +0 -4
  6514. package/lib/v2/dapenti/subject.js +0 -5
  6515. package/lib/v2/dapenti/tugua.js +0 -5
  6516. package/lib/v2/dapenti/utils.js +0 -75
  6517. package/lib/v2/darwinawards/index.js +0 -56
  6518. package/lib/v2/darwinawards/maintainer.js +0 -4
  6519. package/lib/v2/darwinawards/radar.js +0 -13
  6520. package/lib/v2/darwinawards/router.js +0 -4
  6521. package/lib/v2/dayanzai/index.js +0 -58
  6522. package/lib/v2/dayanzai/maintainer.js +0 -3
  6523. package/lib/v2/dayanzai/radar.js +0 -13
  6524. package/lib/v2/dayanzai/router.js +0 -3
  6525. package/lib/v2/dblp/maintainer.js +0 -3
  6526. package/lib/v2/dblp/publication.js +0 -70
  6527. package/lib/v2/dblp/radar.js +0 -13
  6528. package/lib/v2/dblp/router.js +0 -3
  6529. package/lib/v2/dbmv/index.js +0 -64
  6530. package/lib/v2/dbmv/maintainer.js +0 -3
  6531. package/lib/v2/dbmv/radar.js +0 -13
  6532. package/lib/v2/dbmv/router.js +0 -3
  6533. package/lib/v2/dcard/maintainer.js +0 -4
  6534. package/lib/v2/dcard/radar.js +0 -31
  6535. package/lib/v2/dcard/router.js +0 -3
  6536. package/lib/v2/dcard/section.js +0 -66
  6537. package/lib/v2/dcard/utils.js +0 -50
  6538. package/lib/v2/dcfever/maintainer.js +0 -6
  6539. package/lib/v2/dcfever/news.js +0 -36
  6540. package/lib/v2/dcfever/radar.js +0 -37
  6541. package/lib/v2/dcfever/reviews.js +0 -29
  6542. package/lib/v2/dcfever/router.js +0 -6
  6543. package/lib/v2/dcfever/trading-search.js +0 -39
  6544. package/lib/v2/dcfever/trading.js +0 -39
  6545. package/lib/v2/dcfever/utils.js +0 -78
  6546. package/lib/v2/ddosi/category.js +0 -42
  6547. package/lib/v2/ddosi/index.js +0 -41
  6548. package/lib/v2/ddosi/maintainer.js +0 -4
  6549. package/lib/v2/ddosi/radar.js +0 -19
  6550. package/lib/v2/ddosi/router.js +0 -4
  6551. package/lib/v2/deadline/maintainer.js +0 -3
  6552. package/lib/v2/deadline/posts.js +0 -53
  6553. package/lib/v2/deadline/radar.js +0 -13
  6554. package/lib/v2/deadline/router.js +0 -3
  6555. package/lib/v2/dedao/index.js +0 -46
  6556. package/lib/v2/dedao/knowledge.js +0 -64
  6557. package/lib/v2/dedao/list.js +0 -66
  6558. package/lib/v2/dedao/maintainer.js +0 -8
  6559. package/lib/v2/dedao/radar.js +0 -50
  6560. package/lib/v2/dedao/router.js +0 -6
  6561. package/lib/v2/dedao/user.js +0 -79
  6562. package/lib/v2/deepmind/blog.js +0 -32
  6563. package/lib/v2/deepmind/maintainer.js +0 -3
  6564. package/lib/v2/deepmind/radar.js +0 -13
  6565. package/lib/v2/deepmind/router.js +0 -3
  6566. package/lib/v2/deltaio/blog.js +0 -33
  6567. package/lib/v2/deltaio/maintainer.js +0 -3
  6568. package/lib/v2/deltaio/radar.js +0 -13
  6569. package/lib/v2/deltaio/router.js +0 -3
  6570. package/lib/v2/devolverdigital/blog.js +0 -50
  6571. package/lib/v2/devolverdigital/maintainer.js +0 -3
  6572. package/lib/v2/devolverdigital/radar.js +0 -13
  6573. package/lib/v2/devolverdigital/router.js +0 -3
  6574. package/lib/v2/dgjyw/index.js +0 -67
  6575. package/lib/v2/dgjyw/maintainer.js +0 -3
  6576. package/lib/v2/dgjyw/radar.js +0 -13
  6577. package/lib/v2/dgjyw/router.js +0 -3
  6578. package/lib/v2/dhu/jiaowu/news.js +0 -37
  6579. package/lib/v2/dhu/maintainer.js +0 -7
  6580. package/lib/v2/dhu/news/xsxx.js +0 -42
  6581. package/lib/v2/dhu/radar.js +0 -37
  6582. package/lib/v2/dhu/router.js +0 -7
  6583. package/lib/v2/dhu/xxgk/news.js +0 -32
  6584. package/lib/v2/dhu/yjs/news.js +0 -47
  6585. package/lib/v2/dhu/yjs/zs.js +0 -46
  6586. package/lib/v2/diandong/ddh.js +0 -51
  6587. package/lib/v2/diandong/maintainer.js +0 -4
  6588. package/lib/v2/diandong/news.js +0 -50
  6589. package/lib/v2/diandong/radar.js +0 -19
  6590. package/lib/v2/diandong/router.js +0 -4
  6591. package/lib/v2/diershoubing/maintainer.js +0 -3
  6592. package/lib/v2/diershoubing/news.js +0 -50
  6593. package/lib/v2/diershoubing/radar.js +0 -13
  6594. package/lib/v2/diershoubing/router.js +0 -3
  6595. package/lib/v2/discord/channel.js +0 -38
  6596. package/lib/v2/discord/discord-api.js +0 -61
  6597. package/lib/v2/discord/maintainer.js +0 -3
  6598. package/lib/v2/discord/radar.js +0 -13
  6599. package/lib/v2/discord/router.js +0 -3
  6600. package/lib/v2/discord/templates/message.art +0 -47
  6601. package/lib/v2/discourse/maintainer.js +0 -4
  6602. package/lib/v2/discourse/notifications.js +0 -39
  6603. package/lib/v2/discourse/posts.js +0 -25
  6604. package/lib/v2/discourse/router.js +0 -4
  6605. package/lib/v2/discourse/utils.js +0 -12
  6606. package/lib/v2/discuz/discuz.js +0 -156
  6607. package/lib/v2/discuz/maintainer.js +0 -5
  6608. package/lib/v2/discuz/router.js +0 -5
  6609. package/lib/v2/disinfo/maintainer.js +0 -3
  6610. package/lib/v2/disinfo/publications.js +0 -56
  6611. package/lib/v2/disinfo/radar.js +0 -13
  6612. package/lib/v2/disinfo/router.js +0 -3
  6613. package/lib/v2/disinformationindex/blog.js +0 -48
  6614. package/lib/v2/disinformationindex/maintainer.js +0 -4
  6615. package/lib/v2/disinformationindex/radar.js +0 -19
  6616. package/lib/v2/disinformationindex/research.js +0 -45
  6617. package/lib/v2/disinformationindex/router.js +0 -4
  6618. package/lib/v2/disinformationindex/templates/description.art +0 -7
  6619. package/lib/v2/diskanalyzer/maintainer.js +0 -3
  6620. package/lib/v2/diskanalyzer/radar.js +0 -13
  6621. package/lib/v2/diskanalyzer/router.js +0 -3
  6622. package/lib/v2/diskanalyzer/whats-new.js +0 -49
  6623. package/lib/v2/distill/index.js +0 -64
  6624. package/lib/v2/distill/maintainer.js +0 -3
  6625. package/lib/v2/distill/radar.js +0 -13
  6626. package/lib/v2/distill/router.js +0 -3
  6627. package/lib/v2/dlnews/category.js +0 -81
  6628. package/lib/v2/dlnews/maintainer.js +0 -3
  6629. package/lib/v2/dlnews/radar.js +0 -19
  6630. package/lib/v2/dlnews/router.js +0 -3
  6631. package/lib/v2/dlnews/utils.js +0 -22
  6632. package/lib/v2/dlsite/campaign.js +0 -174
  6633. package/lib/v2/dlsite/ci-en/article.js +0 -64
  6634. package/lib/v2/dlsite/index.js +0 -5
  6635. package/lib/v2/dlsite/maintainer.js +0 -6
  6636. package/lib/v2/dlsite/new.js +0 -108
  6637. package/lib/v2/dlsite/radar.js +0 -29
  6638. package/lib/v2/dlsite/router.js +0 -6
  6639. package/lib/v2/dlsite/utils.js +0 -176
  6640. package/lib/v2/dmzj/maintainer.js +0 -3
  6641. package/lib/v2/dmzj/news.js +0 -26
  6642. package/lib/v2/dmzj/radar.js +0 -67
  6643. package/lib/v2/dmzj/router.js +0 -3
  6644. package/lib/v2/dn/maintainer.js +0 -3
  6645. package/lib/v2/dn/news.js +0 -90
  6646. package/lib/v2/dn/radar.js +0 -55
  6647. package/lib/v2/dn/router.js +0 -3
  6648. package/lib/v2/dnaindia/category.js +0 -66
  6649. package/lib/v2/dnaindia/maintainer.js +0 -4
  6650. package/lib/v2/dnaindia/radar.js +0 -19
  6651. package/lib/v2/dnaindia/router.js +0 -4
  6652. package/lib/v2/dockerhub/build.js +0 -31
  6653. package/lib/v2/dockerhub/maintainer.js +0 -4
  6654. package/lib/v2/dockerhub/radar.js +0 -19
  6655. package/lib/v2/dockerhub/router.js +0 -4
  6656. package/lib/v2/dockerhub/tag.js +0 -33
  6657. package/lib/v2/dockerhub/utils.js +0 -10
  6658. package/lib/v2/docschina/jsweekly.js +0 -114
  6659. package/lib/v2/docschina/maintainer.js +0 -3
  6660. package/lib/v2/docschina/radar.js +0 -13
  6661. package/lib/v2/docschina/router.js +0 -3
  6662. package/lib/v2/domp4/detail.js +0 -97
  6663. package/lib/v2/domp4/latest.js +0 -35
  6664. package/lib/v2/domp4/maintainer.js +0 -4
  6665. package/lib/v2/domp4/radar.js +0 -25
  6666. package/lib/v2/domp4/router.js +0 -4
  6667. package/lib/v2/domp4/utils.js +0 -102
  6668. package/lib/v2/dongqiudi/maintainer.js +0 -8
  6669. package/lib/v2/dongqiudi/player_news.js +0 -7
  6670. package/lib/v2/dongqiudi/radar.js +0 -45
  6671. package/lib/v2/dongqiudi/result.js +0 -30
  6672. package/lib/v2/dongqiudi/router.js +0 -8
  6673. package/lib/v2/dongqiudi/special.js +0 -34
  6674. package/lib/v2/dongqiudi/team_news.js +0 -7
  6675. package/lib/v2/dongqiudi/top_news.js +0 -33
  6676. package/lib/v2/dongqiudi/utils.js +0 -171
  6677. package/lib/v2/dorohedoro/maintainer.js +0 -3
  6678. package/lib/v2/dorohedoro/news.js +0 -71
  6679. package/lib/v2/dorohedoro/radar.js +0 -13
  6680. package/lib/v2/dorohedoro/router.js +0 -3
  6681. package/lib/v2/douban/book/rank.js +0 -34
  6682. package/lib/v2/douban/channel/subject.js +0 -60
  6683. package/lib/v2/douban/channel/topic.js +0 -63
  6684. package/lib/v2/douban/commercialpress/latest.js +0 -55
  6685. package/lib/v2/douban/event/hot.js +0 -30
  6686. package/lib/v2/douban/maintainer.js +0 -30
  6687. package/lib/v2/douban/other/bookstore.js +0 -30
  6688. package/lib/v2/douban/other/celebrity.js +0 -41
  6689. package/lib/v2/douban/other/classification.js +0 -39
  6690. package/lib/v2/douban/other/discussion.js +0 -58
  6691. package/lib/v2/douban/other/doulist.js +0 -65
  6692. package/lib/v2/douban/other/explore.js +0 -50
  6693. package/lib/v2/douban/other/explore_column.js +0 -56
  6694. package/lib/v2/douban/other/group.js +0 -48
  6695. package/lib/v2/douban/other/jobs.js +0 -33
  6696. package/lib/v2/douban/other/later.js +0 -32
  6697. package/lib/v2/douban/other/latest_book.js +0 -19
  6698. package/lib/v2/douban/other/latest_music.js +0 -74
  6699. package/lib/v2/douban/other/list.js +0 -49
  6700. package/lib/v2/douban/other/playing.js +0 -35
  6701. package/lib/v2/douban/other/recommended.js +0 -68
  6702. package/lib/v2/douban/other/replied.js +0 -86
  6703. package/lib/v2/douban/other/replies.js +0 -61
  6704. package/lib/v2/douban/other/topic.js +0 -80
  6705. package/lib/v2/douban/other/ustop.js +0 -22
  6706. package/lib/v2/douban/other/weekly_best.js +0 -53
  6707. package/lib/v2/douban/people/status.js +0 -501
  6708. package/lib/v2/douban/people/wish.js +0 -71
  6709. package/lib/v2/douban/radar.js +0 -68
  6710. package/lib/v2/douban/router.js +0 -30
  6711. package/lib/v2/douyin/hashtag.js +0 -94
  6712. package/lib/v2/douyin/live.js +0 -79
  6713. package/lib/v2/douyin/maintainer.js +0 -5
  6714. package/lib/v2/douyin/radar.js +0 -27
  6715. package/lib/v2/douyin/router.js +0 -5
  6716. package/lib/v2/douyin/templates/embed.art +0 -13
  6717. package/lib/v2/douyin/user.js +0 -77
  6718. package/lib/v2/douyin/utils.js +0 -135
  6719. package/lib/v2/douyu/group.js +0 -45
  6720. package/lib/v2/douyu/maintainer.js +0 -5
  6721. package/lib/v2/douyu/post.js +0 -58
  6722. package/lib/v2/douyu/radar.js +0 -27
  6723. package/lib/v2/douyu/room.js +0 -34
  6724. package/lib/v2/douyu/router.js +0 -5
  6725. package/lib/v2/dribbble/keyword.js +0 -10
  6726. package/lib/v2/dribbble/maintainer.js +0 -5
  6727. package/lib/v2/dribbble/popular.js +0 -10
  6728. package/lib/v2/dribbble/radar.js +0 -25
  6729. package/lib/v2/dribbble/router.js +0 -5
  6730. package/lib/v2/dribbble/user.js +0 -10
  6731. package/lib/v2/dribbble/utils.js +0 -156
  6732. package/lib/v2/dtcj/datahero.js +0 -50
  6733. package/lib/v2/dtcj/datainsight.js +0 -52
  6734. package/lib/v2/dtcj/maintainer.js +0 -4
  6735. package/lib/v2/dtcj/radar.js +0 -25
  6736. package/lib/v2/dtcj/router.js +0 -4
  6737. package/lib/v2/duozhuayu/maintainer.js +0 -3
  6738. package/lib/v2/duozhuayu/radar.js +0 -13
  6739. package/lib/v2/duozhuayu/router.js +0 -3
  6740. package/lib/v2/duozhuayu/search.js +0 -67
  6741. package/lib/v2/dushu/fuzhou/index.js +0 -42
  6742. package/lib/v2/dushu/maintainer.js +0 -3
  6743. package/lib/v2/dushu/radar.js +0 -24
  6744. package/lib/v2/dushu/router.js +0 -3
  6745. package/lib/v2/dut/defaults.js +0 -53
  6746. package/lib/v2/dut/index.js +0 -82
  6747. package/lib/v2/dut/maintainer.js +0 -14
  6748. package/lib/v2/dut/radar.js +0 -109
  6749. package/lib/v2/dut/router.js +0 -4
  6750. package/lib/v2/dut/shortcuts.js +0 -77
  6751. package/lib/v2/dx2025/index.js +0 -51
  6752. package/lib/v2/dx2025/maintainer.js +0 -3
  6753. package/lib/v2/dx2025/radar.js +0 -19
  6754. package/lib/v2/dx2025/router.js +0 -3
  6755. package/lib/v2/dxy/maintainer.js +0 -4
  6756. package/lib/v2/dxy/profile/thread.js +0 -82
  6757. package/lib/v2/dxy/radar.js +0 -21
  6758. package/lib/v2/dxy/router.js +0 -4
  6759. package/lib/v2/dxy/special.js +0 -79
  6760. package/lib/v2/dxy/utils.js +0 -72
  6761. package/lib/v2/e-hentai/index.js +0 -115
  6762. package/lib/v2/e-hentai/maintainer.js +0 -5
  6763. package/lib/v2/e-hentai/radar.js +0 -43
  6764. package/lib/v2/e-hentai/router.js +0 -3
  6765. package/lib/v2/eagle/blog.js +0 -51
  6766. package/lib/v2/eagle/changelog.js +0 -77
  6767. package/lib/v2/eagle/maintainer.js +0 -4
  6768. package/lib/v2/eagle/radar.js +0 -101
  6769. package/lib/v2/eagle/router.js +0 -4
  6770. package/lib/v2/earthquake/ceic.js +0 -68
  6771. package/lib/v2/earthquake/index.js +0 -40
  6772. package/lib/v2/earthquake/maintainer.js +0 -4
  6773. package/lib/v2/earthquake/radar.js +0 -24
  6774. package/lib/v2/earthquake/router.js +0 -4
  6775. package/lib/v2/eastday/24.js +0 -89
  6776. package/lib/v2/eastday/find.js +0 -49
  6777. package/lib/v2/eastday/maintainer.js +0 -6
  6778. package/lib/v2/eastday/portrait.js +0 -47
  6779. package/lib/v2/eastday/radar.js +0 -35
  6780. package/lib/v2/eastday/router.js +0 -6
  6781. package/lib/v2/eastday/sh.js +0 -49
  6782. package/lib/v2/eastmoney/maintainer.js +0 -5
  6783. package/lib/v2/eastmoney/radar.js +0 -29
  6784. package/lib/v2/eastmoney/report/index.js +0 -59
  6785. package/lib/v2/eastmoney/router.js +0 -5
  6786. package/lib/v2/eastmoney/search/index.js +0 -55
  6787. package/lib/v2/eastmoney/ttjj/user.js +0 -65
  6788. package/lib/v2/ecnu/contest.js +0 -41
  6789. package/lib/v2/ecnu/maintainer.js +0 -4
  6790. package/lib/v2/ecnu/radar.js +0 -30
  6791. package/lib/v2/ecnu/router.js +0 -4
  6792. package/lib/v2/ecnu/yjs.js +0 -37
  6793. package/lib/v2/economist/download.js +0 -30
  6794. package/lib/v2/economist/espresso.js +0 -80
  6795. package/lib/v2/economist/full.js +0 -46
  6796. package/lib/v2/economist/global-business-review.js +0 -86
  6797. package/lib/v2/economist/gre-vocabulary.js +0 -19
  6798. package/lib/v2/economist/maintainer.js +0 -7
  6799. package/lib/v2/economist/radar.js +0 -38
  6800. package/lib/v2/economist/router.js +0 -7
  6801. package/lib/v2/ecust/e/news.js +0 -44
  6802. package/lib/v2/ecust/gschool/yjs.js +0 -27
  6803. package/lib/v2/ecust/jwc/notice.js +0 -66
  6804. package/lib/v2/ecust/maintainer.js +0 -5
  6805. package/lib/v2/ecust/radar.js +0 -29
  6806. package/lib/v2/ecust/router.js +0 -5
  6807. package/lib/v2/eet-china/maintainer.js +0 -4
  6808. package/lib/v2/eet-china/mp/index.js +0 -10
  6809. package/lib/v2/eet-china/mp/tags.js +0 -10
  6810. package/lib/v2/eet-china/mp/util.js +0 -67
  6811. package/lib/v2/eet-china/radar.js +0 -24
  6812. package/lib/v2/eet-china/router.js +0 -4
  6813. package/lib/v2/ehentai/ehapi.js +0 -223
  6814. package/lib/v2/ehentai/favorites.js +0 -28
  6815. package/lib/v2/ehentai/maintainer.js +0 -5
  6816. package/lib/v2/ehentai/router.js +0 -5
  6817. package/lib/v2/ehentai/search.js +0 -36
  6818. package/lib/v2/ehentai/tag.js +0 -24
  6819. package/lib/v2/elasticsearch-cn/index.js +0 -57
  6820. package/lib/v2/elasticsearch-cn/maintainer.js +0 -3
  6821. package/lib/v2/elasticsearch-cn/radar.js +0 -13
  6822. package/lib/v2/elasticsearch-cn/router.js +0 -3
  6823. package/lib/v2/eleduck/jobs.js +0 -38
  6824. package/lib/v2/eleduck/maintainer.js +0 -4
  6825. package/lib/v2/eleduck/posts.js +0 -41
  6826. package/lib/v2/eleduck/radar.js +0 -25
  6827. package/lib/v2/eleduck/router.js +0 -4
  6828. package/lib/v2/elsevier/issue.js +0 -62
  6829. package/lib/v2/elsevier/journal.js +0 -72
  6830. package/lib/v2/elsevier/maintainer.js +0 -4
  6831. package/lib/v2/elsevier/radar.js +0 -19
  6832. package/lib/v2/elsevier/router.js +0 -6
  6833. package/lib/v2/embassy/index.js +0 -60
  6834. package/lib/v2/embassy/maintainer.js +0 -3
  6835. package/lib/v2/embassy/radar.js +0 -258
  6836. package/lib/v2/embassy/router.js +0 -3
  6837. package/lib/v2/embassy/supportedList.js +0 -257
  6838. package/lib/v2/ems/apple.js +0 -42
  6839. package/lib/v2/ems/maintainer.js +0 -4
  6840. package/lib/v2/ems/news.js +0 -21
  6841. package/lib/v2/ems/radar.js +0 -19
  6842. package/lib/v2/ems/router.js +0 -4
  6843. package/lib/v2/ems/templates/apple.art +0 -6
  6844. package/lib/v2/epicgames/index.js +0 -87
  6845. package/lib/v2/epicgames/maintainer.js +0 -3
  6846. package/lib/v2/epicgames/radar.js +0 -13
  6847. package/lib/v2/epicgames/router.js +0 -3
  6848. package/lib/v2/eprice/maintainer.js +0 -3
  6849. package/lib/v2/eprice/radar.js +0 -24
  6850. package/lib/v2/eprice/router.js +0 -3
  6851. package/lib/v2/eprice/rss.js +0 -99
  6852. package/lib/v2/eventernote/actors.js +0 -103
  6853. package/lib/v2/eventernote/maintainer.js +0 -3
  6854. package/lib/v2/eventernote/radar.js +0 -13
  6855. package/lib/v2/eventernote/router.js +0 -3
  6856. package/lib/v2/ezone/index.js +0 -70
  6857. package/lib/v2/ezone/maintainer.js +0 -3
  6858. package/lib/v2/ezone/radar.js +0 -13
  6859. package/lib/v2/ezone/router.js +0 -3
  6860. package/lib/v2/famitsu/category.js +0 -62
  6861. package/lib/v2/famitsu/maintainer.js +0 -3
  6862. package/lib/v2/famitsu/radar.js +0 -13
  6863. package/lib/v2/famitsu/router.js +0 -3
  6864. package/lib/v2/fantia/maintainer.js +0 -4
  6865. package/lib/v2/fantia/radar.js +0 -13
  6866. package/lib/v2/fantia/router.js +0 -4
  6867. package/lib/v2/fantia/search.js +0 -71
  6868. package/lib/v2/fantia/user.js +0 -60
  6869. package/lib/v2/farmatters/index.js +0 -85
  6870. package/lib/v2/farmatters/maintainer.js +0 -7
  6871. package/lib/v2/farmatters/radar.js +0 -36
  6872. package/lib/v2/farmatters/router.js +0 -6
  6873. package/lib/v2/fastbull/express-news.js +0 -33
  6874. package/lib/v2/fastbull/maintainer.js +0 -5
  6875. package/lib/v2/fastbull/news.js +0 -57
  6876. package/lib/v2/fastbull/radar.js +0 -19
  6877. package/lib/v2/fastbull/router.js +0 -5
  6878. package/lib/v2/fda/cdrh.js +0 -62
  6879. package/lib/v2/fda/maintainer.js +0 -3
  6880. package/lib/v2/fda/radar.js +0 -13
  6881. package/lib/v2/fda/router.js +0 -3
  6882. package/lib/v2/feng/forum.js +0 -42
  6883. package/lib/v2/feng/maintainer.js +0 -3
  6884. package/lib/v2/feng/radar.js +0 -13
  6885. package/lib/v2/feng/router.js +0 -3
  6886. package/lib/v2/feng/utils.js +0 -80
  6887. package/lib/v2/ff14/ff14_global.js +0 -42
  6888. package/lib/v2/ff14/ff14_zh.js +0 -43
  6889. package/lib/v2/ff14/maintainer.js +0 -4
  6890. package/lib/v2/ff14/radar.js +0 -30
  6891. package/lib/v2/ff14/router.js +0 -7
  6892. package/lib/v2/fffdm/maintainer.js +0 -3
  6893. package/lib/v2/fffdm/manhua/manhua.js +0 -55
  6894. package/lib/v2/fffdm/radar.js +0 -14
  6895. package/lib/v2/fffdm/router.js +0 -3
  6896. package/lib/v2/filmdeepfocus/index.js +0 -58
  6897. package/lib/v2/filmdeepfocus/maintainer.js +0 -3
  6898. package/lib/v2/filmdeepfocus/radar.js +0 -13
  6899. package/lib/v2/filmdeepfocus/router.js +0 -3
  6900. package/lib/v2/finology/bullets.js +0 -35
  6901. package/lib/v2/finology/maintainer.js +0 -6
  6902. package/lib/v2/finology/mostViewed.js +0 -33
  6903. package/lib/v2/finology/radar.js +0 -31
  6904. package/lib/v2/finology/router.js +0 -6
  6905. package/lib/v2/finology/tag.js +0 -33
  6906. package/lib/v2/finology/utils.js +0 -58
  6907. package/lib/v2/finviz/maintainer.js +0 -4
  6908. package/lib/v2/finviz/news.js +0 -69
  6909. package/lib/v2/finviz/quote.js +0 -40
  6910. package/lib/v2/finviz/radar.js +0 -19
  6911. package/lib/v2/finviz/router.js +0 -4
  6912. package/lib/v2/firecore/index.js +0 -37
  6913. package/lib/v2/firecore/maintainer.js +0 -3
  6914. package/lib/v2/firecore/radar.js +0 -13
  6915. package/lib/v2/firecore/router.js +0 -3
  6916. package/lib/v2/firefox/addons.js +0 -35
  6917. package/lib/v2/firefox/breaches.js +0 -38
  6918. package/lib/v2/firefox/maintainer.js +0 -5
  6919. package/lib/v2/firefox/radar.js +0 -30
  6920. package/lib/v2/firefox/release.js +0 -30
  6921. package/lib/v2/firefox/router.js +0 -5
  6922. package/lib/v2/fisher-spb/maintainer.js +0 -3
  6923. package/lib/v2/fisher-spb/news.js +0 -49
  6924. package/lib/v2/fisher-spb/radar.js +0 -13
  6925. package/lib/v2/fisher-spb/router.js +0 -3
  6926. package/lib/v2/fishshell/index.js +0 -27
  6927. package/lib/v2/fishshell/maintainer.js +0 -3
  6928. package/lib/v2/fishshell/radar.js +0 -13
  6929. package/lib/v2/fishshell/router.js +0 -3
  6930. package/lib/v2/fjksbm/index.js +0 -53
  6931. package/lib/v2/fjksbm/maintainer.js +0 -3
  6932. package/lib/v2/fjksbm/radar.js +0 -13
  6933. package/lib/v2/fjksbm/router.js +0 -3
  6934. package/lib/v2/flyert/creditcard.js +0 -89
  6935. package/lib/v2/flyert/maintainer.js +0 -4
  6936. package/lib/v2/flyert/preferential.js +0 -48
  6937. package/lib/v2/flyert/radar.js +0 -19
  6938. package/lib/v2/flyert/router.js +0 -4
  6939. package/lib/v2/flyert/utils.js +0 -73
  6940. package/lib/v2/focustaiwan/index.js +0 -72
  6941. package/lib/v2/focustaiwan/maintainer.js +0 -3
  6942. package/lib/v2/focustaiwan/radar.js +0 -13
  6943. package/lib/v2/focustaiwan/router.js +0 -3
  6944. package/lib/v2/followin/index.js +0 -35
  6945. package/lib/v2/followin/kol.js +0 -25
  6946. package/lib/v2/followin/maintainer.js +0 -7
  6947. package/lib/v2/followin/news.js +0 -21
  6948. package/lib/v2/followin/radar.js +0 -37
  6949. package/lib/v2/followin/router.js +0 -7
  6950. package/lib/v2/followin/tag.js +0 -44
  6951. package/lib/v2/followin/topic.js +0 -25
  6952. package/lib/v2/followin/utils.js +0 -84
  6953. package/lib/v2/foresightnews/article.js +0 -22
  6954. package/lib/v2/foresightnews/column.js +0 -28
  6955. package/lib/v2/foresightnews/index.js +0 -22
  6956. package/lib/v2/foresightnews/maintainer.js +0 -6
  6957. package/lib/v2/foresightnews/news.js +0 -23
  6958. package/lib/v2/foresightnews/radar.js +0 -31
  6959. package/lib/v2/foresightnews/router.js +0 -6
  6960. package/lib/v2/foresightnews/util.js +0 -96
  6961. package/lib/v2/foreverblog/feeds.js +0 -36
  6962. package/lib/v2/foreverblog/maintainer.js +0 -3
  6963. package/lib/v2/foreverblog/radar.js +0 -13
  6964. package/lib/v2/foreverblog/router.js +0 -3
  6965. package/lib/v2/fortnite/maintainer.js +0 -3
  6966. package/lib/v2/fortnite/news.js +0 -58
  6967. package/lib/v2/fortnite/radar.js +0 -16
  6968. package/lib/v2/fortnite/router.js +0 -3
  6969. package/lib/v2/fortunechina/index.js +0 -70
  6970. package/lib/v2/fortunechina/maintainer.js +0 -3
  6971. package/lib/v2/fortunechina/radar.js +0 -13
  6972. package/lib/v2/fortunechina/router.js +0 -3
  6973. package/lib/v2/fosshub/index.js +0 -49
  6974. package/lib/v2/fosshub/maintainer.js +0 -3
  6975. package/lib/v2/fosshub/radar.js +0 -13
  6976. package/lib/v2/fosshub/router.js +0 -3
  6977. package/lib/v2/freebuf/index.js +0 -41
  6978. package/lib/v2/freebuf/maintainer.js +0 -3
  6979. package/lib/v2/freebuf/radar.js +0 -13
  6980. package/lib/v2/freebuf/router.js +0 -3
  6981. package/lib/v2/freecomputerbooks/index.js +0 -94
  6982. package/lib/v2/freecomputerbooks/maintainer.js +0 -4
  6983. package/lib/v2/freecomputerbooks/radar.js +0 -31
  6984. package/lib/v2/freecomputerbooks/router.js +0 -3
  6985. package/lib/v2/freewechat/maintainer.js +0 -3
  6986. package/lib/v2/freewechat/profile.js +0 -61
  6987. package/lib/v2/freewechat/radar.js +0 -13
  6988. package/lib/v2/freewechat/router.js +0 -3
  6989. package/lib/v2/ft/channel.js +0 -9
  6990. package/lib/v2/ft/maintainer.js +0 -4
  6991. package/lib/v2/ft/myft.js +0 -51
  6992. package/lib/v2/ft/radar.js +0 -24
  6993. package/lib/v2/ft/router.js +0 -4
  6994. package/lib/v2/ft/utils.js +0 -91
  6995. package/lib/v2/fuliba/latest.js +0 -25
  6996. package/lib/v2/fuliba/maintainer.js +0 -3
  6997. package/lib/v2/fuliba/radar.js +0 -15
  6998. package/lib/v2/fuliba/router.js +0 -3
  6999. package/lib/v2/furstar/archive.js +0 -28
  7000. package/lib/v2/furstar/artists.js +0 -32
  7001. package/lib/v2/furstar/index.js +0 -33
  7002. package/lib/v2/furstar/maintainer.js +0 -5
  7003. package/lib/v2/furstar/radar.js +0 -25
  7004. package/lib/v2/furstar/router.js +0 -5
  7005. package/lib/v2/furstar/utils.js +0 -96
  7006. package/lib/v2/futunn/main.js +0 -67
  7007. package/lib/v2/futunn/maintainer.js +0 -3
  7008. package/lib/v2/futunn/radar.js +0 -13
  7009. package/lib/v2/futunn/router.js +0 -5
  7010. package/lib/v2/fx-markets/channel.js +0 -56
  7011. package/lib/v2/fx-markets/maintainer.js +0 -3
  7012. package/lib/v2/fx-markets/radar.js +0 -31
  7013. package/lib/v2/fx-markets/router.js +0 -3
  7014. package/lib/v2/fx678/kx.js +0 -44
  7015. package/lib/v2/fx678/maintainer.js +0 -3
  7016. package/lib/v2/fx678/radar.js +0 -13
  7017. package/lib/v2/fx678/router.js +0 -3
  7018. package/lib/v2/fzmtr/announcements.js +0 -38
  7019. package/lib/v2/fzmtr/maintainer.js +0 -3
  7020. package/lib/v2/fzmtr/radar.js +0 -11
  7021. package/lib/v2/fzmtr/router.js +0 -3
  7022. package/lib/v2/gameapps/index.js +0 -75
  7023. package/lib/v2/gameapps/maintainer.js +0 -3
  7024. package/lib/v2/gameapps/radar.js +0 -13
  7025. package/lib/v2/gameapps/router.js +0 -3
  7026. package/lib/v2/gamebase/maintainer.js +0 -3
  7027. package/lib/v2/gamebase/news.js +0 -74
  7028. package/lib/v2/gamebase/radar.js +0 -13
  7029. package/lib/v2/gamebase/router.js +0 -3
  7030. package/lib/v2/gamegene/maintainer.js +0 -3
  7031. package/lib/v2/gamegene/news.js +0 -50
  7032. package/lib/v2/gamegene/radar.js +0 -13
  7033. package/lib/v2/gamegene/router.js +0 -3
  7034. package/lib/v2/gamer/gnn_index.js +0 -130
  7035. package/lib/v2/gamer/hot.js +0 -59
  7036. package/lib/v2/gamer/maintainer.js +0 -4
  7037. package/lib/v2/gamer/radar.js +0 -29
  7038. package/lib/v2/gamer/router.js +0 -4
  7039. package/lib/v2/gamersecret/index.js +0 -60
  7040. package/lib/v2/gamersecret/maintainer.js +0 -3
  7041. package/lib/v2/gamersecret/radar.js +0 -31
  7042. package/lib/v2/gamersecret/router.js +0 -3
  7043. package/lib/v2/gamme/category.js +0 -50
  7044. package/lib/v2/gamme/maintainer.js +0 -6
  7045. package/lib/v2/gamme/radar.js +0 -33
  7046. package/lib/v2/gamme/router.js +0 -4
  7047. package/lib/v2/gamme/tag.js +0 -61
  7048. package/lib/v2/gaze/maintainer.js +0 -3
  7049. package/lib/v2/gaze/radar.js +0 -13
  7050. package/lib/v2/gaze/router.js +0 -3
  7051. package/lib/v2/gaze/templates/update.art +0 -4
  7052. package/lib/v2/gaze/update.js +0 -27
  7053. package/lib/v2/gcores/category.js +0 -141
  7054. package/lib/v2/gcores/collection.js +0 -136
  7055. package/lib/v2/gcores/maintainer.js +0 -6
  7056. package/lib/v2/gcores/radar.js +0 -37
  7057. package/lib/v2/gcores/radio.js +0 -91
  7058. package/lib/v2/gcores/router.js +0 -6
  7059. package/lib/v2/gcores/tag.js +0 -130
  7060. package/lib/v2/gdut/maintainer.js +0 -3
  7061. package/lib/v2/gdut/news.js +0 -166
  7062. package/lib/v2/gdut/oa_news.js +0 -214
  7063. package/lib/v2/gdut/radar.js +0 -13
  7064. package/lib/v2/gdut/router.js +0 -3
  7065. package/lib/v2/gelonghui/home.js +0 -31
  7066. package/lib/v2/gelonghui/hot-article.js +0 -33
  7067. package/lib/v2/gelonghui/keyword.js +0 -34
  7068. package/lib/v2/gelonghui/live.js +0 -31
  7069. package/lib/v2/gelonghui/maintainer.js +0 -6
  7070. package/lib/v2/gelonghui/radar.js +0 -43
  7071. package/lib/v2/gelonghui/router.js +0 -8
  7072. package/lib/v2/gelonghui/subject.js +0 -36
  7073. package/lib/v2/gelonghui/user.js +0 -33
  7074. package/lib/v2/gelonghui/utils.js +0 -27
  7075. package/lib/v2/geocaching/blogs.js +0 -30
  7076. package/lib/v2/geocaching/maintainer.js +0 -3
  7077. package/lib/v2/geocaching/radar.js +0 -13
  7078. package/lib/v2/geocaching/router.js +0 -3
  7079. package/lib/v2/getdr/index.js +0 -47
  7080. package/lib/v2/getdr/maintainer.js +0 -3
  7081. package/lib/v2/getdr/radar.js +0 -13
  7082. package/lib/v2/getdr/router.js +0 -3
  7083. package/lib/v2/getitfree/index.js +0 -62
  7084. package/lib/v2/getitfree/maintainer.js +0 -5
  7085. package/lib/v2/getitfree/radar.js +0 -30
  7086. package/lib/v2/getitfree/router.js +0 -11
  7087. package/lib/v2/getitfree/util.js +0 -326
  7088. package/lib/v2/gettr/maintainer.js +0 -3
  7089. package/lib/v2/gettr/radar.js +0 -13
  7090. package/lib/v2/gettr/router.js +0 -3
  7091. package/lib/v2/gettr/user.js +0 -56
  7092. package/lib/v2/gf-cn/maintainer.js +0 -3
  7093. package/lib/v2/gf-cn/news.js +0 -50
  7094. package/lib/v2/gf-cn/radar.js +0 -13
  7095. package/lib/v2/gf-cn/router.js +0 -3
  7096. package/lib/v2/gihyo/group.js +0 -48
  7097. package/lib/v2/gihyo/maintainer.js +0 -3
  7098. package/lib/v2/gihyo/radar.js +0 -13
  7099. package/lib/v2/gihyo/router.js +0 -3
  7100. package/lib/v2/gitee/maintainer.js +0 -6
  7101. package/lib/v2/gitee/radar.js +0 -31
  7102. package/lib/v2/gitee/repos/commits.js +0 -40
  7103. package/lib/v2/gitee/repos/events.js +0 -66
  7104. package/lib/v2/gitee/repos/releases.js +0 -33
  7105. package/lib/v2/gitee/router.js +0 -6
  7106. package/lib/v2/gitee/users/events.js +0 -84
  7107. package/lib/v2/github/branches.js +0 -31
  7108. package/lib/v2/github/comments.js +0 -189
  7109. package/lib/v2/github/contributors.js +0 -96
  7110. package/lib/v2/github/file.js +0 -45
  7111. package/lib/v2/github/follower.js +0 -50
  7112. package/lib/v2/github/gist.js +0 -35
  7113. package/lib/v2/github/issue.js +0 -52
  7114. package/lib/v2/github/maintainer.js +0 -19
  7115. package/lib/v2/github/notifications.js +0 -47
  7116. package/lib/v2/github/pulls.js +0 -46
  7117. package/lib/v2/github/pulse.js +0 -87
  7118. package/lib/v2/github/radar.js +0 -111
  7119. package/lib/v2/github/repos.js +0 -34
  7120. package/lib/v2/github/router.js +0 -20
  7121. package/lib/v2/github/search.js +0 -41
  7122. package/lib/v2/github/star.js +0 -51
  7123. package/lib/v2/github/starred_repos.js +0 -63
  7124. package/lib/v2/github/topic.js +0 -41
  7125. package/lib/v2/github/trending.js +0 -89
  7126. package/lib/v2/github/wiki.js +0 -32
  7127. package/lib/v2/gitpod/blog.js +0 -60
  7128. package/lib/v2/gitpod/changelog.js +0 -35
  7129. package/lib/v2/gitpod/maintainer.js +0 -4
  7130. package/lib/v2/gitpod/radar.js +0 -19
  7131. package/lib/v2/gitpod/router.js +0 -4
  7132. package/lib/v2/gitpod/utils.js +0 -3
  7133. package/lib/v2/globallawreview/index.js +0 -55
  7134. package/lib/v2/globallawreview/maintainer.js +0 -3
  7135. package/lib/v2/globallawreview/radar.js +0 -13
  7136. package/lib/v2/globallawreview/router.js +0 -3
  7137. package/lib/v2/gocn/jobs.js +0 -28
  7138. package/lib/v2/gocn/maintainer.js +0 -6
  7139. package/lib/v2/gocn/news.js +0 -31
  7140. package/lib/v2/gocn/radar.js +0 -25
  7141. package/lib/v2/gocn/router.js +0 -6
  7142. package/lib/v2/gocn/topics.js +0 -31
  7143. package/lib/v2/gocn/utils.js +0 -38
  7144. package/lib/v2/gogoanimehd/maintainer.js +0 -3
  7145. package/lib/v2/gogoanimehd/radar.js +0 -13
  7146. package/lib/v2/gogoanimehd/recent-releases.js +0 -37
  7147. package/lib/v2/gogoanimehd/router.js +0 -3
  7148. package/lib/v2/good/index.js +0 -53
  7149. package/lib/v2/good/maintainer.js +0 -3
  7150. package/lib/v2/good/radar.js +0 -13
  7151. package/lib/v2/good/router.js +0 -3
  7152. package/lib/v2/google/album.js +0 -36
  7153. package/lib/v2/google/alerts.js +0 -33
  7154. package/lib/v2/google/citations.js +0 -45
  7155. package/lib/v2/google/doodles.js +0 -35
  7156. package/lib/v2/google/fonts.js +0 -43
  7157. package/lib/v2/google/maintainer.js +0 -11
  7158. package/lib/v2/google/news.js +0 -66
  7159. package/lib/v2/google/radar.js +0 -64
  7160. package/lib/v2/google/router.js +0 -11
  7161. package/lib/v2/google/scholar.js +0 -45
  7162. package/lib/v2/google/sites.js +0 -75
  7163. package/lib/v2/google/sitesRecentChanges.js +0 -51
  7164. package/lib/v2/gov/anhui/kjt.js +0 -56
  7165. package/lib/v2/gov/beijing/bphc/index.js +0 -54
  7166. package/lib/v2/gov/beijing/jw/tzgg.js +0 -58
  7167. package/lib/v2/gov/beijing/kw/index.js +0 -44
  7168. package/lib/v2/gov/cac/index.js +0 -64
  7169. package/lib/v2/gov/ccdi/index.js +0 -18
  7170. package/lib/v2/gov/ccdi/utils.js +0 -94
  7171. package/lib/v2/gov/chinatax/latest.js +0 -48
  7172. package/lib/v2/gov/chongqing/gzw.js +0 -68
  7173. package/lib/v2/gov/chongqing/rsks.js +0 -38
  7174. package/lib/v2/gov/chongqing/sydwgkzp.js +0 -47
  7175. package/lib/v2/gov/cmse/fxrw.js +0 -40
  7176. package/lib/v2/gov/cmse/index.js +0 -67
  7177. package/lib/v2/gov/cnnic/index.js +0 -54
  7178. package/lib/v2/gov/csrc/auditstatus.js +0 -54
  7179. package/lib/v2/gov/csrc/news.js +0 -69
  7180. package/lib/v2/gov/customs/list.js +0 -80
  7181. package/lib/v2/gov/customs/utils.js +0 -21
  7182. package/lib/v2/gov/dianbai/dianbai.js +0 -18
  7183. package/lib/v2/gov/forestry/gjlckjdjt.js +0 -96
  7184. package/lib/v2/gov/gaozhou/gaozhou.js +0 -19
  7185. package/lib/v2/gov/general/general.js +0 -250
  7186. package/lib/v2/gov/guangdong/tqyb/sncsyjxh.js +0 -37
  7187. package/lib/v2/gov/guangdong/tqyb/tfxtq.js +0 -30
  7188. package/lib/v2/gov/gz/index.js +0 -38
  7189. package/lib/v2/gov/hebei/czt.js +0 -53
  7190. package/lib/v2/gov/huazhou/huazhou.js +0 -19
  7191. package/lib/v2/gov/huizhou/zwgk/index.js +0 -58
  7192. package/lib/v2/gov/hunan/changsha/major-email.js +0 -52
  7193. package/lib/v2/gov/immiau/news.js +0 -43
  7194. package/lib/v2/gov/jinan/healthcommission/medical_exam_notice.js +0 -49
  7195. package/lib/v2/gov/maintainer.js +0 -98
  7196. package/lib/v2/gov/maoming/maoming.js +0 -417
  7197. package/lib/v2/gov/maonan/maonan.js +0 -100
  7198. package/lib/v2/gov/mee/ywdt.js +0 -80
  7199. package/lib/v2/gov/mem/sgcc.js +0 -64
  7200. package/lib/v2/gov/mfa/wjdt.js +0 -67
  7201. package/lib/v2/gov/mgs/mgs.js +0 -19
  7202. package/lib/v2/gov/miit/wjfb.js +0 -61
  7203. package/lib/v2/gov/miit/wjgs.js +0 -62
  7204. package/lib/v2/gov/miit/yjzj.js +0 -59
  7205. package/lib/v2/gov/miit/zcjd.js +0 -62
  7206. package/lib/v2/gov/miit/zcwj.js +0 -53
  7207. package/lib/v2/gov/mmht/mmht.js +0 -19
  7208. package/lib/v2/gov/moa/moa.js +0 -164
  7209. package/lib/v2/gov/moa/zdscxx.js +0 -104
  7210. package/lib/v2/gov/moe/moe.js +0 -89
  7211. package/lib/v2/gov/moe/s78.js +0 -44
  7212. package/lib/v2/gov/mofcom/article.js +0 -68
  7213. package/lib/v2/gov/moj/aac/news.js +0 -49
  7214. package/lib/v2/gov/mot/index.js +0 -66
  7215. package/lib/v2/gov/news/index.js +0 -119
  7216. package/lib/v2/gov/nifdc/index.js +0 -71
  7217. package/lib/v2/gov/nmpa/generic.js +0 -61
  7218. package/lib/v2/gov/nopss/index.js +0 -57
  7219. package/lib/v2/gov/npc/index.js +0 -47
  7220. package/lib/v2/gov/nrta/dsj.js +0 -59
  7221. package/lib/v2/gov/nrta/news.js +0 -62
  7222. package/lib/v2/gov/nsfc/index.js +0 -85
  7223. package/lib/v2/gov/nsfc/shortcuts.js +0 -52
  7224. package/lib/v2/gov/pbc/goutongjiaoliu.js +0 -58
  7225. package/lib/v2/gov/pbc/gzlw.js +0 -27
  7226. package/lib/v2/gov/pbc/tradeAnnouncement.js +0 -57
  7227. package/lib/v2/gov/pbc/utils.js +0 -20
  7228. package/lib/v2/gov/pbc/zcyj.js +0 -29
  7229. package/lib/v2/gov/radar.js +0 -1448
  7230. package/lib/v2/gov/router.js +0 -90
  7231. package/lib/v2/gov/samr/xgzlyhd.js +0 -100
  7232. package/lib/v2/gov/sasac/generic.js +0 -42
  7233. package/lib/v2/gov/sdb/sdb.js +0 -19
  7234. package/lib/v2/gov/shaanxi/kjt.js +0 -55
  7235. package/lib/v2/gov/shanghai/rsj/ksxm.js +0 -39
  7236. package/lib/v2/gov/shanghai/wgj/wgj.js +0 -72
  7237. package/lib/v2/gov/shanghai/wsjkw/yqtb/index.js +0 -33
  7238. package/lib/v2/gov/shanghai/yjj/index.js +0 -62
  7239. package/lib/v2/gov/shenzhen/hrss/szksy/index.js +0 -41
  7240. package/lib/v2/gov/shenzhen/xxgk/zfxxgj.js +0 -72
  7241. package/lib/v2/gov/shenzhen/zjj/index.js +0 -45
  7242. package/lib/v2/gov/shenzhen/zzb/index.js +0 -40
  7243. package/lib/v2/gov/sichuan/deyang/govpublicinfo.js +0 -92
  7244. package/lib/v2/gov/sichuan/deyang/mztoday.js +0 -134
  7245. package/lib/v2/gov/stats/index.js +0 -112
  7246. package/lib/v2/gov/taiyuan/rsj.js +0 -41
  7247. package/lib/v2/gov/wuhan/whyw.js +0 -44
  7248. package/lib/v2/gov/xinyi/xinyi.js +0 -19
  7249. package/lib/v2/gov/xuzhou/hrss.js +0 -54
  7250. package/lib/v2/gov/zhejiang/gwy.js +0 -84
  7251. package/lib/v2/gov/zhengce/govall.js +0 -55
  7252. package/lib/v2/gov/zhengce/index.js +0 -99
  7253. package/lib/v2/gov/zhengce/wenjian.js +0 -47
  7254. package/lib/v2/gov/zhengce/zhengceku.js +0 -22
  7255. package/lib/v2/gq/maintainer.js +0 -3
  7256. package/lib/v2/gq/radar.js +0 -13
  7257. package/lib/v2/gq/router.js +0 -3
  7258. package/lib/v2/gq/templates/embed-article.art +0 -1
  7259. package/lib/v2/gq/templates/embed-product.art +0 -4
  7260. package/lib/v2/gq/templates/img.art +0 -6
  7261. package/lib/v2/gq/templates/tw.art +0 -3
  7262. package/lib/v2/gq/templates/videoObject.art +0 -6
  7263. package/lib/v2/gq/templates/youtube.art +0 -3
  7264. package/lib/v2/gq/tw/index.js +0 -165
  7265. package/lib/v2/greasyfork/feedback.js +0 -31
  7266. package/lib/v2/greasyfork/maintainer.js +0 -5
  7267. package/lib/v2/greasyfork/radar.js +0 -25
  7268. package/lib/v2/greasyfork/router.js +0 -5
  7269. package/lib/v2/greasyfork/scripts.js +0 -39
  7270. package/lib/v2/greasyfork/versions.js +0 -29
  7271. package/lib/v2/grist/featured.js +0 -31
  7272. package/lib/v2/grist/index.js +0 -19
  7273. package/lib/v2/grist/maintainer.js +0 -6
  7274. package/lib/v2/grist/radar.js +0 -31
  7275. package/lib/v2/grist/router.js +0 -6
  7276. package/lib/v2/grist/series.js +0 -21
  7277. package/lib/v2/grist/topic.js +0 -21
  7278. package/lib/v2/grist/utils.js +0 -24
  7279. package/lib/v2/grubstreet/index.js +0 -9
  7280. package/lib/v2/grubstreet/maintainer.js +0 -3
  7281. package/lib/v2/grubstreet/radar.js +0 -13
  7282. package/lib/v2/grubstreet/router.js +0 -3
  7283. package/lib/v2/grubstreet/utils.js +0 -84
  7284. package/lib/v2/guancha/headline.js +0 -51
  7285. package/lib/v2/guancha/index.js +0 -159
  7286. package/lib/v2/guancha/maintainer.js +0 -7
  7287. package/lib/v2/guancha/member.js +0 -86
  7288. package/lib/v2/guancha/personalpage.js +0 -72
  7289. package/lib/v2/guancha/radar.js +0 -49
  7290. package/lib/v2/guancha/router.js +0 -7
  7291. package/lib/v2/guancha/topic.js +0 -56
  7292. package/lib/v2/guandian/index.js +0 -37
  7293. package/lib/v2/guandian/maintainer.js +0 -3
  7294. package/lib/v2/guandian/radar.js +0 -13
  7295. package/lib/v2/guandian/router.js +0 -3
  7296. package/lib/v2/guangdiu/cheaps.js +0 -28
  7297. package/lib/v2/guangdiu/index.js +0 -44
  7298. package/lib/v2/guangdiu/maintainer.js +0 -6
  7299. package/lib/v2/guangdiu/radar.js +0 -31
  7300. package/lib/v2/guangdiu/rank.js +0 -38
  7301. package/lib/v2/guangdiu/router.js +0 -6
  7302. package/lib/v2/guangdiu/search.js +0 -40
  7303. package/lib/v2/guangzhoumetro/maintainer.js +0 -3
  7304. package/lib/v2/guangzhoumetro/news.js +0 -37
  7305. package/lib/v2/guangzhoumetro/radar.js +0 -11
  7306. package/lib/v2/guangzhoumetro/router.js +0 -3
  7307. package/lib/v2/guanhai/index.js +0 -47
  7308. package/lib/v2/guanhai/maintainer.js +0 -3
  7309. package/lib/v2/guanhai/radar.js +0 -13
  7310. package/lib/v2/guanhai/router.js +0 -3
  7311. package/lib/v2/guduodata/daily.js +0 -63
  7312. package/lib/v2/guduodata/maintainer.js +0 -3
  7313. package/lib/v2/guduodata/radar.js +0 -13
  7314. package/lib/v2/guduodata/router.js +0 -3
  7315. package/lib/v2/guggenheim/exhibitions.js +0 -29
  7316. package/lib/v2/guggenheim/maintainer.js +0 -3
  7317. package/lib/v2/guggenheim/radar.js +0 -11
  7318. package/lib/v2/guggenheim/router.js +0 -3
  7319. package/lib/v2/gumroad/index.js +0 -39
  7320. package/lib/v2/gumroad/maintainer.js +0 -3
  7321. package/lib/v2/gumroad/radar.js +0 -17
  7322. package/lib/v2/gumroad/router.js +0 -3
  7323. package/lib/v2/guokr/channel.js +0 -47
  7324. package/lib/v2/guokr/maintainer.js +0 -4
  7325. package/lib/v2/guokr/radar.js +0 -19
  7326. package/lib/v2/guokr/router.js +0 -4
  7327. package/lib/v2/guokr/scientific.js +0 -30
  7328. package/lib/v2/gxmzu/ai.js +0 -18
  7329. package/lib/v2/gxmzu/lib.js +0 -70
  7330. package/lib/v2/gxmzu/maintainer.js +0 -5
  7331. package/lib/v2/gxmzu/radar.js +0 -29
  7332. package/lib/v2/gxmzu/router.js +0 -5
  7333. package/lib/v2/gxmzu/utils/index.js +0 -55
  7334. package/lib/v2/gxmzu/yjs.js +0 -18
  7335. package/lib/v2/gz-cmc/index.js +0 -137
  7336. package/lib/v2/gz-cmc/maintainer.js +0 -3
  7337. package/lib/v2/gz-cmc/radar.js +0 -12
  7338. package/lib/v2/gz-cmc/router.js +0 -3
  7339. package/lib/v2/gzdaily/app.js +0 -53
  7340. package/lib/v2/gzdaily/maintainer.js +0 -3
  7341. package/lib/v2/gzdaily/radar.js +0 -12
  7342. package/lib/v2/gzdaily/router.js +0 -3
  7343. package/lib/v2/gzh360/category.js +0 -8
  7344. package/lib/v2/gzh360/gzh.js +0 -18
  7345. package/lib/v2/gzh360/maintainer.js +0 -4
  7346. package/lib/v2/gzh360/radar.js +0 -19
  7347. package/lib/v2/gzh360/router.js +0 -4
  7348. package/lib/v2/gzh360/universal.js +0 -53
  7349. package/lib/v2/gzh360/utils.js +0 -62
  7350. package/lib/v2/gzhu/maintainer.js +0 -3
  7351. package/lib/v2/gzhu/radar.js +0 -13
  7352. package/lib/v2/gzhu/router.js +0 -3
  7353. package/lib/v2/gzhu/yjs.js +0 -31
  7354. package/lib/v2/hackernews/index.js +0 -112
  7355. package/lib/v2/hackernews/maintainer.js +0 -3
  7356. package/lib/v2/hackernews/radar.js +0 -13
  7357. package/lib/v2/hackernews/router.js +0 -3
  7358. package/lib/v2/hackertalk/index.js +0 -23
  7359. package/lib/v2/hackertalk/maintainer.js +0 -3
  7360. package/lib/v2/hackertalk/radar.js +0 -13
  7361. package/lib/v2/hackertalk/router.js +0 -3
  7362. package/lib/v2/hacking8/index.js +0 -45
  7363. package/lib/v2/hacking8/maintainer.js +0 -4
  7364. package/lib/v2/hacking8/radar.js +0 -19
  7365. package/lib/v2/hacking8/router.js +0 -4
  7366. package/lib/v2/hacking8/search.js +0 -48
  7367. package/lib/v2/hackmd/maintainer.js +0 -3
  7368. package/lib/v2/hackmd/profile.js +0 -24
  7369. package/lib/v2/hackmd/radar.js +0 -13
  7370. package/lib/v2/hackmd/router.js +0 -3
  7371. package/lib/v2/hackyournews/index.js +0 -50
  7372. package/lib/v2/hackyournews/maintainer.js +0 -3
  7373. package/lib/v2/hackyournews/radar.js +0 -13
  7374. package/lib/v2/hackyournews/router.js +0 -3
  7375. package/lib/v2/hafu/maintainer.js +0 -3
  7376. package/lib/v2/hafu/news.js +0 -15
  7377. package/lib/v2/hafu/radar.js +0 -23
  7378. package/lib/v2/hafu/router.js +0 -3
  7379. package/lib/v2/hafu/utils.js +0 -205
  7380. package/lib/v2/hakkatv/maintainer.js +0 -3
  7381. package/lib/v2/hakkatv/radar.js +0 -13
  7382. package/lib/v2/hakkatv/router.js +0 -3
  7383. package/lib/v2/hakkatv/type.js +0 -67
  7384. package/lib/v2/hameln/chapter.js +0 -59
  7385. package/lib/v2/hameln/maintainer.js +0 -3
  7386. package/lib/v2/hameln/radar.js +0 -13
  7387. package/lib/v2/hameln/router.js +0 -1
  7388. package/lib/v2/hashnode/blog.js +0 -62
  7389. package/lib/v2/hashnode/maintainer.js +0 -3
  7390. package/lib/v2/hashnode/radar.js +0 -13
  7391. package/lib/v2/hashnode/router.js +0 -3
  7392. package/lib/v2/hbr/maintainer.js +0 -3
  7393. package/lib/v2/hbr/radar.js +0 -13
  7394. package/lib/v2/hbr/router.js +0 -3
  7395. package/lib/v2/hbr/topic.js +0 -56
  7396. package/lib/v2/hdu/cs/notice.js +0 -54
  7397. package/lib/v2/hdu/cs/pg.js +0 -54
  7398. package/lib/v2/hdu/maintainer.js +0 -4
  7399. package/lib/v2/hdu/radar.js +0 -19
  7400. package/lib/v2/hdu/router.js +0 -5
  7401. package/lib/v2/hebtv/maintainer.js +0 -3
  7402. package/lib/v2/hebtv/nong-bo-shi-zai-xing-dong.js +0 -109
  7403. package/lib/v2/hebtv/radar.js +0 -13
  7404. package/lib/v2/hebtv/router.js +0 -3
  7405. package/lib/v2/hellobtc/information.js +0 -51
  7406. package/lib/v2/hellobtc/kepu.js +0 -64
  7407. package/lib/v2/hellobtc/maintainer.js +0 -6
  7408. package/lib/v2/hellobtc/news.js +0 -29
  7409. package/lib/v2/hellobtc/radar.js +0 -85
  7410. package/lib/v2/hellobtc/router.js +0 -6
  7411. package/lib/v2/hellobtc/topic.js +0 -43
  7412. package/lib/v2/hellogithub/index.js +0 -102
  7413. package/lib/v2/hellogithub/maintainer.js +0 -9
  7414. package/lib/v2/hellogithub/radar.js +0 -49
  7415. package/lib/v2/hellogithub/report.js +0 -56
  7416. package/lib/v2/hellogithub/router.js +0 -8
  7417. package/lib/v2/hellogithub/volume.js +0 -50
  7418. package/lib/v2/hex-rays/index.js +0 -47
  7419. package/lib/v2/hex-rays/maintainer.js +0 -3
  7420. package/lib/v2/hex-rays/radar.js +0 -13
  7421. package/lib/v2/hex-rays/router.js +0 -3
  7422. package/lib/v2/hinatazaka46/blog.js +0 -40
  7423. package/lib/v2/hinatazaka46/maintainer.js +0 -4
  7424. package/lib/v2/hinatazaka46/news.js +0 -51
  7425. package/lib/v2/hinatazaka46/radar.js +0 -19
  7426. package/lib/v2/hinatazaka46/router.js +0 -4
  7427. package/lib/v2/hit/hitgs.js +0 -46
  7428. package/lib/v2/hit/jwc.js +0 -60
  7429. package/lib/v2/hit/maintainer.js +0 -5
  7430. package/lib/v2/hit/radar.js +0 -29
  7431. package/lib/v2/hit/router.js +0 -6
  7432. package/lib/v2/hit/today.js +0 -59
  7433. package/lib/v2/hitsz/article.js +0 -41
  7434. package/lib/v2/hitsz/maintainer.js +0 -3
  7435. package/lib/v2/hitsz/radar.js +0 -13
  7436. package/lib/v2/hitsz/router.js +0 -3
  7437. package/lib/v2/hitwh/maintainer.js +0 -3
  7438. package/lib/v2/hitwh/radar.js +0 -13
  7439. package/lib/v2/hitwh/router.js +0 -3
  7440. package/lib/v2/hitwh/today.js +0 -52
  7441. package/lib/v2/hizu/index.js +0 -76
  7442. package/lib/v2/hizu/maintainer.js +0 -3
  7443. package/lib/v2/hizu/radar.js +0 -13
  7444. package/lib/v2/hizu/router.js +0 -3
  7445. package/lib/v2/hjedd/article.js +0 -27
  7446. package/lib/v2/hjedd/hot.js +0 -14
  7447. package/lib/v2/hjedd/latest.js +0 -14
  7448. package/lib/v2/hjedd/maintainer.js +0 -10
  7449. package/lib/v2/hjedd/news.js +0 -14
  7450. package/lib/v2/hjedd/notice.js +0 -14
  7451. package/lib/v2/hjedd/original.js +0 -14
  7452. package/lib/v2/hjedd/radar.js +0 -55
  7453. package/lib/v2/hjedd/router.js +0 -10
  7454. package/lib/v2/hjedd/templates/attachment.art +0 -7
  7455. package/lib/v2/hjedd/top.js +0 -14
  7456. package/lib/v2/hjedd/utils.js +0 -111
  7457. package/lib/v2/hk01/channel.js +0 -23
  7458. package/lib/v2/hk01/hot.js +0 -20
  7459. package/lib/v2/hk01/issue.js +0 -22
  7460. package/lib/v2/hk01/latest.js +0 -20
  7461. package/lib/v2/hk01/maintainer.js +0 -8
  7462. package/lib/v2/hk01/radar.js +0 -43
  7463. package/lib/v2/hk01/router.js +0 -8
  7464. package/lib/v2/hk01/tag.js +0 -22
  7465. package/lib/v2/hk01/utils.js +0 -43
  7466. package/lib/v2/hk01/zone.js +0 -23
  7467. package/lib/v2/hkej/index.js +0 -154
  7468. package/lib/v2/hkej/maintainer.js +0 -3
  7469. package/lib/v2/hkej/radar.js +0 -13
  7470. package/lib/v2/hkej/router.js +0 -3
  7471. package/lib/v2/hkepc/data.js +0 -62
  7472. package/lib/v2/hkepc/index.js +0 -97
  7473. package/lib/v2/hkepc/maintainer.js +0 -3
  7474. package/lib/v2/hkepc/radar.js +0 -19
  7475. package/lib/v2/hkepc/router.js +0 -3
  7476. package/lib/v2/hket/index.js +0 -122
  7477. package/lib/v2/hket/maintainer.js +0 -3
  7478. package/lib/v2/hket/radar.js +0 -45
  7479. package/lib/v2/hket/router.js +0 -3
  7480. package/lib/v2/hket/templates/description.art +0 -1
  7481. package/lib/v2/hket/templates/image.art +0 -1
  7482. package/lib/v2/hkjunkcall/index.js +0 -53
  7483. package/lib/v2/hkjunkcall/maintainer.js +0 -3
  7484. package/lib/v2/hkjunkcall/radar.js +0 -13
  7485. package/lib/v2/hkjunkcall/router.js +0 -3
  7486. package/lib/v2/hljucm/maintainer.js +0 -3
  7487. package/lib/v2/hljucm/radar.js +0 -13
  7488. package/lib/v2/hljucm/router.js +0 -3
  7489. package/lib/v2/hljucm/yjsy.js +0 -56
  7490. package/lib/v2/hnrb/index.js +0 -85
  7491. package/lib/v2/hnrb/maintainer.js +0 -3
  7492. package/lib/v2/hnrb/radar.js +0 -13
  7493. package/lib/v2/hnrb/router.js +0 -3
  7494. package/lib/v2/hnu/careers.js +0 -33
  7495. package/lib/v2/hnu/maintainer.js +0 -3
  7496. package/lib/v2/hnu/radar.js +0 -12
  7497. package/lib/v2/hnu/router.js +0 -3
  7498. package/lib/v2/hongkong/chp.js +0 -103
  7499. package/lib/v2/hongkong/dh.js +0 -53
  7500. package/lib/v2/hongkong/maintainer.js +0 -4
  7501. package/lib/v2/hongkong/radar.js +0 -19
  7502. package/lib/v2/hongkong/router.js +0 -4
  7503. package/lib/v2/hostmonit/cloudflareyes.js +0 -91
  7504. package/lib/v2/hostmonit/maintainer.js +0 -3
  7505. package/lib/v2/hostmonit/radar.js +0 -17
  7506. package/lib/v2/hostmonit/router.js +0 -8
  7507. package/lib/v2/hotchina/index.js +0 -55
  7508. package/lib/v2/hotchina/maintainer.js +0 -5
  7509. package/lib/v2/hotchina/radar.js +0 -25
  7510. package/lib/v2/hotchina/router.js +0 -3
  7511. package/lib/v2/hotukdeals/hottest.js +0 -25
  7512. package/lib/v2/hotukdeals/index.js +0 -34
  7513. package/lib/v2/hotukdeals/maintainer.js +0 -4
  7514. package/lib/v2/hotukdeals/radar.js +0 -37
  7515. package/lib/v2/hotukdeals/router.js +0 -4
  7516. package/lib/v2/houxu/events.js +0 -37
  7517. package/lib/v2/houxu/index.js +0 -37
  7518. package/lib/v2/houxu/lives.js +0 -35
  7519. package/lib/v2/houxu/maintainer.js +0 -6
  7520. package/lib/v2/houxu/memory.js +0 -37
  7521. package/lib/v2/houxu/radar.js +0 -31
  7522. package/lib/v2/houxu/router.js +0 -8
  7523. package/lib/v2/hrbeu/gx/card.js +0 -42
  7524. package/lib/v2/hrbeu/gx/list.js +0 -65
  7525. package/lib/v2/hrbeu/job/bigemploy.js +0 -25
  7526. package/lib/v2/hrbeu/job/calendar.js +0 -46
  7527. package/lib/v2/hrbeu/job/list.js +0 -65
  7528. package/lib/v2/hrbeu/maintainer.js +0 -9
  7529. package/lib/v2/hrbeu/radar.js +0 -81
  7530. package/lib/v2/hrbeu/router.js +0 -10
  7531. package/lib/v2/hrbeu/uae/news.js +0 -66
  7532. package/lib/v2/hrbeu/ugs/news.js +0 -98
  7533. package/lib/v2/hrbeu/yjsy/list.js +0 -57
  7534. package/lib/v2/hrbust/jwzx.js +0 -36
  7535. package/lib/v2/hrbust/maintainer.js +0 -3
  7536. package/lib/v2/hrbust/radar.js +0 -13
  7537. package/lib/v2/hrbust/router.js +0 -3
  7538. package/lib/v2/hrbust/templates/description.art +0 -1
  7539. package/lib/v2/hrbust/utils.js +0 -71
  7540. package/lib/v2/huangz/index.js +0 -29
  7541. package/lib/v2/huangz/maintainer.js +0 -3
  7542. package/lib/v2/huangz/radar.js +0 -13
  7543. package/lib/v2/huangz/router.js +0 -3
  7544. package/lib/v2/huanqiu/index.js +0 -72
  7545. package/lib/v2/huanqiu/maintainer.js +0 -3
  7546. package/lib/v2/huanqiu/radar.js +0 -13
  7547. package/lib/v2/huanqiu/router.js +0 -3
  7548. package/lib/v2/huggingface/daily-papers.js +0 -23
  7549. package/lib/v2/huggingface/maintainer.js +0 -3
  7550. package/lib/v2/huggingface/radar.js +0 -13
  7551. package/lib/v2/huggingface/router.js +0 -3
  7552. package/lib/v2/hunanpea/maintainer.js +0 -3
  7553. package/lib/v2/hunanpea/radar.js +0 -13
  7554. package/lib/v2/hunanpea/router.js +0 -3
  7555. package/lib/v2/hunanpea/rsks.js +0 -42
  7556. package/lib/v2/hunau/gfxy/index.js +0 -11
  7557. package/lib/v2/hunau/ied.js +0 -12
  7558. package/lib/v2/hunau/jwc.js +0 -10
  7559. package/lib/v2/hunau/maintainer.js +0 -6
  7560. package/lib/v2/hunau/radar.js +0 -37
  7561. package/lib/v2/hunau/router.js +0 -6
  7562. package/lib/v2/hunau/utils/categoryTitle.js +0 -31
  7563. package/lib/v2/hunau/utils/common.js +0 -61
  7564. package/lib/v2/hunau/utils/indexPage.js +0 -10
  7565. package/lib/v2/hunau/utils/newsContent.js +0 -47
  7566. package/lib/v2/hunau/xky/index.js +0 -12
  7567. package/lib/v2/huoxian/maintainer.js +0 -3
  7568. package/lib/v2/huoxian/radar.js +0 -11
  7569. package/lib/v2/huoxian/router.js +0 -3
  7570. package/lib/v2/huoxian/zone.js +0 -19
  7571. package/lib/v2/hupu/all.js +0 -73
  7572. package/lib/v2/hupu/bbs.js +0 -85
  7573. package/lib/v2/hupu/index.js +0 -80
  7574. package/lib/v2/hupu/maintainer.js +0 -7
  7575. package/lib/v2/hupu/radar.js +0 -35
  7576. package/lib/v2/hupu/router.js +0 -7
  7577. package/lib/v2/hust/aia/news.js +0 -26
  7578. package/lib/v2/hust/aia/notice.js +0 -29
  7579. package/lib/v2/hust/maintainer.js +0 -7
  7580. package/lib/v2/hust/radar.js +0 -27
  7581. package/lib/v2/hust/router.js +0 -7
  7582. package/lib/v2/hust/yjs.js +0 -27
  7583. package/lib/v2/huxiu/article.js +0 -33
  7584. package/lib/v2/huxiu/author.js +0 -36
  7585. package/lib/v2/huxiu/briefColumn.js +0 -41
  7586. package/lib/v2/huxiu/collection.js +0 -39
  7587. package/lib/v2/huxiu/maintainer.js +0 -8
  7588. package/lib/v2/huxiu/moment.js +0 -39
  7589. package/lib/v2/huxiu/radar.js +0 -47
  7590. package/lib/v2/huxiu/router.js +0 -9
  7591. package/lib/v2/huxiu/search.js +0 -40
  7592. package/lib/v2/huxiu/tag.js +0 -38
  7593. package/lib/v2/huxiu/templates/brief.art +0 -22
  7594. package/lib/v2/huxiu/templates/img.art +0 -3
  7595. package/lib/v2/huxiu/templates/moment.art +0 -16
  7596. package/lib/v2/huxiu/templates/video.art +0 -7
  7597. package/lib/v2/huxiu/utils.js +0 -154
  7598. package/lib/v2/hyqss/index.js +0 -89
  7599. package/lib/v2/hyqss/maintainer.js +0 -4
  7600. package/lib/v2/hyqss/radar.js +0 -22
  7601. package/lib/v2/hyqss/router.js +0 -3
  7602. package/lib/v2/i-cable/category.js +0 -74
  7603. package/lib/v2/i-cable/maintainer.js +0 -3
  7604. package/lib/v2/i-cable/radar.js +0 -13
  7605. package/lib/v2/i-cable/router.js +0 -3
  7606. package/lib/v2/i-cable/templates/desc.art +0 -8
  7607. package/lib/v2/ianspriggs/index.js +0 -90
  7608. package/lib/v2/ianspriggs/maintainer.js +0 -3
  7609. package/lib/v2/ianspriggs/radar.js +0 -17
  7610. package/lib/v2/ianspriggs/router.js +0 -3
  7611. package/lib/v2/ibc/maintainer.js +0 -4
  7612. package/lib/v2/ibc/maitta.js +0 -32
  7613. package/lib/v2/ibc/radar.js +0 -19
  7614. package/lib/v2/ibc/radio.js +0 -73
  7615. package/lib/v2/ibc/router.js +0 -4
  7616. package/lib/v2/ibc/templates/description.art +0 -6
  7617. package/lib/v2/icac/maintainer.js +0 -3
  7618. package/lib/v2/icac/news.js +0 -46
  7619. package/lib/v2/icac/radar.js +0 -13
  7620. package/lib/v2/icac/router.js +0 -3
  7621. package/lib/v2/icac/utils.js +0 -17
  7622. package/lib/v2/icbc/maintainer.js +0 -3
  7623. package/lib/v2/icbc/radar.js +0 -13
  7624. package/lib/v2/icbc/router.js +0 -3
  7625. package/lib/v2/icbc/whpj.js +0 -57
  7626. package/lib/v2/idolypride/maintainer.js +0 -3
  7627. package/lib/v2/idolypride/news.js +0 -29
  7628. package/lib/v2/idolypride/radar.js +0 -13
  7629. package/lib/v2/idolypride/router.js +0 -3
  7630. package/lib/v2/ieee/earlyaccess.js +0 -77
  7631. package/lib/v2/ieee/journal.js +0 -78
  7632. package/lib/v2/ieee/maintainer.js +0 -5
  7633. package/lib/v2/ieee/radar.js +0 -25
  7634. package/lib/v2/ieee/recent.js +0 -95
  7635. package/lib/v2/ieee/router.js +0 -7
  7636. package/lib/v2/ieee/templates/description.art +0 -11
  7637. package/lib/v2/ieee-security/maintainer.js +0 -3
  7638. package/lib/v2/ieee-security/radar.js +0 -13
  7639. package/lib/v2/ieee-security/router.js +0 -3
  7640. package/lib/v2/ieee-security/sp.js +0 -36
  7641. package/lib/v2/ielts/index.js +0 -64
  7642. package/lib/v2/ielts/maintainer.js +0 -3
  7643. package/lib/v2/ielts/radar.js +0 -13
  7644. package/lib/v2/ielts/router.js +0 -3
  7645. package/lib/v2/ifeng/feng.js +0 -69
  7646. package/lib/v2/ifeng/maintainer.js +0 -4
  7647. package/lib/v2/ifeng/news.js +0 -54
  7648. package/lib/v2/ifeng/radar.js +0 -28
  7649. package/lib/v2/ifeng/router.js +0 -4
  7650. package/lib/v2/ifeng/templates/video.art +0 -5
  7651. package/lib/v2/ifeng/utils.js +0 -26
  7652. package/lib/v2/ifi-audio/download.js +0 -34
  7653. package/lib/v2/ifi-audio/maintainer.js +0 -3
  7654. package/lib/v2/ifi-audio/radar.js +0 -11
  7655. package/lib/v2/ifi-audio/router.js +0 -3
  7656. package/lib/v2/iguoguo/index.js +0 -75
  7657. package/lib/v2/iguoguo/maintainer.js +0 -3
  7658. package/lib/v2/iguoguo/radar.js +0 -11
  7659. package/lib/v2/iguoguo/router.js +0 -3
  7660. package/lib/v2/iiilab/index.js +0 -24
  7661. package/lib/v2/iiilab/maintainer.js +0 -3
  7662. package/lib/v2/iiilab/radar.js +0 -13
  7663. package/lib/v2/iiilab/router.js +0 -3
  7664. package/lib/v2/ikea/cn/family_offers.js +0 -70
  7665. package/lib/v2/ikea/cn/low_price.js +0 -22
  7666. package/lib/v2/ikea/cn/new.js +0 -39
  7667. package/lib/v2/ikea/cn/utils.js +0 -42
  7668. package/lib/v2/ikea/gb/new.js +0 -54
  7669. package/lib/v2/ikea/gb/offer.js +0 -69
  7670. package/lib/v2/ikea/maintainer.js +0 -7
  7671. package/lib/v2/ikea/radar.js +0 -42
  7672. package/lib/v2/ikea/router.js +0 -7
  7673. package/lib/v2/imagemagick/changelog.js +0 -46
  7674. package/lib/v2/imagemagick/maintainer.js +0 -3
  7675. package/lib/v2/imagemagick/radar.js +0 -13
  7676. package/lib/v2/imagemagick/router.js +0 -3
  7677. package/lib/v2/independent/maintainer.js +0 -3
  7678. package/lib/v2/independent/ps5-stock-uk.js +0 -27
  7679. package/lib/v2/independent/radar.js +0 -13
  7680. package/lib/v2/independent/router.js +0 -3
  7681. package/lib/v2/indiansinkuwait/latest.js +0 -43
  7682. package/lib/v2/indiansinkuwait/maintainer.js +0 -3
  7683. package/lib/v2/indiansinkuwait/radar.js +0 -13
  7684. package/lib/v2/indiansinkuwait/router.js +0 -3
  7685. package/lib/v2/inewsweek/index.js +0 -53
  7686. package/lib/v2/inewsweek/maintainer.js +0 -3
  7687. package/lib/v2/inewsweek/radar.js +0 -13
  7688. package/lib/v2/inewsweek/router.js +0 -3
  7689. package/lib/v2/infoq/maintainer.js +0 -4
  7690. package/lib/v2/infoq/radar.js +0 -19
  7691. package/lib/v2/infoq/recommend.js +0 -25
  7692. package/lib/v2/infoq/router.js +0 -4
  7693. package/lib/v2/infoq/topic.js +0 -42
  7694. package/lib/v2/infoq/utils.js +0 -111
  7695. package/lib/v2/informs/index.js +0 -74
  7696. package/lib/v2/informs/maintainer.js +0 -3
  7697. package/lib/v2/informs/radar.js +0 -109
  7698. package/lib/v2/informs/router.js +0 -3
  7699. package/lib/v2/inoreader/index.js +0 -46
  7700. package/lib/v2/inoreader/maintainer.js +0 -4
  7701. package/lib/v2/inoreader/radar.js +0 -23
  7702. package/lib/v2/inoreader/router.js +0 -4
  7703. package/lib/v2/inoreader/rss.js +0 -47
  7704. package/lib/v2/instagram/common-utils.js +0 -59
  7705. package/lib/v2/instagram/maintainer.js +0 -4
  7706. package/lib/v2/instagram/private-api/index.js +0 -94
  7707. package/lib/v2/instagram/private-api/utils.js +0 -37
  7708. package/lib/v2/instagram/radar.js +0 -19
  7709. package/lib/v2/instagram/router.js +0 -4
  7710. package/lib/v2/instagram/templates/images.art +0 -5
  7711. package/lib/v2/instagram/templates/video.art +0 -5
  7712. package/lib/v2/instagram/web-api/index.js +0 -70
  7713. package/lib/v2/instagram/web-api/utils.js +0 -99
  7714. package/lib/v2/instructables/maintainer.js +0 -3
  7715. package/lib/v2/instructables/projects.js +0 -56
  7716. package/lib/v2/instructables/radar.js +0 -19
  7717. package/lib/v2/instructables/router.js +0 -3
  7718. package/lib/v2/iqilu/maintainer.js +0 -3
  7719. package/lib/v2/iqilu/program.js +0 -98
  7720. package/lib/v2/iqilu/radar.js +0 -107
  7721. package/lib/v2/iqilu/router.js +0 -3
  7722. package/lib/v2/iqiyi/album.js +0 -62
  7723. package/lib/v2/iqiyi/maintainer.js +0 -4
  7724. package/lib/v2/iqiyi/radar.js +0 -24
  7725. package/lib/v2/iqiyi/router.js +0 -4
  7726. package/lib/v2/iqiyi/video.js +0 -52
  7727. package/lib/v2/iqnew/latest.js +0 -57
  7728. package/lib/v2/iqnew/maintainer.js +0 -3
  7729. package/lib/v2/iqnew/radar.js +0 -13
  7730. package/lib/v2/iqnew/router.js +0 -3
  7731. package/lib/v2/iresearch/maintainer.js +0 -4
  7732. package/lib/v2/iresearch/radar.js +0 -19
  7733. package/lib/v2/iresearch/report.js +0 -60
  7734. package/lib/v2/iresearch/router.js +0 -4
  7735. package/lib/v2/iresearch/weekly.js +0 -39
  7736. package/lib/v2/islander/maintainer.js +0 -4
  7737. package/lib/v2/islander/radar.js +0 -19
  7738. package/lib/v2/islander/router.js +0 -4
  7739. package/lib/v2/islander/search.js +0 -33
  7740. package/lib/v2/islander/top30event.js +0 -28
  7741. package/lib/v2/issuehunt/funded.js +0 -28
  7742. package/lib/v2/issuehunt/maintainer.js +0 -3
  7743. package/lib/v2/issuehunt/radar.js +0 -13
  7744. package/lib/v2/issuehunt/router.js +0 -3
  7745. package/lib/v2/itch/devlog.js +0 -66
  7746. package/lib/v2/itch/index.js +0 -56
  7747. package/lib/v2/itch/maintainer.js +0 -5
  7748. package/lib/v2/itch/posts.js +0 -41
  7749. package/lib/v2/itch/radar.js +0 -28
  7750. package/lib/v2/itch/router.js +0 -5
  7751. package/lib/v2/ithome/index.js +0 -85
  7752. package/lib/v2/ithome/maintainer.js +0 -7
  7753. package/lib/v2/ithome/radar.js +0 -120
  7754. package/lib/v2/ithome/ranking.js +0 -69
  7755. package/lib/v2/ithome/router.js +0 -7
  7756. package/lib/v2/ithome/tag.js +0 -59
  7757. package/lib/v2/ithome/tw/feeds.js +0 -38
  7758. package/lib/v2/ithome/zt.js +0 -62
  7759. package/lib/v2/iwara/index.js +0 -55
  7760. package/lib/v2/iwara/maintainer.js +0 -4
  7761. package/lib/v2/iwara/radar.js +0 -25
  7762. package/lib/v2/iwara/router.js +0 -4
  7763. package/lib/v2/iwara/subscriptions.js +0 -148
  7764. package/lib/v2/ixigua/maintainer.js +0 -3
  7765. package/lib/v2/ixigua/radar.js +0 -13
  7766. package/lib/v2/ixigua/router.js +0 -3
  7767. package/lib/v2/ixigua/userVideo.js +0 -40
  7768. package/lib/v2/jandan/index.js +0 -31
  7769. package/lib/v2/jandan/maintainer.js +0 -4
  7770. package/lib/v2/jandan/radar.js +0 -21
  7771. package/lib/v2/jandan/router.js +0 -4
  7772. package/lib/v2/jandan/section.js +0 -48
  7773. package/lib/v2/japanpost/maintainer.js +0 -3
  7774. package/lib/v2/japanpost/radar.js +0 -22
  7775. package/lib/v2/japanpost/router.js +0 -3
  7776. package/lib/v2/japanpost/track.js +0 -114
  7777. package/lib/v2/japanpost/utils.js +0 -93
  7778. package/lib/v2/javbus/index.js +0 -176
  7779. package/lib/v2/javbus/maintainer.js +0 -37
  7780. package/lib/v2/javbus/radar.js +0 -149
  7781. package/lib/v2/javbus/router.js +0 -3
  7782. package/lib/v2/javdb/actors.js +0 -20
  7783. package/lib/v2/javdb/index.js +0 -32
  7784. package/lib/v2/javdb/lists.js +0 -28
  7785. package/lib/v2/javdb/maintainer.js +0 -11
  7786. package/lib/v2/javdb/makers.js +0 -21
  7787. package/lib/v2/javdb/radar.js +0 -55
  7788. package/lib/v2/javdb/rankings.js +0 -12
  7789. package/lib/v2/javdb/router.js +0 -11
  7790. package/lib/v2/javdb/search.js +0 -33
  7791. package/lib/v2/javdb/series.js +0 -21
  7792. package/lib/v2/javdb/tags.js +0 -12
  7793. package/lib/v2/javdb/utils.js +0 -80
  7794. package/lib/v2/javlibrary/bestrated.js +0 -9
  7795. package/lib/v2/javlibrary/bestreviews.js +0 -9
  7796. package/lib/v2/javlibrary/genre.js +0 -10
  7797. package/lib/v2/javlibrary/maintainer.js +0 -12
  7798. package/lib/v2/javlibrary/maker.js +0 -10
  7799. package/lib/v2/javlibrary/mostwanted.js +0 -9
  7800. package/lib/v2/javlibrary/newentries.js +0 -8
  7801. package/lib/v2/javlibrary/newrelease.js +0 -9
  7802. package/lib/v2/javlibrary/radar.js +0 -79
  7803. package/lib/v2/javlibrary/router.js +0 -20
  7804. package/lib/v2/javlibrary/star.js +0 -10
  7805. package/lib/v2/javlibrary/update.js +0 -8
  7806. package/lib/v2/javlibrary/user.js +0 -10
  7807. package/lib/v2/javlibrary/utils.js +0 -99
  7808. package/lib/v2/jd/maintainer.js +0 -3
  7809. package/lib/v2/jd/price.js +0 -42
  7810. package/lib/v2/jd/radar.js +0 -13
  7811. package/lib/v2/jd/router.js +0 -3
  7812. package/lib/v2/jewishmuseum/exhibitions.js +0 -16
  7813. package/lib/v2/jewishmuseum/maintainer.js +0 -3
  7814. package/lib/v2/jewishmuseum/radar.js +0 -11
  7815. package/lib/v2/jewishmuseum/router.js +0 -3
  7816. package/lib/v2/jiaoliudao/index.js +0 -35
  7817. package/lib/v2/jiaoliudao/maintainer.js +0 -3
  7818. package/lib/v2/jiaoliudao/radar.js +0 -13
  7819. package/lib/v2/jiaoliudao/router.js +0 -3
  7820. package/lib/v2/jiemian/list.js +0 -60
  7821. package/lib/v2/jiemian/maintainer.js +0 -4
  7822. package/lib/v2/jiemian/radar.js +0 -19
  7823. package/lib/v2/jiemian/router.js +0 -4
  7824. package/lib/v2/jike/maintainer.js +0 -5
  7825. package/lib/v2/jike/radar.js +0 -54
  7826. package/lib/v2/jike/router.js +0 -5
  7827. package/lib/v2/jike/topic.js +0 -42
  7828. package/lib/v2/jike/topicText.js +0 -21
  7829. package/lib/v2/jike/user.js +0 -158
  7830. package/lib/v2/jike/utils.js +0 -197
  7831. package/lib/v2/jin10/index.js +0 -58
  7832. package/lib/v2/jin10/maintainer.js +0 -4
  7833. package/lib/v2/jin10/radar.js +0 -21
  7834. package/lib/v2/jin10/router.js +0 -4
  7835. package/lib/v2/jin10/topic.js +0 -50
  7836. package/lib/v2/jisilu/index.js +0 -90
  7837. package/lib/v2/jisilu/maintainer.js +0 -3
  7838. package/lib/v2/jisilu/radar.js +0 -25
  7839. package/lib/v2/jisilu/router.js +0 -3
  7840. package/lib/v2/jornada/index.js +0 -59
  7841. package/lib/v2/jornada/maintainer.js +0 -3
  7842. package/lib/v2/jornada/radar.js +0 -13
  7843. package/lib/v2/jornada/router.js +0 -3
  7844. package/lib/v2/jou/home.js +0 -18
  7845. package/lib/v2/jou/maintainer.js +0 -4
  7846. package/lib/v2/jou/radar.js +0 -21
  7847. package/lib/v2/jou/router.js +0 -6
  7848. package/lib/v2/jou/utils/index.js +0 -60
  7849. package/lib/v2/jou/yz.js +0 -18
  7850. package/lib/v2/jseea/maintainer.js +0 -3
  7851. package/lib/v2/jseea/news.js +0 -64
  7852. package/lib/v2/jseea/radar.js +0 -13
  7853. package/lib/v2/jseea/router.js +0 -3
  7854. package/lib/v2/juejin/books.js +0 -30
  7855. package/lib/v2/juejin/category.js +0 -39
  7856. package/lib/v2/juejin/collection.js +0 -26
  7857. package/lib/v2/juejin/column.js +0 -31
  7858. package/lib/v2/juejin/favorites.js +0 -39
  7859. package/lib/v2/juejin/maintainer.js +0 -13
  7860. package/lib/v2/juejin/news.js +0 -25
  7861. package/lib/v2/juejin/pins.js +0 -67
  7862. package/lib/v2/juejin/posts.js +0 -25
  7863. package/lib/v2/juejin/radar.js +0 -61
  7864. package/lib/v2/juejin/router.js +0 -13
  7865. package/lib/v2/juejin/shares.js +0 -26
  7866. package/lib/v2/juejin/tag.js +0 -40
  7867. package/lib/v2/juejin/trending.js +0 -79
  7868. package/lib/v2/juejin/utils.js +0 -56
  7869. package/lib/v2/jump/discount.js +0 -120
  7870. package/lib/v2/jump/maintainer.js +0 -3
  7871. package/lib/v2/jump/radar.js +0 -13
  7872. package/lib/v2/jump/router.js +0 -3
  7873. package/lib/v2/kakuyomu/episode.js +0 -54
  7874. package/lib/v2/kakuyomu/maintainer.js +0 -3
  7875. package/lib/v2/kakuyomu/radar.js +0 -13
  7876. package/lib/v2/kakuyomu/router.js +0 -1
  7877. package/lib/v2/kamen-rider-official/maintainer.js +0 -3
  7878. package/lib/v2/kamen-rider-official/news.js +0 -110
  7879. package/lib/v2/kamen-rider-official/radar.js +0 -18
  7880. package/lib/v2/kamen-rider-official/router.js +0 -3
  7881. package/lib/v2/kantarworldpanel/index.js +0 -96
  7882. package/lib/v2/kantarworldpanel/maintainer.js +0 -3
  7883. package/lib/v2/kantarworldpanel/radar.js +0 -199
  7884. package/lib/v2/kantarworldpanel/router.js +0 -3
  7885. package/lib/v2/kbs/maintainer.js +0 -4
  7886. package/lib/v2/kbs/news.js +0 -67
  7887. package/lib/v2/kbs/radar.js +0 -19
  7888. package/lib/v2/kbs/router.js +0 -4
  7889. package/lib/v2/kbs/today.js +0 -56
  7890. package/lib/v2/kcna/maintainer.js +0 -3
  7891. package/lib/v2/kcna/news.js +0 -81
  7892. package/lib/v2/kcna/radar.js +0 -61
  7893. package/lib/v2/kcna/router.js +0 -3
  7894. package/lib/v2/kcna/utils.js +0 -64
  7895. package/lib/v2/ke/maintainer.js +0 -3
  7896. package/lib/v2/ke/radar.js +0 -13
  7897. package/lib/v2/ke/results.js +0 -36
  7898. package/lib/v2/ke/router.js +0 -3
  7899. package/lib/v2/keep/maintainer.js +0 -3
  7900. package/lib/v2/keep/radar.js +0 -13
  7901. package/lib/v2/keep/router.js +0 -3
  7902. package/lib/v2/keep/user.js +0 -57
  7903. package/lib/v2/kemono/index.js +0 -127
  7904. package/lib/v2/kemono/maintainer.js +0 -4
  7905. package/lib/v2/kemono/radar.js +0 -13
  7906. package/lib/v2/kemono/router.js +0 -3
  7907. package/lib/v2/keylol/index.js +0 -82
  7908. package/lib/v2/keylol/maintainer.js +0 -3
  7909. package/lib/v2/keylol/radar.js +0 -18
  7910. package/lib/v2/keylol/router.js +0 -3
  7911. package/lib/v2/kimlaw/maintainer.js +0 -3
  7912. package/lib/v2/kimlaw/radar.js +0 -13
  7913. package/lib/v2/kimlaw/router.js +0 -3
  7914. package/lib/v2/kimlaw/thesis.js +0 -44
  7915. package/lib/v2/knowmedia/index.js +0 -38
  7916. package/lib/v2/knowmedia/maintainer.js +0 -3
  7917. package/lib/v2/knowmedia/radar.js +0 -31
  7918. package/lib/v2/knowmedia/router.js +0 -3
  7919. package/lib/v2/knowmedia/templates/desc.art +0 -3
  7920. package/lib/v2/kuaidi100/index.js +0 -47
  7921. package/lib/v2/kuaidi100/maintainer.js +0 -4
  7922. package/lib/v2/kuaidi100/radar.js +0 -25
  7923. package/lib/v2/kuaidi100/router.js +0 -4
  7924. package/lib/v2/kuaidi100/supported_company.js +0 -16
  7925. package/lib/v2/kuaidi100/utils.js +0 -258
  7926. package/lib/v2/kunchengblog/essay.js +0 -66
  7927. package/lib/v2/kunchengblog/maintainer.js +0 -3
  7928. package/lib/v2/kunchengblog/radar.js +0 -13
  7929. package/lib/v2/kunchengblog/router.js +0 -3
  7930. package/lib/v2/kuwaitlocal/index.js +0 -47
  7931. package/lib/v2/kuwaitlocal/maintainer.js +0 -4
  7932. package/lib/v2/kuwaitlocal/radar.js +0 -19
  7933. package/lib/v2/kuwaitlocal/router.js +0 -3
  7934. package/lib/v2/kyodonews/index.js +0 -123
  7935. package/lib/v2/kyodonews/maintainer.js +0 -3
  7936. package/lib/v2/kyodonews/radar.js +0 -33
  7937. package/lib/v2/kyodonews/router.js +0 -3
  7938. package/lib/v2/lang/maintainer.js +0 -3
  7939. package/lib/v2/lang/radar.js +0 -13
  7940. package/lib/v2/lang/room.js +0 -40
  7941. package/lib/v2/lang/router.js +0 -3
  7942. package/lib/v2/lanqiao/author.js +0 -61
  7943. package/lib/v2/lanqiao/courses.js +0 -62
  7944. package/lib/v2/lanqiao/maintainer.js +0 -5
  7945. package/lib/v2/lanqiao/questions.js +0 -52
  7946. package/lib/v2/lanqiao/radar.js +0 -25
  7947. package/lib/v2/lanqiao/router.js +0 -5
  7948. package/lib/v2/lanqiao/utils.js +0 -12
  7949. package/lib/v2/laohu8/maintainer.js +0 -3
  7950. package/lib/v2/laohu8/personal.js +0 -32
  7951. package/lib/v2/laohu8/radar.js +0 -13
  7952. package/lib/v2/laohu8/router.js +0 -3
  7953. package/lib/v2/latepost/index.js +0 -116
  7954. package/lib/v2/latepost/maintainer.js +0 -3
  7955. package/lib/v2/latepost/radar.js +0 -18
  7956. package/lib/v2/latepost/router.js +0 -3
  7957. package/lib/v2/lativ/index.js +0 -42
  7958. package/lib/v2/lativ/maintainer.js +0 -3
  7959. package/lib/v2/lativ/radar.js +0 -13
  7960. package/lib/v2/lativ/router.js +0 -3
  7961. package/lib/v2/lativ/templates/detail.art +0 -9
  7962. package/lib/v2/layer3/maintainer.js +0 -3
  7963. package/lib/v2/layer3/quests.js +0 -37
  7964. package/lib/v2/layer3/radar.js +0 -13
  7965. package/lib/v2/layer3/router.js +0 -3
  7966. package/lib/v2/layer3/templates/description.art +0 -24
  7967. package/lib/v2/layoffs/index.js +0 -134
  7968. package/lib/v2/layoffs/maintainer.js +0 -3
  7969. package/lib/v2/layoffs/radar.js +0 -13
  7970. package/lib/v2/layoffs/router.js +0 -3
  7971. package/lib/v2/learnblockchain/maintainer.js +0 -3
  7972. package/lib/v2/learnblockchain/posts.js +0 -43
  7973. package/lib/v2/learnblockchain/radar.js +0 -19
  7974. package/lib/v2/learnblockchain/router.js +0 -3
  7975. package/lib/v2/learnku/maintainer.js +0 -3
  7976. package/lib/v2/learnku/radar.js +0 -13
  7977. package/lib/v2/learnku/router.js +0 -3
  7978. package/lib/v2/learnku/topic.js +0 -72
  7979. package/lib/v2/leetcode/articles.js +0 -84
  7980. package/lib/v2/leetcode/dailyquestion-cn.js +0 -115
  7981. package/lib/v2/leetcode/dailyquestion-en.js +0 -116
  7982. package/lib/v2/leetcode/dailyquestion-solution-cn.js +0 -186
  7983. package/lib/v2/leetcode/dailyquestion-solution-en.js +0 -216
  7984. package/lib/v2/leetcode/maintainer.js +0 -6
  7985. package/lib/v2/leetcode/radar.js +0 -62
  7986. package/lib/v2/leetcode/router.js +0 -7
  7987. package/lib/v2/leiphone/index.js +0 -25
  7988. package/lib/v2/leiphone/maintainer.js +0 -5
  7989. package/lib/v2/leiphone/newsflash.js +0 -19
  7990. package/lib/v2/leiphone/radar.js +0 -25
  7991. package/lib/v2/leiphone/router.js +0 -4
  7992. package/lib/v2/leiphone/utils.js +0 -41
  7993. package/lib/v2/lemmy/index.js +0 -61
  7994. package/lib/v2/lemmy/maintainer.js +0 -3
  7995. package/lib/v2/lemmy/router.js +0 -3
  7996. package/lib/v2/lever/index.js +0 -28
  7997. package/lib/v2/lever/maintainer.js +0 -3
  7998. package/lib/v2/lever/radar.js +0 -13
  7999. package/lib/v2/lever/router.js +0 -3
  8000. package/lib/v2/lfsyd/home.js +0 -42
  8001. package/lib/v2/lfsyd/maintainer.js +0 -7
  8002. package/lib/v2/lfsyd/old_home.js +0 -29
  8003. package/lib/v2/lfsyd/radar.js +0 -39
  8004. package/lib/v2/lfsyd/router.js +0 -6
  8005. package/lib/v2/lfsyd/tag.js +0 -64
  8006. package/lib/v2/lfsyd/user.js +0 -48
  8007. package/lib/v2/lfsyd/utils.js +0 -103
  8008. package/lib/v2/lianxh/index.js +0 -61
  8009. package/lib/v2/lianxh/maintainer.js +0 -3
  8010. package/lib/v2/lianxh/radar.js +0 -13
  8011. package/lib/v2/lianxh/router.js +0 -3
  8012. package/lib/v2/line/maintainer.js +0 -4
  8013. package/lib/v2/line/publisher.js +0 -53
  8014. package/lib/v2/line/radar.js +0 -19
  8015. package/lib/v2/line/router.js +0 -4
  8016. package/lib/v2/line/today.js +0 -44
  8017. package/lib/v2/line/utils.js +0 -59
  8018. package/lib/v2/linkedin/cn/index.js +0 -13
  8019. package/lib/v2/linkedin/cn/renderer.js +0 -179
  8020. package/lib/v2/linkedin/cn/utils.js +0 -122
  8021. package/lib/v2/linkedin/jobs.js +0 -44
  8022. package/lib/v2/linkedin/maintainer.js +0 -4
  8023. package/lib/v2/linkedin/models.js +0 -15
  8024. package/lib/v2/linkedin/radar.js +0 -36
  8025. package/lib/v2/linkedin/router.js +0 -4
  8026. package/lib/v2/linkedin/utils.js +0 -121
  8027. package/lib/v2/linkresearcher/index.js +0 -68
  8028. package/lib/v2/linkresearcher/maintainer.js +0 -3
  8029. package/lib/v2/linkresearcher/radar.js +0 -19
  8030. package/lib/v2/linkresearcher/router.js +0 -3
  8031. package/lib/v2/linovelib/maintainer.js +0 -3
  8032. package/lib/v2/linovelib/novel.js +0 -33
  8033. package/lib/v2/linovelib/radar.js +0 -13
  8034. package/lib/v2/linovelib/router.js +0 -3
  8035. package/lib/v2/liquipedia/cs_matches.js +0 -52
  8036. package/lib/v2/liquipedia/dota2_matches.js +0 -47
  8037. package/lib/v2/liquipedia/maintainer.js +0 -4
  8038. package/lib/v2/liquipedia/radar.js +0 -19
  8039. package/lib/v2/liquipedia/router.js +0 -4
  8040. package/lib/v2/literotica/category.js +0 -55
  8041. package/lib/v2/literotica/maintainer.js +0 -4
  8042. package/lib/v2/literotica/new.js +0 -59
  8043. package/lib/v2/literotica/radar.js +0 -19
  8044. package/lib/v2/literotica/router.js +0 -4
  8045. package/lib/v2/liulinblog/index.js +0 -98
  8046. package/lib/v2/liulinblog/maintainer.js +0 -8
  8047. package/lib/v2/liulinblog/radar.js +0 -53
  8048. package/lib/v2/liulinblog/router.js +0 -8
  8049. package/lib/v2/lkong/forum.js +0 -55
  8050. package/lib/v2/lkong/maintainer.js +0 -4
  8051. package/lib/v2/lkong/query.js +0 -82
  8052. package/lib/v2/lkong/radar.js +0 -19
  8053. package/lib/v2/lkong/router.js +0 -4
  8054. package/lib/v2/lkong/thread.js +0 -57
  8055. package/lib/v2/lofter/maintainer.js +0 -4
  8056. package/lib/v2/lofter/radar.js +0 -17
  8057. package/lib/v2/lofter/router.js +0 -4
  8058. package/lib/v2/lofter/tag.js +0 -59
  8059. package/lib/v2/lofter/user.js +0 -61
  8060. package/lib/v2/logclub/index.js +0 -134
  8061. package/lib/v2/logclub/maintainer.js +0 -9
  8062. package/lib/v2/logclub/radar.js +0 -139
  8063. package/lib/v2/logclub/report.js +0 -98
  8064. package/lib/v2/logclub/router.js +0 -5
  8065. package/lib/v2/logonews/index.js +0 -76
  8066. package/lib/v2/logonews/maintainer.js +0 -8
  8067. package/lib/v2/logonews/radar.js +0 -43
  8068. package/lib/v2/logonews/router.js +0 -5
  8069. package/lib/v2/loltw/maintainer.js +0 -3
  8070. package/lib/v2/loltw/news.js +0 -36
  8071. package/lib/v2/loltw/radar.js +0 -13
  8072. package/lib/v2/loltw/router.js +0 -3
  8073. package/lib/v2/lovelive-anime/maintainer.js +0 -5
  8074. package/lib/v2/lovelive-anime/news.js +0 -56
  8075. package/lib/v2/lovelive-anime/radar.js +0 -31
  8076. package/lib/v2/lovelive-anime/router.js +0 -5
  8077. package/lib/v2/lovelive-anime/schedules.js +0 -56
  8078. package/lib/v2/lovelive-anime/topics.js +0 -84
  8079. package/lib/v2/lsnu/jiaowc/tzgg.js +0 -52
  8080. package/lib/v2/lsnu/maintainer.js +0 -3
  8081. package/lib/v2/lsnu/radar.js +0 -13
  8082. package/lib/v2/lsnu/router.js +0 -3
  8083. package/lib/v2/luogu/contest.js +0 -72
  8084. package/lib/v2/luogu/daily.js +0 -33
  8085. package/lib/v2/luogu/maintainer.js +0 -6
  8086. package/lib/v2/luogu/radar.js +0 -31
  8087. package/lib/v2/luogu/router.js +0 -6
  8088. package/lib/v2/luogu/userBlog.js +0 -48
  8089. package/lib/v2/luogu/userFeed.js +0 -31
  8090. package/lib/v2/luxiangdong/archive.js +0 -28
  8091. package/lib/v2/luxiangdong/maintainer.js +0 -3
  8092. package/lib/v2/luxiangdong/radar.js +0 -13
  8093. package/lib/v2/luxiangdong/router.js +0 -3
  8094. package/lib/v2/lvv2/maintainer.js +0 -4
  8095. package/lib/v2/lvv2/news.js +0 -75
  8096. package/lib/v2/lvv2/radar.js +0 -79
  8097. package/lib/v2/lvv2/router.js +0 -4
  8098. package/lib/v2/lvv2/top.js +0 -77
  8099. package/lib/v2/lxixsxa/discography.js +0 -54
  8100. package/lib/v2/lxixsxa/information.js +0 -48
  8101. package/lib/v2/lxixsxa/jsonpHelper.js +0 -19
  8102. package/lib/v2/lxixsxa/maintainer.js +0 -4
  8103. package/lib/v2/lxixsxa/radar.js +0 -36
  8104. package/lib/v2/lxixsxa/router.js +0 -4
  8105. package/lib/v2/macfilos/blog.js +0 -61
  8106. package/lib/v2/macfilos/maintainer.js +0 -3
  8107. package/lib/v2/macfilos/radar.js +0 -13
  8108. package/lib/v2/macfilos/router.js +0 -3
  8109. package/lib/v2/macmenubar/maintainer.js +0 -3
  8110. package/lib/v2/macmenubar/radar.js +0 -13
  8111. package/lib/v2/macmenubar/recently.js +0 -47
  8112. package/lib/v2/macmenubar/router.js +0 -3
  8113. package/lib/v2/macupdate/app.js +0 -43
  8114. package/lib/v2/macupdate/maintainer.js +0 -3
  8115. package/lib/v2/macupdate/radar.js +0 -13
  8116. package/lib/v2/macupdate/router.js +0 -3
  8117. package/lib/v2/magazinelib/latest-magazine.js +0 -55
  8118. package/lib/v2/magazinelib/maintainer.js +0 -3
  8119. package/lib/v2/magazinelib/radar.js +0 -19
  8120. package/lib/v2/magazinelib/router.js +0 -3
  8121. package/lib/v2/mail/imap.js +0 -99
  8122. package/lib/v2/mail/maintainer.js +0 -3
  8123. package/lib/v2/mail/router.js +0 -3
  8124. package/lib/v2/mangadex/index.js +0 -73
  8125. package/lib/v2/mangadex/maintainer.js +0 -3
  8126. package/lib/v2/mangadex/radar.js +0 -13
  8127. package/lib/v2/mangadex/router.js +0 -3
  8128. package/lib/v2/manhuagui/comic.js +0 -114
  8129. package/lib/v2/manhuagui/maintainer.js +0 -6
  8130. package/lib/v2/manhuagui/radar.js +0 -33
  8131. package/lib/v2/manhuagui/router.js +0 -5
  8132. package/lib/v2/manhuagui/subscribe.js +0 -54
  8133. package/lib/v2/mastodon/account_id.js +0 -21
  8134. package/lib/v2/mastodon/acct.js +0 -18
  8135. package/lib/v2/mastodon/maintainer.js +0 -6
  8136. package/lib/v2/mastodon/radar.js +0 -30
  8137. package/lib/v2/mastodon/router.js +0 -6
  8138. package/lib/v2/mastodon/timeline_local.js +0 -22
  8139. package/lib/v2/mastodon/timeline_remote.js +0 -22
  8140. package/lib/v2/mastodon/utils.js +0 -133
  8141. package/lib/v2/mcachicago/exhibitions.js +0 -17
  8142. package/lib/v2/mcachicago/maintainer.js +0 -3
  8143. package/lib/v2/mcachicago/radar.js +0 -11
  8144. package/lib/v2/mcachicago/router.js +0 -3
  8145. package/lib/v2/mckinsey/cn/categoryMap.js +0 -79
  8146. package/lib/v2/mckinsey/cn/index.js +0 -37
  8147. package/lib/v2/mckinsey/maintainer.js +0 -3
  8148. package/lib/v2/mckinsey/radar.js +0 -12
  8149. package/lib/v2/mckinsey/router.js +0 -3
  8150. package/lib/v2/mclaren/index.js +0 -96
  8151. package/lib/v2/mclaren/maintainer.js +0 -3
  8152. package/lib/v2/mclaren/radar.js +0 -29
  8153. package/lib/v2/mclaren/router.js +0 -3
  8154. package/lib/v2/mclaren/templates/desc.art +0 -6
  8155. package/lib/v2/mdpi/journal.js +0 -65
  8156. package/lib/v2/mdpi/maintainer.js +0 -3
  8157. package/lib/v2/mdpi/radar.js +0 -13
  8158. package/lib/v2/mdpi/router.js +0 -3
  8159. package/lib/v2/medium/following.js +0 -31
  8160. package/lib/v2/medium/for-you.js +0 -31
  8161. package/lib/v2/medium/graphql.js +0 -190
  8162. package/lib/v2/medium/list.js +0 -32
  8163. package/lib/v2/medium/maintainer.js +0 -6
  8164. package/lib/v2/medium/parse-article.js +0 -60
  8165. package/lib/v2/medium/radar.js +0 -23
  8166. package/lib/v2/medium/router.js +0 -6
  8167. package/lib/v2/medium/tag.js +0 -32
  8168. package/lib/v2/medsci/index.js +0 -67
  8169. package/lib/v2/medsci/maintainer.js +0 -3
  8170. package/lib/v2/medsci/radar.js +0 -13
  8171. package/lib/v2/medsci/router.js +0 -3
  8172. package/lib/v2/meituclub/latest.js +0 -41
  8173. package/lib/v2/meituclub/maintainer.js +0 -3
  8174. package/lib/v2/meituclub/radar.js +0 -13
  8175. package/lib/v2/meituclub/router.js +0 -3
  8176. package/lib/v2/meituclub/templates/description.art +0 -1
  8177. package/lib/v2/metacritic/index.js +0 -121
  8178. package/lib/v2/metacritic/maintainer.js +0 -5
  8179. package/lib/v2/metacritic/radar.js +0 -43
  8180. package/lib/v2/metacritic/release.js +0 -53
  8181. package/lib/v2/metacritic/router.js +0 -3
  8182. package/lib/v2/metacritic/util.js +0 -42
  8183. package/lib/v2/meteor/boards.js +0 -11
  8184. package/lib/v2/meteor/index.js +0 -45
  8185. package/lib/v2/meteor/maintainer.js +0 -4
  8186. package/lib/v2/meteor/radar.js +0 -19
  8187. package/lib/v2/meteor/router.js +0 -4
  8188. package/lib/v2/meteor/utils.js +0 -90
  8189. package/lib/v2/metmuseum/exhibitions.js +0 -31
  8190. package/lib/v2/metmuseum/maintainer.js +0 -3
  8191. package/lib/v2/metmuseum/radar.js +0 -11
  8192. package/lib/v2/metmuseum/router.js +0 -3
  8193. package/lib/v2/mihoyo/bbs/img-ranking.js +0 -106
  8194. package/lib/v2/mihoyo/bbs/official.js +0 -63
  8195. package/lib/v2/mihoyo/bbs/static-data.js +0 -137
  8196. package/lib/v2/mihoyo/maintainer.js +0 -6
  8197. package/lib/v2/mihoyo/radar.js +0 -72
  8198. package/lib/v2/mihoyo/router.js +0 -6
  8199. package/lib/v2/mihoyo/sr/news.js +0 -71
  8200. package/lib/v2/mihoyo/ys/news.js +0 -161
  8201. package/lib/v2/mindmeister/example.js +0 -44
  8202. package/lib/v2/mindmeister/maintainer.js +0 -3
  8203. package/lib/v2/mindmeister/radar.js +0 -13
  8204. package/lib/v2/mindmeister/router.js +0 -3
  8205. package/lib/v2/minecraft/maintainer.js +0 -3
  8206. package/lib/v2/minecraft/radar.js +0 -13
  8207. package/lib/v2/minecraft/router.js +0 -3
  8208. package/lib/v2/minecraft/version.js +0 -34
  8209. package/lib/v2/mingpao/index.js +0 -99
  8210. package/lib/v2/mingpao/maintainer.js +0 -3
  8211. package/lib/v2/mingpao/radar.js +0 -36
  8212. package/lib/v2/mingpao/router.js +0 -3
  8213. package/lib/v2/mingpao/templates/fancybox.art +0 -7
  8214. package/lib/v2/miris/blog.js +0 -19
  8215. package/lib/v2/miris/maintainer.js +0 -3
  8216. package/lib/v2/miris/radar.js +0 -11
  8217. package/lib/v2/miris/router.js +0 -3
  8218. package/lib/v2/mirror/index.js +0 -41
  8219. package/lib/v2/mirror/maintainer.js +0 -3
  8220. package/lib/v2/mirror/radar.js +0 -17
  8221. package/lib/v2/mirror/router.js +0 -3
  8222. package/lib/v2/misskey/featured-notes.js +0 -29
  8223. package/lib/v2/misskey/maintainer.js +0 -3
  8224. package/lib/v2/misskey/radar.js +0 -35
  8225. package/lib/v2/misskey/router.js +0 -3
  8226. package/lib/v2/misskey/utils.js +0 -31
  8227. package/lib/v2/mittrchina/index.js +0 -104
  8228. package/lib/v2/mittrchina/maintainer.js +0 -3
  8229. package/lib/v2/mittrchina/radar.js +0 -31
  8230. package/lib/v2/mittrchina/router.js +0 -3
  8231. package/lib/v2/mixcloud/index.js +0 -113
  8232. package/lib/v2/mixcloud/maintainer.js +0 -3
  8233. package/lib/v2/mixcloud/queries.js +0 -1528
  8234. package/lib/v2/mixcloud/radar.js +0 -37
  8235. package/lib/v2/mixcloud/router.js +0 -3
  8236. package/lib/v2/mobilism/forums.js +0 -75
  8237. package/lib/v2/mobilism/maintainer.js +0 -4
  8238. package/lib/v2/mobilism/portal.js +0 -54
  8239. package/lib/v2/mobilism/radar.js +0 -23
  8240. package/lib/v2/mobilism/router.js +0 -4
  8241. package/lib/v2/modelscope/community.js +0 -55
  8242. package/lib/v2/modelscope/datasets.js +0 -55
  8243. package/lib/v2/modelscope/maintainer.js +0 -6
  8244. package/lib/v2/modelscope/models.js +0 -45
  8245. package/lib/v2/modelscope/radar.js +0 -33
  8246. package/lib/v2/modelscope/router.js +0 -6
  8247. package/lib/v2/modelscope/studios.js +0 -57
  8248. package/lib/v2/mohw/clarification.js +0 -50
  8249. package/lib/v2/mohw/maintainer.js +0 -3
  8250. package/lib/v2/mohw/radar.js +0 -13
  8251. package/lib/v2/mohw/router.js +0 -3
  8252. package/lib/v2/mox/index.js +0 -57
  8253. package/lib/v2/mox/maintainer.js +0 -3
  8254. package/lib/v2/mox/radar.js +0 -13
  8255. package/lib/v2/mox/router.js +0 -3
  8256. package/lib/v2/mpaypass/main.js +0 -69
  8257. package/lib/v2/mpaypass/maintainer.js +0 -4
  8258. package/lib/v2/mpaypass/news.js +0 -39
  8259. package/lib/v2/mpaypass/radar.js +0 -19
  8260. package/lib/v2/mpaypass/router.js +0 -4
  8261. package/lib/v2/mrdx/daily.js +0 -79
  8262. package/lib/v2/mrdx/maintainer.js +0 -3
  8263. package/lib/v2/mrdx/radar.js +0 -13
  8264. package/lib/v2/mrdx/router.js +0 -3
  8265. package/lib/v2/mrdx/utils.js +0 -17
  8266. package/lib/v2/mtime/maintainer.js +0 -3
  8267. package/lib/v2/mtime/news.js +0 -52
  8268. package/lib/v2/mtime/radar.js +0 -13
  8269. package/lib/v2/mtime/router.js +0 -3
  8270. package/lib/v2/mvm/index.js +0 -58
  8271. package/lib/v2/mvm/maintainer.js +0 -3
  8272. package/lib/v2/mvm/radar.js +0 -13
  8273. package/lib/v2/mvm/router.js +0 -3
  8274. package/lib/v2/mydrivers/cid.js +0 -38
  8275. package/lib/v2/mydrivers/index.js +0 -61
  8276. package/lib/v2/mydrivers/maintainer.js +0 -7
  8277. package/lib/v2/mydrivers/radar.js +0 -214
  8278. package/lib/v2/mydrivers/rank.js +0 -40
  8279. package/lib/v2/mydrivers/router.js +0 -6
  8280. package/lib/v2/mydrivers/util.js +0 -125
  8281. package/lib/v2/myfigurecollection/activity.js +0 -63
  8282. package/lib/v2/myfigurecollection/index.js +0 -82
  8283. package/lib/v2/myfigurecollection/maintainer.js +0 -4
  8284. package/lib/v2/myfigurecollection/radar.js +0 -44
  8285. package/lib/v2/myfigurecollection/router.js +0 -4
  8286. package/lib/v2/mygopen/index.js +0 -29
  8287. package/lib/v2/mygopen/maintainer.js +0 -3
  8288. package/lib/v2/mygopen/radar.js +0 -13
  8289. package/lib/v2/mygopen/router.js +0 -3
  8290. package/lib/v2/mymusicsheet/maintainer.js +0 -3
  8291. package/lib/v2/mymusicsheet/radar.js +0 -13
  8292. package/lib/v2/mymusicsheet/router.js +0 -3
  8293. package/lib/v2/mymusicsheet/usersheets.js +0 -120
  8294. package/lib/v2/mysql/maintainer.js +0 -3
  8295. package/lib/v2/mysql/radar.js +0 -13
  8296. package/lib/v2/mysql/release.js +0 -62
  8297. package/lib/v2/mysql/router.js +0 -3
  8298. package/lib/v2/nasa/apod-cn.js +0 -24
  8299. package/lib/v2/nasa/apod-ncku.js +0 -51
  8300. package/lib/v2/nasa/apod.js +0 -51
  8301. package/lib/v2/nasa/maintainer.js +0 -5
  8302. package/lib/v2/nasa/radar.js +0 -22
  8303. package/lib/v2/nasa/router.js +0 -5
  8304. package/lib/v2/natgeo/dailyphoto.js +0 -32
  8305. package/lib/v2/natgeo/dailyselection.js +0 -41
  8306. package/lib/v2/natgeo/maintainer.js +0 -5
  8307. package/lib/v2/natgeo/natgeo.js +0 -56
  8308. package/lib/v2/natgeo/radar.js +0 -24
  8309. package/lib/v2/natgeo/router.js +0 -5
  8310. package/lib/v2/nationalgeographic/latest-stories.js +0 -56
  8311. package/lib/v2/nationalgeographic/maintainer.js +0 -3
  8312. package/lib/v2/nationalgeographic/radar.js +0 -13
  8313. package/lib/v2/nationalgeographic/router.js +0 -3
  8314. package/lib/v2/nationalgeographic/templates/stories.art +0 -44
  8315. package/lib/v2/nature/cover.js +0 -67
  8316. package/lib/v2/nature/highlight.js +0 -22
  8317. package/lib/v2/nature/maintainer.js +0 -8
  8318. package/lib/v2/nature/news-and-comment.js +0 -37
  8319. package/lib/v2/nature/news.js +0 -30
  8320. package/lib/v2/nature/radar.js +0 -37
  8321. package/lib/v2/nature/research.js +0 -39
  8322. package/lib/v2/nature/router.js +0 -8
  8323. package/lib/v2/nature/siteindex.js +0 -48
  8324. package/lib/v2/nature/utils.js +0 -1099
  8325. package/lib/v2/nautil/maintainer.js +0 -3
  8326. package/lib/v2/nautil/radar.js +0 -13
  8327. package/lib/v2/nautil/router.js +0 -3
  8328. package/lib/v2/nautil/topics.js +0 -57
  8329. package/lib/v2/nbd/index.js +0 -55
  8330. package/lib/v2/nbd/maintainer.js +0 -4
  8331. package/lib/v2/nbd/radar.js +0 -19
  8332. package/lib/v2/nbd/router.js +0 -4
  8333. package/lib/v2/nber/index.js +0 -48
  8334. package/lib/v2/nber/maintainer.js +0 -4
  8335. package/lib/v2/nber/radar.js +0 -19
  8336. package/lib/v2/nber/router.js +0 -4
  8337. package/lib/v2/ncepu/maintainer.js +0 -3
  8338. package/lib/v2/ncepu/master/masterinfo.js +0 -78
  8339. package/lib/v2/ncepu/radar.js +0 -25
  8340. package/lib/v2/ncepu/router.js +0 -3
  8341. package/lib/v2/ncwu/maintainer.js +0 -3
  8342. package/lib/v2/ncwu/notice.js +0 -27
  8343. package/lib/v2/ncwu/radar.js +0 -13
  8344. package/lib/v2/ncwu/router.js +0 -3
  8345. package/lib/v2/ndss-symposium/maintainer.js +0 -3
  8346. package/lib/v2/ndss-symposium/ndss.js +0 -80
  8347. package/lib/v2/ndss-symposium/radar.js +0 -13
  8348. package/lib/v2/ndss-symposium/router.js +0 -3
  8349. package/lib/v2/neatdownloadmanager/download.js +0 -50
  8350. package/lib/v2/neatdownloadmanager/maintainer.js +0 -3
  8351. package/lib/v2/neatdownloadmanager/radar.js +0 -13
  8352. package/lib/v2/neatdownloadmanager/router.js +0 -3
  8353. package/lib/v2/neea/index.js +0 -110
  8354. package/lib/v2/neea/jlpt.js +0 -52
  8355. package/lib/v2/neea/maintainer.js +0 -4
  8356. package/lib/v2/neea/radar.js +0 -13
  8357. package/lib/v2/neea/router.js +0 -4
  8358. package/lib/v2/nenu/maintainer.js +0 -4
  8359. package/lib/v2/nenu/radar.js +0 -21
  8360. package/lib/v2/nenu/router.js +0 -4
  8361. package/lib/v2/nenu/sohac.js +0 -60
  8362. package/lib/v2/nenu/yjsy.js +0 -64
  8363. package/lib/v2/netflav/index.js +0 -39
  8364. package/lib/v2/netflav/maintainer.js +0 -3
  8365. package/lib/v2/netflav/radar.js +0 -13
  8366. package/lib/v2/netflav/router.js +0 -3
  8367. package/lib/v2/neu/bmie.js +0 -94
  8368. package/lib/v2/neu/maintainer.js +0 -4
  8369. package/lib/v2/neu/news.js +0 -44
  8370. package/lib/v2/neu/radar.js +0 -21
  8371. package/lib/v2/neu/router.js +0 -4
  8372. package/lib/v2/newmuseum/exhibitions.js +0 -27
  8373. package/lib/v2/newmuseum/maintainer.js +0 -3
  8374. package/lib/v2/newmuseum/radar.js +0 -11
  8375. package/lib/v2/newmuseum/router.js +0 -3
  8376. package/lib/v2/newrank/douyin.js +0 -63
  8377. package/lib/v2/newrank/maintainer.js +0 -4
  8378. package/lib/v2/newrank/radar.js +0 -15
  8379. package/lib/v2/newrank/router.js +0 -4
  8380. package/lib/v2/newrank/utils.js +0 -112
  8381. package/lib/v2/newrank/wechat.js +0 -65
  8382. package/lib/v2/news/maintainer.js +0 -3
  8383. package/lib/v2/news/radar.js +0 -13
  8384. package/lib/v2/news/router.js +0 -3
  8385. package/lib/v2/news/whxw.js +0 -68
  8386. package/lib/v2/newsmarket/index.js +0 -63
  8387. package/lib/v2/newsmarket/maintainer.js +0 -3
  8388. package/lib/v2/newsmarket/radar.js +0 -13
  8389. package/lib/v2/newsmarket/router.js +0 -3
  8390. package/lib/v2/newzmz/index.js +0 -66
  8391. package/lib/v2/newzmz/maintainer.js +0 -4
  8392. package/lib/v2/newzmz/radar.js +0 -19
  8393. package/lib/v2/newzmz/router.js +0 -3
  8394. package/lib/v2/newzmz/util.js +0 -166
  8395. package/lib/v2/nextapple/maintainer.js +0 -3
  8396. package/lib/v2/nextapple/radar.js +0 -13
  8397. package/lib/v2/nextapple/realtime.js +0 -44
  8398. package/lib/v2/nextapple/router.js +0 -3
  8399. package/lib/v2/nga/forum.js +0 -71
  8400. package/lib/v2/nga/maintainer.js +0 -4
  8401. package/lib/v2/nga/post.js +0 -127
  8402. package/lib/v2/nga/radar.js +0 -39
  8403. package/lib/v2/nga/router.js +0 -4
  8404. package/lib/v2/ngocn2/index.js +0 -56
  8405. package/lib/v2/ngocn2/maintainer.js +0 -3
  8406. package/lib/v2/ngocn2/radar.js +0 -13
  8407. package/lib/v2/ngocn2/router.js +0 -3
  8408. package/lib/v2/nhentai/maintainer.js +0 -4
  8409. package/lib/v2/nhentai/other.js +0 -30
  8410. package/lib/v2/nhentai/radar.js +0 -19
  8411. package/lib/v2/nhentai/router.js +0 -4
  8412. package/lib/v2/nhentai/search.js +0 -23
  8413. package/lib/v2/nhentai/util.js +0 -147
  8414. package/lib/v2/nhk/maintainer.js +0 -4
  8415. package/lib/v2/nhk/news.js +0 -41
  8416. package/lib/v2/nhk/news_web_easy.js +0 -49
  8417. package/lib/v2/nhk/radar.js +0 -19
  8418. package/lib/v2/nhk/router.js +0 -4
  8419. package/lib/v2/niaogebiji/cat.js +0 -53
  8420. package/lib/v2/niaogebiji/index.js +0 -41
  8421. package/lib/v2/niaogebiji/maintainer.js +0 -5
  8422. package/lib/v2/niaogebiji/radar.js +0 -25
  8423. package/lib/v2/niaogebiji/router.js +0 -5
  8424. package/lib/v2/niaogebiji/today.js +0 -34
  8425. package/lib/v2/nifd/maintainer.js +0 -3
  8426. package/lib/v2/nifd/radar.js +0 -117
  8427. package/lib/v2/nifd/research.js +0 -52
  8428. package/lib/v2/nifd/router.js +0 -3
  8429. package/lib/v2/nikkei/asia/index.js +0 -53
  8430. package/lib/v2/nikkei/cn/index.js +0 -91
  8431. package/lib/v2/nikkei/index.js +0 -36
  8432. package/lib/v2/nikkei/maintainer.js +0 -6
  8433. package/lib/v2/nikkei/news.js +0 -90
  8434. package/lib/v2/nikkei/radar.js +0 -59
  8435. package/lib/v2/nikkei/router.js +0 -7
  8436. package/lib/v2/nintendo/direct.js +0 -31
  8437. package/lib/v2/nintendo/eshop_cn.js +0 -44
  8438. package/lib/v2/nintendo/eshop_hk.js +0 -79
  8439. package/lib/v2/nintendo/eshop_jp.js +0 -34
  8440. package/lib/v2/nintendo/eshop_us.js +0 -32
  8441. package/lib/v2/nintendo/maintainer.js +0 -7
  8442. package/lib/v2/nintendo/news.js +0 -23
  8443. package/lib/v2/nintendo/news_china.js +0 -35
  8444. package/lib/v2/nintendo/radar.js +0 -70
  8445. package/lib/v2/nintendo/router.js +0 -10
  8446. package/lib/v2/nintendo/system-update.js +0 -38
  8447. package/lib/v2/nintendo/utils.js +0 -170
  8448. package/lib/v2/nippon/index.js +0 -31
  8449. package/lib/v2/nippon/maintainer.js +0 -3
  8450. package/lib/v2/nippon/radar.js +0 -13
  8451. package/lib/v2/nippon/router.js +0 -3
  8452. package/lib/v2/njglyy/maintainer.js +0 -3
  8453. package/lib/v2/njglyy/radar.js +0 -13
  8454. package/lib/v2/njglyy/router.js +0 -3
  8455. package/lib/v2/njglyy/utils/index.js +0 -50
  8456. package/lib/v2/njglyy/ygbjypx.js +0 -18
  8457. package/lib/v2/njit/jwc.js +0 -92
  8458. package/lib/v2/njit/maintainer.js +0 -4
  8459. package/lib/v2/njit/radar.js +0 -21
  8460. package/lib/v2/njit/router.js +0 -4
  8461. package/lib/v2/njit/tzgg.js +0 -74
  8462. package/lib/v2/njnu/ceai/ceai.js +0 -44
  8463. package/lib/v2/njnu/ceai/utils.js +0 -55
  8464. package/lib/v2/njnu/jwc/jwc.js +0 -43
  8465. package/lib/v2/njnu/jwc/utils.js +0 -59
  8466. package/lib/v2/njnu/maintainer.js +0 -4
  8467. package/lib/v2/njnu/radar.js +0 -21
  8468. package/lib/v2/njnu/router.js +0 -4
  8469. package/lib/v2/nju/admission.js +0 -41
  8470. package/lib/v2/nju/dafls.js +0 -39
  8471. package/lib/v2/nju/exchangesys.js +0 -46
  8472. package/lib/v2/nju/gra.js +0 -39
  8473. package/lib/v2/nju/hosptial.js +0 -41
  8474. package/lib/v2/nju/hqjt.js +0 -39
  8475. package/lib/v2/nju/itsc.js +0 -46
  8476. package/lib/v2/nju/jjc.js +0 -42
  8477. package/lib/v2/nju/jw.js +0 -59
  8478. package/lib/v2/nju/maintainer.js +0 -15
  8479. package/lib/v2/nju/radar.js +0 -124
  8480. package/lib/v2/nju/rczp.js +0 -48
  8481. package/lib/v2/nju/router.js +0 -15
  8482. package/lib/v2/nju/scit.js +0 -36
  8483. package/lib/v2/nju/zbb.js +0 -81
  8484. package/lib/v2/nju/zcc.js +0 -40
  8485. package/lib/v2/njucm/grabs.js +0 -18
  8486. package/lib/v2/njucm/maintainer.js +0 -3
  8487. package/lib/v2/njucm/radar.js +0 -13
  8488. package/lib/v2/njucm/router.js +0 -3
  8489. package/lib/v2/njucm/utils/index.js +0 -47
  8490. package/lib/v2/njupt/jwc.js +0 -90
  8491. package/lib/v2/njupt/maintainer.js +0 -3
  8492. package/lib/v2/njupt/radar.js +0 -20
  8493. package/lib/v2/njupt/router.js +0 -3
  8494. package/lib/v2/njust/cwc.js +0 -39
  8495. package/lib/v2/njust/dgxg.js +0 -40
  8496. package/lib/v2/njust/eo.js +0 -50
  8497. package/lib/v2/njust/eoe.js +0 -39
  8498. package/lib/v2/njust/gs.js +0 -41
  8499. package/lib/v2/njust/jwc.js +0 -41
  8500. package/lib/v2/njust/maintainer.js +0 -8
  8501. package/lib/v2/njust/radar.js +0 -110
  8502. package/lib/v2/njust/router.js +0 -8
  8503. package/lib/v2/njust/utils.js +0 -35
  8504. package/lib/v2/njxzc/home.js +0 -26
  8505. package/lib/v2/njxzc/lib.js +0 -26
  8506. package/lib/v2/njxzc/maintainer.js +0 -4
  8507. package/lib/v2/njxzc/radar.js +0 -21
  8508. package/lib/v2/njxzc/router.js +0 -6
  8509. package/lib/v2/njxzc/utils/index.js +0 -48
  8510. package/lib/v2/nltimes/maintainer.js +0 -3
  8511. package/lib/v2/nltimes/news.js +0 -89
  8512. package/lib/v2/nltimes/radar.js +0 -19
  8513. package/lib/v2/nltimes/router.js +0 -3
  8514. package/lib/v2/nmbxd1/forum.js +0 -58
  8515. package/lib/v2/nmbxd1/maintainer.js +0 -3
  8516. package/lib/v2/nmbxd1/radar.js +0 -13
  8517. package/lib/v2/nmbxd1/router.js +0 -3
  8518. package/lib/v2/nmbxd1/templates/description.art +0 -65
  8519. package/lib/v2/nmtv/column.js +0 -53
  8520. package/lib/v2/nmtv/maintainer.js +0 -3
  8521. package/lib/v2/nmtv/radar.js +0 -13
  8522. package/lib/v2/nmtv/router.js +0 -3
  8523. package/lib/v2/nodejs/blog.js +0 -60
  8524. package/lib/v2/nodejs/maintainer.js +0 -3
  8525. package/lib/v2/nodejs/radar.js +0 -13
  8526. package/lib/v2/nodejs/router.js +0 -3
  8527. package/lib/v2/nogizaka46/blog.js +0 -33
  8528. package/lib/v2/nogizaka46/maintainer.js +0 -4
  8529. package/lib/v2/nogizaka46/news.js +0 -33
  8530. package/lib/v2/nogizaka46/radar.js +0 -21
  8531. package/lib/v2/nogizaka46/router.js +0 -4
  8532. package/lib/v2/notateslaapp/maintainer.js +0 -3
  8533. package/lib/v2/notateslaapp/radar.js +0 -13
  8534. package/lib/v2/notateslaapp/router.js +0 -3
  8535. package/lib/v2/notateslaapp/update.js +0 -36
  8536. package/lib/v2/notefolio/maintainer.js +0 -3
  8537. package/lib/v2/notefolio/radar.js +0 -13
  8538. package/lib/v2/notefolio/router.js +0 -3
  8539. package/lib/v2/notefolio/search.js +0 -145
  8540. package/lib/v2/notion/database.js +0 -161
  8541. package/lib/v2/notion/maintainer.js +0 -3
  8542. package/lib/v2/notion/radar.js +0 -13
  8543. package/lib/v2/notion/router.js +0 -3
  8544. package/lib/v2/now/maintainer.js +0 -3
  8545. package/lib/v2/now/news.js +0 -66
  8546. package/lib/v2/now/radar.js +0 -13
  8547. package/lib/v2/now/router.js +0 -3
  8548. package/lib/v2/nowcoder/discuss.js +0 -57
  8549. package/lib/v2/nowcoder/experience.js +0 -48
  8550. package/lib/v2/nowcoder/jobcenter.js +0 -57
  8551. package/lib/v2/nowcoder/maintainer.js +0 -7
  8552. package/lib/v2/nowcoder/radar.js +0 -40
  8553. package/lib/v2/nowcoder/recommend.js +0 -20
  8554. package/lib/v2/nowcoder/router.js +0 -7
  8555. package/lib/v2/nowcoder/schedule.js +0 -32
  8556. package/lib/v2/npm/maintainer.js +0 -3
  8557. package/lib/v2/npm/package.js +0 -45
  8558. package/lib/v2/npm/radar.js +0 -13
  8559. package/lib/v2/npm/router.js +0 -3
  8560. package/lib/v2/npr/full.js +0 -89
  8561. package/lib/v2/npr/maintainer.js +0 -3
  8562. package/lib/v2/npr/radar.js +0 -11
  8563. package/lib/v2/npr/router.js +0 -3
  8564. package/lib/v2/ntdtv/channel.js +0 -44
  8565. package/lib/v2/ntdtv/maintainer.js +0 -3
  8566. package/lib/v2/ntdtv/radar.js +0 -13
  8567. package/lib/v2/ntdtv/router.js +0 -3
  8568. package/lib/v2/nua/dc.js +0 -63
  8569. package/lib/v2/nua/gra.js +0 -21
  8570. package/lib/v2/nua/index.js +0 -22
  8571. package/lib/v2/nua/lib.js +0 -39
  8572. package/lib/v2/nua/maintainer.js +0 -7
  8573. package/lib/v2/nua/radar.js +0 -45
  8574. package/lib/v2/nua/router.js +0 -7
  8575. package/lib/v2/nua/sxw.js +0 -22
  8576. package/lib/v2/nua/utils.js +0 -75
  8577. package/lib/v2/nuaa/college/cae.js +0 -79
  8578. package/lib/v2/nuaa/college/cs.js +0 -78
  8579. package/lib/v2/nuaa/jwc/jwc.js +0 -76
  8580. package/lib/v2/nuaa/maintainer.js +0 -6
  8581. package/lib/v2/nuaa/radar.js +0 -29
  8582. package/lib/v2/nuaa/router.js +0 -6
  8583. package/lib/v2/nuaa/utils/pypasswaf.js +0 -22
  8584. package/lib/v2/nuaa/yjsy/yjsy.js +0 -74
  8585. package/lib/v2/nuist/bulletin.js +0 -61
  8586. package/lib/v2/nuist/cas.js +0 -71
  8587. package/lib/v2/nuist/jwc.js +0 -43
  8588. package/lib/v2/nuist/library/lib.js +0 -43
  8589. package/lib/v2/nuist/maintainer.js +0 -10
  8590. package/lib/v2/nuist/radar.js +0 -69
  8591. package/lib/v2/nuist/router.js +0 -10
  8592. package/lib/v2/nuist/scs.js +0 -49
  8593. package/lib/v2/nuist/sese.js +0 -45
  8594. package/lib/v2/nuist/xgc.js +0 -49
  8595. package/lib/v2/nuist/yjs.js +0 -60
  8596. package/lib/v2/nwafu/all.js +0 -43
  8597. package/lib/v2/nwafu/maintainer.js +0 -3
  8598. package/lib/v2/nwafu/radar.js +0 -13
  8599. package/lib/v2/nwafu/router.js +0 -3
  8600. package/lib/v2/nwafu/utils.js +0 -35
  8601. package/lib/v2/nyaa/main.js +0 -50
  8602. package/lib/v2/nyaa/maintainer.js +0 -9
  8603. package/lib/v2/nyaa/radar.js +0 -47
  8604. package/lib/v2/nyaa/router.js +0 -9
  8605. package/lib/v2/nytimes/author.js +0 -43
  8606. package/lib/v2/nytimes/book.js +0 -71
  8607. package/lib/v2/nytimes/daily_briefing_chinese.js +0 -67
  8608. package/lib/v2/nytimes/index.js +0 -107
  8609. package/lib/v2/nytimes/maintainer.js +0 -6
  8610. package/lib/v2/nytimes/radar.js +0 -31
  8611. package/lib/v2/nytimes/router.js +0 -6
  8612. package/lib/v2/nytimes/utils.js +0 -113
  8613. package/lib/v2/oceanengine/arithmeticIndex.js +0 -145
  8614. package/lib/v2/oceanengine/maintainer.js +0 -3
  8615. package/lib/v2/oceanengine/radar.js +0 -13
  8616. package/lib/v2/oceanengine/router.js +0 -3
  8617. package/lib/v2/odaily/activity.js +0 -47
  8618. package/lib/v2/odaily/maintainer.js +0 -7
  8619. package/lib/v2/odaily/newsflash.js +0 -26
  8620. package/lib/v2/odaily/post.js +0 -63
  8621. package/lib/v2/odaily/radar.js +0 -40
  8622. package/lib/v2/odaily/router.js +0 -7
  8623. package/lib/v2/odaily/search_news.js +0 -26
  8624. package/lib/v2/odaily/user.js +0 -53
  8625. package/lib/v2/odaily/utils.js +0 -3
  8626. package/lib/v2/oeeee/app/channel.js +0 -36
  8627. package/lib/v2/oeeee/app/reporter.js +0 -30
  8628. package/lib/v2/oeeee/maintainer.js +0 -5
  8629. package/lib/v2/oeeee/radar.js +0 -12
  8630. package/lib/v2/oeeee/router.js +0 -5
  8631. package/lib/v2/oeeee/utils.js +0 -41
  8632. package/lib/v2/oeeee/web.js +0 -36
  8633. package/lib/v2/oilchem/index.js +0 -66
  8634. package/lib/v2/oilchem/maintainer.js +0 -3
  8635. package/lib/v2/oilchem/radar.js +0 -11
  8636. package/lib/v2/oilchem/router.js +0 -3
  8637. package/lib/v2/oilchem/routes.js +0 -671
  8638. package/lib/v2/oncc/index.js +0 -83
  8639. package/lib/v2/oncc/maintainer.js +0 -4
  8640. package/lib/v2/oncc/money18.js +0 -115
  8641. package/lib/v2/oncc/radar.js +0 -45
  8642. package/lib/v2/oncc/router.js +0 -4
  8643. package/lib/v2/oo-software/changelog.js +0 -40
  8644. package/lib/v2/oo-software/maintainer.js +0 -3
  8645. package/lib/v2/oo-software/radar.js +0 -13
  8646. package/lib/v2/oo-software/router.js +0 -3
  8647. package/lib/v2/openai/blog.js +0 -44
  8648. package/lib/v2/openai/chatgpt.js +0 -98
  8649. package/lib/v2/openai/common.js +0 -72
  8650. package/lib/v2/openai/maintainer.js +0 -4
  8651. package/lib/v2/openai/radar.js +0 -35
  8652. package/lib/v2/openai/research.js +0 -32
  8653. package/lib/v2/openai/router.js +0 -5
  8654. package/lib/v2/openwrt/maintainer.js +0 -3
  8655. package/lib/v2/openwrt/radar.js +0 -13
  8656. package/lib/v2/openwrt/releases.js +0 -25
  8657. package/lib/v2/openwrt/router.js +0 -3
  8658. package/lib/v2/orcid/index.js +0 -54
  8659. package/lib/v2/orcid/maintainer.js +0 -3
  8660. package/lib/v2/orcid/radar.js +0 -13
  8661. package/lib/v2/orcid/router.js +0 -3
  8662. package/lib/v2/oreno3d/get_sec_page_data.js +0 -75
  8663. package/lib/v2/oreno3d/main.js +0 -157
  8664. package/lib/v2/oreno3d/maintainer.js +0 -7
  8665. package/lib/v2/oreno3d/radar.js +0 -52
  8666. package/lib/v2/oreno3d/router.js +0 -7
  8667. package/lib/v2/oschina/maintainer.js +0 -6
  8668. package/lib/v2/oschina/news.js +0 -94
  8669. package/lib/v2/oschina/radar.js +0 -33
  8670. package/lib/v2/oschina/router.js +0 -6
  8671. package/lib/v2/oschina/topic.js +0 -53
  8672. package/lib/v2/oschina/user.js +0 -50
  8673. package/lib/v2/oshwhub/explore.js +0 -116
  8674. package/lib/v2/oshwhub/maintainer.js +0 -3
  8675. package/lib/v2/oshwhub/radar.js +0 -16
  8676. package/lib/v2/oshwhub/router.js +0 -3
  8677. package/lib/v2/osu/beatmaps/packs.js +0 -35
  8678. package/lib/v2/osu/maintainer.js +0 -3
  8679. package/lib/v2/osu/radar.js +0 -13
  8680. package/lib/v2/osu/router.js +0 -3
  8681. package/lib/v2/ouc/it-postgraduate.js +0 -27
  8682. package/lib/v2/ouc/it-tx.js +0 -44
  8683. package/lib/v2/ouc/it.js +0 -43
  8684. package/lib/v2/ouc/jwc.js +0 -39
  8685. package/lib/v2/ouc/jwgl.js +0 -42
  8686. package/lib/v2/ouc/maintainer.js +0 -8
  8687. package/lib/v2/ouc/radar.js +0 -49
  8688. package/lib/v2/ouc/router.js +0 -8
  8689. package/lib/v2/ouc/yjs.js +0 -27
  8690. package/lib/v2/oup/index.js +0 -53
  8691. package/lib/v2/oup/maintainer.js +0 -3
  8692. package/lib/v2/oup/radar.js +0 -13
  8693. package/lib/v2/oup/router.js +0 -3
  8694. package/lib/v2/outagereport/index.js +0 -51
  8695. package/lib/v2/outagereport/maintainer.js +0 -3
  8696. package/lib/v2/outagereport/radar.js +0 -13
  8697. package/lib/v2/outagereport/router.js +0 -3
  8698. package/lib/v2/panewslab/author.js +0 -48
  8699. package/lib/v2/panewslab/index.js +0 -63
  8700. package/lib/v2/panewslab/maintainer.js +0 -8
  8701. package/lib/v2/panewslab/news.js +0 -28
  8702. package/lib/v2/panewslab/radar.js +0 -31
  8703. package/lib/v2/panewslab/router.js +0 -8
  8704. package/lib/v2/panewslab/topic.js +0 -48
  8705. package/lib/v2/paradigm/maintainer.js +0 -3
  8706. package/lib/v2/paradigm/radar.js +0 -13
  8707. package/lib/v2/paradigm/router.js +0 -3
  8708. package/lib/v2/paradigm/writing.js +0 -44
  8709. package/lib/v2/patagonia/maintainer.js +0 -3
  8710. package/lib/v2/patagonia/new-arrivals.js +0 -61
  8711. package/lib/v2/patagonia/radar.js +0 -23
  8712. package/lib/v2/patagonia/router.js +0 -3
  8713. package/lib/v2/paulgraham/article.js +0 -62
  8714. package/lib/v2/paulgraham/maintainer.js +0 -3
  8715. package/lib/v2/paulgraham/radar.js +0 -13
  8716. package/lib/v2/paulgraham/router.js +0 -5
  8717. package/lib/v2/penguin-random-house/articles.js +0 -27
  8718. package/lib/v2/penguin-random-house/maintainer.js +0 -4
  8719. package/lib/v2/penguin-random-house/radar.js +0 -19
  8720. package/lib/v2/penguin-random-house/router.js +0 -4
  8721. package/lib/v2/penguin-random-house/thereaddown.js +0 -27
  8722. package/lib/v2/penguin-random-house/utils.js +0 -119
  8723. package/lib/v2/people/index.js +0 -78
  8724. package/lib/v2/people/liuyan.js +0 -54
  8725. package/lib/v2/people/maintainer.js +0 -6
  8726. package/lib/v2/people/radar.js +0 -21
  8727. package/lib/v2/people/router.js +0 -5
  8728. package/lib/v2/people/xjpjh.js +0 -68
  8729. package/lib/v2/peopo/maintainer.js +0 -3
  8730. package/lib/v2/peopo/radar.js +0 -13
  8731. package/lib/v2/peopo/router.js +0 -3
  8732. package/lib/v2/peopo/topic.js +0 -46
  8733. package/lib/v2/phoronix/index.js +0 -107
  8734. package/lib/v2/phoronix/maintainer.js +0 -3
  8735. package/lib/v2/phoronix/radar.js +0 -13
  8736. package/lib/v2/phoronix/router.js +0 -3
  8737. package/lib/v2/pianyuan/app.js +0 -34
  8738. package/lib/v2/pianyuan/maintainer.js +0 -4
  8739. package/lib/v2/pianyuan/radar.js +0 -13
  8740. package/lib/v2/pianyuan/router.js +0 -4
  8741. package/lib/v2/pianyuan/search.js +0 -45
  8742. package/lib/v2/pianyuan/utils.js +0 -88
  8743. package/lib/v2/picnob/maintainer.js +0 -3
  8744. package/lib/v2/picnob/radar.js +0 -13
  8745. package/lib/v2/picnob/router.js +0 -3
  8746. package/lib/v2/picnob/templates/desc.art +0 -13
  8747. package/lib/v2/picnob/user.js +0 -61
  8748. package/lib/v2/picuki/maintainer.js +0 -3
  8749. package/lib/v2/picuki/profile.js +0 -170
  8750. package/lib/v2/picuki/radar.js +0 -13
  8751. package/lib/v2/picuki/router.js +0 -3
  8752. package/lib/v2/picuki/utils.js +0 -26
  8753. package/lib/v2/pikabu/community.js +0 -37
  8754. package/lib/v2/pikabu/maintainer.js +0 -5
  8755. package/lib/v2/pikabu/radar.js +0 -25
  8756. package/lib/v2/pikabu/router.js +0 -4
  8757. package/lib/v2/pikabu/templates/video.art +0 -8
  8758. package/lib/v2/pikabu/user.js +0 -46
  8759. package/lib/v2/pikabu/utils.js +0 -43
  8760. package/lib/v2/pincong/hot.js +0 -28
  8761. package/lib/v2/pincong/index.js +0 -34
  8762. package/lib/v2/pincong/maintainer.js +0 -5
  8763. package/lib/v2/pincong/radar.js +0 -35
  8764. package/lib/v2/pincong/router.js +0 -5
  8765. package/lib/v2/pincong/topic.js +0 -25
  8766. package/lib/v2/pincong/utils.js +0 -22
  8767. package/lib/v2/pingwest/maintainer.js +0 -5
  8768. package/lib/v2/pingwest/radar.js +0 -25
  8769. package/lib/v2/pingwest/router.js +0 -5
  8770. package/lib/v2/pingwest/status.js +0 -47
  8771. package/lib/v2/pingwest/tag.js +0 -43
  8772. package/lib/v2/pingwest/user.js +0 -59
  8773. package/lib/v2/pingwest/utils.js +0 -92
  8774. package/lib/v2/pixabay/maintainer.js +0 -3
  8775. package/lib/v2/pixabay/radar.js +0 -13
  8776. package/lib/v2/pixabay/router.js +0 -3
  8777. package/lib/v2/pixabay/search.js +0 -50
  8778. package/lib/v2/pixiv/api/getBookmarks.js +0 -23
  8779. package/lib/v2/pixiv/api/getIllustFollows.js +0 -20
  8780. package/lib/v2/pixiv/api/getIllusts.js +0 -22
  8781. package/lib/v2/pixiv/api/getRanking.js +0 -30
  8782. package/lib/v2/pixiv/api/getUserDetail.js +0 -27
  8783. package/lib/v2/pixiv/api/searchIllust.js +0 -24
  8784. package/lib/v2/pixiv/api/searchPopularIllust.js +0 -23
  8785. package/lib/v2/pixiv/bookmarks.js +0 -40
  8786. package/lib/v2/pixiv/constants.js +0 -8
  8787. package/lib/v2/pixiv/illustfollow.js +0 -34
  8788. package/lib/v2/pixiv/maintainer.js +0 -8
  8789. package/lib/v2/pixiv/novels.js +0 -47
  8790. package/lib/v2/pixiv/pixiv-got.js +0 -65
  8791. package/lib/v2/pixiv/radar.js +0 -43
  8792. package/lib/v2/pixiv/ranking.js +0 -93
  8793. package/lib/v2/pixiv/router.js +0 -8
  8794. package/lib/v2/pixiv/search.js +0 -51
  8795. package/lib/v2/pixiv/token.js +0 -86
  8796. package/lib/v2/pixiv/user.js +0 -39
  8797. package/lib/v2/pixiv/utils.js +0 -17
  8798. package/lib/v2/piyao/jrpy.js +0 -39
  8799. package/lib/v2/piyao/maintainer.js +0 -3
  8800. package/lib/v2/piyao/radar.js +0 -13
  8801. package/lib/v2/piyao/router.js +0 -3
  8802. package/lib/v2/pku/bbs/hot.js +0 -56
  8803. package/lib/v2/pku/cls/announcement.js +0 -42
  8804. package/lib/v2/pku/cls/lecture.js +0 -25
  8805. package/lib/v2/pku/eecs.js +0 -64
  8806. package/lib/v2/pku/hr.js +0 -54
  8807. package/lib/v2/pku/maintainer.js +0 -14
  8808. package/lib/v2/pku/nsd.js +0 -69
  8809. package/lib/v2/pku/pkuyjs.js +0 -29
  8810. package/lib/v2/pku/radar.js +0 -156
  8811. package/lib/v2/pku/rccp/mzyt.js +0 -23
  8812. package/lib/v2/pku/router.js +0 -14
  8813. package/lib/v2/pku/scc/recruit.js +0 -58
  8814. package/lib/v2/pku/ss/admission.js +0 -15
  8815. package/lib/v2/pku/ss/common.js +0 -37
  8816. package/lib/v2/pku/ss/notice.js +0 -15
  8817. package/lib/v2/pku/ss/pg_admin.js +0 -15
  8818. package/lib/v2/pku/utils.js +0 -15
  8819. package/lib/v2/playno1/av.js +0 -41
  8820. package/lib/v2/playno1/maintainer.js +0 -4
  8821. package/lib/v2/playno1/radar.js +0 -21
  8822. package/lib/v2/playno1/router.js +0 -4
  8823. package/lib/v2/playno1/st.js +0 -36
  8824. package/lib/v2/playno1/utils.js +0 -32
  8825. package/lib/v2/plurk/anonymous.js +0 -23
  8826. package/lib/v2/plurk/hotlinks.js +0 -20
  8827. package/lib/v2/plurk/maintainer.js +0 -9
  8828. package/lib/v2/plurk/news.js +0 -23
  8829. package/lib/v2/plurk/radar.js +0 -56
  8830. package/lib/v2/plurk/router.js +0 -9
  8831. package/lib/v2/plurk/search.js +0 -27
  8832. package/lib/v2/plurk/top.js +0 -29
  8833. package/lib/v2/plurk/topic.js +0 -33
  8834. package/lib/v2/plurk/user.js +0 -31
  8835. package/lib/v2/plurk/utils.js +0 -56
  8836. package/lib/v2/pmthinking/index.js +0 -61
  8837. package/lib/v2/pmthinking/maintainer.js +0 -3
  8838. package/lib/v2/pmthinking/radar.js +0 -13
  8839. package/lib/v2/pmthinking/router.js +0 -3
  8840. package/lib/v2/pmthinking/templates/description.art +0 -4
  8841. package/lib/v2/pnas/index.js +0 -101
  8842. package/lib/v2/pnas/maintainer.js +0 -3
  8843. package/lib/v2/pnas/radar.js +0 -13
  8844. package/lib/v2/pnas/router.js +0 -3
  8845. package/lib/v2/polkadot/home.js +0 -34
  8846. package/lib/v2/polkadot/maintainer.js +0 -3
  8847. package/lib/v2/polkadot/radar.js +0 -13
  8848. package/lib/v2/polkadot/router.js +0 -3
  8849. package/lib/v2/polkaworld/home.js +0 -24
  8850. package/lib/v2/polkaworld/maintainer.js +0 -3
  8851. package/lib/v2/polkaworld/radar.js +0 -13
  8852. package/lib/v2/polkaworld/router.js +0 -3
  8853. package/lib/v2/pornhub/category.js +0 -44
  8854. package/lib/v2/pornhub/category_url.js +0 -25
  8855. package/lib/v2/pornhub/maintainer.js +0 -8
  8856. package/lib/v2/pornhub/model.js +0 -29
  8857. package/lib/v2/pornhub/pornstar.js +0 -29
  8858. package/lib/v2/pornhub/radar.js +0 -46
  8859. package/lib/v2/pornhub/router.js +0 -8
  8860. package/lib/v2/pornhub/search.js +0 -23
  8861. package/lib/v2/pornhub/templates/description.art +0 -11
  8862. package/lib/v2/pornhub/users.js +0 -30
  8863. package/lib/v2/pornhub/utils.js +0 -30
  8864. package/lib/v2/postman/maintainer.js +0 -3
  8865. package/lib/v2/postman/radar.js +0 -13
  8866. package/lib/v2/postman/release-notes.js +0 -27
  8867. package/lib/v2/postman/router.js +0 -3
  8868. package/lib/v2/prestige-av/maintainer.js +0 -3
  8869. package/lib/v2/prestige-av/radar.js +0 -18
  8870. package/lib/v2/prestige-av/router.js +0 -3
  8871. package/lib/v2/prestige-av/series.js +0 -42
  8872. package/lib/v2/producthunt/maintainer.js +0 -3
  8873. package/lib/v2/producthunt/radar.js +0 -13
  8874. package/lib/v2/producthunt/router.js +0 -3
  8875. package/lib/v2/producthunt/today.js +0 -44
  8876. package/lib/v2/pts/curations.js +0 -44
  8877. package/lib/v2/pts/index.js +0 -68
  8878. package/lib/v2/pts/live.js +0 -49
  8879. package/lib/v2/pts/maintainer.js +0 -10
  8880. package/lib/v2/pts/projects.js +0 -44
  8881. package/lib/v2/pts/radar.js +0 -55
  8882. package/lib/v2/pts/router.js +0 -7
  8883. package/lib/v2/pubmed/maintainer.js +0 -3
  8884. package/lib/v2/pubmed/radar.js +0 -13
  8885. package/lib/v2/pubmed/router.js +0 -3
  8886. package/lib/v2/pubmed/trending.js +0 -58
  8887. package/lib/v2/pumc/maintainer.js +0 -3
  8888. package/lib/v2/pumc/mdadmission.js +0 -62
  8889. package/lib/v2/pumc/radar.js +0 -13
  8890. package/lib/v2/pumc/router.js +0 -3
  8891. package/lib/v2/putty/changes.js +0 -36
  8892. package/lib/v2/putty/maintainer.js +0 -3
  8893. package/lib/v2/putty/radar.js +0 -13
  8894. package/lib/v2/putty/router.js +0 -3
  8895. package/lib/v2/qbitai/category.js +0 -27
  8896. package/lib/v2/qbitai/maintainer.js +0 -4
  8897. package/lib/v2/qbitai/radar.js +0 -19
  8898. package/lib/v2/qbitai/router.js +0 -4
  8899. package/lib/v2/qbitai/tag.js +0 -27
  8900. package/lib/v2/qbittorrent/maintainer.js +0 -3
  8901. package/lib/v2/qbittorrent/news.js +0 -59
  8902. package/lib/v2/qbittorrent/radar.js +0 -13
  8903. package/lib/v2/qbittorrent/router.js +0 -3
  8904. package/lib/v2/qdaily/index.js +0 -87
  8905. package/lib/v2/qdaily/maintainer.js +0 -3
  8906. package/lib/v2/qdaily/radar.js +0 -25
  8907. package/lib/v2/qdaily/router.js +0 -3
  8908. package/lib/v2/qdaily/templates/article.art +0 -5
  8909. package/lib/v2/qdu/jwc.js +0 -58
  8910. package/lib/v2/qdu/maintainer.js +0 -3
  8911. package/lib/v2/qdu/radar.js +0 -13
  8912. package/lib/v2/qdu/router.js +0 -3
  8913. package/lib/v2/qianp/maintainer.js +0 -3
  8914. package/lib/v2/qianp/news.js +0 -48
  8915. package/lib/v2/qianp/radar.js +0 -13
  8916. package/lib/v2/qianp/router.js +0 -3
  8917. package/lib/v2/qianzhan/column.js +0 -50
  8918. package/lib/v2/qianzhan/maintainer.js +0 -4
  8919. package/lib/v2/qianzhan/radar.js +0 -26
  8920. package/lib/v2/qianzhan/rank.js +0 -40
  8921. package/lib/v2/qianzhan/router.js +0 -4
  8922. package/lib/v2/qidian/author.js +0 -41
  8923. package/lib/v2/qidian/chapter.js +0 -33
  8924. package/lib/v2/qidian/forum.js +0 -39
  8925. package/lib/v2/qidian/free-next.js +0 -42
  8926. package/lib/v2/qidian/free.js +0 -45
  8927. package/lib/v2/qidian/maintainer.js +0 -7
  8928. package/lib/v2/qidian/radar.js +0 -41
  8929. package/lib/v2/qidian/router.js +0 -7
  8930. package/lib/v2/qidiantu/index.js +0 -87
  8931. package/lib/v2/qidiantu/maintainer.js +0 -4
  8932. package/lib/v2/qidiantu/radar.js +0 -19
  8933. package/lib/v2/qidiantu/router.js +0 -3
  8934. package/lib/v2/qingting/channel.js +0 -32
  8935. package/lib/v2/qingting/maintainer.js +0 -4
  8936. package/lib/v2/qingting/podcast.js +0 -77
  8937. package/lib/v2/qingting/radar.js +0 -19
  8938. package/lib/v2/qingting/router.js +0 -4
  8939. package/lib/v2/qipamaijia/index.js +0 -32
  8940. package/lib/v2/qipamaijia/maintainer.js +0 -3
  8941. package/lib/v2/qipamaijia/radar.js +0 -13
  8942. package/lib/v2/qipamaijia/router.js +0 -3
  8943. package/lib/v2/qiyoujiage/maintainer.js +0 -3
  8944. package/lib/v2/qiyoujiage/price.js +0 -28
  8945. package/lib/v2/qiyoujiage/radar.js +0 -13
  8946. package/lib/v2/qiyoujiage/router.js +0 -3
  8947. package/lib/v2/qlu/maintainer.js +0 -3
  8948. package/lib/v2/qlu/notice.js +0 -54
  8949. package/lib/v2/qlu/radar.js +0 -13
  8950. package/lib/v2/qlu/router.js +0 -3
  8951. package/lib/v2/qm120/maintainer.js +0 -3
  8952. package/lib/v2/qm120/news.js +0 -50
  8953. package/lib/v2/qm120/radar.js +0 -13
  8954. package/lib/v2/qm120/router.js +0 -3
  8955. package/lib/v2/qoo-app/apps/card.js +0 -38
  8956. package/lib/v2/qoo-app/apps/comment.js +0 -43
  8957. package/lib/v2/qoo-app/apps/note.js +0 -47
  8958. package/lib/v2/qoo-app/apps/post.js +0 -51
  8959. package/lib/v2/qoo-app/maintainer.js +0 -11
  8960. package/lib/v2/qoo-app/news.js +0 -41
  8961. package/lib/v2/qoo-app/notes/note.js +0 -43
  8962. package/lib/v2/qoo-app/notes/topic.js +0 -20
  8963. package/lib/v2/qoo-app/notes/user.js +0 -20
  8964. package/lib/v2/qoo-app/radar.js +0 -73
  8965. package/lib/v2/qoo-app/router.js +0 -11
  8966. package/lib/v2/qoo-app/user/appComment.js +0 -41
  8967. package/lib/v2/qoo-app/utils.js +0 -57
  8968. package/lib/v2/qq/ac/comic.js +0 -43
  8969. package/lib/v2/qq/ac/rank.js +0 -20
  8970. package/lib/v2/qq/ac/utils.js +0 -71
  8971. package/lib/v2/qq/fact/index.js +0 -61
  8972. package/lib/v2/qq/kg/cache.js +0 -28
  8973. package/lib/v2/qq/kg/reply.js +0 -21
  8974. package/lib/v2/qq/kg/user.js +0 -50
  8975. package/lib/v2/qq/live.js +0 -36
  8976. package/lib/v2/qq/maintainer.js +0 -8
  8977. package/lib/v2/qq/radar.js +0 -49
  8978. package/lib/v2/qq/router.js +0 -8
  8979. package/lib/v2/qq88/index.js +0 -60
  8980. package/lib/v2/qq88/maintainer.js +0 -3
  8981. package/lib/v2/qq88/radar.js +0 -13
  8982. package/lib/v2/qq88/router.js +0 -3
  8983. package/lib/v2/qqorw/index.js +0 -77
  8984. package/lib/v2/qqorw/maintainer.js +0 -4
  8985. package/lib/v2/qqorw/radar.js +0 -13
  8986. package/lib/v2/qqorw/router.js +0 -3
  8987. package/lib/v2/quicker/maintainer.js +0 -7
  8988. package/lib/v2/quicker/qa.js +0 -65
  8989. package/lib/v2/quicker/radar.js +0 -31
  8990. package/lib/v2/quicker/router.js +0 -7
  8991. package/lib/v2/quicker/share.js +0 -61
  8992. package/lib/v2/quicker/user.js +0 -62
  8993. package/lib/v2/quicker/versions.js +0 -36
  8994. package/lib/v2/qweather/3days.js +0 -46
  8995. package/lib/v2/qweather/maintainer.js +0 -4
  8996. package/lib/v2/qweather/now.js +0 -45
  8997. package/lib/v2/qweather/radar.js +0 -15
  8998. package/lib/v2/qweather/router.js +0 -4
  8999. package/lib/v2/qweather/templates/3days.art +0 -20
  9000. package/lib/v2/radio/album.js +0 -106
  9001. package/lib/v2/radio/index.js +0 -55
  9002. package/lib/v2/radio/maintainer.js +0 -5
  9003. package/lib/v2/radio/radar.js +0 -25
  9004. package/lib/v2/radio/router.js +0 -5
  9005. package/lib/v2/radio/zhibo.js +0 -73
  9006. package/lib/v2/radio-canada/latest.js +0 -50
  9007. package/lib/v2/radio-canada/maintainer.js +0 -3
  9008. package/lib/v2/radio-canada/radar.js +0 -13
  9009. package/lib/v2/radio-canada/router.js +0 -3
  9010. package/lib/v2/radiofrance/geopolitique.js +0 -33
  9011. package/lib/v2/radiofrance/maintainer.js +0 -3
  9012. package/lib/v2/radiofrance/radar.js +0 -13
  9013. package/lib/v2/radiofrance/router.js +0 -3
  9014. package/lib/v2/radiofrance/templates/article.art +0 -6
  9015. package/lib/v2/rarehistoricalphotos/index.js +0 -28
  9016. package/lib/v2/rarehistoricalphotos/maintainer.js +0 -3
  9017. package/lib/v2/rarehistoricalphotos/radar.js +0 -13
  9018. package/lib/v2/rarehistoricalphotos/router.js +0 -3
  9019. package/lib/v2/rattibha/maintainer.js +0 -3
  9020. package/lib/v2/rattibha/radar.js +0 -13
  9021. package/lib/v2/rattibha/router.js +0 -3
  9022. package/lib/v2/rattibha/user.js +0 -45
  9023. package/lib/v2/rawkuma/maintainer.js +0 -3
  9024. package/lib/v2/rawkuma/manga.js +0 -81
  9025. package/lib/v2/rawkuma/radar.js +0 -13
  9026. package/lib/v2/rawkuma/router.js +0 -3
  9027. package/lib/v2/reactnewsletter/maintainer.js +0 -3
  9028. package/lib/v2/reactnewsletter/radar.js +0 -13
  9029. package/lib/v2/reactnewsletter/reactnewsletter.js +0 -25
  9030. package/lib/v2/reactnewsletter/router.js +0 -3
  9031. package/lib/v2/readhub/index.js +0 -115
  9032. package/lib/v2/readhub/maintainer.js +0 -3
  9033. package/lib/v2/readhub/radar.js +0 -17
  9034. package/lib/v2/readhub/router.js +0 -3
  9035. package/lib/v2/remnote/changelog.js +0 -33
  9036. package/lib/v2/remnote/maintainer.js +0 -3
  9037. package/lib/v2/remnote/radar.js +0 -13
  9038. package/lib/v2/remnote/router.js +0 -3
  9039. package/lib/v2/researchgate/maintainer.js +0 -3
  9040. package/lib/v2/researchgate/publications.js +0 -70
  9041. package/lib/v2/researchgate/radar.js +0 -13
  9042. package/lib/v2/researchgate/router.js +0 -3
  9043. package/lib/v2/reuters/common.js +0 -136
  9044. package/lib/v2/reuters/investigates.js +0 -39
  9045. package/lib/v2/reuters/maintainer.js +0 -4
  9046. package/lib/v2/reuters/radar.js +0 -19
  9047. package/lib/v2/reuters/router.js +0 -4
  9048. package/lib/v2/rfa/index.js +0 -51
  9049. package/lib/v2/rfa/maintainer.js +0 -3
  9050. package/lib/v2/rfa/radar.js +0 -13
  9051. package/lib/v2/rfa/router.js +0 -3
  9052. package/lib/v2/rfi/maintainer.js +0 -3
  9053. package/lib/v2/rfi/news.js +0 -69
  9054. package/lib/v2/rfi/radar.js +0 -13
  9055. package/lib/v2/rfi/router.js +0 -3
  9056. package/lib/v2/right/forum.js +0 -65
  9057. package/lib/v2/right/maintainer.js +0 -3
  9058. package/lib/v2/right/radar.js +0 -13
  9059. package/lib/v2/right/router.js +0 -3
  9060. package/lib/v2/rodong/maintainer.js +0 -3
  9061. package/lib/v2/rodong/news.js +0 -45
  9062. package/lib/v2/rodong/radar.js +0 -13
  9063. package/lib/v2/rodong/router.js +0 -3
  9064. package/lib/v2/rsc/journal.js +0 -106
  9065. package/lib/v2/rsc/maintainer.js +0 -3
  9066. package/lib/v2/rsc/radar.js +0 -23
  9067. package/lib/v2/rsc/router.js +0 -3
  9068. package/lib/v2/rsshub/maintainer.js +0 -7
  9069. package/lib/v2/rsshub/radar.js +0 -19
  9070. package/lib/v2/rsshub/router.js +0 -7
  9071. package/lib/v2/rsshub/routes.js +0 -65
  9072. package/lib/v2/rsshub/sponsors.js +0 -47
  9073. package/lib/v2/rsshub/transform/html.js +0 -84
  9074. package/lib/v2/rsshub/transform/json.js +0 -58
  9075. package/lib/v2/rsshub/transform/sitemap.js +0 -52
  9076. package/lib/v2/ruancan/category.js +0 -8
  9077. package/lib/v2/ruancan/index.js +0 -7
  9078. package/lib/v2/ruancan/maintainer.js +0 -6
  9079. package/lib/v2/ruancan/radar.js +0 -31
  9080. package/lib/v2/ruancan/router.js +0 -6
  9081. package/lib/v2/ruancan/search.js +0 -8
  9082. package/lib/v2/ruancan/user.js +0 -8
  9083. package/lib/v2/ruancan/utils.js +0 -66
  9084. package/lib/v2/ruc/hr.js +0 -58
  9085. package/lib/v2/ruc/maintainer.js +0 -3
  9086. package/lib/v2/ruc/radar.js +0 -13
  9087. package/lib/v2/ruc/router.js +0 -3
  9088. package/lib/v2/runtrail/maintainer.js +0 -3
  9089. package/lib/v2/runtrail/posts.js +0 -34
  9090. package/lib/v2/runtrail/radar.js +0 -13
  9091. package/lib/v2/runtrail/router.js +0 -3
  9092. package/lib/v2/rustcc/jobs.js +0 -39
  9093. package/lib/v2/rustcc/maintainer.js +0 -3
  9094. package/lib/v2/rustcc/radar.js +0 -13
  9095. package/lib/v2/rustcc/router.js +0 -3
  9096. package/lib/v2/sakurazaka46/blog.js +0 -56
  9097. package/lib/v2/sakurazaka46/maintainer.js +0 -4
  9098. package/lib/v2/sakurazaka46/news.js +0 -51
  9099. package/lib/v2/sakurazaka46/radar.js +0 -19
  9100. package/lib/v2/sakurazaka46/router.js +0 -4
  9101. package/lib/v2/samsung/maintainer.js +0 -3
  9102. package/lib/v2/samsung/radar.js +0 -13
  9103. package/lib/v2/samsung/research/blog.js +0 -49
  9104. package/lib/v2/samsung/router.js +0 -3
  9105. package/lib/v2/saraba1st/digest.js +0 -79
  9106. package/lib/v2/saraba1st/maintainer.js +0 -4
  9107. package/lib/v2/saraba1st/radar.js +0 -25
  9108. package/lib/v2/saraba1st/router.js +0 -4
  9109. package/lib/v2/saraba1st/thread.js +0 -63
  9110. package/lib/v2/sass/gs/index.js +0 -55
  9111. package/lib/v2/sass/maintainer.js +0 -3
  9112. package/lib/v2/sass/radar.js +0 -13
  9113. package/lib/v2/sass/router.js +0 -3
  9114. package/lib/v2/scau/maintainer.js +0 -4
  9115. package/lib/v2/scau/radar.js +0 -21
  9116. package/lib/v2/scau/router.js +0 -4
  9117. package/lib/v2/scau/yjs.js +0 -27
  9118. package/lib/v2/scau/yjsy.js +0 -27
  9119. package/lib/v2/science/blogs.js +0 -62
  9120. package/lib/v2/science/cover.js +0 -69
  9121. package/lib/v2/science/current.js +0 -42
  9122. package/lib/v2/science/early.js +0 -33
  9123. package/lib/v2/science/maintainer.js +0 -6
  9124. package/lib/v2/science/radar.js +0 -31
  9125. package/lib/v2/science/router.js +0 -6
  9126. package/lib/v2/science/utils.js +0 -64
  9127. package/lib/v2/sciencedirect/journal.js +0 -69
  9128. package/lib/v2/sciencedirect/maintainer.js +0 -3
  9129. package/lib/v2/sciencedirect/radar.js +0 -13
  9130. package/lib/v2/sciencedirect/router.js +0 -3
  9131. package/lib/v2/sciencenet/blog.js +0 -61
  9132. package/lib/v2/sciencenet/maintainer.js +0 -4
  9133. package/lib/v2/sciencenet/radar.js +0 -19
  9134. package/lib/v2/sciencenet/router.js +0 -4
  9135. package/lib/v2/sciencenet/user.js +0 -65
  9136. package/lib/v2/scmp/index.js +0 -90
  9137. package/lib/v2/scmp/maintainer.js +0 -3
  9138. package/lib/v2/scmp/radar.js +0 -13
  9139. package/lib/v2/scmp/router.js +0 -3
  9140. package/lib/v2/scmp/utils.js +0 -60
  9141. package/lib/v2/scnu/cs/match.js +0 -36
  9142. package/lib/v2/scnu/jw.js +0 -33
  9143. package/lib/v2/scnu/library.js +0 -33
  9144. package/lib/v2/scnu/maintainer.js +0 -10
  9145. package/lib/v2/scnu/physics_school_announcements_and_news.js +0 -94
  9146. package/lib/v2/scnu/radar.js +0 -65
  9147. package/lib/v2/scnu/router.js +0 -10
  9148. package/lib/v2/scnu/ss.js +0 -28
  9149. package/lib/v2/scnu/yjs.js +0 -24
  9150. package/lib/v2/sctv/maintainer.js +0 -3
  9151. package/lib/v2/sctv/programme.js +0 -80
  9152. package/lib/v2/sctv/radar.js +0 -13
  9153. package/lib/v2/sctv/router.js +0 -3
  9154. package/lib/v2/scut/jwc/news.js +0 -117
  9155. package/lib/v2/scut/jwc/notice.js +0 -123
  9156. package/lib/v2/scut/jwc/school.js +0 -121
  9157. package/lib/v2/scut/maintainer.js +0 -9
  9158. package/lib/v2/scut/radar.js +0 -67
  9159. package/lib/v2/scut/router.js +0 -9
  9160. package/lib/v2/scut/scet/notice.js +0 -31
  9161. package/lib/v2/scut/seie/news_center.js +0 -52
  9162. package/lib/v2/scut/smae/notice.js +0 -54
  9163. package/lib/v2/scut/yjs.js +0 -30
  9164. package/lib/v2/scvtc/maintainer.js +0 -3
  9165. package/lib/v2/scvtc/radar.js +0 -13
  9166. package/lib/v2/scvtc/router.js +0 -3
  9167. package/lib/v2/scvtc/xygg.js +0 -40
  9168. package/lib/v2/sdu/cmse.js +0 -59
  9169. package/lib/v2/sdu/cs.js +0 -57
  9170. package/lib/v2/sdu/data.js +0 -110
  9171. package/lib/v2/sdu/epe.js +0 -55
  9172. package/lib/v2/sdu/extractor/index.js +0 -15
  9173. package/lib/v2/sdu/extractor/sdrj.js +0 -21
  9174. package/lib/v2/sdu/extractor/view.js +0 -21
  9175. package/lib/v2/sdu/extractor/wh/jwc.js +0 -24
  9176. package/lib/v2/sdu/extractor/wh/news.js +0 -21
  9177. package/lib/v2/sdu/maintainer.js +0 -9
  9178. package/lib/v2/sdu/mech.js +0 -60
  9179. package/lib/v2/sdu/radar.js +0 -159
  9180. package/lib/v2/sdu/router.js +0 -9
  9181. package/lib/v2/sdu/sc.js +0 -61
  9182. package/lib/v2/sdu/wh/jwc.js +0 -42
  9183. package/lib/v2/sdu/wh/news.js +0 -38
  9184. package/lib/v2/sdust/maintainer.js +0 -3
  9185. package/lib/v2/sdust/radar.js +0 -13
  9186. package/lib/v2/sdust/router.js +0 -3
  9187. package/lib/v2/sdust/yjsy/zhaosheng.js +0 -52
  9188. package/lib/v2/sdzk/index.js +0 -55
  9189. package/lib/v2/sdzk/maintainer.js +0 -3
  9190. package/lib/v2/sdzk/radar.js +0 -17
  9191. package/lib/v2/sdzk/router.js +0 -3
  9192. package/lib/v2/sec/radar.js +0 -13
  9193. package/lib/v2/sec-in/index.js +0 -19
  9194. package/lib/v2/sec-in/maintainer.js +0 -3
  9195. package/lib/v2/sec-in/radar.js +0 -11
  9196. package/lib/v2/sec-in/router.js +0 -3
  9197. package/lib/v2/sec-wiki/maintainer.js +0 -3
  9198. package/lib/v2/sec-wiki/radar.js +0 -11
  9199. package/lib/v2/sec-wiki/router.js +0 -3
  9200. package/lib/v2/sec-wiki/weekly.js +0 -16
  9201. package/lib/v2/secnews/index.js +0 -27
  9202. package/lib/v2/secnews/maintainer.js +0 -3
  9203. package/lib/v2/secnews/radar.js +0 -13
  9204. package/lib/v2/secnews/router.js +0 -3
  9205. package/lib/v2/secrss/author.js +0 -24
  9206. package/lib/v2/secrss/category.js +0 -26
  9207. package/lib/v2/secrss/maintainer.js +0 -4
  9208. package/lib/v2/secrss/radar.js +0 -19
  9209. package/lib/v2/secrss/router.js +0 -4
  9210. package/lib/v2/seekingalpha/index.js +0 -56
  9211. package/lib/v2/seekingalpha/maintainer.js +0 -3
  9212. package/lib/v2/seekingalpha/radar.js +0 -13
  9213. package/lib/v2/seekingalpha/router.js +0 -3
  9214. package/lib/v2/segmentfault/blogs.js +0 -21
  9215. package/lib/v2/segmentfault/channel.js +0 -34
  9216. package/lib/v2/segmentfault/maintainer.js +0 -5
  9217. package/lib/v2/segmentfault/radar.js +0 -25
  9218. package/lib/v2/segmentfault/router.js +0 -5
  9219. package/lib/v2/segmentfault/user.js +0 -23
  9220. package/lib/v2/segmentfault/utils.js +0 -66
  9221. package/lib/v2/sehuatang/index.js +0 -131
  9222. package/lib/v2/sehuatang/maintainer.js +0 -8
  9223. package/lib/v2/sehuatang/radar.js +0 -19
  9224. package/lib/v2/sehuatang/router.js +0 -8
  9225. package/lib/v2/sehuatang/user.js +0 -113
  9226. package/lib/v2/sensortower/blog.js +0 -69
  9227. package/lib/v2/sensortower/maintainer.js +0 -3
  9228. package/lib/v2/sensortower/radar.js +0 -13
  9229. package/lib/v2/sensortower/router.js +0 -3
  9230. package/lib/v2/setn/index.js +0 -100
  9231. package/lib/v2/setn/maintainer.js +0 -3
  9232. package/lib/v2/setn/radar.js +0 -53
  9233. package/lib/v2/setn/router.js +0 -3
  9234. package/lib/v2/seu/cse/index.js +0 -63
  9235. package/lib/v2/seu/maintainer.js +0 -6
  9236. package/lib/v2/seu/radar.js +0 -37
  9237. package/lib/v2/seu/radio/academic.js +0 -43
  9238. package/lib/v2/seu/router.js +0 -6
  9239. package/lib/v2/seu/yjs.js +0 -37
  9240. package/lib/v2/seu/yzb/index.js +0 -51
  9241. package/lib/v2/shcstheatre/maintainer.js +0 -3
  9242. package/lib/v2/shcstheatre/programs.js +0 -39
  9243. package/lib/v2/shcstheatre/radar.js +0 -13
  9244. package/lib/v2/shcstheatre/router.js +0 -3
  9245. package/lib/v2/shiep/config.js +0 -69
  9246. package/lib/v2/shiep/index.js +0 -70
  9247. package/lib/v2/shiep/maintainer.js +0 -3
  9248. package/lib/v2/shiep/radar.js +0 -509
  9249. package/lib/v2/shiep/router.js +0 -3
  9250. package/lib/v2/shmeea/index.js +0 -44
  9251. package/lib/v2/shmeea/maintainer.js +0 -4
  9252. package/lib/v2/shmeea/radar.js +0 -19
  9253. package/lib/v2/shmeea/router.js +0 -4
  9254. package/lib/v2/shmeea/self-study.js +0 -61
  9255. package/lib/v2/shmtu/jwc.js +0 -57
  9256. package/lib/v2/shmtu/maintainer.js +0 -5
  9257. package/lib/v2/shmtu/portal.js +0 -81
  9258. package/lib/v2/shmtu/radar.js +0 -29
  9259. package/lib/v2/shmtu/router.js +0 -5
  9260. package/lib/v2/shmtu/www.js +0 -58
  9261. package/lib/v2/shopback/maintainer.js +0 -3
  9262. package/lib/v2/shopback/radar.js +0 -13
  9263. package/lib/v2/shopback/router.js +0 -3
  9264. package/lib/v2/shopback/store.js +0 -37
  9265. package/lib/v2/shoppingdesign/maintainer.js +0 -3
  9266. package/lib/v2/shoppingdesign/posts.js +0 -43
  9267. package/lib/v2/shoppingdesign/radar.js +0 -13
  9268. package/lib/v2/shoppingdesign/router.js +0 -3
  9269. package/lib/v2/showstart/const.js +0 -4
  9270. package/lib/v2/showstart/event.js +0 -18
  9271. package/lib/v2/showstart/maintainer.js +0 -4
  9272. package/lib/v2/showstart/params.js +0 -22
  9273. package/lib/v2/showstart/radar.js +0 -28
  9274. package/lib/v2/showstart/router.js +0 -5
  9275. package/lib/v2/showstart/search.js +0 -14
  9276. package/lib/v2/showstart/service.js +0 -90
  9277. package/lib/v2/showstart/utils.js +0 -92
  9278. package/lib/v2/shu/index.js +0 -48
  9279. package/lib/v2/shu/jwb.js +0 -45
  9280. package/lib/v2/shu/maintainer.js +0 -4
  9281. package/lib/v2/shu/radar.js +0 -21
  9282. package/lib/v2/shu/router.js +0 -5
  9283. package/lib/v2/shuiguopai/index.js +0 -80
  9284. package/lib/v2/shuiguopai/maintainer.js +0 -3
  9285. package/lib/v2/shuiguopai/radar.js +0 -13
  9286. package/lib/v2/shuiguopai/router.js +0 -3
  9287. package/lib/v2/shuiguopai/templates/description.art +0 -8
  9288. package/lib/v2/sicau/dky.js +0 -52
  9289. package/lib/v2/sicau/maintainer.js +0 -5
  9290. package/lib/v2/sicau/radar.js +0 -27
  9291. package/lib/v2/sicau/router.js +0 -5
  9292. package/lib/v2/sicau/yan.js +0 -52
  9293. package/lib/v2/sicau/zsjy.js +0 -53
  9294. package/lib/v2/sigsac/ccs.js +0 -57
  9295. package/lib/v2/sigsac/maintainer.js +0 -3
  9296. package/lib/v2/sigsac/radar.js +0 -13
  9297. package/lib/v2/sigsac/router.js +0 -3
  9298. package/lib/v2/simpleinfo/index.js +0 -50
  9299. package/lib/v2/simpleinfo/maintainer.js +0 -3
  9300. package/lib/v2/simpleinfo/radar.js +0 -19
  9301. package/lib/v2/simpleinfo/router.js +0 -3
  9302. package/lib/v2/sina/chuangshiji.js +0 -17
  9303. package/lib/v2/sina/discovery.js +0 -32
  9304. package/lib/v2/sina/finance/china.js +0 -25
  9305. package/lib/v2/sina/finance/stock/usstock.js +0 -37
  9306. package/lib/v2/sina/maintainer.js +0 -8
  9307. package/lib/v2/sina/radar.js +0 -49
  9308. package/lib/v2/sina/rollnews.js +0 -31
  9309. package/lib/v2/sina/router.js +0 -8
  9310. package/lib/v2/sina/sports.js +0 -43
  9311. package/lib/v2/sina/templates/video.art +0 -5
  9312. package/lib/v2/sina/utils.js +0 -104
  9313. package/lib/v2/sinchew/index.js +0 -68
  9314. package/lib/v2/sinchew/maintainer.js +0 -5
  9315. package/lib/v2/sinchew/radar.js +0 -25
  9316. package/lib/v2/sinchew/router.js +0 -4
  9317. package/lib/v2/sis001/forum.js +0 -62
  9318. package/lib/v2/sis001/maintainer.js +0 -3
  9319. package/lib/v2/sis001/radar.js +0 -13
  9320. package/lib/v2/sis001/router.js +0 -3
  9321. package/lib/v2/sjtu/gs.js +0 -60
  9322. package/lib/v2/sjtu/jwc.js +0 -116
  9323. package/lib/v2/sjtu/maintainer.js +0 -9
  9324. package/lib/v2/sjtu/radar.js +0 -126
  9325. package/lib/v2/sjtu/router.js +0 -9
  9326. package/lib/v2/sjtu/seiee/academic.js +0 -17
  9327. package/lib/v2/sjtu/seiee/bjwb.js +0 -44
  9328. package/lib/v2/sjtu/seiee/utils.js +0 -40
  9329. package/lib/v2/sjtu/seiee/xsb.js +0 -52
  9330. package/lib/v2/sjtu/tongqu/activity.js +0 -44
  9331. package/lib/v2/sjtu/yzb/zkxx.js +0 -32
  9332. package/lib/v2/skysports/maintainer.js +0 -3
  9333. package/lib/v2/skysports/news.js +0 -55
  9334. package/lib/v2/skysports/radar.js +0 -13
  9335. package/lib/v2/skysports/router.js +0 -3
  9336. package/lib/v2/slowmist/maintainer.js +0 -3
  9337. package/lib/v2/slowmist/radar.js +0 -13
  9338. package/lib/v2/slowmist/router.js +0 -3
  9339. package/lib/v2/slowmist/slowmist.js +0 -39
  9340. package/lib/v2/smashingmagazine/category.js +0 -68
  9341. package/lib/v2/smashingmagazine/maintainer.js +0 -3
  9342. package/lib/v2/smashingmagazine/radar.js +0 -19
  9343. package/lib/v2/smashingmagazine/router.js +0 -3
  9344. package/lib/v2/smzdm/article.js +0 -43
  9345. package/lib/v2/smzdm/baoliao.js +0 -43
  9346. package/lib/v2/smzdm/haowen.js +0 -48
  9347. package/lib/v2/smzdm/haowen_fenlei.js +0 -56
  9348. package/lib/v2/smzdm/keyword.js +0 -42
  9349. package/lib/v2/smzdm/maintainer.js +0 -8
  9350. package/lib/v2/smzdm/radar.js +0 -48
  9351. package/lib/v2/smzdm/ranking.js +0 -56
  9352. package/lib/v2/smzdm/router.js +0 -8
  9353. package/lib/v2/snowpeak/maintainer.js +0 -3
  9354. package/lib/v2/snowpeak/radar.js +0 -13
  9355. package/lib/v2/snowpeak/router.js +0 -3
  9356. package/lib/v2/snowpeak/us-new-arrivals.js +0 -45
  9357. package/lib/v2/sobooks/date.js +0 -7
  9358. package/lib/v2/sobooks/index.js +0 -7
  9359. package/lib/v2/sobooks/maintainer.js +0 -5
  9360. package/lib/v2/sobooks/radar.js +0 -25
  9361. package/lib/v2/sobooks/router.js +0 -5
  9362. package/lib/v2/sobooks/tag.js +0 -7
  9363. package/lib/v2/sobooks/utils.js +0 -50
  9364. package/lib/v2/sohu/maintainer.js +0 -3
  9365. package/lib/v2/sohu/mp.js +0 -69
  9366. package/lib/v2/sohu/radar.js +0 -13
  9367. package/lib/v2/sohu/router.js +0 -3
  9368. package/lib/v2/solidot/_article.js +0 -50
  9369. package/lib/v2/solidot/main.js +0 -41
  9370. package/lib/v2/solidot/maintainer.js +0 -3
  9371. package/lib/v2/solidot/radar.js +0 -117
  9372. package/lib/v2/solidot/router.js +0 -3
  9373. package/lib/v2/sony/downloads.js +0 -48
  9374. package/lib/v2/sony/maintainer.js +0 -3
  9375. package/lib/v2/sony/radar.js +0 -13
  9376. package/lib/v2/sony/router.js +0 -3
  9377. package/lib/v2/soundofhope/channel.js +0 -42
  9378. package/lib/v2/soundofhope/maintainer.js +0 -3
  9379. package/lib/v2/soundofhope/radar.js +0 -13
  9380. package/lib/v2/soundofhope/router.js +0 -3
  9381. package/lib/v2/sourceforge/index.js +0 -33
  9382. package/lib/v2/sourceforge/maintainer.js +0 -3
  9383. package/lib/v2/sourceforge/radar.js +0 -12
  9384. package/lib/v2/sourceforge/router.js +0 -3
  9385. package/lib/v2/southcn/maintainer.js +0 -4
  9386. package/lib/v2/southcn/nfapp/column.js +0 -45
  9387. package/lib/v2/southcn/nfapp/reporter.js +0 -33
  9388. package/lib/v2/southcn/nfapp/utils.js +0 -23
  9389. package/lib/v2/southcn/radar.js +0 -12
  9390. package/lib/v2/southcn/router.js +0 -4
  9391. package/lib/v2/spotify/artist.js +0 -41
  9392. package/lib/v2/spotify/maintainer.js +0 -8
  9393. package/lib/v2/spotify/playlist.js +0 -31
  9394. package/lib/v2/spotify/radar.js +0 -43
  9395. package/lib/v2/spotify/router.js +0 -8
  9396. package/lib/v2/spotify/saved.js +0 -30
  9397. package/lib/v2/spotify/show.js +0 -43
  9398. package/lib/v2/spotify/top.js +0 -24
  9399. package/lib/v2/spotify/utils.js +0 -62
  9400. package/lib/v2/springer/journal.js +0 -72
  9401. package/lib/v2/springer/maintainer.js +0 -3
  9402. package/lib/v2/springer/radar.js +0 -13
  9403. package/lib/v2/springer/router.js +0 -3
  9404. package/lib/v2/sputniknews/index.js +0 -94
  9405. package/lib/v2/sputniknews/maintainer.js +0 -3
  9406. package/lib/v2/sputniknews/radar.js +0 -13
  9407. package/lib/v2/sputniknews/router.js +0 -3
  9408. package/lib/v2/sqmc/maintainer.js +0 -3
  9409. package/lib/v2/sqmc/radar.js +0 -13
  9410. package/lib/v2/sqmc/router.js +0 -3
  9411. package/lib/v2/sqmc/www.js +0 -49
  9412. package/lib/v2/sse/convert.js +0 -39
  9413. package/lib/v2/sse/disclosure.js +0 -46
  9414. package/lib/v2/sse/inquire.js +0 -45
  9415. package/lib/v2/sse/lawandrules.js +0 -43
  9416. package/lib/v2/sse/maintainer.js +0 -7
  9417. package/lib/v2/sse/radar.js +0 -41
  9418. package/lib/v2/sse/renewal.js +0 -57
  9419. package/lib/v2/sse/router.js +0 -7
  9420. package/lib/v2/ssm/maintainer.js +0 -3
  9421. package/lib/v2/ssm/news.js +0 -38
  9422. package/lib/v2/ssm/radar.js +0 -13
  9423. package/lib/v2/ssm/router.js +0 -3
  9424. package/lib/v2/sspai/activity.js +0 -83
  9425. package/lib/v2/sspai/author.js +0 -57
  9426. package/lib/v2/sspai/bookmarks.js +0 -41
  9427. package/lib/v2/sspai/column.js +0 -62
  9428. package/lib/v2/sspai/index.js +0 -37
  9429. package/lib/v2/sspai/maintainer.js +0 -14
  9430. package/lib/v2/sspai/matrix.js +0 -38
  9431. package/lib/v2/sspai/radar.js +0 -81
  9432. package/lib/v2/sspai/router.js +0 -14
  9433. package/lib/v2/sspai/series.js +0 -46
  9434. package/lib/v2/sspai/seriesUpdate.js +0 -36
  9435. package/lib/v2/sspai/shortcutsGallery.js +0 -29
  9436. package/lib/v2/sspai/tag.js +0 -42
  9437. package/lib/v2/sspai/topic.js +0 -50
  9438. package/lib/v2/sspai/topics.js +0 -37
  9439. package/lib/v2/startuplatte/index.js +0 -56
  9440. package/lib/v2/startuplatte/maintainer.js +0 -3
  9441. package/lib/v2/startuplatte/radar.js +0 -13
  9442. package/lib/v2/startuplatte/router.js +0 -3
  9443. package/lib/v2/stbu/jsjxy.js +0 -51
  9444. package/lib/v2/stbu/maintainer.js +0 -4
  9445. package/lib/v2/stbu/radar.js +0 -21
  9446. package/lib/v2/stbu/router.js +0 -4
  9447. package/lib/v2/stbu/xyxw.js +0 -52
  9448. package/lib/v2/stcn/index.js +0 -64
  9449. package/lib/v2/stcn/maintainer.js +0 -3
  9450. package/lib/v2/stcn/radar.js +0 -13
  9451. package/lib/v2/stcn/router.js +0 -3
  9452. package/lib/v2/stdaily/digitalpaper.js +0 -125
  9453. package/lib/v2/stdaily/maintainer.js +0 -3
  9454. package/lib/v2/stdaily/radar.js +0 -11
  9455. package/lib/v2/stdaily/router.js +0 -3
  9456. package/lib/v2/stheadline/maintainer.js +0 -3
  9457. package/lib/v2/stheadline/radar.js +0 -13
  9458. package/lib/v2/stheadline/router.js +0 -3
  9459. package/lib/v2/stheadline/std/realtime.js +0 -48
  9460. package/lib/v2/stockedge/daily-news.js +0 -29
  9461. package/lib/v2/stockedge/maintainer.js +0 -3
  9462. package/lib/v2/stockedge/radar.js +0 -13
  9463. package/lib/v2/stockedge/router.js +0 -3
  9464. package/lib/v2/stockedge/utils.js +0 -32
  9465. package/lib/v2/storm/index.js +0 -57
  9466. package/lib/v2/storm/maintainer.js +0 -3
  9467. package/lib/v2/storm/radar.js +0 -13
  9468. package/lib/v2/storm/router.js +0 -3
  9469. package/lib/v2/storyfm/episodes.js +0 -63
  9470. package/lib/v2/storyfm/index.js +0 -44
  9471. package/lib/v2/storyfm/maintainer.js +0 -4
  9472. package/lib/v2/storyfm/radar.js +0 -19
  9473. package/lib/v2/storyfm/router.js +0 -4
  9474. package/lib/v2/stratechery/index.js +0 -20
  9475. package/lib/v2/stratechery/maintainer.js +0 -3
  9476. package/lib/v2/stratechery/radar.js +0 -11
  9477. package/lib/v2/stratechery/router.js +0 -3
  9478. package/lib/v2/studygolang/go.js +0 -5
  9479. package/lib/v2/studygolang/jobs.js +0 -7
  9480. package/lib/v2/studygolang/maintainer.js +0 -5
  9481. package/lib/v2/studygolang/radar.js +0 -25
  9482. package/lib/v2/studygolang/router.js +0 -5
  9483. package/lib/v2/studygolang/utils.js +0 -74
  9484. package/lib/v2/studygolang/weekly.js +0 -7
  9485. package/lib/v2/subhd/index.js +0 -79
  9486. package/lib/v2/subhd/maintainer.js +0 -4
  9487. package/lib/v2/subhd/radar.js +0 -19
  9488. package/lib/v2/subhd/router.js +0 -3
  9489. package/lib/v2/supchina/index.js +0 -67
  9490. package/lib/v2/supchina/maintainer.js +0 -4
  9491. package/lib/v2/supchina/podcasts.js +0 -66
  9492. package/lib/v2/supchina/radar.js +0 -19
  9493. package/lib/v2/supchina/router.js +0 -4
  9494. package/lib/v2/surfshark/blog.js +0 -91
  9495. package/lib/v2/surfshark/maintainer.js +0 -3
  9496. package/lib/v2/surfshark/radar.js +0 -90
  9497. package/lib/v2/surfshark/router.js +0 -3
  9498. package/lib/v2/sustech/bidding.js +0 -34
  9499. package/lib/v2/sustech/maintainer.js +0 -5
  9500. package/lib/v2/sustech/newshub-zh.js +0 -39
  9501. package/lib/v2/sustech/radar.js +0 -29
  9502. package/lib/v2/sustech/router.js +0 -5
  9503. package/lib/v2/sustech/yjs.js +0 -29
  9504. package/lib/v2/swissinfo/index.js +0 -73
  9505. package/lib/v2/swissinfo/maintainer.js +0 -3
  9506. package/lib/v2/swissinfo/radar.js +0 -13
  9507. package/lib/v2/swissinfo/router.js +0 -3
  9508. package/lib/v2/swjtu/jtys/yjs.js +0 -55
  9509. package/lib/v2/swjtu/jwc.js +0 -67
  9510. package/lib/v2/swjtu/jyzpxx.js +0 -28
  9511. package/lib/v2/swjtu/maintainer.js +0 -6
  9512. package/lib/v2/swjtu/radar.js +0 -37
  9513. package/lib/v2/swjtu/router.js +0 -6
  9514. package/lib/v2/swjtu/utils.js +0 -33
  9515. package/lib/v2/swjtu/xg.js +0 -79
  9516. package/lib/v2/swpu/bgw.js +0 -58
  9517. package/lib/v2/swpu/cjxy.js +0 -53
  9518. package/lib/v2/swpu/dean.js +0 -59
  9519. package/lib/v2/swpu/dxy.js +0 -61
  9520. package/lib/v2/swpu/is.js +0 -53
  9521. package/lib/v2/swpu/maintainer.js +0 -8
  9522. package/lib/v2/swpu/radar.js +0 -43
  9523. package/lib/v2/swpu/router.js +0 -8
  9524. package/lib/v2/swpu/scs.js +0 -58
  9525. package/lib/v2/swpu/utils.js +0 -22
  9526. package/lib/v2/syosetu/chapter.js +0 -61
  9527. package/lib/v2/syosetu/maintainer.js +0 -3
  9528. package/lib/v2/syosetu/radar.js +0 -21
  9529. package/lib/v2/syosetu/router.js +0 -1
  9530. package/lib/v2/sysu/cse.js +0 -103
  9531. package/lib/v2/sysu/maintainer.js +0 -4
  9532. package/lib/v2/sysu/radar.js +0 -21
  9533. package/lib/v2/sysu/router.js +0 -4
  9534. package/lib/v2/sysu/ygafz.js +0 -69
  9535. package/lib/v2/szse/inquire.js +0 -41
  9536. package/lib/v2/szse/maintainer.js +0 -6
  9537. package/lib/v2/szse/notice.js +0 -73
  9538. package/lib/v2/szse/projectdynamic.js +0 -90
  9539. package/lib/v2/szse/radar.js +0 -33
  9540. package/lib/v2/szse/router.js +0 -6
  9541. package/lib/v2/szse/rule.js +0 -51
  9542. package/lib/v2/szu/maintainer.js +0 -3
  9543. package/lib/v2/szu/radar.js +0 -19
  9544. package/lib/v2/szu/router.js +0 -3
  9545. package/lib/v2/szu/yz/index.js +0 -51
  9546. package/lib/v2/szu/yz/utils.js +0 -74
  9547. package/lib/v2/tableau/maintainer.js +0 -3
  9548. package/lib/v2/tableau/radar.js +0 -11
  9549. package/lib/v2/tableau/router.js +0 -3
  9550. package/lib/v2/tableau/viz-of-the-day.js +0 -26
  9551. package/lib/v2/taiwannews/hot.js +0 -52
  9552. package/lib/v2/taiwannews/maintainer.js +0 -3
  9553. package/lib/v2/taiwannews/radar.js +0 -13
  9554. package/lib/v2/taiwannews/router.js +0 -3
  9555. package/lib/v2/tangshufang/index.js +0 -59
  9556. package/lib/v2/tangshufang/maintainer.js +0 -3
  9557. package/lib/v2/tangshufang/radar.js +0 -13
  9558. package/lib/v2/tangshufang/router.js +0 -3
  9559. package/lib/v2/taobao/maintainer.js +0 -3
  9560. package/lib/v2/taobao/radar.js +0 -117
  9561. package/lib/v2/taobao/router.js +0 -3
  9562. package/lib/v2/taobao/zhongchou.js +0 -46
  9563. package/lib/v2/taoguba/blog.js +0 -84
  9564. package/lib/v2/taoguba/index.js +0 -82
  9565. package/lib/v2/taoguba/maintainer.js +0 -6
  9566. package/lib/v2/taoguba/radar.js +0 -19
  9567. package/lib/v2/taoguba/router.js +0 -6
  9568. package/lib/v2/taptap/changelog.js +0 -41
  9569. package/lib/v2/taptap/maintainer.js +0 -7
  9570. package/lib/v2/taptap/radar.js +0 -42
  9571. package/lib/v2/taptap/review.js +0 -131
  9572. package/lib/v2/taptap/router.js +0 -8
  9573. package/lib/v2/taptap/topic.js +0 -85
  9574. package/lib/v2/taptap/utils.js +0 -54
  9575. package/lib/v2/techcrunch/maintainer.js +0 -3
  9576. package/lib/v2/techcrunch/news.js +0 -38
  9577. package/lib/v2/techcrunch/radar.js +0 -13
  9578. package/lib/v2/techcrunch/router.js +0 -3
  9579. package/lib/v2/techflowpost/express.js +0 -33
  9580. package/lib/v2/techflowpost/index.js +0 -30
  9581. package/lib/v2/techflowpost/maintainer.js +0 -4
  9582. package/lib/v2/techflowpost/radar.js +0 -19
  9583. package/lib/v2/techflowpost/router.js +0 -5
  9584. package/lib/v2/techpowerup/index.js +0 -69
  9585. package/lib/v2/techpowerup/maintainer.js +0 -4
  9586. package/lib/v2/techpowerup/radar.js +0 -19
  9587. package/lib/v2/techpowerup/review.js +0 -69
  9588. package/lib/v2/techpowerup/router.js +0 -4
  9589. package/lib/v2/techpowerup/utils.js +0 -84
  9590. package/lib/v2/telecompaper/maintainer.js +0 -4
  9591. package/lib/v2/telecompaper/news.js +0 -101
  9592. package/lib/v2/telecompaper/radar.js +0 -15
  9593. package/lib/v2/telecompaper/router.js +0 -4
  9594. package/lib/v2/telecompaper/search.js +0 -76
  9595. package/lib/v2/telegram/blog.js +0 -35
  9596. package/lib/v2/telegram/channel.js +0 -605
  9597. package/lib/v2/telegram/maintainer.js +0 -5
  9598. package/lib/v2/telegram/radar.js +0 -34
  9599. package/lib/v2/telegram/router.js +0 -5
  9600. package/lib/v2/telegram/stickerpack.js +0 -26
  9601. package/lib/v2/tencent/cloud/column.js +0 -51
  9602. package/lib/v2/tencent/maintainer.js +0 -8
  9603. package/lib/v2/tencent/news/author.js +0 -48
  9604. package/lib/v2/tencent/news/coronavirus/data.js +0 -71
  9605. package/lib/v2/tencent/news/coronavirus/total.js +0 -34
  9606. package/lib/v2/tencent/news/coronavirus/utils.js +0 -17
  9607. package/lib/v2/tencent/pvp/newsindex.js +0 -64
  9608. package/lib/v2/tencent/qq/sdk/changelog.js +0 -56
  9609. package/lib/v2/tencent/radar.js +0 -89
  9610. package/lib/v2/tencent/router.js +0 -8
  9611. package/lib/v2/tesla/cx.js +0 -119
  9612. package/lib/v2/tesla/maintainer.js +0 -4
  9613. package/lib/v2/tesla/price/get-price.js +0 -25
  9614. package/lib/v2/tesla/price/index.js +0 -41
  9615. package/lib/v2/tesla/radar.js +0 -25
  9616. package/lib/v2/tesla/router.js +0 -4
  9617. package/lib/v2/test/index.js +0 -324
  9618. package/lib/v2/test/maintainer.js +0 -3
  9619. package/lib/v2/test/router.js +0 -3
  9620. package/lib/v2/tfc-taiwan/index.js +0 -36
  9621. package/lib/v2/tfc-taiwan/maintainer.js +0 -9
  9622. package/lib/v2/tfc-taiwan/radar.js +0 -31
  9623. package/lib/v2/tfc-taiwan/router.js +0 -7
  9624. package/lib/v2/tfc-taiwan/utils.js +0 -56
  9625. package/lib/v2/theatlantic/maintainer.js +0 -3
  9626. package/lib/v2/theatlantic/news.js +0 -32
  9627. package/lib/v2/theatlantic/radar.js +0 -13
  9628. package/lib/v2/theatlantic/router.js +0 -3
  9629. package/lib/v2/theatlantic/utils.js +0 -54
  9630. package/lib/v2/thecatcity/index.js +0 -48
  9631. package/lib/v2/thecatcity/maintainer.js +0 -3
  9632. package/lib/v2/thecatcity/radar.js +0 -13
  9633. package/lib/v2/thecatcity/router.js +0 -3
  9634. package/lib/v2/thecatcity/termsMap.js +0 -30
  9635. package/lib/v2/thecover/channel.js +0 -66
  9636. package/lib/v2/thecover/maintainer.js +0 -3
  9637. package/lib/v2/thecover/radar.js +0 -13
  9638. package/lib/v2/thecover/router.js +0 -3
  9639. package/lib/v2/thehindu/maintainer.js +0 -3
  9640. package/lib/v2/thehindu/radar.js +0 -13
  9641. package/lib/v2/thehindu/router.js +0 -3
  9642. package/lib/v2/thehindu/topic.js +0 -57
  9643. package/lib/v2/theinitium/full.js +0 -169
  9644. package/lib/v2/theinitium/maintainer.js +0 -6
  9645. package/lib/v2/theinitium/radar.js +0 -25
  9646. package/lib/v2/theinitium/router.js +0 -3
  9647. package/lib/v2/themoviedb/api-key.js +0 -23
  9648. package/lib/v2/themoviedb/collection.js +0 -21
  9649. package/lib/v2/themoviedb/episodes.js +0 -27
  9650. package/lib/v2/themoviedb/maintainer.js +0 -7
  9651. package/lib/v2/themoviedb/radar.js +0 -73
  9652. package/lib/v2/themoviedb/router.js +0 -7
  9653. package/lib/v2/themoviedb/seasons.js +0 -31
  9654. package/lib/v2/themoviedb/sheet.js +0 -45
  9655. package/lib/v2/themoviedb/trending.js +0 -24
  9656. package/lib/v2/themoviedb/utils.js +0 -34
  9657. package/lib/v2/thenewslens/index.js +0 -79
  9658. package/lib/v2/thenewslens/maintainer.js +0 -10
  9659. package/lib/v2/thenewslens/radar.js +0 -55
  9660. package/lib/v2/thenewslens/router.js +0 -3
  9661. package/lib/v2/thepaper/839studio/category.js +0 -40
  9662. package/lib/v2/thepaper/839studio/studio.js +0 -33
  9663. package/lib/v2/thepaper/channel.js +0 -26
  9664. package/lib/v2/thepaper/factpaper.js +0 -61
  9665. package/lib/v2/thepaper/featured.js +0 -18
  9666. package/lib/v2/thepaper/list.js +0 -27
  9667. package/lib/v2/thepaper/maintainer.js +0 -9
  9668. package/lib/v2/thepaper/radar.js +0 -48
  9669. package/lib/v2/thepaper/router.js +0 -9
  9670. package/lib/v2/thepaper/sidebar.js +0 -24
  9671. package/lib/v2/thepaper/utils.js +0 -84
  9672. package/lib/v2/theverge/index.js +0 -98
  9673. package/lib/v2/theverge/maintainer.js +0 -3
  9674. package/lib/v2/theverge/radar.js +0 -13
  9675. package/lib/v2/theverge/router.js +0 -3
  9676. package/lib/v2/thoughtco/index.js +0 -95
  9677. package/lib/v2/thoughtco/maintainer.js +0 -3
  9678. package/lib/v2/thoughtco/radar.js +0 -155
  9679. package/lib/v2/thoughtco/router.js +0 -3
  9680. package/lib/v2/threads/index.js +0 -73
  9681. package/lib/v2/threads/maintainer.js +0 -3
  9682. package/lib/v2/threads/radar.js +0 -13
  9683. package/lib/v2/threads/router.js +0 -3
  9684. package/lib/v2/threads/utils.js +0 -147
  9685. package/lib/v2/thwiki/index.js +0 -32
  9686. package/lib/v2/thwiki/maintainer.js +0 -3
  9687. package/lib/v2/thwiki/radar.js +0 -13
  9688. package/lib/v2/thwiki/router.js +0 -3
  9689. package/lib/v2/tiktok/maintainer.js +0 -3
  9690. package/lib/v2/tiktok/radar.js +0 -13
  9691. package/lib/v2/tiktok/router.js +0 -3
  9692. package/lib/v2/tiktok/templates/user.art +0 -7
  9693. package/lib/v2/tiktok/user.js +0 -60
  9694. package/lib/v2/timednews/maintainer.js +0 -3
  9695. package/lib/v2/timednews/news.js +0 -106
  9696. package/lib/v2/timednews/radar.js +0 -57
  9697. package/lib/v2/timednews/router.js +0 -3
  9698. package/lib/v2/tingshuitz/changsha.js +0 -43
  9699. package/lib/v2/tingshuitz/dalian.js +0 -29
  9700. package/lib/v2/tingshuitz/dongguan.js +0 -34
  9701. package/lib/v2/tingshuitz/guangzhou.js +0 -23
  9702. package/lib/v2/tingshuitz/hangzhou.js +0 -34
  9703. package/lib/v2/tingshuitz/maintainer.js +0 -13
  9704. package/lib/v2/tingshuitz/nanjing.js +0 -33
  9705. package/lib/v2/tingshuitz/radar.js +0 -89
  9706. package/lib/v2/tingshuitz/router.js +0 -13
  9707. package/lib/v2/tingshuitz/shenzhen.js +0 -29
  9708. package/lib/v2/tingshuitz/wuhan.js +0 -32
  9709. package/lib/v2/tingshuitz/xian.js +0 -31
  9710. package/lib/v2/tingshuitz/xiaoshan.js +0 -34
  9711. package/lib/v2/tingshuitz/yangjiang.js +0 -29
  9712. package/lib/v2/tingtingfm/maintainer.js +0 -3
  9713. package/lib/v2/tingtingfm/program.js +0 -104
  9714. package/lib/v2/tingtingfm/radar.js +0 -13
  9715. package/lib/v2/tingtingfm/router.js +0 -3
  9716. package/lib/v2/tingtingfm/utils.js +0 -32
  9717. package/lib/v2/tisi/index.js +0 -38
  9718. package/lib/v2/tisi/maintainer.js +0 -3
  9719. package/lib/v2/tisi/radar.js +0 -17
  9720. package/lib/v2/tisi/router.js +0 -3
  9721. package/lib/v2/tju/cic/index.js +0 -113
  9722. package/lib/v2/tju/maintainer.js +0 -6
  9723. package/lib/v2/tju/news/index.js +0 -135
  9724. package/lib/v2/tju/oaa/index.js +0 -112
  9725. package/lib/v2/tju/radar.js +0 -97
  9726. package/lib/v2/tju/router.js +0 -6
  9727. package/lib/v2/tju/yzb/index.js +0 -121
  9728. package/lib/v2/tokeninsight/blog.js +0 -52
  9729. package/lib/v2/tokeninsight/bulletin.js +0 -44
  9730. package/lib/v2/tokeninsight/maintainer.js +0 -5
  9731. package/lib/v2/tokeninsight/radar.js +0 -25
  9732. package/lib/v2/tokeninsight/report.js +0 -52
  9733. package/lib/v2/tokeninsight/router.js +0 -5
  9734. package/lib/v2/tongji/maintainer.js +0 -4
  9735. package/lib/v2/tongji/radar.js +0 -21
  9736. package/lib/v2/tongji/router.js +0 -4
  9737. package/lib/v2/tongji/sse/_article.js +0 -25
  9738. package/lib/v2/tongji/sse/notice.js +0 -46
  9739. package/lib/v2/tongji/yjs.js +0 -27
  9740. package/lib/v2/toodaylab/index.js +0 -99
  9741. package/lib/v2/toodaylab/maintainer.js +0 -7
  9742. package/lib/v2/toodaylab/radar.js +0 -37
  9743. package/lib/v2/toodaylab/router.js +0 -3
  9744. package/lib/v2/tophub/index.js +0 -34
  9745. package/lib/v2/tophub/maintainer.js +0 -3
  9746. package/lib/v2/tophub/radar.js +0 -13
  9747. package/lib/v2/tophub/router.js +0 -3
  9748. package/lib/v2/topys/index.js +0 -66
  9749. package/lib/v2/topys/maintainer.js +0 -3
  9750. package/lib/v2/topys/radar.js +0 -13
  9751. package/lib/v2/topys/router.js +0 -3
  9752. package/lib/v2/tradingview/blog.js +0 -60
  9753. package/lib/v2/tradingview/maintainer.js +0 -3
  9754. package/lib/v2/tradingview/radar.js +0 -13
  9755. package/lib/v2/tradingview/router.js +0 -3
  9756. package/lib/v2/tradingview/templates/description.art +0 -4
  9757. package/lib/v2/trending/allTrending.js +0 -196
  9758. package/lib/v2/trending/maintainer.js +0 -3
  9759. package/lib/v2/trending/radar.js +0 -35
  9760. package/lib/v2/trending/router.js +0 -3
  9761. package/lib/v2/tribalfootball/latest.js +0 -68
  9762. package/lib/v2/tribalfootball/maintainer.js +0 -3
  9763. package/lib/v2/tribalfootball/radar.js +0 -13
  9764. package/lib/v2/tribalfootball/router.js +0 -3
  9765. package/lib/v2/trow/maintainer.js +0 -3
  9766. package/lib/v2/trow/portal.js +0 -46
  9767. package/lib/v2/trow/radar.js +0 -13
  9768. package/lib/v2/trow/router.js +0 -3
  9769. package/lib/v2/tvb/maintainer.js +0 -3
  9770. package/lib/v2/tvb/news.js +0 -80
  9771. package/lib/v2/tvb/radar.js +0 -13
  9772. package/lib/v2/tvb/router.js +0 -3
  9773. package/lib/v2/twitch/live.js +0 -88
  9774. package/lib/v2/twitch/maintainer.js +0 -5
  9775. package/lib/v2/twitch/radar.js +0 -37
  9776. package/lib/v2/twitch/router.js +0 -5
  9777. package/lib/v2/twitch/schedule.js +0 -75
  9778. package/lib/v2/twitch/video.js +0 -64
  9779. package/lib/v2/twitter/api_fallback_common.js +0 -17
  9780. package/lib/v2/twitter/collection.js +0 -55
  9781. package/lib/v2/twitter/developer-api/search.js +0 -22
  9782. package/lib/v2/twitter/developer-api/user.js +0 -37
  9783. package/lib/v2/twitter/followings.js +0 -44
  9784. package/lib/v2/twitter/keyword.js +0 -5
  9785. package/lib/v2/twitter/likes.js +0 -22
  9786. package/lib/v2/twitter/list.js +0 -38
  9787. package/lib/v2/twitter/maintainer.js +0 -11
  9788. package/lib/v2/twitter/media.js +0 -7
  9789. package/lib/v2/twitter/radar.js +0 -83
  9790. package/lib/v2/twitter/router.js +0 -11
  9791. package/lib/v2/twitter/trends.js +0 -24
  9792. package/lib/v2/twitter/tweet.js +0 -5
  9793. package/lib/v2/twitter/user.js +0 -5
  9794. package/lib/v2/twitter/utils.js +0 -456
  9795. package/lib/v2/twitter/web-api/constants.js +0 -77
  9796. package/lib/v2/twitter/web-api/media.js +0 -23
  9797. package/lib/v2/twitter/web-api/search.js +0 -16
  9798. package/lib/v2/twitter/web-api/tweet.js +0 -25
  9799. package/lib/v2/twitter/web-api/twitter-api.js +0 -289
  9800. package/lib/v2/twitter/web-api/twitter-got.js +0 -113
  9801. package/lib/v2/twitter/web-api/user.js +0 -33
  9802. package/lib/v2/twreporter/category.js +0 -40
  9803. package/lib/v2/twreporter/fetch_article.js +0 -67
  9804. package/lib/v2/twreporter/maintainer.js +0 -5
  9805. package/lib/v2/twreporter/newest.js +0 -29
  9806. package/lib/v2/twreporter/photography.js +0 -46
  9807. package/lib/v2/twreporter/radar.js +0 -25
  9808. package/lib/v2/twreporter/router.js +0 -5
  9809. package/lib/v2/txrjy/fornumtopic.js +0 -72
  9810. package/lib/v2/txrjy/maintainer.js +0 -3
  9811. package/lib/v2/txrjy/radar.js +0 -17
  9812. package/lib/v2/txrjy/router.js +0 -3
  9813. package/lib/v2/tynu/maintainer.js +0 -3
  9814. package/lib/v2/tynu/radar.js +0 -13
  9815. package/lib/v2/tynu/router.js +0 -3
  9816. package/lib/v2/tynu/tynu.js +0 -39
  9817. package/lib/v2/typora/changelog-dev.js +0 -31
  9818. package/lib/v2/typora/changelog.js +0 -40
  9819. package/lib/v2/typora/maintainer.js +0 -4
  9820. package/lib/v2/typora/radar.js +0 -21
  9821. package/lib/v2/typora/router.js +0 -4
  9822. package/lib/v2/u3c3/index.js +0 -59
  9823. package/lib/v2/u3c3/maintainer.js +0 -3
  9824. package/lib/v2/u3c3/radar.js +0 -29
  9825. package/lib/v2/u3c3/router.js +0 -3
  9826. package/lib/v2/u9a9/index.js +0 -66
  9827. package/lib/v2/u9a9/maintainer.js +0 -4
  9828. package/lib/v2/u9a9/radar.js +0 -19
  9829. package/lib/v2/u9a9/router.js +0 -4
  9830. package/lib/v2/uber/blog.js +0 -58
  9831. package/lib/v2/uber/maintainer.js +0 -3
  9832. package/lib/v2/uber/radar.js +0 -13
  9833. package/lib/v2/uber/router.js +0 -3
  9834. package/lib/v2/ucas/ai.js +0 -28
  9835. package/lib/v2/ucas/index.js +0 -59
  9836. package/lib/v2/ucas/maintainer.js +0 -4
  9837. package/lib/v2/ucas/radar.js +0 -41
  9838. package/lib/v2/ucas/rader.js +0 -47
  9839. package/lib/v2/ucas/router.js +0 -4
  9840. package/lib/v2/uchicago/current.js +0 -80
  9841. package/lib/v2/uchicago/maintainer.js +0 -3
  9842. package/lib/v2/uchicago/radar.js +0 -13
  9843. package/lib/v2/uchicago/router.js +0 -3
  9844. package/lib/v2/udn/breaking-news.js +0 -94
  9845. package/lib/v2/udn/global/index.js +0 -67
  9846. package/lib/v2/udn/global/tag.js +0 -51
  9847. package/lib/v2/udn/maintainer.js +0 -5
  9848. package/lib/v2/udn/radar.js +0 -27
  9849. package/lib/v2/udn/router.js +0 -5
  9850. package/lib/v2/uestc/auto.js +0 -45
  9851. package/lib/v2/uestc/cqe.js +0 -60
  9852. package/lib/v2/uestc/gr.js +0 -48
  9853. package/lib/v2/uestc/jwc.js +0 -52
  9854. package/lib/v2/uestc/maintainer.js +0 -12
  9855. package/lib/v2/uestc/news.js +0 -51
  9856. package/lib/v2/uestc/radar.js +0 -69
  9857. package/lib/v2/uestc/router.js +0 -12
  9858. package/lib/v2/uestc/scse.js +0 -90
  9859. package/lib/v2/uestc/sice.js +0 -46
  9860. package/lib/v2/uestc/sise.js +0 -80
  9861. package/lib/v2/uibe/hr.js +0 -58
  9862. package/lib/v2/uibe/maintainer.js +0 -3
  9863. package/lib/v2/uibe/radar.js +0 -13
  9864. package/lib/v2/uibe/router.js +0 -3
  9865. package/lib/v2/ulapia/index.js +0 -47
  9866. package/lib/v2/ulapia/maintainer.js +0 -3
  9867. package/lib/v2/ulapia/radar.js +0 -55
  9868. package/lib/v2/ulapia/research.js +0 -38
  9869. package/lib/v2/ulapia/router.js +0 -4
  9870. package/lib/v2/uniqlo/maintainer.js +0 -3
  9871. package/lib/v2/uniqlo/new.js +0 -62
  9872. package/lib/v2/uniqlo/radar.js +0 -12
  9873. package/lib/v2/uniqlo/router.js +0 -3
  9874. package/lib/v2/unusualwhales/maintainer.js +0 -3
  9875. package/lib/v2/unusualwhales/news.js +0 -24
  9876. package/lib/v2/unusualwhales/radar.js +0 -13
  9877. package/lib/v2/unusualwhales/router.js +0 -3
  9878. package/lib/v2/upc/jsj.js +0 -77
  9879. package/lib/v2/upc/main.js +0 -72
  9880. package/lib/v2/upc/maintainer.js +0 -5
  9881. package/lib/v2/upc/radar.js +0 -53
  9882. package/lib/v2/upc/router.js +0 -5
  9883. package/lib/v2/upc/yjs.js +0 -28
  9884. package/lib/v2/uptimerobot/maintainer.js +0 -3
  9885. package/lib/v2/uptimerobot/radar.js +0 -13
  9886. package/lib/v2/uptimerobot/router.js +0 -3
  9887. package/lib/v2/uptimerobot/rss.js +0 -126
  9888. package/lib/v2/uraaka-joshi/maintainer.js +0 -4
  9889. package/lib/v2/uraaka-joshi/radar.js +0 -19
  9890. package/lib/v2/uraaka-joshi/router.js +0 -4
  9891. package/lib/v2/uraaka-joshi/uraaka-joshi-user.js +0 -105
  9892. package/lib/v2/uraaka-joshi/uraaka-joshi.js +0 -89
  9893. package/lib/v2/urbandictionary/maintainer.js +0 -3
  9894. package/lib/v2/urbandictionary/radar.js +0 -13
  9895. package/lib/v2/urbandictionary/random.js +0 -24
  9896. package/lib/v2/urbandictionary/router.js +0 -3
  9897. package/lib/v2/usenix/maintainer.js +0 -3
  9898. package/lib/v2/usenix/radar.js +0 -13
  9899. package/lib/v2/usenix/router.js +0 -3
  9900. package/lib/v2/usenix/usenix.js +0 -63
  9901. package/lib/v2/usepanda/index.js +0 -26
  9902. package/lib/v2/usepanda/maintainer.js +0 -3
  9903. package/lib/v2/usepanda/radar.js +0 -11
  9904. package/lib/v2/usepanda/router.js +0 -3
  9905. package/lib/v2/ustb/maintainer.js +0 -5
  9906. package/lib/v2/ustb/radar.js +0 -29
  9907. package/lib/v2/ustb/router.js +0 -5
  9908. package/lib/v2/ustb/tj/news.js +0 -61
  9909. package/lib/v2/ustb/yjsy/news.js +0 -464
  9910. package/lib/v2/ustb/yzxc/tzgg.js +0 -49
  9911. package/lib/v2/ustc/eeis.js +0 -60
  9912. package/lib/v2/ustc/gs.js +0 -59
  9913. package/lib/v2/ustc/index.js +0 -79
  9914. package/lib/v2/ustc/job.js +0 -193
  9915. package/lib/v2/ustc/jwc.js +0 -57
  9916. package/lib/v2/ustc/maintainer.js +0 -8
  9917. package/lib/v2/ustc/radar.js +0 -53
  9918. package/lib/v2/ustc/router.js +0 -8
  9919. package/lib/v2/ustc/sist.js +0 -60
  9920. package/lib/v2/usts/jwch.js +0 -56
  9921. package/lib/v2/usts/maintainer.js +0 -3
  9922. package/lib/v2/usts/radar.js +0 -25
  9923. package/lib/v2/usts/router.js +0 -3
  9924. package/lib/v2/utgd/category.js +0 -68
  9925. package/lib/v2/utgd/maintainer.js +0 -5
  9926. package/lib/v2/utgd/radar.js +0 -25
  9927. package/lib/v2/utgd/router.js +0 -5
  9928. package/lib/v2/utgd/templates/description.art +0 -7
  9929. package/lib/v2/utgd/timeline.js +0 -54
  9930. package/lib/v2/utgd/topic.js +0 -70
  9931. package/lib/v2/uw/gix/news.js +0 -67
  9932. package/lib/v2/uw/maintainer.js +0 -3
  9933. package/lib/v2/uw/radar.js +0 -13
  9934. package/lib/v2/uw/router.js +0 -3
  9935. package/lib/v2/v1tx/index.js +0 -55
  9936. package/lib/v2/v1tx/maintainer.js +0 -3
  9937. package/lib/v2/v1tx/radar.js +0 -13
  9938. package/lib/v2/v1tx/router.js +0 -3
  9939. package/lib/v2/v2ex/maintainer.js +0 -5
  9940. package/lib/v2/v2ex/post.js +0 -35
  9941. package/lib/v2/v2ex/radar.js +0 -35
  9942. package/lib/v2/v2ex/router.js +0 -5
  9943. package/lib/v2/v2ex/tab.js +0 -56
  9944. package/lib/v2/v2ex/topics.js +0 -30
  9945. package/lib/v2/v2rayshare/index.js +0 -22
  9946. package/lib/v2/v2rayshare/maintainer.js +0 -3
  9947. package/lib/v2/v2rayshare/radar.js +0 -13
  9948. package/lib/v2/v2rayshare/router.js +0 -3
  9949. package/lib/v2/vcb-s/category.js +0 -51
  9950. package/lib/v2/vcb-s/index.js +0 -39
  9951. package/lib/v2/vcb-s/maintainer.js +0 -4
  9952. package/lib/v2/vcb-s/radar.js +0 -19
  9953. package/lib/v2/vcb-s/router.js +0 -4
  9954. package/lib/v2/verfghbw/maintainer.js +0 -3
  9955. package/lib/v2/verfghbw/press.js +0 -60
  9956. package/lib/v2/verfghbw/radar.js +0 -13
  9957. package/lib/v2/verfghbw/router.js +0 -3
  9958. package/lib/v2/verse/articles.js +0 -42
  9959. package/lib/v2/verse/maintainer.js +0 -3
  9960. package/lib/v2/verse/radar.js +0 -13
  9961. package/lib/v2/verse/router.js +0 -3
  9962. package/lib/v2/vimeo/category.js +0 -64
  9963. package/lib/v2/vimeo/channel.js +0 -72
  9964. package/lib/v2/vimeo/maintainer.js +0 -5
  9965. package/lib/v2/vimeo/radar.js +0 -33
  9966. package/lib/v2/vimeo/router.js +0 -5
  9967. package/lib/v2/vimeo/usr-videos.js +0 -76
  9968. package/lib/v2/vlive/index.js +0 -71
  9969. package/lib/v2/vlive/maintainer.js +0 -3
  9970. package/lib/v2/vlive/radar.js +0 -13
  9971. package/lib/v2/vlive/router.js +0 -3
  9972. package/lib/v2/vlive/templates/post.art +0 -8
  9973. package/lib/v2/vlive/templates/video.art +0 -3
  9974. package/lib/v2/vmware/flings.js +0 -59
  9975. package/lib/v2/vmware/maintainer.js +0 -3
  9976. package/lib/v2/vmware/radar.js +0 -13
  9977. package/lib/v2/vmware/router.js +0 -3
  9978. package/lib/v2/vocus/maintainer.js +0 -4
  9979. package/lib/v2/vocus/publication.js +0 -42
  9980. package/lib/v2/vocus/radar.js +0 -19
  9981. package/lib/v2/vocus/router.js +0 -4
  9982. package/lib/v2/vocus/user.js +0 -43
  9983. package/lib/v2/vocus/utils.js +0 -51
  9984. package/lib/v2/vom/featured.js +0 -50
  9985. package/lib/v2/vom/maintainer.js +0 -3
  9986. package/lib/v2/vom/radar.js +0 -13
  9987. package/lib/v2/vom/router.js +0 -3
  9988. package/lib/v2/wallhaven/index.js +0 -55
  9989. package/lib/v2/wallhaven/maintainer.js +0 -4
  9990. package/lib/v2/wallhaven/radar.js +0 -53
  9991. package/lib/v2/wallhaven/router.js +0 -4
  9992. package/lib/v2/wallpaperhub/index.js +0 -28
  9993. package/lib/v2/wallpaperhub/maintainer.js +0 -3
  9994. package/lib/v2/wallpaperhub/radar.js +0 -13
  9995. package/lib/v2/wallpaperhub/router.js +0 -3
  9996. package/lib/v2/wallstreetcn/hot.js +0 -56
  9997. package/lib/v2/wallstreetcn/live.js +0 -49
  9998. package/lib/v2/wallstreetcn/maintainer.js +0 -6
  9999. package/lib/v2/wallstreetcn/news.js +0 -76
  10000. package/lib/v2/wallstreetcn/radar.js +0 -25
  10001. package/lib/v2/wallstreetcn/router.js +0 -6
  10002. package/lib/v2/wangqiutiyu/anchor.js +0 -42
  10003. package/lib/v2/wangqiutiyu/maintainer.js +0 -3
  10004. package/lib/v2/wangqiutiyu/radar.js +0 -13
  10005. package/lib/v2/wangqiutiyu/router.js +0 -3
  10006. package/lib/v2/wanqu/maintainer.js +0 -3
  10007. package/lib/v2/wanqu/news.js +0 -27
  10008. package/lib/v2/wanqu/radar.js +0 -13
  10009. package/lib/v2/wanqu/router.js +0 -3
  10010. package/lib/v2/warthunder/maintainer.js +0 -3
  10011. package/lib/v2/warthunder/news.js +0 -49
  10012. package/lib/v2/warthunder/radar.js +0 -13
  10013. package/lib/v2/warthunder/router.js +0 -3
  10014. package/lib/v2/watchout/index.js +0 -51
  10015. package/lib/v2/watchout/maintainer.js +0 -3
  10016. package/lib/v2/watchout/radar.js +0 -13
  10017. package/lib/v2/watchout/router.js +0 -3
  10018. package/lib/v2/wdc/download.js +0 -37
  10019. package/lib/v2/wdc/maintainer.js +0 -3
  10020. package/lib/v2/wdc/radar.js +0 -13
  10021. package/lib/v2/wdc/router.js +0 -3
  10022. package/lib/v2/web3caff/index.js +0 -63
  10023. package/lib/v2/web3caff/maintainer.js +0 -3
  10024. package/lib/v2/web3caff/radar.js +0 -13
  10025. package/lib/v2/web3caff/router.js +0 -3
  10026. package/lib/v2/wechat/_README +0 -1
  10027. package/lib/v2/wechat/announce.js +0 -33
  10028. package/lib/v2/wechat/ce.js +0 -69
  10029. package/lib/v2/wechat/data258.js +0 -137
  10030. package/lib/v2/wechat/ershcimi.js +0 -35
  10031. package/lib/v2/wechat/feeddd.js +0 -47
  10032. package/lib/v2/wechat/feeds.js +0 -23
  10033. package/lib/v2/wechat/maintainer.js +0 -15
  10034. package/lib/v2/wechat/mp.js +0 -59
  10035. package/lib/v2/wechat/msgalbum.js +0 -41
  10036. package/lib/v2/wechat/radar.js +0 -104
  10037. package/lib/v2/wechat/router.js +0 -15
  10038. package/lib/v2/wechat/sogou.js +0 -58
  10039. package/lib/v2/wechat/tgchannel.js +0 -146
  10040. package/lib/v2/wechat/uread.js +0 -51
  10041. package/lib/v2/wechat/wechat2rss.js +0 -28
  10042. package/lib/v2/wechat/wxnmh.js +0 -46
  10043. package/lib/v2/weekendhk/maintainer.js +0 -3
  10044. package/lib/v2/weekendhk/posts.js +0 -29
  10045. package/lib/v2/weekendhk/radar.js +0 -13
  10046. package/lib/v2/weekendhk/router.js +0 -3
  10047. package/lib/v2/weibo/group.js +0 -93
  10048. package/lib/v2/weibo/keyword.js +0 -46
  10049. package/lib/v2/weibo/maintainer.js +0 -9
  10050. package/lib/v2/weibo/oasis/user.js +0 -21
  10051. package/lib/v2/weibo/radar.js +0 -48
  10052. package/lib/v2/weibo/router.js +0 -9
  10053. package/lib/v2/weibo/search/hot.js +0 -35
  10054. package/lib/v2/weibo/super_index.js +0 -53
  10055. package/lib/v2/weibo/timeline.js +0 -162
  10056. package/lib/v2/weibo/user.js +0 -149
  10057. package/lib/v2/weibo/utils.js +0 -470
  10058. package/lib/v2/wenku8/chapter.js +0 -35
  10059. package/lib/v2/wenku8/index.js +0 -52
  10060. package/lib/v2/wenku8/maintainer.js +0 -5
  10061. package/lib/v2/wenku8/radar.js +0 -85
  10062. package/lib/v2/wenku8/router.js +0 -5
  10063. package/lib/v2/wenku8/volume.js +0 -52
  10064. package/lib/v2/wfdf/maintainer.js +0 -3
  10065. package/lib/v2/wfdf/news.js +0 -29
  10066. package/lib/v2/wfdf/radar.js +0 -13
  10067. package/lib/v2/wfdf/router.js +0 -3
  10068. package/lib/v2/wfu/jwc.js +0 -54
  10069. package/lib/v2/wfu/maintainer.js +0 -4
  10070. package/lib/v2/wfu/news.js +0 -96
  10071. package/lib/v2/wfu/radar.js +0 -21
  10072. package/lib/v2/wfu/router.js +0 -4
  10073. package/lib/v2/whitehouse/briefing-room.js +0 -50
  10074. package/lib/v2/whitehouse/maintainer.js +0 -4
  10075. package/lib/v2/whitehouse/ostp.js +0 -50
  10076. package/lib/v2/whitehouse/radar.js +0 -19
  10077. package/lib/v2/whitehouse/router.js +0 -4
  10078. package/lib/v2/who/maintainer.js +0 -5
  10079. package/lib/v2/who/news-room.js +0 -75
  10080. package/lib/v2/who/news.js +0 -42
  10081. package/lib/v2/who/radar.js +0 -25
  10082. package/lib/v2/who/router.js +0 -5
  10083. package/lib/v2/who/speeches.js +0 -45
  10084. package/lib/v2/whoscall/index.js +0 -55
  10085. package/lib/v2/whoscall/maintainer.js +0 -5
  10086. package/lib/v2/whoscall/radar.js +0 -25
  10087. package/lib/v2/whoscall/router.js +0 -3
  10088. package/lib/v2/whu/cs.js +0 -71
  10089. package/lib/v2/whu/gs/index.js +0 -85
  10090. package/lib/v2/whu/hyxt.js +0 -50
  10091. package/lib/v2/whu/maintainer.js +0 -6
  10092. package/lib/v2/whu/news.js +0 -70
  10093. package/lib/v2/whu/radar.js +0 -275
  10094. package/lib/v2/whu/router.js +0 -6
  10095. package/lib/v2/whu/util.js +0 -148
  10096. package/lib/v2/wikinews/index.js +0 -42
  10097. package/lib/v2/wikinews/maintainer.js +0 -3
  10098. package/lib/v2/wikinews/radar.js +0 -13
  10099. package/lib/v2/wikinews/router.js +0 -4
  10100. package/lib/v2/winstall/maintainer.js +0 -3
  10101. package/lib/v2/winstall/radar.js +0 -13
  10102. package/lib/v2/winstall/router.js +0 -3
  10103. package/lib/v2/winstall/update.js +0 -43
  10104. package/lib/v2/wise/maintainer.js +0 -3
  10105. package/lib/v2/wise/pair.js +0 -65
  10106. package/lib/v2/wise/radar.js +0 -11
  10107. package/lib/v2/wise/router.js +0 -3
  10108. package/lib/v2/wizfile/index.js +0 -41
  10109. package/lib/v2/wizfile/maintainer.js +0 -3
  10110. package/lib/v2/wizfile/radar.js +0 -13
  10111. package/lib/v2/wizfile/router.js +0 -3
  10112. package/lib/v2/wnacg/index.js +0 -110
  10113. package/lib/v2/wnacg/maintainer.js +0 -5
  10114. package/lib/v2/wnacg/radar.js +0 -25
  10115. package/lib/v2/wnacg/router.js +0 -5
  10116. package/lib/v2/worldjournal/index.js +0 -60
  10117. package/lib/v2/worldjournal/maintainer.js +0 -3
  10118. package/lib/v2/worldjournal/radar.js +0 -13
  10119. package/lib/v2/worldjournal/router.js +0 -3
  10120. package/lib/v2/woshipm/bookmarks.js +0 -34
  10121. package/lib/v2/woshipm/latest.js +0 -27
  10122. package/lib/v2/woshipm/maintainer.js +0 -7
  10123. package/lib/v2/woshipm/popular.js +0 -33
  10124. package/lib/v2/woshipm/radar.js +0 -39
  10125. package/lib/v2/woshipm/router.js +0 -7
  10126. package/lib/v2/woshipm/user_article.js +0 -37
  10127. package/lib/v2/woshipm/utils.js +0 -21
  10128. package/lib/v2/woshipm/wen.js +0 -36
  10129. package/lib/v2/wp-china/maintainer.js +0 -3
  10130. package/lib/v2/wp-china/news.js +0 -56
  10131. package/lib/v2/wp-china/radar.js +0 -13
  10132. package/lib/v2/wp-china/router.js +0 -3
  10133. package/lib/v2/wsj/maintainer.js +0 -3
  10134. package/lib/v2/wsj/news.js +0 -51
  10135. package/lib/v2/wsj/radar.js +0 -21
  10136. package/lib/v2/wsj/router.js +0 -3
  10137. package/lib/v2/wsj/utils.js +0 -121
  10138. package/lib/v2/wsyu/maintainer.js +0 -3
  10139. package/lib/v2/wsyu/news.js +0 -85
  10140. package/lib/v2/wsyu/radar.js +0 -25
  10141. package/lib/v2/wsyu/router.js +0 -3
  10142. package/lib/v2/wtu/index.js +0 -37
  10143. package/lib/v2/wtu/job.js +0 -80
  10144. package/lib/v2/wtu/maintainer.js +0 -4
  10145. package/lib/v2/wtu/radar.js +0 -22
  10146. package/lib/v2/wtu/router.js +0 -4
  10147. package/lib/v2/wxkol/maintainer.js +0 -3
  10148. package/lib/v2/wxkol/radar.js +0 -13
  10149. package/lib/v2/wxkol/router.js +0 -3
  10150. package/lib/v2/wxkol/show.js +0 -81
  10151. package/lib/v2/wyzxwk/article.js +0 -64
  10152. package/lib/v2/wyzxwk/maintainer.js +0 -3
  10153. package/lib/v2/wyzxwk/radar.js +0 -13
  10154. package/lib/v2/wyzxwk/router.js +0 -3
  10155. package/lib/v2/wzu/maintainer.js +0 -3
  10156. package/lib/v2/wzu/news.js +0 -84
  10157. package/lib/v2/wzu/radar.js +0 -11
  10158. package/lib/v2/wzu/router.js +0 -3
  10159. package/lib/v2/x-mol/maintainer.js +0 -4
  10160. package/lib/v2/x-mol/news.js +0 -63
  10161. package/lib/v2/x-mol/paper.js +0 -73
  10162. package/lib/v2/x-mol/radar.js +0 -25
  10163. package/lib/v2/x-mol/router.js +0 -4
  10164. package/lib/v2/x-mol/utils.js +0 -3
  10165. package/lib/v2/x6d/index.js +0 -59
  10166. package/lib/v2/x6d/maintainer.js +0 -3
  10167. package/lib/v2/x6d/radar.js +0 -13
  10168. package/lib/v2/x6d/router.js +0 -3
  10169. package/lib/v2/xaufe/jiaowu.js +0 -72
  10170. package/lib/v2/xaufe/maintainer.js +0 -3
  10171. package/lib/v2/xaufe/radar.js +0 -11
  10172. package/lib/v2/xaufe/router.js +0 -3
  10173. package/lib/v2/xaut/index.js +0 -72
  10174. package/lib/v2/xaut/jwc.js +0 -65
  10175. package/lib/v2/xaut/maintainer.js +0 -5
  10176. package/lib/v2/xaut/radar.js +0 -23
  10177. package/lib/v2/xaut/router.js +0 -5
  10178. package/lib/v2/xaut/rsc.js +0 -67
  10179. package/lib/v2/xboxfan/maintainer.js +0 -3
  10180. package/lib/v2/xboxfan/news.js +0 -45
  10181. package/lib/v2/xboxfan/radar.js +0 -13
  10182. package/lib/v2/xboxfan/router.js +0 -3
  10183. package/lib/v2/xiaohongshu/board.js +0 -30
  10184. package/lib/v2/xiaohongshu/maintainer.js +0 -5
  10185. package/lib/v2/xiaohongshu/notes.js +0 -16
  10186. package/lib/v2/xiaohongshu/radar.js +0 -25
  10187. package/lib/v2/xiaohongshu/router.js +0 -5
  10188. package/lib/v2/xiaohongshu/user.js +0 -54
  10189. package/lib/v2/xiaohongshu/util.js +0 -192
  10190. package/lib/v2/xiaomiyoupin/crowdfunding.js +0 -43
  10191. package/lib/v2/xiaomiyoupin/latest.js +0 -15
  10192. package/lib/v2/xiaomiyoupin/maintainer.js +0 -4
  10193. package/lib/v2/xiaomiyoupin/radar.js +0 -19
  10194. package/lib/v2/xiaomiyoupin/router.js +0 -4
  10195. package/lib/v2/xiaomiyoupin/utils.js +0 -21
  10196. package/lib/v2/xiaote/index.js +0 -48
  10197. package/lib/v2/xiaote/maintainer.js +0 -3
  10198. package/lib/v2/xiaote/radar.js +0 -13
  10199. package/lib/v2/xiaote/router.js +0 -3
  10200. package/lib/v2/xiaoyuzhou/maintainer.js +0 -4
  10201. package/lib/v2/xiaoyuzhou/pickup.js +0 -96
  10202. package/lib/v2/xiaoyuzhou/podcast.js +0 -36
  10203. package/lib/v2/xiaoyuzhou/radar.js +0 -19
  10204. package/lib/v2/xiaoyuzhou/router.js +0 -4
  10205. package/lib/v2/xiaozhuanlan/column.js +0 -52
  10206. package/lib/v2/xiaozhuanlan/maintainer.js +0 -3
  10207. package/lib/v2/xiaozhuanlan/radar.js +0 -13
  10208. package/lib/v2/xiaozhuanlan/router.js +0 -3
  10209. package/lib/v2/xidian/jwc.js +0 -54
  10210. package/lib/v2/xidian/maintainer.js +0 -3
  10211. package/lib/v2/xidian/radar.js +0 -13
  10212. package/lib/v2/xidian/router.js +0 -3
  10213. package/lib/v2/ximalaya/album.js +0 -220
  10214. package/lib/v2/ximalaya/maintainer.js +0 -4
  10215. package/lib/v2/ximalaya/radar.js +0 -17
  10216. package/lib/v2/ximalaya/router.js +0 -4
  10217. package/lib/v2/ximalaya/utils.js +0 -132
  10218. package/lib/v2/xinpianchang/index.js +0 -19
  10219. package/lib/v2/xinpianchang/maintainer.js +0 -4
  10220. package/lib/v2/xinpianchang/radar.js +0 -28
  10221. package/lib/v2/xinpianchang/rank.js +0 -33
  10222. package/lib/v2/xinpianchang/router.js +0 -5
  10223. package/lib/v2/xinpianchang/util.js +0 -110
  10224. package/lib/v2/xjtu/2yuan/news.js +0 -61
  10225. package/lib/v2/xjtu/dean.js +0 -83
  10226. package/lib/v2/xjtu/dyyy/index.js +0 -44
  10227. package/lib/v2/xjtu/ee.js +0 -44
  10228. package/lib/v2/xjtu/gs/tzgg.js +0 -39
  10229. package/lib/v2/xjtu/international.js +0 -51
  10230. package/lib/v2/xjtu/job.js +0 -81
  10231. package/lib/v2/xjtu/maintainer.js +0 -10
  10232. package/lib/v2/xjtu/radar.js +0 -61
  10233. package/lib/v2/xjtu/router.js +0 -10
  10234. package/lib/v2/xjtu/std.js +0 -58
  10235. package/lib/v2/xkb/index.js +0 -54
  10236. package/lib/v2/xkb/maintainer.js +0 -3
  10237. package/lib/v2/xkb/radar.js +0 -13
  10238. package/lib/v2/xkb/router.js +0 -3
  10239. package/lib/v2/xkb/templates/description.art +0 -3
  10240. package/lib/v2/xmanhua/index.js +0 -74
  10241. package/lib/v2/xmanhua/maintainer.js +0 -3
  10242. package/lib/v2/xmanhua/radar.js +0 -13
  10243. package/lib/v2/xmanhua/router.js +0 -3
  10244. package/lib/v2/xmnn/docs.js +0 -0
  10245. package/lib/v2/xmnn/epaper.js +0 -85
  10246. package/lib/v2/xmnn/maintainer.js +0 -4
  10247. package/lib/v2/xmnn/news.js +0 -65
  10248. package/lib/v2/xmnn/radar.js +0 -79
  10249. package/lib/v2/xmnn/router.js +0 -4
  10250. package/lib/v2/xmut/jwc/bkjw.js +0 -62
  10251. package/lib/v2/xmut/jwc/yjs.js +0 -51
  10252. package/lib/v2/xmut/maintainer.js +0 -3
  10253. package/lib/v2/xmut/radar.js +0 -13
  10254. package/lib/v2/xmut/router.js +0 -4
  10255. package/lib/v2/xsijishe/forum.js +0 -61
  10256. package/lib/v2/xsijishe/maintainer.js +0 -3
  10257. package/lib/v2/xsijishe/radar.js +0 -19
  10258. package/lib/v2/xsijishe/router.js +0 -3
  10259. package/lib/v2/xueqiu/column.js +0 -42
  10260. package/lib/v2/xueqiu/favorite.js +0 -38
  10261. package/lib/v2/xueqiu/fund.js +0 -50
  10262. package/lib/v2/xueqiu/hots.js +0 -45
  10263. package/lib/v2/xueqiu/maintainer.js +0 -12
  10264. package/lib/v2/xueqiu/radar.js +0 -72
  10265. package/lib/v2/xueqiu/router.js +0 -12
  10266. package/lib/v2/xueqiu/snb.js +0 -45
  10267. package/lib/v2/xueqiu/stock_comments.js +0 -45
  10268. package/lib/v2/xueqiu/stock_info.js +0 -72
  10269. package/lib/v2/xueqiu/today.js +0 -65
  10270. package/lib/v2/xueqiu/user.js +0 -75
  10271. package/lib/v2/xueqiu/user_stock.js +0 -48
  10272. package/lib/v2/xunhupay/index.js +0 -24
  10273. package/lib/v2/xunhupay/maintainer.js +0 -3
  10274. package/lib/v2/xunhupay/radar.js +0 -13
  10275. package/lib/v2/xunhupay/router.js +0 -3
  10276. package/lib/v2/xwlb/index.js +0 -40
  10277. package/lib/v2/xwlb/maintainer.js +0 -4
  10278. package/lib/v2/xwlb/radar.js +0 -13
  10279. package/lib/v2/xwlb/router.js +0 -4
  10280. package/lib/v2/xys/maintainer.js +0 -3
  10281. package/lib/v2/xys/new.js +0 -74
  10282. package/lib/v2/xys/radar.js +0 -13
  10283. package/lib/v2/xys/router.js +0 -3
  10284. package/lib/v2/xyzrank/index.js +0 -111
  10285. package/lib/v2/xyzrank/maintainer.js +0 -6
  10286. package/lib/v2/xyzrank/radar.js +0 -31
  10287. package/lib/v2/xyzrank/router.js +0 -3
  10288. package/lib/v2/yahoo/maintainer.js +0 -3
  10289. package/lib/v2/yahoo/news/index.js +0 -45
  10290. package/lib/v2/yahoo/radar.js +0 -13
  10291. package/lib/v2/yahoo/router.js +0 -3
  10292. package/lib/v2/yangtzeu/dongke.js +0 -60
  10293. package/lib/v2/yangtzeu/maintainer.js +0 -3
  10294. package/lib/v2/yangtzeu/radar.js +0 -18
  10295. package/lib/v2/yangtzeu/router.js +0 -3
  10296. package/lib/v2/yaohuo/index.js +0 -30
  10297. package/lib/v2/yaohuo/maintainer.js +0 -3
  10298. package/lib/v2/yaohuo/radar.js +0 -13
  10299. package/lib/v2/yaohuo/router.js +0 -3
  10300. package/lib/v2/ycwb/index.js +0 -82
  10301. package/lib/v2/ycwb/maintainer.js +0 -3
  10302. package/lib/v2/ycwb/radar.js +0 -12
  10303. package/lib/v2/ycwb/router.js +0 -3
  10304. package/lib/v2/yicai/author.js +0 -26
  10305. package/lib/v2/yicai/brief.js +0 -28
  10306. package/lib/v2/yicai/feed.js +0 -26
  10307. package/lib/v2/yicai/headline.js +0 -13
  10308. package/lib/v2/yicai/latest.js +0 -13
  10309. package/lib/v2/yicai/maintainer.js +0 -10
  10310. package/lib/v2/yicai/news.js +0 -39
  10311. package/lib/v2/yicai/radar.js +0 -55
  10312. package/lib/v2/yicai/router.js +0 -10
  10313. package/lib/v2/yicai/templates/description.art +0 -11
  10314. package/lib/v2/yicai/utils.js +0 -51
  10315. package/lib/v2/yicai/video.js +0 -39
  10316. package/lib/v2/yicai/vip.js +0 -26
  10317. package/lib/v2/ymgal/article.js +0 -61
  10318. package/lib/v2/ymgal/game.js +0 -41
  10319. package/lib/v2/ymgal/maintainer.js +0 -4
  10320. package/lib/v2/ymgal/radar.js +0 -31
  10321. package/lib/v2/ymgal/router.js +0 -4
  10322. package/lib/v2/yoasobi-music/info.js +0 -68
  10323. package/lib/v2/yoasobi-music/jsonpHelper.js +0 -19
  10324. package/lib/v2/yoasobi-music/live.js +0 -52
  10325. package/lib/v2/yoasobi-music/maintainer.js +0 -5
  10326. package/lib/v2/yoasobi-music/media.js +0 -59
  10327. package/lib/v2/yoasobi-music/radar.js +0 -31
  10328. package/lib/v2/yoasobi-music/router.js +0 -5
  10329. package/lib/v2/yomiuri/maintainer.js +0 -3
  10330. package/lib/v2/yomiuri/news.js +0 -79
  10331. package/lib/v2/yomiuri/radar.js +0 -13
  10332. package/lib/v2/yomiuri/router.js +0 -3
  10333. package/lib/v2/yomujp/level.js +0 -101
  10334. package/lib/v2/yomujp/maintainer.js +0 -3
  10335. package/lib/v2/yomujp/radar.js +0 -13
  10336. package/lib/v2/yomujp/router.js +0 -3
  10337. package/lib/v2/youku/channel.js +0 -56
  10338. package/lib/v2/youku/maintainer.js +0 -3
  10339. package/lib/v2/youku/radar.js +0 -13
  10340. package/lib/v2/youku/router.js +0 -3
  10341. package/lib/v2/youtube/channel.js +0 -39
  10342. package/lib/v2/youtube/charts.js +0 -97
  10343. package/lib/v2/youtube/community.js +0 -56
  10344. package/lib/v2/youtube/custom.js +0 -45
  10345. package/lib/v2/youtube/live.js +0 -49
  10346. package/lib/v2/youtube/maintainer.js +0 -10
  10347. package/lib/v2/youtube/playlist.js +0 -33
  10348. package/lib/v2/youtube/radar.js +0 -63
  10349. package/lib/v2/youtube/router.js +0 -10
  10350. package/lib/v2/youtube/subscriptions.js +0 -56
  10351. package/lib/v2/youtube/user.js +0 -47
  10352. package/lib/v2/youtube/utils.js +0 -155
  10353. package/lib/v2/youzhiyouxing/maintainer.js +0 -3
  10354. package/lib/v2/youzhiyouxing/materials.js +0 -56
  10355. package/lib/v2/youzhiyouxing/radar.js +0 -73
  10356. package/lib/v2/youzhiyouxing/router.js +0 -3
  10357. package/lib/v2/yunspe/maintainer.js +0 -3
  10358. package/lib/v2/yunspe/newsflash.js +0 -42
  10359. package/lib/v2/yunspe/radar.js +0 -13
  10360. package/lib/v2/yunspe/router.js +0 -3
  10361. package/lib/v2/yuque/book.js +0 -93
  10362. package/lib/v2/yuque/maintainer.js +0 -3
  10363. package/lib/v2/yuque/radar.js +0 -13
  10364. package/lib/v2/yuque/router.js +0 -3
  10365. package/lib/v2/yuque/utils.js +0 -65
  10366. package/lib/v2/yxdown/maintainer.js +0 -4
  10367. package/lib/v2/yxdown/news.js +0 -57
  10368. package/lib/v2/yxdown/radar.js +0 -19
  10369. package/lib/v2/yxdown/recommend.js +0 -54
  10370. package/lib/v2/yxdown/router.js +0 -4
  10371. package/lib/v2/yxdown/utils.js +0 -17
  10372. package/lib/v2/yxdzqb/index.js +0 -53
  10373. package/lib/v2/yxdzqb/maintainer.js +0 -3
  10374. package/lib/v2/yxdzqb/radar.js +0 -13
  10375. package/lib/v2/yxdzqb/router.js +0 -3
  10376. package/lib/v2/yxrb/home.js +0 -61
  10377. package/lib/v2/yxrb/maintainer.js +0 -3
  10378. package/lib/v2/yxrb/radar.js +0 -13
  10379. package/lib/v2/yxrb/router.js +0 -3
  10380. package/lib/v2/yyets/article.js +0 -45
  10381. package/lib/v2/yyets/maintainer.js +0 -4
  10382. package/lib/v2/yyets/radar.js +0 -19
  10383. package/lib/v2/yyets/router.js +0 -4
  10384. package/lib/v2/yyets/today.js +0 -37
  10385. package/lib/v2/yystv/category.js +0 -65
  10386. package/lib/v2/yystv/docs.js +0 -34
  10387. package/lib/v2/yystv/maintainer.js +0 -4
  10388. package/lib/v2/yystv/radar.js +0 -49
  10389. package/lib/v2/yystv/router.js +0 -4
  10390. package/lib/v2/zagg/maintainer.js +0 -3
  10391. package/lib/v2/zagg/new-arrivals.js +0 -52
  10392. package/lib/v2/zagg/radar.js +0 -16
  10393. package/lib/v2/zagg/router.js +0 -3
  10394. package/lib/v2/zaker/index.js +0 -65
  10395. package/lib/v2/zaker/maintainer.js +0 -3
  10396. package/lib/v2/zaker/radar.js +0 -19
  10397. package/lib/v2/zaker/router.js +0 -3
  10398. package/lib/v2/zaobao/index.js +0 -17
  10399. package/lib/v2/zaobao/interactive.js +0 -15
  10400. package/lib/v2/zaobao/maintainer.js +0 -6
  10401. package/lib/v2/zaobao/radar.js +0 -28
  10402. package/lib/v2/zaobao/realtime.js +0 -30
  10403. package/lib/v2/zaobao/router.js +0 -6
  10404. package/lib/v2/zaobao/util.js +0 -185
  10405. package/lib/v2/zaobao/znews.js +0 -32
  10406. package/lib/v2/zaozao/article.js +0 -36
  10407. package/lib/v2/zaozao/maintainer.js +0 -3
  10408. package/lib/v2/zaozao/radar.js +0 -13
  10409. package/lib/v2/zaozao/router.js +0 -3
  10410. package/lib/v2/zcmu/jwc/index.js +0 -41
  10411. package/lib/v2/zcmu/maintainer.js +0 -4
  10412. package/lib/v2/zcmu/radar.js +0 -87
  10413. package/lib/v2/zcmu/router.js +0 -4
  10414. package/lib/v2/zcmu/yxy/index.js +0 -42
  10415. package/lib/v2/zcool/discover.js +0 -152
  10416. package/lib/v2/zcool/locations.js +0 -6829
  10417. package/lib/v2/zcool/maintainer.js +0 -7
  10418. package/lib/v2/zcool/radar.js +0 -55
  10419. package/lib/v2/zcool/router.js +0 -5
  10420. package/lib/v2/zcool/top.js +0 -51
  10421. package/lib/v2/zcool/user.js +0 -52
  10422. package/lib/v2/zcool/utils.js +0 -14
  10423. package/lib/v2/zhangyoubao/index.js +0 -42
  10424. package/lib/v2/zhangyoubao/maintainer.js +0 -3
  10425. package/lib/v2/zhangyoubao/radar.js +0 -13
  10426. package/lib/v2/zhangyoubao/router.js +0 -3
  10427. package/lib/v2/zhangyoubao/templates/article.art +0 -1
  10428. package/lib/v2/zhibo8/forum.js +0 -46
  10429. package/lib/v2/zhibo8/luxiang.js +0 -38
  10430. package/lib/v2/zhibo8/maintainer.js +0 -6
  10431. package/lib/v2/zhibo8/more.js +0 -77
  10432. package/lib/v2/zhibo8/post.js +0 -49
  10433. package/lib/v2/zhibo8/radar.js +0 -35
  10434. package/lib/v2/zhibo8/router.js +0 -6
  10435. package/lib/v2/zhihu/activities.js +0 -142
  10436. package/lib/v2/zhihu/answers.js +0 -67
  10437. package/lib/v2/zhihu/bookstore/newest.js +0 -30
  10438. package/lib/v2/zhihu/collection.js +0 -77
  10439. package/lib/v2/zhihu/daily.js +0 -80
  10440. package/lib/v2/zhihu/daily_section.js +0 -51
  10441. package/lib/v2/zhihu/execlib/x-zse-96_v3.js +0 -122
  10442. package/lib/v2/zhihu/hot.js +0 -38
  10443. package/lib/v2/zhihu/hotlist.js +0 -47
  10444. package/lib/v2/zhihu/maintainer.js +0 -23
  10445. package/lib/v2/zhihu/pin/daily.js +0 -18
  10446. package/lib/v2/zhihu/pin/hotlist.js +0 -18
  10447. package/lib/v2/zhihu/pin/people.js +0 -19
  10448. package/lib/v2/zhihu/pin/utils.js +0 -68
  10449. package/lib/v2/zhihu/posts.js +0 -53
  10450. package/lib/v2/zhihu/question.js +0 -80
  10451. package/lib/v2/zhihu/radar.js +0 -131
  10452. package/lib/v2/zhihu/router.js +0 -23
  10453. package/lib/v2/zhihu/timeline.js +0 -100
  10454. package/lib/v2/zhihu/topic.js +0 -68
  10455. package/lib/v2/zhihu/utils.js +0 -48
  10456. package/lib/v2/zhihu/weekly.js +0 -31
  10457. package/lib/v2/zhihu/xhu/auth.js +0 -38
  10458. package/lib/v2/zhihu/xhu/collection.js +0 -64
  10459. package/lib/v2/zhihu/xhu/question.js +0 -44
  10460. package/lib/v2/zhihu/xhu/topic.js +0 -70
  10461. package/lib/v2/zhihu/xhu/zhuanlan.js +0 -83
  10462. package/lib/v2/zhihu/zhuanlan.js +0 -92
  10463. package/lib/v2/zhitongcaijing/index.js +0 -118
  10464. package/lib/v2/zhitongcaijing/maintainer.js +0 -3
  10465. package/lib/v2/zhitongcaijing/radar.js +0 -17
  10466. package/lib/v2/zhitongcaijing/router.js +0 -3
  10467. package/lib/v2/zhiy/letter.js +0 -34
  10468. package/lib/v2/zhiy/maintainer.js +0 -4
  10469. package/lib/v2/zhiy/post.js +0 -69
  10470. package/lib/v2/zhiy/radar.js +0 -19
  10471. package/lib/v2/zhiy/router.js +0 -4
  10472. package/lib/v2/zhiy/utils.js +0 -13
  10473. package/lib/v2/zhubai/index.js +0 -33
  10474. package/lib/v2/zhubai/maintainer.js +0 -4
  10475. package/lib/v2/zhubai/radar.js +0 -20
  10476. package/lib/v2/zhubai/router.js +0 -4
  10477. package/lib/v2/zhubai/top20.js +0 -66
  10478. package/lib/v2/zimuxia/index.js +0 -64
  10479. package/lib/v2/zimuxia/maintainer.js +0 -4
  10480. package/lib/v2/zimuxia/portfolio.js +0 -52
  10481. package/lib/v2/zimuxia/radar.js +0 -19
  10482. package/lib/v2/zimuxia/router.js +0 -4
  10483. package/lib/v2/zjgtjy/index.js +0 -46
  10484. package/lib/v2/zjgtjy/maintainer.js +0 -3
  10485. package/lib/v2/zjgtjy/radar.js +0 -31
  10486. package/lib/v2/zjgtjy/router.js +0 -3
  10487. package/lib/v2/zjol/maintainer.js +0 -3
  10488. package/lib/v2/zjol/paper.js +0 -88
  10489. package/lib/v2/zjol/radar.js +0 -61
  10490. package/lib/v2/zjol/router.js +0 -3
  10491. package/lib/v2/zju/career/index.js +0 -43
  10492. package/lib/v2/zju/cst/custom.js +0 -45
  10493. package/lib/v2/zju/cst/index.js +0 -90
  10494. package/lib/v2/zju/grs/index.js +0 -44
  10495. package/lib/v2/zju/list.js +0 -66
  10496. package/lib/v2/zju/maintainer.js +0 -8
  10497. package/lib/v2/zju/physics/index.js +0 -52
  10498. package/lib/v2/zju/radar.js +0 -139
  10499. package/lib/v2/zju/router.js +0 -8
  10500. package/lib/v2/zjuvag/blog.js +0 -33
  10501. package/lib/v2/zjuvag/maintainer.js +0 -3
  10502. package/lib/v2/zjuvag/radar.js +0 -11
  10503. package/lib/v2/zjuvag/router.js +0 -3
  10504. package/lib/v2/zodgame/forum.js +0 -92
  10505. package/lib/v2/zodgame/maintainer.js +0 -3
  10506. package/lib/v2/zodgame/radar.js +0 -18
  10507. package/lib/v2/zodgame/router.js +0 -3
  10508. package/lib/v2/zooTeam/blog.js +0 -32
  10509. package/lib/v2/zooTeam/maintainer.js +0 -4
  10510. package/lib/v2/zooTeam/radar.js +0 -21
  10511. package/lib/v2/zooTeam/router.js +0 -4
  10512. package/lib/v2/zooTeam/weekly.js +0 -34
  10513. package/lib/v2/zotero/maintainer.js +0 -3
  10514. package/lib/v2/zotero/radar.js +0 -13
  10515. package/lib/v2/zotero/router.js +0 -3
  10516. package/lib/v2/zotero/versions.js +0 -36
  10517. package/lib/v2/zuel/maintainer.js +0 -3
  10518. package/lib/v2/zuel/notice.js +0 -52
  10519. package/lib/v2/zuel/radar.js +0 -13
  10520. package/lib/v2/zuel/router.js +0 -3
  10521. package/lib/v2/zuvio/boards.js +0 -14
  10522. package/lib/v2/zuvio/maintainer.js +0 -4
  10523. package/lib/v2/zuvio/radar.js +0 -13
  10524. package/lib/v2/zuvio/router.js +0 -4
  10525. package/lib/v2/zuvio/student5.js +0 -58
  10526. package/lib/v2/zuvio/utils.js +0 -61
  10527. package/lib/v2/zuzhirenshi/index.js +0 -87
  10528. package/lib/v2/zuzhirenshi/maintainer.js +0 -3
  10529. package/lib/v2/zuzhirenshi/radar.js +0 -13
  10530. package/lib/v2/zuzhirenshi/router.js +0 -3
  10531. package/lib/v2/zyshow/index.js +0 -46
  10532. package/lib/v2/zyshow/maintainer.js +0 -3
  10533. package/lib/v2/zyshow/radar.js +0 -17
  10534. package/lib/v2/zyshow/router.js +0 -3
  10535. package/lib/v2/zyw/hot.js +0 -63
  10536. package/lib/v2/zyw/maintainer.js +0 -3
  10537. package/lib/v2/zyw/radar.js +0 -16
  10538. package/lib/v2/zyw/router.js +0 -3
  10539. package/lib/v2router.js +0 -17
  10540. package/lib/views/atom.art +0 -86
  10541. package/lib/views/error.art +0 -65
  10542. package/lib/views/json.js +0 -46
  10543. package/lib/views/rss.art +0 -60
  10544. package/lib/views/welcome.art +0 -114
  10545. /package/lib/{favicon.png → assets/favicon.png} +0 -0
  10546. /package/lib/{v2 → routes}/12306/templates/train.art +0 -0
  10547. /package/lib/{v2 → routes}/141jav/templates/description.art +0 -0
  10548. /package/lib/{v2 → routes}/141ppv/templates/description.art +0 -0
  10549. /package/lib/{v2 → routes}/163/templates/ds.art +0 -0
  10550. /package/lib/{v2 → routes}/163/templates/dy.art +0 -0
  10551. /package/lib/{v2 → routes}/163/templates/exclusive.art +0 -0
  10552. /package/lib/{v2 → routes}/163/templates/music/djradio-content.art +0 -0
  10553. /package/lib/{v2 → routes}/163/templates/music/playlist.art +0 -0
  10554. /package/lib/{v2 → routes}/163/templates/music/userevents.art +0 -0
  10555. /package/lib/{v2 → routes}/163/templates/music/userplaylist.art +0 -0
  10556. /package/lib/{v2 → routes}/163/templates/music/userplayrecords.art +0 -0
  10557. /package/lib/{v2 → routes}/163/templates/open.art +0 -0
  10558. /package/lib/{v2 → routes}/1point3acres/templates/image.art +0 -0
  10559. /package/lib/{v2 → routes}/1point3acres/templates/offer.art +0 -0
  10560. /package/lib/{v2 → routes}/2048/templates/download.art +0 -0
  10561. /package/lib/{v2 → routes}/500px/templates/tribeSet.art +0 -0
  10562. /package/lib/{v2 → routes}/500px/templates/user.art +0 -0
  10563. /package/lib/{v2 → routes}/591/templates/house.art +0 -0
  10564. /package/lib/{v2 → routes}/78dm/templates/image.art +0 -0
  10565. /package/lib/{v2 → routes}/7mmtv/templates/description.art +0 -0
  10566. /package/lib/{v2 → routes}/8264/templates/description.art +0 -0
  10567. /package/lib/{v2 → routes}/91porn/templates/index.art +0 -0
  10568. /package/lib/{v2 → routes}/95mm/templates/description.art +0 -0
  10569. /package/lib/{v2 → routes}/abc/templates/description.art +0 -0
  10570. /package/lib/{v2 → routes}/acs/templates/description.art +0 -0
  10571. /package/lib/{v2 → routes}/aeaweb/templates/description.art +0 -0
  10572. /package/lib/{v2 → routes}/aeon/templates/essay.art +0 -0
  10573. /package/lib/{v2 → routes}/aeon/templates/video.art +0 -0
  10574. /package/lib/{v2 → routes}/aicaijing/templates/description.art +0 -0
  10575. /package/lib/{v2 → routes}/aip/templates/description.art +0 -0
  10576. /package/lib/{v2 → routes}/aljazeera/templates/description.art +0 -0
  10577. /package/lib/{v2 → routes}/amazon/templates/software-description.art +0 -0
  10578. /package/lib/{v2 → routes}/apnews/templates/description.art +0 -0
  10579. /package/lib/{v2 → routes}/app-center/templates/description.art +0 -0
  10580. /package/lib/{v2 → routes}/aqara/templates/figure.art +0 -0
  10581. /package/lib/{v2 → routes}/arcteryx/templates/product-description.art +0 -0
  10582. /package/lib/{v2 → routes}/arcteryx/templates/regear-product-description.art +0 -0
  10583. /package/lib/{v2 → routes}/asiantolick/templates/description.art +0 -0
  10584. /package/lib/{v2 → routes}/asus/templates/bios.art +0 -0
  10585. /package/lib/{v2 → routes}/baidu/templates/forum.art +0 -0
  10586. /package/lib/{v2 → routes}/baidu/templates/gushitong.art +0 -0
  10587. /package/lib/{v2 → routes}/baidu/templates/post.art +0 -0
  10588. /package/lib/{v2 → routes}/baidu/templates/tieba_search.art +0 -0
  10589. /package/lib/{v2 → routes}/baidu/templates/top.art +0 -0
  10590. /package/lib/{v2 → routes}/bandcamp/templates/weekly.art +0 -0
  10591. /package/lib/{v2 → routes}/bangumi/templates/online/image.art +0 -0
  10592. /package/lib/{v2 → routes}/bangumi/templates/tv/ep.art +0 -0
  10593. /package/lib/{v2 → routes}/bangumi/templates/tv/today.art +0 -0
  10594. /package/lib/{v2 → routes}/baozimh/templates/desc.art +0 -0
  10595. /package/lib/{v2 → routes}/bdys/templates/desc.art +0 -0
  10596. /package/lib/{v2 → routes}/bgmlist/templates/description.art +0 -0
  10597. /package/lib/{v2 → routes}/bloomberg/templates/audio_media.art +0 -0
  10598. /package/lib/{v2 → routes}/bloomberg/templates/chart_media.art +0 -0
  10599. /package/lib/{v2 → routes}/bloomberg/templates/image_figure.art +0 -0
  10600. /package/lib/{v2 → routes}/bloomberg/templates/lede_media.art +0 -0
  10601. /package/lib/{v2 → routes}/bloomberg/templates/video_media.art +0 -0
  10602. /package/lib/{v2 → routes}/btzj/templates/torrents.art +0 -0
  10603. /package/lib/{v2 → routes}/caai/templates/description.art +0 -0
  10604. /package/lib/{v2 → routes}/caareviews/templates/utils.art +0 -0
  10605. /package/lib/{v2 → routes}/cahkms/templates/description.art +0 -0
  10606. /package/lib/{v2 → routes}/cankaoxiaoxi/templates/description.art +0 -0
  10607. /package/lib/{v2 → routes}/cartoonmad/templates/chapter.art +0 -0
  10608. /package/lib/{v2 → routes}/cbaigui/templates/figure.art +0 -0
  10609. /package/lib/{v2 → routes}/ccf/templates/ccfcv/description.art +0 -0
  10610. /package/lib/{v2 → routes}/ccf/templates/tfbd/description.art +0 -0
  10611. /package/lib/{v2 → routes}/cde/templates/xxgk/breakthroughCure.art +0 -0
  10612. /package/lib/{v2 → routes}/cde/templates/xxgk/cliniCal.art +0 -0
  10613. /package/lib/{v2 → routes}/cde/templates/xxgk/priorityApproval.art +0 -0
  10614. /package/lib/{v2 → routes}/cdzjryb/templates/projectList.art +0 -0
  10615. /package/lib/{v2 → routes}/cebbank/templates/allDes.art +0 -0
  10616. /package/lib/{v2 → routes}/cebbank/templates/historyDes.art +0 -0
  10617. /package/lib/{v2 → routes}/chaincatcher/templates/home.art +0 -0
  10618. /package/lib/{v2 → routes}/changba/templates/work_description.art +0 -0
  10619. /package/lib/{v2 → routes}/chaoxing/templates/description.art +0 -0
  10620. /package/lib/{v2 → routes}/chinadegrees/templates/description.art +0 -0
  10621. /package/lib/{v2 → routes}/cls/templates/depth.art +0 -0
  10622. /package/lib/{v2 → routes}/cls/templates/telegraph.art +0 -0
  10623. /package/lib/{v2 → routes}/cma/templates/description.art +0 -0
  10624. /package/lib/{v2 → routes}/cngal/templates/entry-description.art +0 -0
  10625. /package/lib/{v2 → routes}/cngal/templates/weekly-description.art +0 -0
  10626. /package/lib/{v2 → routes}/cnjxol/templates/description.art +0 -0
  10627. /package/lib/{v2 → routes}/cnki/templates/desc.art +0 -0
  10628. /package/lib/{v2 → routes}/cntv/templates/column.art +0 -0
  10629. /package/lib/{v2 → routes}/codeforces/templates/contest.art +0 -0
  10630. /package/lib/{v2 → routes}/comicskingdom/templates/desc.art +0 -0
  10631. /package/lib/{v2 → routes}/copymanga/templates/comic.art +0 -0
  10632. /package/lib/{v2 → routes}/creative-comic/templates/chapter.art +0 -0
  10633. /package/lib/{v2 → routes}/cztv/templates/daily.art +0 -0
  10634. /package/lib/{v2 → routes}/cztv/templates/zjxwlb.art +0 -0
  10635. /package/lib/{v2 → routes}/dcfever/templates/trading.art +0 -0
  10636. /package/lib/{v2 → routes}/deadline/templates/desc.art +0 -0
  10637. /package/lib/{v2 → routes}/dedao/templates/knowledge.art +0 -0
  10638. /package/lib/{v2 → routes}/dedao/templates/user.art +0 -0
  10639. /package/lib/{v2 → routes}/diershoubing/templates/news.art +0 -0
  10640. /package/lib/{v2 → routes}/dlnews/templates/description.art +0 -0
  10641. /package/lib/{v2 → routes}/dlsite/templates/description.art +0 -0
  10642. /package/lib/{v2 → routes}/dn/templates/description.art +0 -0
  10643. /package/lib/{v2/discuz/radar.js → routes/dnaindia/category.ts} +0 -0
  10644. /package/lib/{v2 → routes}/douban/templates/explore.art +0 -0
  10645. /package/lib/{v2 → routes}/douban/templates/list_description.art +0 -0
  10646. /package/lib/{v2 → routes}/douban/templates/weekly_best.art +0 -0
  10647. /package/lib/{v2 → routes}/douyin/templates/cover.art +0 -0
  10648. /package/lib/{v2 → routes}/douyin/templates/desc.art +0 -0
  10649. /package/lib/{v2 → routes}/douyin/templates/iframe.art +0 -0
  10650. /package/lib/{v2 → routes}/douyu/templates/description.art +0 -0
  10651. /package/lib/{v2 → routes}/dribbble/templates/description.art +0 -0
  10652. /package/lib/{v2 → routes}/duozhuayu/templates/book.art +0 -0
  10653. /package/lib/{v2 → routes}/dushu/fuzhou/templates/message.art +0 -0
  10654. /package/lib/{v2 → routes}/e-hentai/templates/images.art +0 -0
  10655. /package/lib/{v2 → routes}/ecnu/templates/description.art +0 -0
  10656. /package/lib/{v2 → routes}/elsevier/templates/description.art +0 -0
  10657. /package/lib/{v2 → routes}/epicgames/templates/description.art +0 -0
  10658. /package/lib/{v2 → routes}/eprice/templates/image.art +0 -0
  10659. /package/lib/{v2 → routes}/farmatters/templates/description.art +0 -0
  10660. /package/lib/{v2 → routes}/fastbull/templates/description.art +0 -0
  10661. /package/lib/{v2 → routes}/feng/templates/deleted.art +0 -0
  10662. /package/lib/{v2 → routes}/feng/templates/img.art +0 -0
  10663. /package/lib/{v2 → routes}/ff14/templates/description.art +0 -0
  10664. /package/lib/{v2 → routes}/fffdm/templates/manhua.art +0 -0
  10665. /package/lib/{v2 → routes}/firefox/templates/description.art +0 -0
  10666. /package/lib/{v2 → routes}/fisher-spb/templates/image.art +0 -0
  10667. /package/lib/{v2 → routes}/fisher-spb/templates/video.art +0 -0
  10668. /package/lib/{v2 → routes}/focustaiwan/templates/article.art +0 -0
  10669. /package/lib/{v2 → routes}/followin/templates/thread.art +0 -0
  10670. /package/lib/{v2 → routes}/foresightnews/templates/description.art +0 -0
  10671. /package/lib/{v2 → routes}/fosshub/templates/description.art +0 -0
  10672. /package/lib/{v2 → routes}/freecomputerbooks/templates/desc.art +0 -0
  10673. /package/lib/{v2 → routes}/furstar/templates/author.art +0 -0
  10674. /package/lib/{v2 → routes}/furstar/templates/description.art +0 -0
  10675. /package/lib/{v2 → routes}/futunn/templates/description.art +0 -0
  10676. /package/lib/{v2 → routes}/gameapps/templates/description.art +0 -0
  10677. /package/lib/{v2 → routes}/gcores/templates/content.art +0 -0
  10678. /package/lib/{v2 → routes}/gelonghui/templates/live.art +0 -0
  10679. /package/lib/{v2 → routes}/geocaching/templates/blogs.art +0 -0
  10680. /package/lib/{v2 → routes}/gettr/templates/post.art +0 -0
  10681. /package/lib/{v2 → routes}/github/templates/comments-description.art +0 -0
  10682. /package/lib/{v2 → routes}/github/templates/pulse-description.art +0 -0
  10683. /package/lib/{v2 → routes}/github/templates/trending-description.art +0 -0
  10684. /package/lib/{v2 → routes}/gitpod/templates/description.art +0 -0
  10685. /package/lib/{v2 → routes}/google/templates/fonts.art +0 -0
  10686. /package/lib/{v2 → routes}/google/templates/news.art +0 -0
  10687. /package/lib/{v2 → routes}/gov/cmse/templates/description.art +0 -0
  10688. /package/lib/{v2 → routes}/gov/csrc/templates/attachment.art +0 -0
  10689. /package/lib/{v2 → routes}/gov/forestry/templates/description.art +0 -0
  10690. /package/lib/{v2 → routes}/gov/general/templates/zcjdpt.art +0 -0
  10691. /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/sncsyjxh.art +0 -0
  10692. /package/lib/{v2 → routes}/gov/guangdong/tqyb/templates/tfxtq.art +0 -0
  10693. /package/lib/{v2 → routes}/gov/samr/templates/description.art +0 -0
  10694. /package/lib/{v2/gov/shanghai → routes/gov/sh}/rsj/templates/ksxm.art +0 -0
  10695. /package/lib/{v2/gov/shanghai → routes/gov/sh}/wgj/templates/wgj.art +0 -0
  10696. /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/govPublicInfo.art +0 -0
  10697. /package/lib/{v2 → routes}/gov/sichuan/deyang/templates/mztoday.art +0 -0
  10698. /package/lib/{v2 → routes}/gov/stats/templates/description.art +0 -0
  10699. /package/lib/{v2 → routes}/guduodata/templates/daily.art +0 -0
  10700. /package/lib/{v2 → routes}/gumroad/templates/products.art +0 -0
  10701. /package/lib/{v2/gz-cmc → routes/gzdaily}/templates/description.art +0 -0
  10702. /package/lib/{v2 → routes}/hafu/templates/hafu.art +0 -0
  10703. /package/lib/{v2 → routes}/hashnode/templates/description.art +0 -0
  10704. /package/lib/{v2 → routes}/hebtv/templates/description.art +0 -0
  10705. /package/lib/{v2 → routes}/hellogithub/templates/description.art +0 -0
  10706. /package/lib/{v2 → routes}/hellogithub/templates/report.art +0 -0
  10707. /package/lib/{v2 → routes}/hellogithub/templates/volume.art +0 -0
  10708. /package/lib/{v2 → routes}/hk01/templates/description.art +0 -0
  10709. /package/lib/{v2 → routes}/hkej/templates/articleImg.art +0 -0
  10710. /package/lib/{v2 → routes}/hkej/templates/description.art +0 -0
  10711. /package/lib/{v2 → routes}/hostmonit/templates/description.art +0 -0
  10712. /package/lib/{v2 → routes}/hostmonit/templates/title.art +0 -0
  10713. /package/lib/{v2 → routes}/houxu/templates/events.art +0 -0
  10714. /package/lib/{v2 → routes}/houxu/templates/lives.art +0 -0
  10715. /package/lib/{v2 → routes}/houxu/templates/memory.art +0 -0
  10716. /package/lib/{v2/chinacef → routes/hrbust}/templates/description.art +0 -0
  10717. /package/lib/{v2 → routes}/hupu/templates/description.art +0 -0
  10718. /package/lib/{v2 → routes}/hupu/templates/match.art +0 -0
  10719. /package/lib/{v2 → routes}/ianspriggs/templates/description.art +0 -0
  10720. /package/lib/{v2 → routes}/ifeng/templates/description.art +0 -0
  10721. /package/lib/{v2 → routes}/ikea/templates/cn/product.art +0 -0
  10722. /package/lib/{v2 → routes}/ikea/templates/new.art +0 -0
  10723. /package/lib/{v2 → routes}/ikea/templates/offer.art +0 -0
  10724. /package/lib/{v2 → routes}/informs/templates/content.art +0 -0
  10725. /package/lib/{v2 → routes}/iqilu/templates/description.art +0 -0
  10726. /package/lib/{v2 → routes}/iqiyi/templates/album.art +0 -0
  10727. /package/lib/{v2 → routes}/iresearch/templates/report.art +0 -0
  10728. /package/lib/{v2 → routes}/iresearch/templates/weekly.art +0 -0
  10729. /package/lib/{v2 → routes}/itch/templates/description.art +0 -0
  10730. /package/lib/{v2 → routes}/iwara/templates/subscriptions.art +0 -0
  10731. /package/lib/{v2 → routes}/ixigua/templates/userVideo.art +0 -0
  10732. /package/lib/{v2 → routes}/jandan/templates/description.art +0 -0
  10733. /package/lib/{v2 → routes}/japanpost/templates/track_item_desc.art +0 -0
  10734. /package/lib/{v2 → routes}/javbus/templates/description.art +0 -0
  10735. /package/lib/{v2 → routes}/javlibrary/templates/description.art +0 -0
  10736. /package/lib/{v2 → routes}/jd/templates/description.art +0 -0
  10737. /package/lib/{v2 → routes}/jin10/templates/description.art +0 -0
  10738. /package/lib/{v2 → routes}/jump/templates/discount.art +0 -0
  10739. /package/lib/{v2 → routes}/kamen-rider-official/templates/description.art +0 -0
  10740. /package/lib/{v2 → routes}/kantarworldpanel/templates/description.art +0 -0
  10741. /package/lib/{v2 → routes}/kcna/templates/news.art +0 -0
  10742. /package/lib/{v2 → routes}/keep/templates/user.art +0 -0
  10743. /package/lib/{v2 → routes}/kemono/templates/discord.art +0 -0
  10744. /package/lib/{v2 → routes}/kyodonews/templates/article.art +0 -0
  10745. /package/lib/{v2 → routes}/lang/templates/room.art +0 -0
  10746. /package/lib/{v2 → routes}/lanqiao/templates/courseDesc.art +0 -0
  10747. /package/lib/{v2 → routes}/learnku/templates/topic.art +0 -0
  10748. /package/lib/{v2 → routes}/leetcode/templates/question-description.art +0 -0
  10749. /package/lib/{v2 → routes}/lfsyd/templates/card.art +0 -0
  10750. /package/lib/{v2 → routes}/lfsyd/templates/video.art +0 -0
  10751. /package/lib/{v2 → routes}/linkedin/templates/cn/posting.art +0 -0
  10752. /package/lib/{v2 → routes}/lkong/templates/content.art +0 -0
  10753. /package/lib/{v2 → routes}/lkong/templates/quote.art +0 -0
  10754. /package/lib/{v2 → routes}/logclub/templates/description.art +0 -0
  10755. /package/lib/{v2 → routes}/logonews/templates/description.art +0 -0
  10756. /package/lib/{v2 → routes}/loltw/templates/news.art +0 -0
  10757. /package/lib/{v2 → routes}/lovelive-anime/templates/description.art +0 -0
  10758. /package/lib/{v2 → routes}/lovelive-anime/templates/scheduleDesc.art +0 -0
  10759. /package/lib/{v2 → routes}/lvv2/templates/outlink.art +0 -0
  10760. /package/lib/{v2 → routes}/lxixsxa/templates/disco.art +0 -0
  10761. /package/lib/{v2 → routes}/lxixsxa/templates/info.art +0 -0
  10762. /package/lib/{v2 → routes}/magazinelib/templates/magazine-description.art +0 -0
  10763. /package/lib/{v2 → routes}/manhuagui/templates/manga.art +0 -0
  10764. /package/lib/{v2 → routes}/mdpi/templates/description.art +0 -0
  10765. /package/lib/{v2 → routes}/metacritic/templates/description.art +0 -0
  10766. /package/lib/{v2 → routes}/meteor/templates/desc.art +0 -0
  10767. /package/lib/{v2 → routes}/mihoyo/templates/description.art +0 -0
  10768. /package/lib/{v2 → routes}/mihoyo/templates/ys.art +0 -0
  10769. /package/lib/{v2 → routes}/mindmeister/templates/image.art +0 -0
  10770. /package/lib/{v2 → routes}/mingpao/templates/description.art +0 -0
  10771. /package/lib/{v2 → routes}/misskey/templates/note.art +0 -0
  10772. /package/lib/{v2 → routes}/mittrchina/templates/movie.art +0 -0
  10773. /package/lib/{v2 → routes}/modelscope/templates/community.art +0 -0
  10774. /package/lib/{v2 → routes}/modelscope/templates/desc.art +0 -0
  10775. /package/lib/{v2 → routes}/mydrivers/templates/description.art +0 -0
  10776. /package/lib/{v2 → routes}/myfigurecollection/templates/activity.art +0 -0
  10777. /package/lib/{v2 → routes}/myfigurecollection/templates/description.art +0 -0
  10778. /package/lib/{v2 → routes}/mymusicsheet/templates/description.art +0 -0
  10779. /package/lib/{v2 → routes}/natgeo/templates/dailyPhoto.art +0 -0
  10780. /package/lib/{v2 → routes}/nautil/templates/description.art +0 -0
  10781. /package/lib/{v2 → routes}/nber/template/description.art +0 -0
  10782. /package/lib/{v2 → routes}/netflav/templates/description.art +0 -0
  10783. /package/lib/{v2 → routes}/newzmz/templates/description.art +0 -0
  10784. /package/lib/{v2 → routes}/nhentai/templates/desc.art +0 -0
  10785. /package/lib/{v2 → routes}/nhk/templates/news.art +0 -0
  10786. /package/lib/{v2 → routes}/nhk/templates/news_web_easy.art +0 -0
  10787. /package/lib/{v2 → routes}/nikkei/templates/news.art +0 -0
  10788. /package/lib/{v2 → routes}/nintendo/templates/direct.art +0 -0
  10789. /package/lib/{v2 → routes}/nintendo/templates/eshop_cn.art +0 -0
  10790. /package/lib/{v2 → routes}/nintendo/templates/eshop_hk.art +0 -0
  10791. /package/lib/{v2 → routes}/nintendo/templates/eshop_jp.art +0 -0
  10792. /package/lib/{v2 → routes}/nintendo/templates/eshop_us.art +0 -0
  10793. /package/lib/{v2 → routes}/nmtv/templates/description.art +0 -0
  10794. /package/lib/{v2 → routes}/notefolio/templates/search.art +0 -0
  10795. /package/lib/{v2 → routes}/npm/templates/package.art +0 -0
  10796. /package/lib/{v2 → routes}/nytimes/templates/image.art +0 -0
  10797. /package/lib/{v2 → routes}/oceanengine/templates/content.art +0 -0
  10798. /package/lib/{v2 → routes}/oeeee/templates/description.art +0 -0
  10799. /package/lib/{v2 → routes}/oncc/templates/article.art +0 -0
  10800. /package/lib/{v2 → routes}/oncc/templates/money18.art +0 -0
  10801. /package/lib/{v2 → routes}/openai/templates/article.art +0 -0
  10802. /package/lib/{v2 → routes}/orcid/templates/description.art +0 -0
  10803. /package/lib/{v2 → routes}/oreno3d/templates/description.art +0 -0
  10804. /package/lib/{v2 → routes}/oshwhub/templates/description.art +0 -0
  10805. /package/lib/{v2 → routes}/oup/templates/article.art +0 -0
  10806. /package/lib/{v2 → routes}/patagonia/templates/product-description.art +0 -0
  10807. /package/lib/{v2 → routes}/penguin-random-house/templates/articleHeader.art +0 -0
  10808. /package/lib/{v2 → routes}/penguin-random-house/templates/book.art +0 -0
  10809. /package/lib/{v2 → routes}/picuki/templates/post.art +0 -0
  10810. /package/lib/{v2 → routes}/picuki/templates/video.art +0 -0
  10811. /package/lib/{v2 → routes}/pixabay/templates/img.art +0 -0
  10812. /package/lib/{v2 → routes}/pnas/templates/article.art +0 -0
  10813. /package/lib/{v2 → routes}/producthunt/templates/descImg.art +0 -0
  10814. /package/lib/{v2 → routes}/pts/templates/description.art +0 -0
  10815. /package/lib/{v2 → routes}/pts/templates/live.art +0 -0
  10816. /package/lib/{v2 → routes}/pubmed/templates/description.art +0 -0
  10817. /package/lib/{v2 → routes}/qidian/templates/description.art +0 -0
  10818. /package/lib/{v2 → routes}/qoo-app/templates/comment.art +0 -0
  10819. /package/lib/{v2 → routes}/qoo-app/templates/note.art +0 -0
  10820. /package/lib/{v2 → routes}/qq/ac/templates/description.art +0 -0
  10821. /package/lib/{v2 → routes}/qq/templates/article.art +0 -0
  10822. /package/lib/{v2 → routes}/qweather/templates/now.art +0 -0
  10823. /package/lib/{v2 → routes}/radio/templates/description.art +0 -0
  10824. /package/lib/{v2 → routes}/rawkuma/templates/description.art +0 -0
  10825. /package/lib/{v2 → routes}/readhub/templates/description.art +0 -0
  10826. /package/lib/{v2 → routes}/reuters/templates/description.art +0 -0
  10827. /package/lib/{v2 → routes}/rsc/templates/image.art +0 -0
  10828. /package/lib/{v2 → routes}/saraba1st/templates/digest.art +0 -0
  10829. /package/lib/{v2 → routes}/science/templates/article.art +0 -0
  10830. /package/lib/{v2 → routes}/science/templates/cover.art +0 -0
  10831. /package/lib/{v2 → routes}/sctv/templates/description.art +0 -0
  10832. /package/lib/{v2 → routes}/sensortower/templates/description.art +0 -0
  10833. /package/lib/{v2 → routes}/shcstheatre/templates/description.art +0 -0
  10834. /package/lib/{v2 → routes}/shiep/templates/description.art +0 -0
  10835. /package/lib/{v2 → routes}/shmtu/templates/portal.art +0 -0
  10836. /package/lib/{v2 → routes}/simpleinfo/templates/description.art +0 -0
  10837. /package/lib/{v2 → routes}/sina/templates/slide.art +0 -0
  10838. /package/lib/{v2 → routes}/sinchew/templates/images.art +0 -0
  10839. /package/lib/{v2 → routes}/sjtu/templates/activity.art +0 -0
  10840. /package/lib/{v2 → routes}/snowpeak/templates/new-arrivals.art +0 -0
  10841. /package/lib/{v2 → routes}/sohu/templates/video.art +0 -0
  10842. /package/lib/{v2 → routes}/sony/templates/software-description.art +0 -0
  10843. /package/lib/{v2 → routes}/southcn/templates/description.art +0 -0
  10844. /package/lib/{v2 → routes}/springer/templates/description.art +0 -0
  10845. /package/lib/{v2 → routes}/sse/templates/inquire.art +0 -0
  10846. /package/lib/{v2 → routes}/sse/templates/renewal.art +0 -0
  10847. /package/lib/{v2 → routes}/ssm/templates/news.art +0 -0
  10848. /package/lib/{v2 → routes}/stdaily/templates/description.art +0 -0
  10849. /package/lib/{v2 → routes}/storyfm/templates/description.art +0 -0
  10850. /package/lib/{v2 → routes}/surfshark/templates/description.art +0 -0
  10851. /package/lib/{v2 → routes}/swjtu/templates/job_desc.art +0 -0
  10852. /package/lib/{v2 → routes}/swjtu/templates/job_detail.art +0 -0
  10853. /package/lib/{v2 → routes}/szse/templates/description.art +0 -0
  10854. /package/lib/{v2 → routes}/szse/templates/inquire.art +0 -0
  10855. /package/lib/{v2 → routes}/taobao/templates/zhongchou.art +0 -0
  10856. /package/lib/{v2 → routes}/taptap/templates/imagePost.art +0 -0
  10857. /package/lib/{v2 → routes}/taptap/templates/videoPost.art +0 -0
  10858. /package/lib/{v2 → routes}/telegram/templates/video.art +0 -0
  10859. /package/lib/{v2 → routes}/tencent/templates/coronavirus/chinaTotal.art +0 -0
  10860. /package/lib/{v2 → routes}/tencent/templates/coronavirus/data.art +0 -0
  10861. /package/lib/{v2 → routes}/tesla/templates/description.art +0 -0
  10862. /package/lib/{v2 → routes}/tfc-taiwan/templates/article.art +0 -0
  10863. /package/lib/{v2 → routes}/theatlantic/templates/article-description.art +0 -0
  10864. /package/lib/{v2 → routes}/themoviedb/templates/description.art +0 -0
  10865. /package/lib/{v2 → routes}/thenewslens/templates/description.art +0 -0
  10866. /package/lib/{v2 → routes}/thepaper/templates/factpaper.art +0 -0
  10867. /package/lib/{v2 → routes}/thepaper/templates/image_detail.art +0 -0
  10868. /package/lib/{v2 → routes}/thepaper/templates/video_detail.art +0 -0
  10869. /package/lib/{v2 → routes}/thoughtco/templates/description.art +0 -0
  10870. /package/lib/{v2 → routes}/tingshuitz/templates/shenzhen.art +0 -0
  10871. /package/lib/{v2 → routes}/tingtingfm/templates/audio.art +0 -0
  10872. /package/lib/{v2 → routes}/trending/templates/content.art +0 -0
  10873. /package/lib/{v2 → routes}/tribalfootball/templates/plus_header.art +0 -0
  10874. /package/lib/{v2 → routes}/tvb/templates/description.art +0 -0
  10875. /package/lib/{v2 → routes}/txrjy/templates/fornumtopic.art +0 -0
  10876. /package/lib/{v2 → routes}/udn/templates/figure.art +0 -0
  10877. /package/lib/{v2 → routes}/uptimerobot/templates/rss.art +0 -0
  10878. /package/lib/{v2 → routes}/urbandictionary/templates/definition.art +0 -0
  10879. /package/lib/{v2 → routes}/vcb-s/templates/post.art +0 -0
  10880. /package/lib/{v2 → routes}/vimeo/templates/description.art +0 -0
  10881. /package/lib/{v2 → routes}/wallpaperhub/templates/description.art +0 -0
  10882. /package/lib/{v2 → routes}/wallstreetcn/templates/description.art +0 -0
  10883. /package/lib/{v2 → routes}/warthunder/templates/description.art +0 -0
  10884. /package/lib/{v2/gzh360 → routes/wechat}/_README +0 -0
  10885. /package/lib/{v2 → routes}/whu/templates/description.art +0 -0
  10886. /package/lib/{v2 → routes}/winstall/templates/desc.art +0 -0
  10887. /package/lib/{v2 → routes}/wise/templates/description.art +0 -0
  10888. /package/lib/{v2 → routes}/wnacg/templates/manga.art +0 -0
  10889. /package/lib/{v2 → routes}/wsj/templates/article-description.art +0 -0
  10890. /package/lib/{v2 → routes}/x-mol/templates/description.art +0 -0
  10891. /package/lib/{v2 → routes}/xiaomiyoupin/templates/goods.art +0 -0
  10892. /package/lib/{v2 → routes}/xinpianchang/templates/description.art +0 -0
  10893. /package/lib/{v2 → routes}/xjtu/templates/attachments.art +0 -0
  10894. /package/lib/{v2 → routes}/xjtu/templates/std.art +0 -0
  10895. /package/lib/{v2/gzdaily → routes/xkb}/templates/description.art +0 -0
  10896. /package/lib/{v2 → routes}/xueqiu/templates/comments_description.art +0 -0
  10897. /package/lib/{v2 → routes}/xys/templates/desc.art +0 -0
  10898. /package/lib/{v2 → routes}/xyzrank/templates/description.art +0 -0
  10899. /package/lib/{v2 → routes}/ycwb/templates/description.art +0 -0
  10900. /package/lib/{v2 → routes}/ymgal/templates/description.art +0 -0
  10901. /package/lib/{v2 → routes}/yoasobi-music/templates/info.art +0 -0
  10902. /package/lib/{v2 → routes}/yoasobi-music/templates/live.art +0 -0
  10903. /package/lib/{v2 → routes}/yoasobi-music/templates/media.art +0 -0
  10904. /package/lib/{v2 → routes}/youku/templates/channel.art +0 -0
  10905. /package/lib/{v2 → routes}/youtube/templates/community.art +0 -0
  10906. /package/lib/{v2 → routes}/youtube/templates/description.art +0 -0
  10907. /package/lib/{v2 → routes}/yxdzqb/templates/description.art +0 -0
  10908. /package/lib/{v2 → routes}/zagg/templates/new-arrivals.art +0 -0
  10909. /package/lib/{v2 → routes}/zaobao/templates/zaobao.art +0 -0
  10910. /package/lib/{v2 → routes}/zcool/templates/description.art +0 -0
  10911. /package/lib/{v2 → routes}/zcool/templates/work.art +0 -0
  10912. /package/lib/{v2 → routes}/zhitongcaijing/templates/description.art +0 -0
  10913. /package/lib/{v2 → routes}/zhiy/templates/post.art +0 -0
  10914. /package/lib/{v2 → routes}/zhubai/templates/description.art +0 -0
  10915. /package/lib/{v2 → routes}/zodgame/templates/forum.art +0 -0
  10916. /package/lib/{v2 → routes}/zuvio/templates/img.art +0 -0
  10917. /package/lib/{v2 → routes}/zuvio/templates/link.art +0 -0
  10918. /package/lib/{v2 → routes}/zuvio/templates/ref_article.art +0 -0
  10919. /package/lib/{v2 → routes}/zuvio/templates/rss.art +0 -0
  10920. /package/lib/{v2 → routes}/zuvio/templates/youtube.art +0 -0
  10921. /package/lib/{v2 → routes}/zyshow/templates/description.art +0 -0
  10922. /package/lib/{routes → routes-deprecated}/199it/index.js +0 -0
  10923. /package/lib/{routes → routes-deprecated}/aflcio/blog.js +0 -0
  10924. /package/lib/{routes → routes-deprecated}/algocasts/all.js +0 -0
  10925. /package/lib/{routes → routes-deprecated}/allpoetry/order.js +0 -0
  10926. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/fresh.js +0 -0
  10927. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/top.js +0 -0
  10928. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/updated.js +0 -0
  10929. /package/lib/{routes → routes-deprecated}/amazfitwatchfaces/utils.js +0 -0
  10930. /package/lib/{routes → routes-deprecated}/anime1/anime.js +0 -0
  10931. /package/lib/{routes → routes-deprecated}/anime1/search.js +0 -0
  10932. /package/lib/{routes → routes-deprecated}/anytxt/release-notes.js +0 -0
  10933. /package/lib/{routes → routes-deprecated}/aqicn/index.js +0 -0
  10934. /package/lib/{routes → routes-deprecated}/arxiv/query.js +0 -0
  10935. /package/lib/{routes → routes-deprecated}/asml/press-releases.js +0 -0
  10936. /package/lib/{routes → routes-deprecated}/av01/actor.js +0 -0
  10937. /package/lib/{routes → routes-deprecated}/av01/tag.js +0 -0
  10938. /package/lib/{routes → routes-deprecated}/bahamut/creation.js +0 -0
  10939. /package/lib/{routes → routes-deprecated}/banyuetan/byt.js +0 -0
  10940. /package/lib/{routes/blogs/jingwei_link.js → routes-deprecated/blogs/jingwei-link.js} +0 -0
  10941. /package/lib/{routes → routes-deprecated}/blogs/leemeng.js +0 -0
  10942. /package/lib/{routes → routes-deprecated}/blogs/wang54.js +0 -0
  10943. /package/lib/{routes → routes-deprecated}/bookwalkertw/news.js +0 -0
  10944. /package/lib/{routes → routes-deprecated}/bsblog123/index.js +0 -0
  10945. /package/lib/{routes → routes-deprecated}/cbndata/information.js +0 -0
  10946. /package/lib/{routes → routes-deprecated}/centbrowser/history.js +0 -0
  10947. /package/lib/{routes → routes-deprecated}/checkra1n/releases.js +0 -0
  10948. /package/lib/{routes → routes-deprecated}/chinadaily/english.js +0 -0
  10949. /package/lib/{routes → routes-deprecated}/chinafile/index.js +0 -0
  10950. /package/lib/{routes → routes-deprecated}/chouti/index.js +0 -0
  10951. /package/lib/{routes → routes-deprecated}/chuapp/index.js +0 -0
  10952. /package/lib/{routes → routes-deprecated}/chuhaibiji/index.js +0 -0
  10953. /package/lib/{routes → routes-deprecated}/clb/commentary.js +0 -0
  10954. /package/lib/{routes → routes-deprecated}/cninfo/announcement.js +0 -0
  10955. /package/lib/{routes → routes-deprecated}/coolbuy/newest.js +0 -0
  10956. /package/lib/{routes → routes-deprecated}/cowlevel/element.js +0 -0
  10957. /package/lib/{routes → routes-deprecated}/creaders/headline.js +0 -0
  10958. /package/lib/{routes → routes-deprecated}/ctei/news.js +0 -0
  10959. /package/lib/{routes → routes-deprecated}/ctfhub/search.js +0 -0
  10960. /package/lib/{routes → routes-deprecated}/ctfhub/upcoming.js +0 -0
  10961. /package/lib/{routes → routes-deprecated}/dailyart/index.js +0 -0
  10962. /package/lib/{routes → routes-deprecated}/daodu/index.js +0 -0
  10963. /package/lib/{routes → routes-deprecated}/dbaplus/activity.js +0 -0
  10964. /package/lib/{routes → routes-deprecated}/dbaplus/tab.js +0 -0
  10965. /package/lib/{routes → routes-deprecated}/dcinside/board.js +0 -0
  10966. /package/lib/{routes → routes-deprecated}/dekudeals/index.js +0 -0
  10967. /package/lib/{routes → routes-deprecated}/deloitte/industries.js +0 -0
  10968. /package/lib/{routes/dgtle/whale_rank.js → routes-deprecated/dgtle/whale-rank.js} +0 -0
  10969. /package/lib/{routes → routes-deprecated}/dgtle/whale.js +0 -0
  10970. /package/lib/{routes → routes-deprecated}/ditto/changes.js +0 -0
  10971. /package/lib/{routes → routes-deprecated}/dw/index.js +0 -0
  10972. /package/lib/{routes → routes-deprecated}/dykszx/news.js +0 -0
  10973. /package/lib/{routes → routes-deprecated}/dytt/index.js +0 -0
  10974. /package/lib/{routes → routes-deprecated}/ebb/index.js +0 -0
  10975. /package/lib/{routes → routes-deprecated}/etoland/board.js +0 -0
  10976. /package/lib/{routes → routes-deprecated}/europapress/index.js +0 -0
  10977. /package/lib/{routes → routes-deprecated}/eztv/imdb.js +0 -0
  10978. /package/lib/{routes → routes-deprecated}/fanfou/trends.js +0 -0
  10979. /package/lib/{routes → routes-deprecated}/fgo/news.js +0 -0
  10980. /package/lib/{routes → routes-deprecated}/fnal/news.js +0 -0
  10981. /package/lib/{routes → routes-deprecated}/furaffinity/browse.js +0 -0
  10982. /package/lib/{routes → routes-deprecated}/furaffinity/commissions.js +0 -0
  10983. /package/lib/{routes → routes-deprecated}/furaffinity/favorites.js +0 -0
  10984. /package/lib/{routes → routes-deprecated}/furaffinity/gallery.js +0 -0
  10985. /package/lib/{routes/furaffinity/journal_comments.js → routes-deprecated/furaffinity/journal-comments.js} +0 -0
  10986. /package/lib/{routes → routes-deprecated}/furaffinity/journals.js +0 -0
  10987. /package/lib/{routes → routes-deprecated}/furaffinity/scraps.js +0 -0
  10988. /package/lib/{routes → routes-deprecated}/furaffinity/search.js +0 -0
  10989. /package/lib/{routes → routes-deprecated}/furaffinity/shouts.js +0 -0
  10990. /package/lib/{routes/furaffinity/submission_comments.js → routes-deprecated/furaffinity/submission-comments.js} +0 -0
  10991. /package/lib/{routes → routes-deprecated}/furaffinity/watchers.js +0 -0
  10992. /package/lib/{routes → routes-deprecated}/furaffinity/watching.js +0 -0
  10993. /package/lib/{routes → routes-deprecated}/gab/user.js +0 -0
  10994. /package/lib/{routes → routes-deprecated}/game4399/forum.js +0 -0
  10995. /package/lib/{routes → routes-deprecated}/gameres/hot.js +0 -0
  10996. /package/lib/{routes → routes-deprecated}/gameres/list.js +0 -0
  10997. /package/lib/{routes → routes-deprecated}/gameres/utils.js +0 -0
  10998. /package/lib/{routes → routes-deprecated}/gaoqing/latest.js +0 -0
  10999. /package/lib/{routes → routes-deprecated}/geektime/column.js +0 -0
  11000. /package/lib/{routes → routes-deprecated}/gitlab/common.js +0 -0
  11001. /package/lib/{routes → routes-deprecated}/gnn/gnn.js +0 -0
  11002. /package/lib/{routes → routes-deprecated}/gov/caict/bps.js +0 -0
  11003. /package/lib/{routes → routes-deprecated}/gov/caict/caictgd.js +0 -0
  11004. /package/lib/{routes → routes-deprecated}/gov/caict/qwsj.js +0 -0
  11005. /package/lib/{routes → routes-deprecated}/gov/chongqing/ljxq/dwgk.js +0 -0
  11006. /package/lib/{routes → routes-deprecated}/gov/city/index.js +0 -0
  11007. /package/lib/{routes → routes-deprecated}/gov/province/index.js +0 -0
  11008. /package/lib/{routes → routes-deprecated}/gov/shanxi/rst.js +0 -0
  11009. /package/lib/{routes → routes-deprecated}/gov/shuju/index.js +0 -0
  11010. /package/lib/{routes → routes-deprecated}/gov/statecouncil/briefing.js +0 -0
  11011. /package/lib/{routes → routes-deprecated}/grandchallenge/challenges.js +0 -0
  11012. /package/lib/{routes → routes-deprecated}/grandchallenge/user.js +0 -0
  11013. /package/lib/{routes → routes-deprecated}/guardian/utils.js +0 -0
  11014. /package/lib/{routes → routes-deprecated}/gushiwen/recommend.js +0 -0
  11015. /package/lib/{routes → routes-deprecated}/hainanu/ssszs.js +0 -0
  11016. /package/lib/{routes → routes-deprecated}/hanime/video.js +0 -0
  11017. /package/lib/{routes → routes-deprecated}/hatena/anonymous_diary/archive.js +0 -0
  11018. /package/lib/{routes → routes-deprecated}/hentai-cosplays/porn-images-xxx.js +0 -0
  11019. /package/lib/{routes → routes-deprecated}/hentaimama/videos.js +0 -0
  11020. /package/lib/{routes → routes-deprecated}/hko/weather.js +0 -0
  11021. /package/lib/{routes → routes-deprecated}/hudongba/index.js +0 -0
  11022. /package/lib/{routes → routes-deprecated}/ichunqiu/index.js +0 -0
  11023. /package/lib/{routes → routes-deprecated}/iciba/index.js +0 -0
  11024. /package/lib/{routes → routes-deprecated}/icity/index.js +0 -0
  11025. /package/lib/{routes → routes-deprecated}/ieee/author.js +0 -0
  11026. /package/lib/{routes/interesting-sky/astronomical_events.js → routes-deprecated/interesting-sky/astronomical-events.js} +0 -0
  11027. /package/lib/{routes → routes-deprecated}/interesting-sky/index.js +0 -0
  11028. /package/lib/{routes → routes-deprecated}/interesting-sky/recent-interesting.js +0 -0
  11029. /package/lib/{routes → routes-deprecated}/invisionapp/inside-design.js +0 -0
  11030. /package/lib/{routes → routes-deprecated}/itslaw/judgements.js +0 -0
  11031. /package/lib/{routes → routes-deprecated}/kaoyan/kaoyan.js +0 -0
  11032. /package/lib/{routes → routes-deprecated}/kchuhai/index.js +0 -0
  11033. /package/lib/{routes → routes-deprecated}/kenshin/index.js +0 -0
  11034. /package/lib/{routes → routes-deprecated}/keyakizaka46/blog.js +0 -0
  11035. /package/lib/{routes → routes-deprecated}/keyakizaka46/news.js +0 -0
  11036. /package/lib/{routes → routes-deprecated}/kingarthur/index.js +0 -0
  11037. /package/lib/{routes/konachan/post_popular_recent.js → routes-deprecated/konachan/post-popular-recent.js} +0 -0
  11038. /package/lib/{routes → routes-deprecated}/kongfz/people.js +0 -0
  11039. /package/lib/{routes → routes-deprecated}/kotaku/story.js +0 -0
  11040. /package/lib/{routes → routes-deprecated}/lagou/jobs.js +0 -0
  11041. /package/lib/{routes → routes-deprecated}/laosiji/hot.js +0 -0
  11042. /package/lib/{routes → routes-deprecated}/latexstudio/home.js +0 -0
  11043. /package/lib/{routes → routes-deprecated}/letterboxd/followingdiary.js +0 -0
  11044. /package/lib/{routes → routes-deprecated}/letterboxd/userdiary.js +0 -0
  11045. /package/lib/{routes → routes-deprecated}/lizhi/user.js +0 -0
  11046. /package/lib/{routes → routes-deprecated}/lolapp/recommend.js +0 -0
  11047. /package/lib/{routes → routes-deprecated}/ltaaa/index.js +0 -0
  11048. /package/lib/{routes → routes-deprecated}/mafengwo/ziyouxing.js +0 -0
  11049. /package/lib/{routes → routes-deprecated}/mamibuy/index.js +0 -0
  11050. /package/lib/{routes → routes-deprecated}/manhuadb/comics.js +0 -0
  11051. /package/lib/{routes → routes-deprecated}/manictime/releases.js +0 -0
  11052. /package/lib/{routes → routes-deprecated}/maoyan/hot.js +0 -0
  11053. /package/lib/{routes → routes-deprecated}/maoyan/upcoming.js +0 -0
  11054. /package/lib/{routes → routes-deprecated}/marginnote/tag.js +0 -0
  11055. /package/lib/{routes → routes-deprecated}/mathpix/blog.js +0 -0
  11056. /package/lib/{routes → routes-deprecated}/mathunion/fields-medal.js +0 -0
  11057. /package/lib/{routes → routes-deprecated}/mcbbs/forum.js +0 -0
  11058. /package/lib/{routes → routes-deprecated}/mcbbs/post.js +0 -0
  11059. /package/lib/{routes → routes-deprecated}/mcbbs/utils.js +0 -0
  11060. /package/lib/{routes → routes-deprecated}/meipai/user.js +0 -0
  11061. /package/lib/{routes → routes-deprecated}/meipai/utils.js +0 -0
  11062. /package/lib/{routes → routes-deprecated}/melon/chart.js +0 -0
  11063. /package/lib/{routes → routes-deprecated}/micmicidol/latest.js +0 -0
  11064. /package/lib/{routes → routes-deprecated}/micmicidol/parse.js +0 -0
  11065. /package/lib/{routes → routes-deprecated}/micmicidol/search.js +0 -0
  11066. /package/lib/{routes → routes-deprecated}/mofish/index.js +0 -0
  11067. /package/lib/{routes → routes-deprecated}/mofish/templates/description.art +0 -0
  11068. /package/lib/{routes → routes-deprecated}/monotype/article.js +0 -0
  11069. /package/lib/{routes → routes-deprecated}/mubu/explore.js +0 -0
  11070. /package/lib/{routes → routes-deprecated}/muchong/index.js +0 -0
  11071. /package/lib/{routes → routes-deprecated}/nace/blog.js +0 -0
  11072. /package/lib/{routes → routes-deprecated}/navisec/index.js +0 -0
  11073. /package/lib/{routes → routes-deprecated}/nosetime/comment.js +0 -0
  11074. /package/lib/{routes → routes-deprecated}/nosetime/home.js +0 -0
  11075. /package/lib/{routes → routes-deprecated}/now/rank.js +0 -0
  11076. /package/lib/{routes → routes-deprecated}/nvidia/webdriverupdate.js +0 -0
  11077. /package/lib/{routes → routes-deprecated}/nwpu/index.js +0 -0
  11078. /package/lib/{routes → routes-deprecated}/ofweek/news.js +0 -0
  11079. /package/lib/{routes → routes-deprecated}/onejav/one.js +0 -0
  11080. /package/lib/{routes → routes-deprecated}/onenotegem/release.js +0 -0
  11081. /package/lib/{routes → routes-deprecated}/ornl/news.js +0 -0
  11082. /package/lib/{routes → routes-deprecated}/paidai/bbs.js +0 -0
  11083. /package/lib/{routes → routes-deprecated}/paidai/index.js +0 -0
  11084. /package/lib/{routes → routes-deprecated}/paidai/news.js +0 -0
  11085. /package/lib/{routes → routes-deprecated}/parcel/hermesuk.js +0 -0
  11086. /package/lib/{routes → routes-deprecated}/patchwork.kernel.org/cache.js +0 -0
  11087. /package/lib/{routes → routes-deprecated}/phrack/index.js +0 -0
  11088. /package/lib/{routes → routes-deprecated}/polimi/news.js +0 -0
  11089. /package/lib/{routes → routes-deprecated}/proletar/index.js +0 -0
  11090. /package/lib/{routes → routes-deprecated}/psnine/news.js +0 -0
  11091. /package/lib/{routes → routes-deprecated}/psnine/node.js +0 -0
  11092. /package/lib/{routes → routes-deprecated}/qnap/release-notes.js +0 -0
  11093. /package/lib/{routes → routes-deprecated}/qttabbar/change-log.js +0 -0
  11094. /package/lib/{routes → routes-deprecated}/queshu/book.js +0 -0
  11095. /package/lib/{routes → routes-deprecated}/queshu/sale.js +0 -0
  11096. /package/lib/{routes → routes-deprecated}/qzcea/index.js +0 -0
  11097. /package/lib/{routes → routes-deprecated}/rf/article.js +0 -0
  11098. /package/lib/{routes → routes-deprecated}/rmlt/idea.js +0 -0
  11099. /package/lib/{routes → routes-deprecated}/ruby-china/constants.js +0 -0
  11100. /package/lib/{routes → routes-deprecated}/ruby-china/jobs.js +0 -0
  11101. /package/lib/{routes → routes-deprecated}/ruby-china/topics.js +0 -0
  11102. /package/lib/{routes → routes-deprecated}/ruby-china/utils.js +0 -0
  11103. /package/lib/{routes → routes-deprecated}/samsungmembers/latest.js +0 -0
  11104. /package/lib/{routes → routes-deprecated}/secshi/index.js +0 -0
  11105. /package/lib/{routes → routes-deprecated}/security/pulses.js +0 -0
  11106. /package/lib/{routes → routes-deprecated}/semiconductors/latest-news.js +0 -0
  11107. /package/lib/{routes/sesame/release_notes.js → routes-deprecated/sesame/release-notes.js} +0 -0
  11108. /package/lib/{routes → routes-deprecated}/simonsfoundation/recommend.js +0 -0
  11109. /package/lib/{routes → routes-deprecated}/simpread/notice.js +0 -0
  11110. /package/lib/{routes → routes-deprecated}/siren/index.js +0 -0
  11111. /package/lib/{routes → routes-deprecated}/sketch/beta.js +0 -0
  11112. /package/lib/{routes → routes-deprecated}/soul/index.js +0 -0
  11113. /package/lib/{routes → routes-deprecated}/soundcloud/tracks.js +0 -0
  11114. /package/lib/{routes → routes-deprecated}/souyun/today.js +0 -0
  11115. /package/lib/{routes → routes-deprecated}/ssydt/article.js +0 -0
  11116. /package/lib/{routes → routes-deprecated}/steam/steamgifts/discussions.js +0 -0
  11117. /package/lib/{routes → routes-deprecated}/sznews/press.js +0 -0
  11118. /package/lib/{routes → routes-deprecated}/sznews/ranking.js +0 -0
  11119. /package/lib/{routes → routes-deprecated}/tanchinese/index.js +0 -0
  11120. /package/lib/{routes → routes-deprecated}/technologyreview/index.js +0 -0
  11121. /package/lib/{routes → routes-deprecated}/tencent/qcloud/mlvb/changelog.js +0 -0
  11122. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/announce.js +0 -0
  11123. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/community/question.js +0 -0
  11124. /package/lib/{routes → routes-deprecated}/tencent/wechat/wechat-open/pay/announce.js +0 -0
  11125. /package/lib/{routes → routes-deprecated}/testerhome/newest.js +0 -0
  11126. /package/lib/{routes → routes-deprecated}/thebrain/blog.js +0 -0
  11127. /package/lib/{routes → routes-deprecated}/thunderbird/release.js +0 -0
  11128. /package/lib/{routes → routes-deprecated}/tingdiantz/nanjing.js +0 -0
  11129. /package/lib/{routes → routes-deprecated}/tingshen/tingshen.js +0 -0
  11130. /package/lib/{routes → routes-deprecated}/titsguru/category.js +0 -0
  11131. /package/lib/{routes → routes-deprecated}/titsguru/daily.js +0 -0
  11132. /package/lib/{routes → routes-deprecated}/titsguru/home.js +0 -0
  11133. /package/lib/{routes → routes-deprecated}/topbook/overview.js +0 -0
  11134. /package/lib/{routes → routes-deprecated}/topbook/today.js +0 -0
  11135. /package/lib/{routes → routes-deprecated}/trakt/collection.js +0 -0
  11136. /package/lib/{routes → routes-deprecated}/ui-cn/user.js +0 -0
  11137. /package/lib/{routes → routes-deprecated}/uisdc/hangye.js +0 -0
  11138. /package/lib/{routes → routes-deprecated}/umass/amherst/csnews.js +0 -0
  11139. /package/lib/{routes → routes-deprecated}/umass/amherst/ecenews.js +0 -0
  11140. /package/lib/{routes → routes-deprecated}/umass/amherst/eceseminar.js +0 -0
  11141. /package/lib/{routes → routes-deprecated}/umass/amherst/ipoevents.js +0 -0
  11142. /package/lib/{routes → routes-deprecated}/umass/amherst/ipostories.js +0 -0
  11143. /package/lib/{routes → routes-deprecated}/un/scveto.js +0 -0
  11144. /package/lib/{routes → routes-deprecated}/universities/ahau/cs_news/index.js +0 -0
  11145. /package/lib/{routes → routes-deprecated}/universities/ahau/jwc/index.js +0 -0
  11146. /package/lib/{routes → routes-deprecated}/universities/ahau/main/index.js +0 -0
  11147. /package/lib/{routes → routes-deprecated}/universities/bwu/news.js +0 -0
  11148. /package/lib/{routes → routes-deprecated}/universities/cczu/jwc.js +0 -0
  11149. /package/lib/{routes → routes-deprecated}/universities/cczu/news.js +0 -0
  11150. /package/lib/{routes → routes-deprecated}/universities/cqu/news/jzyg.js +0 -0
  11151. /package/lib/{routes → routes-deprecated}/universities/cqust/jw.js +0 -0
  11152. /package/lib/{routes → routes-deprecated}/universities/cqust/lib.js +0 -0
  11153. /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-libnews.js +0 -0
  11154. /package/lib/{routes → routes-deprecated}/universities/cqut/cqut-news.js +0 -0
  11155. /package/lib/{routes → routes-deprecated}/universities/cug/graduate.js +0 -0
  11156. /package/lib/{routes → routes-deprecated}/universities/cug/undergraduate.js +0 -0
  11157. /package/lib/{routes → routes-deprecated}/universities/cug/xgxy.js +0 -0
  11158. /package/lib/{routes → routes-deprecated}/universities/dgut/jwc.js +0 -0
  11159. /package/lib/{routes → routes-deprecated}/universities/dgut/xsc.js +0 -0
  11160. /package/lib/{routes → routes-deprecated}/universities/dlmu/grs/zsgz.js +0 -0
  11161. /package/lib/{routes → routes-deprecated}/universities/dpu/jiaowu/news.js +0 -0
  11162. /package/lib/{routes → routes-deprecated}/universities/dpu/wlfw/news.js +0 -0
  11163. /package/lib/{routes/universities/fzu/news_min.js → routes-deprecated/universities/fzu/news-min.js} +0 -0
  11164. /package/lib/{routes → routes-deprecated}/universities/fzu/news.js +0 -0
  11165. /package/lib/{routes → routes-deprecated}/universities/gdou/jwc/jwtz.js +0 -0
  11166. /package/lib/{routes → routes-deprecated}/universities/gzmtu/jwc/index.js +0 -0
  11167. /package/lib/{routes → routes-deprecated}/universities/gzmtu/tsg/index.js +0 -0
  11168. /package/lib/{routes → routes-deprecated}/universities/hbut/cs.js +0 -0
  11169. /package/lib/{routes → routes-deprecated}/universities/hbut/news.js +0 -0
  11170. /package/lib/{routes → routes-deprecated}/universities/henu/news.js +0 -0
  11171. /package/lib/{routes → routes-deprecated}/universities/hfut/tzgg.js +0 -0
  11172. /package/lib/{routes → routes-deprecated}/universities/hnust/art/index.js +0 -0
  11173. /package/lib/{routes → routes-deprecated}/universities/hnust/chem/index.js +0 -0
  11174. /package/lib/{routes → routes-deprecated}/universities/hnust/computer/index.js +0 -0
  11175. /package/lib/{routes → routes-deprecated}/universities/hnust/jwc/index.js +0 -0
  11176. /package/lib/{routes → routes-deprecated}/universities/hubu/news.js +0 -0
  11177. /package/lib/{routes → routes-deprecated}/universities/jgsu/jwc.js +0 -0
  11178. /package/lib/{routes → routes-deprecated}/universities/jlbtc/index.js +0 -0
  11179. /package/lib/{routes → routes-deprecated}/universities/jlbtc/jwc.js +0 -0
  11180. /package/lib/{routes → routes-deprecated}/universities/jlbtc/kyc.js +0 -0
  11181. /package/lib/{routes → routes-deprecated}/universities/jlu/oa.js +0 -0
  11182. /package/lib/{routes → routes-deprecated}/universities/jnu/xysx/index.js +0 -0
  11183. /package/lib/{routes → routes-deprecated}/universities/ju/jwc.js +0 -0
  11184. /package/lib/{routes → routes-deprecated}/universities/lyu/news/index.js +0 -0
  11185. /package/lib/{routes → routes-deprecated}/universities/mit/csail/news.js +0 -0
  11186. /package/lib/{routes → routes-deprecated}/universities/mit/ocw-top.js +0 -0
  11187. /package/lib/{routes → routes-deprecated}/universities/nchu/jwc.js +0 -0
  11188. /package/lib/{routes → routes-deprecated}/universities/nku/jwc/index.js +0 -0
  11189. /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/context.js +0 -0
  11190. /package/lib/{routes → routes-deprecated}/universities/sctu/information-engineer-faculty/index.js +0 -0
  11191. /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/context.js +0 -0
  11192. /package/lib/{routes → routes-deprecated}/universities/sctu/jwc/index.js +0 -0
  11193. /package/lib/{routes → routes-deprecated}/universities/scu/jwc.js +0 -0
  11194. /package/lib/{routes → routes-deprecated}/universities/scu/xg.js +0 -0
  11195. /package/lib/{routes → routes-deprecated}/universities/slu/csggxy.js +0 -0
  11196. /package/lib/{routes → routes-deprecated}/universities/slu/jwc.js +0 -0
  11197. /package/lib/{routes → routes-deprecated}/universities/slu/kjxy.js +0 -0
  11198. /package/lib/{routes → routes-deprecated}/universities/slu/tyyjkxy.js +0 -0
  11199. /package/lib/{routes → routes-deprecated}/universities/slu/tzgg.js +0 -0
  11200. /package/lib/{routes → routes-deprecated}/universities/slu/xsc.js +0 -0
  11201. /package/lib/{routes → routes-deprecated}/universities/thu/career.js +0 -0
  11202. /package/lib/{routes → routes-deprecated}/universities/wzbc/news.js +0 -0
  11203. /package/lib/{routes → routes-deprecated}/universities/xmu/aero.js +0 -0
  11204. /package/lib/{routes → routes-deprecated}/universities/xynu/zkb/index.js +0 -0
  11205. /package/lib/{routes → routes-deprecated}/universities/ynu/grs/qttz.js +0 -0
  11206. /package/lib/{routes → routes-deprecated}/universities/ynu/grs/zytz.js +0 -0
  11207. /package/lib/{routes → routes-deprecated}/universities/ynu/home/main.js +0 -0
  11208. /package/lib/{routes → routes-deprecated}/universities/ynu/jwc/zytz.js +0 -0
  11209. /package/lib/{routes → routes-deprecated}/universities/zjgsu/gsgg/scripts.js +0 -0
  11210. /package/lib/{routes → routes-deprecated}/universities/zjgsu/tzgg/scripts.js +0 -0
  11211. /package/lib/{routes → routes-deprecated}/universities/zjgsu/xszq/scripts.js +0 -0
  11212. /package/lib/{routes → routes-deprecated}/universities/zzuli/campus/index.js +0 -0
  11213. /package/lib/{routes → routes-deprecated}/universities/zzuli/yjsc/index.js +0 -0
  11214. /package/lib/{routes → routes-deprecated}/us/cia/foia-annual-report.js +0 -0
  11215. /package/lib/{routes → routes-deprecated}/us/treasury/press-releases.js +0 -0
  11216. /package/lib/{routes → routes-deprecated}/us/ustr/press-releases.js +0 -0
  11217. /package/lib/{routes → routes-deprecated}/vgn/index.js +0 -0
  11218. /package/lib/{routes → routes-deprecated}/vocus/user.js +0 -0
  11219. /package/lib/{routes → routes-deprecated}/vscode/marketplace.js +0 -0
  11220. /package/lib/{routes → routes-deprecated}/vulture/index.js +0 -0
  11221. /package/lib/{routes → routes-deprecated}/wainao/index.js +0 -0
  11222. /package/lib/{routes → routes-deprecated}/wegene/newest.js +0 -0
  11223. /package/lib/{routes → routes-deprecated}/wenxuecity/bbs.js +0 -0
  11224. /package/lib/{routes → routes-deprecated}/wenxuecity/blog.js +0 -0
  11225. /package/lib/{routes → routes-deprecated}/wenxuecity/hot.js +0 -0
  11226. /package/lib/{routes → routes-deprecated}/wenxuecity/news.js +0 -0
  11227. /package/lib/{routes → routes-deprecated}/wikipedia/mainland.js +0 -0
  11228. /package/lib/{routes → routes-deprecated}/worldhappiness/archive.js +0 -0
  11229. /package/lib/{routes → routes-deprecated}/worldhappiness/blog.js +0 -0
  11230. /package/lib/{routes → routes-deprecated}/x410/news.js +0 -0
  11231. /package/lib/{routes → routes-deprecated}/xclient/app.js +0 -0
  11232. /package/lib/{routes → routes-deprecated}/xiachufang/popular.js +0 -0
  11233. /package/lib/{routes → routes-deprecated}/xiachufang/user/cooked.js +0 -0
  11234. /package/lib/{routes → routes-deprecated}/xiachufang/user/created.js +0 -0
  11235. /package/lib/{routes → routes-deprecated}/xiaomieu/releases.js +0 -0
  11236. /package/lib/{routes → routes-deprecated}/xinwenlianbo/index.js +0 -0
  11237. /package/lib/{routes → routes-deprecated}/xmind/mindmap.js +0 -0
  11238. /package/lib/{routes/xuetangx/course_info.js → routes-deprecated/xuetangx/course-info.js} +0 -0
  11239. /package/lib/{routes → routes-deprecated}/yahoo-author/index.js +0 -0
  11240. /package/lib/{routes → routes-deprecated}/yidoutang/case.js +0 -0
  11241. /package/lib/{routes → routes-deprecated}/yidoutang/guide.js +0 -0
  11242. /package/lib/{routes → routes-deprecated}/yidoutang/mtest.js +0 -0
  11243. /package/lib/{routes → routes-deprecated}/youzan/goods.js +0 -0
  11244. /package/lib/{routes → routes-deprecated}/yuanliao/index.js +0 -0
  11245. /package/lib/{routes → routes-deprecated}/zhimap/index.js +0 -0
  11246. /package/lib/{routes → routes-deprecated}/zongheng/chapter.js +0 -0
package/lib/router.js CHANGED
@@ -1,3 +1,4 @@
1
+ // eslint-disable-next-line n/no-extraneous-require
1
2
  const Router = require('@koa/router');
2
3
  const router = new Router();
3
4
 
@@ -16,54 +17,19 @@ const lazyloadRouteHandler = (routeHandlerPath) => (ctx) => {
16
17
 
17
18
  // Deprecated: DO NOT ADD ANY NEW ROUTES HERE
18
19
 
19
- // 1draw
20
- router.get('/1draw', lazyloadRouteHandler('./routes/1draw/index'));
21
-
22
20
  // Benedict Evans
23
21
  router.get('/benedictevans', lazyloadRouteHandler('./routes/benedictevans/recent.js'));
24
22
 
25
- // 自如
26
- router.get('/ziroom/room/:city/:iswhole/:room/:keyword', lazyloadRouteHandler('./routes/ziroom/room'));
27
-
28
23
  // 简书
29
- router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
30
- router.get('/jianshu/trending/:timeframe', lazyloadRouteHandler('./routes/jianshu/trending'));
31
- router.get('/jianshu/collection/:id', lazyloadRouteHandler('./routes/jianshu/collection'));
32
- router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
33
-
34
- // 妹子图
35
- router.get('/mzitu/home/:type?', lazyloadRouteHandler('./routes/mzitu/home'));
36
- router.get('/mzitu/tags', lazyloadRouteHandler('./routes/mzitu/tags'));
37
- router.get('/mzitu/category/:category', lazyloadRouteHandler('./routes/mzitu/category'));
38
- router.get('/mzitu/post/:id', lazyloadRouteHandler('./routes/mzitu/post'));
39
- router.get('/mzitu/tag/:tag', lazyloadRouteHandler('./routes/mzitu/tag'));
40
-
41
- // pixiv-fanbox
42
- router.get('/fanbox/:user?', lazyloadRouteHandler('./routes/fanbox/main'));
43
-
44
- // 法律白話文運動
45
- router.get('/plainlaw/archives', lazyloadRouteHandler('./routes/plainlaw/archives.js'));
46
-
47
- // Dockone
48
- router.get('/dockone/weekly', lazyloadRouteHandler('./routes/dockone/weekly'));
49
-
50
- // 众成翻译
51
- router.get('/zcfy', lazyloadRouteHandler('./routes/zcfy/index'));
52
- router.get('/zcfy/index', lazyloadRouteHandler('./routes/zcfy/index')); // 废弃
53
- router.get('/zcfy/hot', lazyloadRouteHandler('./routes/zcfy/hot'));
54
-
55
- // 今日头条
56
- router.get('/jinritoutiao/keyword/:keyword', lazyloadRouteHandler('./routes/jinritoutiao/keyword'));
24
+ // router.get('/jianshu/home', lazyloadRouteHandler('./routes/jianshu/home'));
25
+ // router.get('/jianshu/collection/:id', lazyloadRouteHandler('./routes/jianshu/collection'));
26
+ // router.get('/jianshu/user/:id', lazyloadRouteHandler('./routes/jianshu/user'));
57
27
 
58
28
  // Disqus
59
29
  router.get('/disqus/posts/:forum', lazyloadRouteHandler('./routes/disqus/posts'));
60
30
 
61
31
  // 极客时间
62
32
  router.get('/geektime/column/:cid', lazyloadRouteHandler('./routes/geektime/column'));
63
- router.get('/geektime/news', lazyloadRouteHandler('./routes/geektime/news'));
64
-
65
- // 南方周末
66
- router.get('/infzm/:id', lazyloadRouteHandler('./routes/infzm/news'));
67
33
 
68
34
  // Dribbble
69
35
  // router.get('/dribbble/popular/:timeframe?', lazyloadRouteHandler('./routes/dribbble/popular'));
@@ -73,24 +39,21 @@ router.get('/infzm/:id', lazyloadRouteHandler('./routes/infzm/news'));
73
39
  // 虎牙
74
40
  router.get('/huya/live/:id', lazyloadRouteHandler('./routes/huya/live'));
75
41
 
76
- // SHOWROOM直播
77
- router.get('/showroom/room/:id', lazyloadRouteHandler('./routes/showroom/room'));
78
-
79
42
  // v2ex
80
43
  // router.get('/v2ex/topics/:type', lazyloadRouteHandler('./routes/v2ex/topics'));
81
44
  // router.get('/v2ex/post/:postid', lazyloadRouteHandler('./routes/v2ex/post'));
82
45
  // router.get('/v2ex/tab/:tabid', lazyloadRouteHandler('./routes/v2ex/tab'));
83
46
 
84
47
  // f-droid
85
- router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
48
+ // router.get('/fdroid/apprelease/:app', lazyloadRouteHandler('./routes/fdroid/apprelease'));
86
49
 
87
50
  // konachan
88
- router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
89
- router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
90
- router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
91
- router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
92
- router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
93
- router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post_popular_recent'));
51
+ router.get('/konachan/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
52
+ router.get('/konachan.com/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
53
+ router.get('/konachan.net/post/popular_recent', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
54
+ router.get('/konachan/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
55
+ router.get('/konachan.com/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
56
+ router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./routes/konachan/post-popular-recent'));
94
57
 
95
58
  // PornHub
96
59
  // router.get('/pornhub/category/:caty', lazyloadRouteHandler('./routes/pornhub/category'));
@@ -100,24 +63,16 @@ router.get('/konachan.net/post/popular_recent/:period', lazyloadRouteHandler('./
100
63
  // router.get('/pornhub/:language?/model/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/model'));
101
64
  // router.get('/pornhub/:language?/pornstar/:username/:sort?', lazyloadRouteHandler('./routes/pornhub/pornstar'));
102
65
 
103
- // yande.re
104
- router.get('/yande.re/post/popular_recent', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
105
- router.get('/yande.re/post/popular_recent/:period', lazyloadRouteHandler('./routes/yande.re/post_popular_recent'));
106
-
107
66
  // EZTV
108
67
  router.get('/eztv/torrents/:imdb_id', lazyloadRouteHandler('./routes/eztv/imdb'));
109
68
 
110
- // 新京报
111
- router.get('/bjnews/:cat', lazyloadRouteHandler('./routes/bjnews/news'));
112
- router.get('/bjnews/epaper/:cat', lazyloadRouteHandler('./routes/bjnews/epaper'));
113
-
114
69
  // 米哈游
115
70
  router.get('/mihoyo/bh3/:type', lazyloadRouteHandler('./routes/mihoyo/bh3'));
116
71
  router.get('/mihoyo/bh2/:type', lazyloadRouteHandler('./routes/mihoyo/bh2'));
117
72
 
118
73
  // 草榴社区
119
- router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
120
- router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
74
+ // router.get('/t66y/post/:tid', lazyloadRouteHandler('./routes/t66y/post'));
75
+ // router.get('/t66y/:id/:type?', lazyloadRouteHandler('./routes/t66y/index'));
121
76
 
122
77
  // 色中色
123
78
  router.get('/sexinsex/:id/:type?', lazyloadRouteHandler('./routes/sexinsex/index'));
@@ -132,9 +87,6 @@ router.get('/one', lazyloadRouteHandler('./routes/one/index'));
132
87
  // Thunderbird
133
88
  router.get('/thunderbird/release', lazyloadRouteHandler('./routes/thunderbird/release'));
134
89
 
135
- // tuicool
136
- router.get('/tuicool/mags/:type', lazyloadRouteHandler('./routes/tuicool/mags'));
137
-
138
90
  // Hexo
139
91
  router.get('/hexo/next/:url', lazyloadRouteHandler('./routes/hexo/next'));
140
92
  router.get('/hexo/yilia/:url', lazyloadRouteHandler('./routes/hexo/yilia'));
@@ -144,88 +96,43 @@ router.get('/hexo/fluid/:url', lazyloadRouteHandler('./routes/hexo/fluid'));
144
96
  router.get('/cpython/:pre?', lazyloadRouteHandler('./routes/cpython'));
145
97
 
146
98
  // 小米
147
- router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
148
- router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
99
+ // router.get('/mi/golden', lazyloadRouteHandler('./routes/mi/golden'));
100
+ // router.get('/mi/crowdfunding', lazyloadRouteHandler('./routes/mi/crowdfunding'));
149
101
  // router.get('/mi/youpin/crowdfunding', lazyloadRouteHandler('./routes/mi/youpin/crowdfunding'));
150
102
  // router.get('/mi/youpin/new/:sort?', lazyloadRouteHandler('./routes/mi/youpin/new'));
151
- router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
152
- router.get('/mi/bbs/board/:boardId', lazyloadRouteHandler('./routes/mi/board'));
103
+ // router.get('/miui/:device/:type?/:region?', lazyloadRouteHandler('./routes/mi/miui/index'));
153
104
 
154
105
  // 纵横
155
106
  router.get('/zongheng/chapter/:id', lazyloadRouteHandler('./routes/zongheng/chapter'));
156
107
 
157
- // 刺猬猫
158
- router.get('/ciweimao/chapter/:id', lazyloadRouteHandler('./routes/ciweimao/chapter'));
159
-
160
- // 中国美术馆
161
- router.get('/namoc/announcement', lazyloadRouteHandler('./routes/namoc/announcement'));
162
- router.get('/namoc/news', lazyloadRouteHandler('./routes/namoc/news'));
163
- router.get('/namoc/media', lazyloadRouteHandler('./routes/namoc/media'));
164
- router.get('/namoc/exhibition', lazyloadRouteHandler('./routes/namoc/exhibition'));
165
- router.get('/namoc/specials', lazyloadRouteHandler('./routes/namoc/specials'));
166
-
167
108
  // 维基百科 Wikipedia
168
109
  router.get('/wikipedia/mainland', lazyloadRouteHandler('./routes/wikipedia/mainland'));
169
110
 
170
111
  // 联合国 United Nations
171
112
  router.get('/un/scveto', lazyloadRouteHandler('./routes/un/scveto'));
172
113
 
173
- // e 公司
174
- router.get('/egsea/flash', lazyloadRouteHandler('./routes/egsea/flash'));
175
-
176
114
  // 选股宝
177
115
  router.get('/xuangubao/subject/:subject_id', lazyloadRouteHandler('./routes/xuangubao/subject'));
178
116
 
179
117
  // Gwern Bran­wen
180
118
  router.get('/gwern/:category', lazyloadRouteHandler('./routes/gwern/category'));
181
119
 
182
- // LinkedKeeper
183
- router.get('/linkedkeeper/:type/:id?', lazyloadRouteHandler('./routes/linkedkeeper/index'));
184
-
185
120
  // MIT Technology Review
186
121
  router.get('/technologyreview', lazyloadRouteHandler('./routes/technologyreview/index'));
187
122
  router.get('/technologyreview/:category_name', lazyloadRouteHandler('./routes/technologyreview/topic'));
188
123
 
189
- // 腾讯游戏开发者社区
190
- router.get('/gameinstitute/community/:tag?', lazyloadRouteHandler('./routes/tencent/gameinstitute/community'));
191
-
192
124
  // 腾讯视频 SDK
193
125
  router.get('/qcloud/mlvb/changelog', lazyloadRouteHandler('./routes/tencent/qcloud/mlvb/changelog'));
194
126
 
195
127
  // 腾讯吐个槽
196
128
  router.get('/tucaoqq/post/:project/:key', lazyloadRouteHandler('./routes/tencent/tucaoqq/post'));
197
129
 
198
- // Bugly SDK
199
- router.get('/bugly/changelog/:platform', lazyloadRouteHandler('./routes/tencent/bugly/changelog'));
200
-
201
- // wechat migrated to v2
202
- // router.get('/wechat/wemp/:id', lazyloadRouteHandler('./routes/tencent/wechat/wemp'));
203
- // router.get('/wechat/ce/:id', lazyloadRouteHandler('./routes/tencent/wechat/ce'));
204
- // router.get('/wechat/announce', lazyloadRouteHandler('./routes/tencent/wechat/announce'));
130
+ // wechat
205
131
  router.get('/wechat/miniprogram/plugins', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/plugins'));
206
- // router.get('/wechat/tgchannel/:id/:mpName?/:searchQueryType?', lazyloadRouteHandler('./routes/tencent/wechat/tgchannel'));
207
- // router.get('/wechat/uread/:userid', lazyloadRouteHandler('./routes/tencent/wechat/uread'));
208
- // router.get('/wechat/ershicimi/:id', lazyloadRouteHandler('./routes/tencent/wechat/ershcimi'));
209
- // router.get('/wechat/wxnmh/:id', lazyloadRouteHandler('./routes/tencent/wechat/wxnmh'));
210
- // router.get('/wechat/mp/homepage/:biz/:hid/:cid?', lazyloadRouteHandler('./routes/tencent/wechat/mp'));
211
- // router.get('/wechat/mp/msgalbum/:biz/:aid', lazyloadRouteHandler('./routes/tencent/wechat/msgalbum'));
212
- // router.get('/wechat/feeds/:id', lazyloadRouteHandler('./routes/tencent/wechat/feeds'));
213
-
214
- // All the Flight Deals
215
- router.get('/atfd/:locations/:nearby?', lazyloadRouteHandler('./routes/atfd/index'));
216
-
217
- // Fir
218
- router.get('/fir/update/:id', lazyloadRouteHandler('./routes/fir/update'));
219
132
 
220
133
  // Nvidia Web Driver
221
134
  router.get('/nvidia/webdriverupdate', lazyloadRouteHandler('./routes/nvidia/webdriverupdate'));
222
135
 
223
- // 每日环球展览 iMuseum
224
- router.get('/imuseum/:city/:type?', lazyloadRouteHandler('./routes/imuseum'));
225
-
226
- // Hopper
227
- router.get('/hopper/:lowestOnly/:from/:to?', lazyloadRouteHandler('./routes/hopper/index'));
228
-
229
136
  // 马蜂窝
230
137
  router.get('/mafengwo/note/:type', lazyloadRouteHandler('./routes/mafengwo/note'));
231
138
  router.get('/mafengwo/ziyouxing/:code', lazyloadRouteHandler('./routes/mafengwo/ziyouxing'));
@@ -234,30 +141,15 @@ router.get('/mafengwo/ziyouxing/:code', lazyloadRouteHandler('./routes/mafengwo/
234
141
  // router.get('/novel/biquge/:id', lazyloadRouteHandler('./routes/novel/biquge'));
235
142
  // router.get('/novel/biqugeinfo/:id/:limit?', lazyloadRouteHandler('./routes/novel/biqugeinfo'));
236
143
  router.get('/novel/uukanshu/:uid', lazyloadRouteHandler('./routes/novel/uukanshu'));
237
- router.get('/novel/wenxuemi/:id1/:id2', lazyloadRouteHandler('./routes/novel/wenxuemi'));
238
- router.get('/novel/booksky/:id', lazyloadRouteHandler('./routes/novel/booksky'));
239
- router.get('/novel/ptwxz/:id1/:id2', lazyloadRouteHandler('./routes/novel/ptwxz'));
240
- router.get('/novel/zhaishuyuan/:id', lazyloadRouteHandler('./routes/novel/zhaishuyuan'));
241
144
 
242
145
  // 中国气象网
243
- router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
146
+ // router.get('/weatheralarm/:province?', lazyloadRouteHandler('./routes/weatheralarm'));
244
147
 
245
148
  // Gitlab
246
149
  router.get('/gitlab/explore/:type/:host?', lazyloadRouteHandler('./routes/gitlab/explore'));
247
150
  router.get('/gitlab/release/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/release'));
248
151
  router.get('/gitlab/tag/:namespace/:project/:host?', lazyloadRouteHandler('./routes/gitlab/tag'));
249
152
 
250
- // 忧郁的loli
251
- router.get('/mygalgame', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
252
- router.get('/mmgal', lazyloadRouteHandler('./routes/galgame/hhgal')); // 废弃
253
- router.get('/hhgal', lazyloadRouteHandler('./routes/galgame/hhgal'));
254
-
255
- // say花火
256
- router.get('/sayhuahuo', lazyloadRouteHandler('./routes/galgame/sayhuahuo'));
257
-
258
- // 终点分享
259
- router.get('/zdfx', lazyloadRouteHandler('./routes/galgame/zdfx'));
260
-
261
153
  // 北京交通大学
262
154
  router.get('/bjtu/gs/:type', lazyloadRouteHandler('./routes/universities/bjtu/gs'));
263
155
 
@@ -269,9 +161,9 @@ router.get('/dpu/wlfw/news/:type?', lazyloadRouteHandler('./routes/universities/
269
161
  router.get('/njtech/jwc', lazyloadRouteHandler('./routes/universities/njtech/jwc'));
270
162
 
271
163
  // 河海大学
272
- router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/libNews'));
164
+ router.get('/hhu/libNews', lazyloadRouteHandler('./routes/universities/hhu/lib-news'));
273
165
  // 河海大学常州校区
274
- router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/libNewsc'));
166
+ router.get('/hhu/libNewsc', lazyloadRouteHandler('./routes/universities/hhu/lib-newsc'));
275
167
 
276
168
  // 上海科技大学
277
169
  router.get('/shanghaitech/activity', lazyloadRouteHandler('./routes/universities/shanghaitech/activity'));
@@ -293,8 +185,8 @@ router.get('/thu/:type', lazyloadRouteHandler('./routes/universities/thu/index')
293
185
  router.get('/shou/www/:type', lazyloadRouteHandler('./routes/universities/shou/www'));
294
186
 
295
187
  // 西南科技大学
296
- router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/jwc_news'));
297
- router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/jwc_notice'));
188
+ router.get('/swust/jwc/news', lazyloadRouteHandler('./routes/universities/swust/jwc-news'));
189
+ router.get('/swust/jwc/notice/:type?', lazyloadRouteHandler('./routes/universities/swust/jwc-notice'));
298
190
  router.get('/swust/cs/:type?', lazyloadRouteHandler('./routes/universities/swust/cs'));
299
191
 
300
192
  // UTdallas ISSO
@@ -374,7 +266,7 @@ router.get('/henu/:type?', lazyloadRouteHandler('./routes/universities/henu/news
374
266
  router.get('/nku/jwc/:type?', lazyloadRouteHandler('./routes/universities/nku/jwc/index'));
375
267
 
376
268
  // 北京航空航天大学
377
- router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
269
+ // router.get('/buaa/news/:type', lazyloadRouteHandler('./routes/universities/buaa/news/index'));
378
270
 
379
271
  // 浙江工业大学
380
272
  router.get('/zjut/:type', lazyloadRouteHandler('./routes/universities/zjut/index'));
@@ -404,7 +296,7 @@ router.get('/lyu/news/:type', lazyloadRouteHandler('./routes/universities/lyu/ne
404
296
 
405
297
  // 福州大学
406
298
  router.get('/fzu/:type', lazyloadRouteHandler('./routes/universities/fzu/news'));
407
- router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/news_min'));
299
+ router.get('/fzu_min/:type', lazyloadRouteHandler('./routes/universities/fzu/news-min'));
408
300
 
409
301
  // 厦门大学
410
302
  router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/aero'));
@@ -413,10 +305,7 @@ router.get('/xmu/aero/:type', lazyloadRouteHandler('./routes/universities/xmu/ae
413
305
  router.get('/ifanr/:channel?', lazyloadRouteHandler('./routes/ifanr/index'));
414
306
 
415
307
  // IPSW.me
416
- router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
417
-
418
- // Minecraft CurseForge
419
- router.get('/curseforge/files/:project', lazyloadRouteHandler('./routes/curseforge/files'));
308
+ // router.get('/ipsw/index/:ptype/:pname', lazyloadRouteHandler('./routes/ipsw/index'));
420
309
 
421
310
  // 异次元软件世界
422
311
  router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home'));
@@ -424,20 +313,10 @@ router.get('/iplay/home', lazyloadRouteHandler('./routes/iplay/home'));
424
313
  // xclient.info
425
314
  router.get('/xclient/app/:name', lazyloadRouteHandler('./routes/xclient/app'));
426
315
 
427
- // 电影首发站
428
- router.get('/dysfz', lazyloadRouteHandler('./routes/dysfz/index'));
429
- router.get('/dysfz/index', lazyloadRouteHandler('./routes/dysfz/index')); // 废弃
430
-
431
- // きららファンタジア
432
- router.get('/kirara/news', lazyloadRouteHandler('./routes/kirara/news'));
433
-
434
316
  // 电影天堂
435
317
  router.get('/dytt', lazyloadRouteHandler('./routes/dytt/index'));
436
318
  router.get('/dytt/index', lazyloadRouteHandler('./routes/dytt/index')); // 废弃
437
319
 
438
- // 人生05电影网
439
- router.get('/rs05/rs05', lazyloadRouteHandler('./routes/rs05/rs05'));
440
-
441
320
  // 趣头条
442
321
  router.get('/qutoutiao/category/:cid', lazyloadRouteHandler('./routes/qutoutiao/category'));
443
322
 
@@ -445,11 +324,7 @@ router.get('/qutoutiao/category/:cid', lazyloadRouteHandler('./routes/qutoutiao/
445
324
  // router.get('/bbc/:site?/:channel?', lazyloadRouteHandler('./routes/bbc/index'));
446
325
 
447
326
  // 看雪
448
- router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
449
-
450
- // 知晓程序
451
- router.get('/miniapp/article/:category', lazyloadRouteHandler('./routes/miniapp/article'));
452
- router.get('/miniapp/store/newest', lazyloadRouteHandler('./routes/miniapp/store/newest'));
327
+ // router.get('/pediy/topic/:category?/:type?', lazyloadRouteHandler('./routes/pediy/topic'));
453
328
 
454
329
  // 老司机
455
330
  router.get('/laosiji/hot', lazyloadRouteHandler('./routes/laosiji/hot'));
@@ -471,7 +346,7 @@ router.get('/parcel/hermesuk/:tracking', lazyloadRouteHandler('./routes/parcel/h
471
346
  // 数字尾巴
472
347
  router.get('/dgtle', lazyloadRouteHandler('./routes/dgtle/index'));
473
348
  router.get('/dgtle/whale/category/:category', lazyloadRouteHandler('./routes/dgtle/whale'));
474
- router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/whale_rank'));
349
+ router.get('/dgtle/whale/rank/:type/:rule', lazyloadRouteHandler('./routes/dgtle/whale-rank'));
475
350
  router.get('/dgtle/trade/:typeId?', lazyloadRouteHandler('./routes/dgtle/trade'));
476
351
  router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/keyword'));
477
352
 
@@ -479,9 +354,6 @@ router.get('/dgtle/trade/search/:keyword', lazyloadRouteHandler('./routes/dgtle/
479
354
  router.get('/chouti/top/:hour?', lazyloadRouteHandler('./routes/chouti/top'));
480
355
  router.get('/chouti/:subject?', lazyloadRouteHandler('./routes/chouti'));
481
356
 
482
- // Westore
483
- router.get('/westore/new', lazyloadRouteHandler('./routes/westore/new'));
484
-
485
357
  // 龙腾网
486
358
  router.get('/ltaaa/:category?', lazyloadRouteHandler('./routes/ltaaa/index'));
487
359
 
@@ -489,40 +361,19 @@ router.get('/ltaaa/:category?', lazyloadRouteHandler('./routes/ltaaa/index'));
489
361
  router.get('/autotrader/:query', lazyloadRouteHandler('./routes/autotrader'));
490
362
 
491
363
  // 极客公园
492
- router.get('/geekpark/breakingnews', lazyloadRouteHandler('./routes/geekpark/breakingnews'));
493
-
494
- // 百度
495
- router.get('/baidu/doodles', lazyloadRouteHandler('./routes/baidu/doodles'));
496
- // router.get('/baidu/topwords/:boardId?', lazyloadRouteHandler('./routes/baidu/topwords'));
497
- router.get('/baidu/daily', lazyloadRouteHandler('./routes/baidu/daily'));
364
+ // router.get('/geekpark/breakingnews', lazyloadRouteHandler('./routes/geekpark/breakingnews'));
498
365
 
499
366
  // 搜狗
500
- router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
367
+ // router.get('/sogou/doodles', lazyloadRouteHandler('./routes/sogou/doodles'));
501
368
 
502
369
  // 香港天文台
503
370
  router.get('/hko/weather', lazyloadRouteHandler('./routes/hko/weather'));
504
371
 
505
- // sankakucomplex
506
- router.get('/sankakucomplex/post', lazyloadRouteHandler('./routes/sankakucomplex/post'));
507
-
508
- // 技术头条
509
- router.get('/blogread/newest', lazyloadRouteHandler('./routes/blogread/newest'));
510
-
511
372
  // gnn游戏新闻
512
373
  router.get('/gnn/gnn', lazyloadRouteHandler('./routes/gnn/gnn'));
513
374
 
514
375
  // a9vg游戏新闻
515
- router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
516
-
517
- // IT桔子
518
- router.get('/itjuzi/invest', lazyloadRouteHandler('./routes/itjuzi/invest'));
519
- router.get('/itjuzi/merge', lazyloadRouteHandler('./routes/itjuzi/merge'));
520
-
521
- // 探物
522
- router.get('/tanwu/products', lazyloadRouteHandler('./routes/tanwu/products'));
523
-
524
- // GitChat
525
- router.get('/gitchat/newest/:category?/:selected?', lazyloadRouteHandler('./routes/gitchat/newest'));
376
+ // router.get('/a9vg/a9vg', lazyloadRouteHandler('./routes/a9vg/a9vg'));
526
377
 
527
378
  // The Guardian
528
379
  router.get('/guardian/:type', lazyloadRouteHandler('./routes/guardian/guardian'));
@@ -535,9 +386,6 @@ router.get('/xiachufang/popular/:timeframe?', lazyloadRouteHandler('./routes/xia
535
386
  // 经济观察报
536
387
  router.get('/eeo/:column?/:category?', lazyloadRouteHandler('./routes/eeo/index'));
537
388
 
538
- // 腾讯视频
539
- router.get('/tencentvideo/playlist/:id', lazyloadRouteHandler('./routes/tencent/video/playlist'));
540
-
541
389
  // Vol
542
390
  router.get('/vol/:mode?', lazyloadRouteHandler('./routes/vol/lastupdate'));
543
391
  // 咚漫
@@ -552,52 +400,33 @@ router.get('/tits-guru/daily', lazyloadRouteHandler('./routes/titsguru/daily'));
552
400
  router.get('/tits-guru/category/:type', lazyloadRouteHandler('./routes/titsguru/category'));
553
401
  router.get('/tits-guru/model/:name', lazyloadRouteHandler('./routes/titsguru/model'));
554
402
 
555
- // TSSstatus
556
- router.get('/tssstatus/:board/:build', lazyloadRouteHandler('./routes/tssstatus'));
557
-
558
403
  // Anime1
559
404
  router.get('/anime1/anime/:time/:name', lazyloadRouteHandler('./routes/anime1/anime'));
560
405
  router.get('/anime1/search/:keyword', lazyloadRouteHandler('./routes/anime1/search'));
561
406
 
562
- // gitea
563
- router.get('/gitea/blog', lazyloadRouteHandler('./routes/gitea/blog'));
564
-
565
407
  // iDownloadBlog
566
408
  router.get('/idownloadblog', lazyloadRouteHandler('./routes/idownloadblog/index'));
567
409
 
568
410
  // TesterHome
569
411
  router.get('/testerhome/newest', lazyloadRouteHandler('./routes/testerhome/newest'));
570
412
 
571
- // 刷屏
572
- router.get('/weseepro/newest', lazyloadRouteHandler('./routes/weseepro/newest'));
573
- router.get('/weseepro/newest-direct', lazyloadRouteHandler('./routes/weseepro/newest-direct'));
574
- router.get('/weseepro/circle', lazyloadRouteHandler('./routes/weseepro/circle'));
575
-
576
413
  // 玩物志
577
414
  router.get('/coolbuy/newest', lazyloadRouteHandler('./routes/coolbuy/newest'));
578
415
 
579
- // MiniFlux
580
- router.get('/miniflux/subscription/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_feeds'));
581
- router.get('/miniflux/:feeds/:parameters?', lazyloadRouteHandler('./routes/miniflux/get_entries'));
582
-
583
416
  // 動畫瘋
584
- router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/new_anime'));
585
- router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
417
+ // router.get('/anigamer/new_anime', lazyloadRouteHandler('./routes/anigamer/new-anime'));
418
+ // router.get('/anigamer/anime/:sn', lazyloadRouteHandler('./routes/anigamer/anime'));
586
419
 
587
420
  // 中国药科大学
588
421
  router.get('/cpu/home', lazyloadRouteHandler('./routes/universities/cpu/home'));
589
422
  router.get('/cpu/jwc', lazyloadRouteHandler('./routes/universities/cpu/jwc'));
590
423
  router.get('/cpu/yjsy', lazyloadRouteHandler('./routes/universities/cpu/yjsy'));
591
424
 
592
- // 字幕组
593
- router.get('/zimuzu/resource/:id?', lazyloadRouteHandler('./routes/zimuzu/resource'));
594
- router.get('/zimuzu/top/:range/:type', lazyloadRouteHandler('./routes/zimuzu/top'));
595
-
596
425
  // 字幕库
597
426
  router.get('/zimuku/:type?', lazyloadRouteHandler('./routes/zimuku/index'));
598
427
 
599
428
  // Steam
600
- router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
429
+ // router.get('/steam/search/:params', lazyloadRouteHandler('./routes/steam/search'));
601
430
 
602
431
  // Steamgifts
603
432
  router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/steam/steamgifts/discussions'));
@@ -606,12 +435,6 @@ router.get('/steamgifts/discussions/:category?', lazyloadRouteHandler('./routes/
606
435
  router.get('/shanbay/checkin/:id', lazyloadRouteHandler('./routes/shanbay/checkin'));
607
436
  router.get('/shanbay/footprints/:category?', lazyloadRouteHandler('./routes/shanbay/footprints'));
608
437
 
609
- // Facebook
610
- router.get('/facebook/page/:id', lazyloadRouteHandler('./routes/facebook/page'));
611
-
612
- // 币乎
613
- router.get('/bihu/activaties/:id', lazyloadRouteHandler('./routes/bihu/activaties'));
614
-
615
438
  // 停电通知
616
439
  router.get('/tingdiantz/nanjing', lazyloadRouteHandler('./routes/tingdiantz/nanjing'));
617
440
  router.get('/tingdiantz/95598/:province/:city/:district?', lazyloadRouteHandler('./routes/tingdiantz/95598'));
@@ -619,7 +442,6 @@ router.get('/tingdiantz/95598/:province/:city/:district?', lazyloadRouteHandler(
619
442
  // PMCAFF
620
443
  router.get('/pmcaff/list/:typeid', lazyloadRouteHandler('./routes/pmcaff/list'));
621
444
  router.get('/pmcaff/feed/:typeid', lazyloadRouteHandler('./routes/pmcaff/feed'));
622
- router.get('/pmcaff/user/:userid', lazyloadRouteHandler('./routes/pmcaff/user'));
623
445
 
624
446
  // icourse163
625
447
  router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newest'));
@@ -627,9 +449,6 @@ router.get('/icourse163/newest', lazyloadRouteHandler('./routes/icourse163/newes
627
449
  // patchwork.kernel.org
628
450
  router.get('/patchwork.kernel.org/comments/:id', lazyloadRouteHandler('./routes/patchwork.kernel.org/comments'));
629
451
 
630
- // 京东众筹
631
- router.get('/jingdong/zhongchou/:type/:status/:sort', lazyloadRouteHandler('./routes/jingdong/zhongchou'));
632
-
633
452
  // All Poetry
634
453
  router.get('/allpoetry/:order?', lazyloadRouteHandler('./routes/allpoetry/order'));
635
454
 
@@ -649,8 +468,8 @@ router.get('/gov/shuju/:caty/:item', lazyloadRouteHandler('./routes/gov/shuju'))
649
468
  router.get('/gov/xinwen/tujie/:caty', lazyloadRouteHandler('./routes/gov/xinwen/tujie'));
650
469
 
651
470
  // 苏州
652
- router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
653
- router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
471
+ // router.get('/gov/suzhou/news/:uid', lazyloadRouteHandler('./routes/gov/suzhou/news'));
472
+ // router.get('/gov/suzhou/doc', lazyloadRouteHandler('./routes/gov/suzhou/doc'));
654
473
 
655
474
  // 山西
656
475
  router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanxi/rst'));
@@ -659,7 +478,7 @@ router.get('/gov/shanxi/rst/:category', lazyloadRouteHandler('./routes/gov/shanx
659
478
  router.get('/gov/hunan/notice/:type', lazyloadRouteHandler('./routes/gov/hunan/notice'));
660
479
 
661
480
  // 中华人民共和国国家发展和改革委员会
662
- router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
481
+ // router.get('/gov/ndrc/xwdt/:caty?', lazyloadRouteHandler('./routes/gov/ndrc/xwdt'));
663
482
 
664
483
  // 中华人民共和国住房和城乡建设部
665
484
  router.get('/gov/mohurd/policy', lazyloadRouteHandler('./routes/gov/mohurd/policy'));
@@ -685,26 +504,11 @@ router.get('/gov/guangdong/eea/:caty', lazyloadRouteHandler('./routes/gov/guangd
685
504
 
686
505
  // 日本国外務省記者会見
687
506
  router.get('/go.jp/mofa', lazyloadRouteHandler('./routes/go.jp/mofa/main'));
688
-
689
- // 小黑盒
690
- router.get('/xiaoheihe/user/:id', lazyloadRouteHandler('./routes/xiaoheihe/user'));
691
- router.get('/xiaoheihe/news', lazyloadRouteHandler('./routes/xiaoheihe/news'));
692
- router.get('/xiaoheihe/discount/:platform?', lazyloadRouteHandler('./routes/xiaoheihe/discount'));
693
-
694
- // 惠誉评级
695
- router.get('/fitchratings/site/:type', lazyloadRouteHandler('./routes/fitchratings/site'));
696
-
697
- // Animen
698
- router.get('/animen/news/:type', lazyloadRouteHandler('./routes/animen/news'));
699
-
700
- // D2 资源库
701
- router.get('/d2/daily', lazyloadRouteHandler('./routes/d2/daily'));
702
-
703
507
  // ebb
704
508
  router.get('/ebb', lazyloadRouteHandler('./routes/ebb'));
705
509
 
706
510
  // Indienova
707
- router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
511
+ // router.get('/indienova/:type', lazyloadRouteHandler('./routes/indienova/article'));
708
512
 
709
513
  // JPMorgan Chase Institute
710
514
  router.get('/jpmorganchase', lazyloadRouteHandler('./routes/jpmorganchase/research'));
@@ -718,15 +522,6 @@ router.get('/duozhi', lazyloadRouteHandler('./routes/duozhi'));
718
522
  // 高清电台
719
523
  router.get('/gaoqing/latest', lazyloadRouteHandler('./routes/gaoqing/latest'));
720
524
 
721
- // 鲸跃汽车
722
- router.get('/whalegogo/home', lazyloadRouteHandler('./routes/whalegogo/home'));
723
- router.get('/whalegogo/portal/:type_id/:tagid?', lazyloadRouteHandler('./routes/whalegogo/portal'));
724
-
725
- // LeetCode
726
- // router.get('/leetcode/articles', lazyloadRouteHandler('./routes/leetcode/articles'));
727
- router.get('/leetcode/submission/us/:user', lazyloadRouteHandler('./routes/leetcode/check-us'));
728
- router.get('/leetcode/submission/cn/:user', lazyloadRouteHandler('./routes/leetcode/check-cn'));
729
-
730
525
  // Xiaomi.eu
731
526
  router.get('/xiaomieu/releases', lazyloadRouteHandler('./routes/xiaomieu/releases'));
732
527
 
@@ -737,26 +532,17 @@ router.get('/sketch/updates', lazyloadRouteHandler('./routes/sketch/updates'));
737
532
  // 每日安全
738
533
  router.get('/security/pulses', lazyloadRouteHandler('./routes/security/pulses'));
739
534
 
740
- // DoNews
741
- router.get('/donews/:column?', lazyloadRouteHandler('./routes/donews/index'));
742
-
743
535
  // WeGene
744
536
  router.get('/wegene/column/:type/:category', lazyloadRouteHandler('./routes/wegene/column'));
745
537
  router.get('/wegene/newest', lazyloadRouteHandler('./routes/wegene/newest'));
746
538
 
747
- // instapaper
748
- router.get('/instapaper/person/:name', lazyloadRouteHandler('./routes/instapaper/person'));
749
-
750
539
  // UI 中国
751
540
  router.get('/ui-cn/article', lazyloadRouteHandler('./routes/ui-cn/article'));
752
541
  router.get('/ui-cn/user/:id', lazyloadRouteHandler('./routes/ui-cn/user'));
753
542
 
754
- // 决胜网
755
- router.get('/juesheng', lazyloadRouteHandler('./routes/juesheng'));
756
-
757
543
  // 一些博客
758
544
  // 敬维-以认真的态度做完美的事情: https://jingwei.link/
759
- router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/jingwei_link'));
545
+ router.get('/blogs/jingwei.link', lazyloadRouteHandler('./routes/blogs/jingwei-link'));
760
546
 
761
547
  // 王垠的博客-当然我在扯淡
762
548
  router.get('/blogs/wangyin', lazyloadRouteHandler('./routes/blogs/wangyin'));
@@ -767,23 +553,9 @@ router.get('/blogs/wang54/:id?', lazyloadRouteHandler('./routes/blogs/wang54'));
767
553
  // WordPress
768
554
  router.get('/blogs/wordpress/:domain/:https?', lazyloadRouteHandler('./routes/blogs/wordpress'));
769
555
 
770
- // 西祠胡同
771
- router.get('/xici/:id?', lazyloadRouteHandler('./routes/xici'));
772
-
773
556
  // 今日热榜 migrated to v2
774
557
  // router.get('/tophub/:id', lazyloadRouteHandler('./routes/tophub'));
775
558
 
776
- // 游戏时光
777
- router.get('/vgtime/news', lazyloadRouteHandler('./routes/vgtime/news.js'));
778
- router.get('/vgtime/release', lazyloadRouteHandler('./routes/vgtime/release'));
779
- router.get('/vgtime/keyword/:keyword', lazyloadRouteHandler('./routes/vgtime/keyword'));
780
-
781
- // MP4吧
782
- router.get('/mp4ba/:param', lazyloadRouteHandler('./routes/mp4ba'));
783
-
784
- // anitama
785
- router.get('/anitama/:channel?', lazyloadRouteHandler('./routes/anitama/channel'));
786
-
787
559
  // 親子王國
788
560
  router.get('/babykingdom/:id/:order?', lazyloadRouteHandler('./routes/babykingdom'));
789
561
 
@@ -796,9 +568,6 @@ router.get('/zjgsu/tzgg', lazyloadRouteHandler('./routes/universities/zjgsu/tzgg
796
568
  router.get('/zjgsu/gsgg', lazyloadRouteHandler('./routes/universities/zjgsu/gsgg/scripts'));
797
569
  router.get('/zjgsu/xszq', lazyloadRouteHandler('./routes/universities/zjgsu/xszq/scripts'));
798
570
 
799
- // 大众点评
800
- router.get('/dianping/user/:id?', lazyloadRouteHandler('./routes/dianping/user'));
801
-
802
571
  // 半月谈
803
572
  router.get('/banyuetan/byt/:time?', lazyloadRouteHandler('./routes/banyuetan/byt'));
804
573
  router.get('/banyuetan/:name', lazyloadRouteHandler('./routes/banyuetan'));
@@ -807,9 +576,6 @@ router.get('/banyuetan/:name', lazyloadRouteHandler('./routes/banyuetan'));
807
576
  router.get('/gamersky/news', lazyloadRouteHandler('./routes/gamersky/news'));
808
577
  router.get('/gamersky/ent/:category', lazyloadRouteHandler('./routes/gamersky/ent'));
809
578
 
810
- // konami
811
- router.get('/konami/pesmobile/:lang?/:os?', lazyloadRouteHandler('./routes/konami/pesmobile'));
812
-
813
579
  // psnine
814
580
  router.get('/psnine/index', lazyloadRouteHandler('./routes/psnine/index'));
815
581
  router.get('/psnine/shuzhe', lazyloadRouteHandler('./routes/psnine/shuzhe'));
@@ -825,24 +591,9 @@ router.get('/zucc/cssearch/latest/:webVpn/:key', lazyloadRouteHandler('./routes/
825
591
  // checkee
826
592
  router.get('/checkee/:dispdate', lazyloadRouteHandler('./routes/checkee/index'));
827
593
 
828
- // Matters
829
- router.get('/matters/latest/:type?', lazyloadRouteHandler('./routes/matters/latest'));
830
- router.redirect('/matters/hot', '/matters/latest/heat'); // Deprecated
831
- router.get('/matters/tags/:tid', lazyloadRouteHandler('./routes/matters/tags'));
832
- router.get('/matters/author/:uid', lazyloadRouteHandler('./routes/matters/author'));
833
-
834
- // MobData
835
- router.get('/mobdata/report', lazyloadRouteHandler('./routes/mobdata/report'));
836
-
837
- // 谷雨
838
- router.get('/tencent/guyu/channel/:name', lazyloadRouteHandler('./routes/tencent/guyu/channel'));
839
-
840
594
  // 古诗文网
841
595
  router.get('/gushiwen/recommend/:annotation?', lazyloadRouteHandler('./routes/gushiwen/recommend'));
842
596
 
843
- // 电商在线
844
- router.get('/imaijia/category/:category', lazyloadRouteHandler('./routes/imaijia/category'));
845
-
846
597
  // 21财经
847
598
  router.get('/21caijing/channel/:name', lazyloadRouteHandler('./routes/21caijing/channel'));
848
599
 
@@ -856,24 +607,9 @@ router.get('/bupt/funbox', lazyloadRouteHandler('./routes/universities/bupt/funb
856
607
  // 广东海洋大学
857
608
  router.get('/gdoujwc', lazyloadRouteHandler('./routes/universities/gdou/jwc/jwtz'));
858
609
 
859
- // 中国高清网
860
- router.get('/gaoqingla/:tag?', lazyloadRouteHandler('./routes/gaoqingla/latest'));
861
-
862
- // 马良行
863
- router.get('/mlhang', lazyloadRouteHandler('./routes/mlhang/latest'));
864
-
865
- // PlayStation Store
866
- router.get('/ps/list/:gridName', lazyloadRouteHandler('./routes/ps/list'));
867
- router.get('/ps/trophy/:id', lazyloadRouteHandler('./routes/ps/trophy'));
868
- router.get('/ps/ps4updates', lazyloadRouteHandler('./routes/ps/ps4updates'));
869
- router.get('/ps/:lang?/product/:gridName', lazyloadRouteHandler('./routes/ps/product'));
870
-
871
610
  // Quanta Magazine
872
611
  router.get('/quantamagazine/archive', lazyloadRouteHandler('./routes/quantamagazine/archive'));
873
612
 
874
- // 福利资源-met.red
875
- router.get('/metred/fuli', lazyloadRouteHandler('./routes/metred/fuli'));
876
-
877
613
  // MIT
878
614
  router.get('/mit/graduateadmissions/:type/:name', lazyloadRouteHandler('./routes/universities/mit/graduateadmissions'));
879
615
  router.get('/mit/ocw-top', lazyloadRouteHandler('./routes/universities/mit/ocw-top'));
@@ -882,26 +618,12 @@ router.get('/mit/csail/news', lazyloadRouteHandler('./routes/universities/mit/cs
882
618
  // 毕马威
883
619
  router.get('/kpmg/insights', lazyloadRouteHandler('./routes/kpmg/insights'));
884
620
 
885
- // gradcafe
886
- router.get('/gradcafe/result/:type', lazyloadRouteHandler('./routes/gradcafe/result'));
887
- router.get('/gradcafe/result', lazyloadRouteHandler('./routes/gradcafe/result'));
888
-
889
- // 鼠绘漫画
890
- router.get('/shuhui/comics/:id', lazyloadRouteHandler('./routes/shuhui/comics'));
891
-
892
621
  // 朝日新闻
893
- router.get('/asahi/area/:id', lazyloadRouteHandler('./routes/asahi/area'));
894
622
  router.get('/asahi/:genre?/:category?', lazyloadRouteHandler('./routes/asahi/index'));
895
623
 
896
624
  // SoundCloud
897
625
  router.get('/soundcloud/tracks/:user', lazyloadRouteHandler('./routes/soundcloud/tracks'));
898
626
 
899
- // dilidili
900
- router.get('/dilidili/fanju/:id', lazyloadRouteHandler('./routes/dilidili/fanju'));
901
-
902
- // 且听风吟福利
903
- router.get('/qtfyfl/:category', lazyloadRouteHandler('./routes/qtfyfl/category'));
904
-
905
627
  // 派代
906
628
  router.get('/paidai', lazyloadRouteHandler('./routes/paidai/index'));
907
629
  router.get('/paidai/bbs', lazyloadRouteHandler('./routes/paidai/bbs'));
@@ -913,24 +635,9 @@ router.get('/paidai/news', lazyloadRouteHandler('./routes/paidai/news'));
913
635
  // 漫画db
914
636
  router.get('/manhuadb/comics/:id', lazyloadRouteHandler('./routes/manhuadb/comics'));
915
637
 
916
- // 装备前线
917
- router.get('/zfrontier/postlist/:type', lazyloadRouteHandler('./routes/zfrontier/postlist'));
918
- router.get('/zfrontier/board/:boardId', lazyloadRouteHandler('./routes/zfrontier/board_postlist'));
919
-
920
- // Hpoi 手办维基
921
- router.get('/hpoi/info/:type?', lazyloadRouteHandler('./routes/hpoi/info'));
922
- router.get('/hpoi/:category/:words', lazyloadRouteHandler('./routes/hpoi'));
923
- router.get('/hpoi/user/:user_id/:caty', lazyloadRouteHandler('./routes/hpoi/user'));
924
-
925
- // 通用CurseForge
926
- router.get('/curseforge/:gameid/:catagoryid/:projectid/files', lazyloadRouteHandler('./routes/curseforge/generalfiles'));
927
-
928
638
  // 西南财经大学
929
639
  router.get('/swufe/seie/:type?', lazyloadRouteHandler('./routes/universities/swufe/seie'));
930
640
 
931
- // Wired
932
- router.get('/wired/tag/:tag', lazyloadRouteHandler('./routes/wired/tag'));
933
-
934
641
  // 飞地
935
642
  router.get('/enclavebooks/category/:id?', lazyloadRouteHandler('./routes/enclavebooks/category'));
936
643
  router.get('/enclavebooks/user/:uid', lazyloadRouteHandler('./routes/enclavebooks/user.js'));
@@ -940,22 +647,13 @@ router.get('/enclavebooks/collection/:uid', lazyloadRouteHandler('./routes/encla
940
647
  router.get('/digitaling/index', lazyloadRouteHandler('./routes/digitaling/index'));
941
648
 
942
649
  // 数英网文章专题
943
- router.get('/digitaling/articles/:category/:subcate', lazyloadRouteHandler('./routes/digitaling/article'));
650
+ router.get('/digitaling/articles/:category/:subcate?', lazyloadRouteHandler('./routes/digitaling/article'));
944
651
 
945
652
  // 数英网项目专题
946
653
  router.get('/digitaling/projects/:category', lazyloadRouteHandler('./routes/digitaling/project'));
947
654
 
948
655
  // Bing壁纸
949
- router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
950
-
951
- // Maxjia News - DotA 2
952
- router.get('/maxnews/dota2', lazyloadRouteHandler('./routes/maxnews/dota2'));
953
-
954
- // 柠檬 - 私房歌
955
- router.get('/ningmeng/song', lazyloadRouteHandler('./routes/ningmeng/song'));
956
-
957
- // 紫竹张先生
958
- router.get('/zzz/:category?/:language?', lazyloadRouteHandler('./routes/zzz'));
656
+ // router.get('/bing', lazyloadRouteHandler('./routes/bing/index'));
959
657
 
960
658
  // AlgoCasts
961
659
  router.get('/algocasts', lazyloadRouteHandler('./routes/algocasts/all'));
@@ -966,7 +664,7 @@ router.get('/aqicn/:city/:pollution?', lazyloadRouteHandler('./routes/aqicn/inde
966
664
  // 猫眼电影
967
665
  router.get('/maoyan/hot', lazyloadRouteHandler('./routes/maoyan/hot'));
968
666
  router.get('/maoyan/upcoming', lazyloadRouteHandler('./routes/maoyan/upcoming'));
969
- router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/hotComplete'));
667
+ router.get('/maoyan/hotComplete/:orderby?/:ascOrDesc?/:top?', lazyloadRouteHandler('./routes/maoyan/hot-complete'));
970
668
 
971
669
  // 国家退伍士兵信息
972
670
  router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/china'));
@@ -974,9 +672,6 @@ router.get('/gov/veterans/:type', lazyloadRouteHandler('./routes/gov/veterans/ch
974
672
  // 河北省退伍士兵信息
975
673
  router.get('/gov/veterans/hebei/:type', lazyloadRouteHandler('./routes/gov/veterans/hebei'));
976
674
 
977
- // Dilbert Comic Strip
978
- router.get('/dilbert/strip', lazyloadRouteHandler('./routes/dilbert/strip'));
979
-
980
675
  // 怪物猎人
981
676
  router.get('/monsterhunter/update', lazyloadRouteHandler('./routes/mhw/update'));
982
677
  router.get('/mhw/update', lazyloadRouteHandler('./routes/mhw/update'));
@@ -997,22 +692,12 @@ router.get('/dekudeals/:type', lazyloadRouteHandler('./routes/dekudeals'));
997
692
  // 快科技(原驱动之家)
998
693
  // router.get('/kkj/news', lazyloadRouteHandler('./routes/kkj/news'));
999
694
 
1000
- // sixthtone
1001
- router.get('/sixthtone/news', lazyloadRouteHandler('./routes/sixthtone/news'));
1002
-
1003
695
  // AI研习社
1004
696
  router.get('/aiyanxishe/:id/:sort?', lazyloadRouteHandler('./routes/aiyanxishe/home'));
1005
697
 
1006
698
  // 活动行
1007
699
  router.get('/huodongxing/explore', lazyloadRouteHandler('./routes/hdx/explore'));
1008
700
 
1009
- // 巴比特作者专栏
1010
- router.get('/8btc/:authorid', lazyloadRouteHandler('./routes/8btc/author'));
1011
- router.get('/8btc/news/flash', lazyloadRouteHandler('./routes/8btc/news/flash'));
1012
-
1013
- // VueVlog
1014
- router.get('/vuevideo/:userid', lazyloadRouteHandler('./routes/vuevideo/user'));
1015
-
1016
701
  // LWN.net Alerts
1017
702
  router.get('/lwn/alerts/:distributor', lazyloadRouteHandler('./routes/lwn/alerts'));
1018
703
 
@@ -1026,9 +711,6 @@ router.get('/lolapp/article/:uuid', lazyloadRouteHandler('./routes/lolapp/articl
1026
711
  // 左岸读书
1027
712
  router.get('/zreading', lazyloadRouteHandler('./routes/zreading/home'));
1028
713
 
1029
- // NBA
1030
- router.get('/nba/app_news', lazyloadRouteHandler('./routes/nba/app_news'));
1031
-
1032
714
  // 天津产权交易中心
1033
715
  router.get('/tprtc/cqzr', lazyloadRouteHandler('./routes/tprtc/cqzr'));
1034
716
  router.get('/tprtc/qyzc', lazyloadRouteHandler('./routes/tprtc/qyzc'));
@@ -1037,9 +719,6 @@ router.get('/tprtc/news', lazyloadRouteHandler('./routes/tprtc/news'));
1037
719
  // ArchDaily
1038
720
  router.get('/archdaily', lazyloadRouteHandler('./routes/archdaily/home'));
1039
721
 
1040
- // aptonic Dropzone actions
1041
- router.get('/aptonic/action/:untested?', lazyloadRouteHandler('./routes/aptonic/action'));
1042
-
1043
722
  // im2maker
1044
723
  router.get('/im2maker/:channel?', lazyloadRouteHandler('./routes/im2maker/index'));
1045
724
 
@@ -1054,25 +733,12 @@ router.get('/cninfo/announcement/:column/:code/:orgId/:category?/:search?', lazy
1054
733
  router.get('/nosetime/:id/:type/:sort?', lazyloadRouteHandler('./routes/nosetime/comment'));
1055
734
  router.get('/nosetime/home', lazyloadRouteHandler('./routes/nosetime/home'));
1056
735
 
1057
- // 涂鸦王国
1058
- router.get('/gracg/:user/:love?', lazyloadRouteHandler('./routes/gracg/user'));
1059
-
1060
736
  // 大侠阿木
1061
737
  router.get('/daxiaamu/home', lazyloadRouteHandler('./routes/daxiaamu/home'));
1062
738
 
1063
- // 美团技术团队
1064
- router.get('/meituan/tech/home', lazyloadRouteHandler('./routes//meituan/tech/home'));
1065
-
1066
- // 码农网
1067
- router.get('/codeceo/home', lazyloadRouteHandler('./routes/codeceo/home'));
1068
- router.get('/codeceo/:type/:category?', lazyloadRouteHandler('./routes/codeceo/category'));
1069
-
1070
- // BOF
1071
- router.get('/bof/home', lazyloadRouteHandler('./routes/bof/home'));
1072
-
1073
739
  // 爱发电
1074
- router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
1075
- router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
740
+ // router.get('/afdian/explore/:type?/:category?', lazyloadRouteHandler('./routes/afdian/explore'));
741
+ // router.get('/afdian/dynamic/:uid', lazyloadRouteHandler('./routes/afdian/dynamic'));
1076
742
 
1077
743
  // Simons Foundation
1078
744
  router.get('/simonsfoundation/articles', lazyloadRouteHandler('./routes/simonsfoundation/articles'));
@@ -1082,12 +748,8 @@ router.get('/simonsfoundation/recommend', lazyloadRouteHandler('./routes/simonsf
1082
748
  router.get('/siren/news', lazyloadRouteHandler('./routes/siren/index'));
1083
749
 
1084
750
  // 学堂在线
1085
- router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/course_info'));
1086
- router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/course_list'));
1087
-
1088
- // wikihow
1089
- router.get('/wikihow/index', lazyloadRouteHandler('./routes/wikihow/index.js'));
1090
- router.get('/wikihow/category/:category/:type', lazyloadRouteHandler('./routes/wikihow/category.js'));
751
+ router.get('/xuetangx/course/:cid/:type', lazyloadRouteHandler('./routes/xuetangx/course-info'));
752
+ router.get('/xuetangx/course/list/:mode/:credential/:status/:type?', lazyloadRouteHandler('./routes/xuetangx/course-list'));
1091
753
 
1092
754
  // 正版中国
1093
755
  // router.get('/getitfree/category/:category?', lazyloadRouteHandler('./routes/getitfree/category.js'));
@@ -1097,7 +759,6 @@ router.get('/wikihow/category/:category/:type', lazyloadRouteHandler('./routes/w
1097
759
  router.get('/10000link/news/:category?', lazyloadRouteHandler('./routes/10000link/news'));
1098
760
 
1099
761
  // 一兜糖
1100
- router.get('/yidoutang/index', lazyloadRouteHandler('./routes/yidoutang/index.js'));
1101
762
  router.get('/yidoutang/guide', lazyloadRouteHandler('./routes/yidoutang/guide.js'));
1102
763
  router.get('/yidoutang/mtest', lazyloadRouteHandler('./routes/yidoutang/mtest.js'));
1103
764
  router.get('/yidoutang/case/:type', lazyloadRouteHandler('./routes/yidoutang/case.js'));
@@ -1113,9 +774,6 @@ router.get('/keyakizaka46/blog', lazyloadRouteHandler('./routes/keyakizaka46/blo
1113
774
  // router.get('/hinatazaka46/blog', lazyloadRouteHandler('./routes/hinatazaka46/blog'));
1114
775
  // router.get('/sakurazaka46/blog', lazyloadRouteHandler('./routes/sakurazaka46/blog'));
1115
776
 
1116
- // 模型网
1117
- router.get('/moxingnet', lazyloadRouteHandler('./routes/moxingnet'));
1118
-
1119
777
  // 湖北大学
1120
778
  router.get('/hubu/news/:type', lazyloadRouteHandler('./routes/universities/hubu/news'));
1121
779
 
@@ -1130,18 +788,9 @@ router.get('/socialclub/events/:game?', lazyloadRouteHandler('./routes/socialclu
1130
788
  router.get('/ctfhub/upcoming/:limit?', lazyloadRouteHandler('./routes/ctfhub/upcoming'));
1131
789
  router.get('/ctfhub/search/:limit?/:form?/:class?/:title?', lazyloadRouteHandler('./routes/ctfhub/search'));
1132
790
 
1133
- // 礼物说
1134
- router.get('/liwushuo/index', lazyloadRouteHandler('./routes/liwushuo/index.js'));
1135
-
1136
791
  // 中国日报
1137
792
  router.get('/chinadaily/english/:category', lazyloadRouteHandler('./routes/chinadaily/english.js'));
1138
793
 
1139
- // leboncoin
1140
- router.get('/leboncoin/ad/:query', lazyloadRouteHandler('./routes/leboncoin/ad.js'));
1141
-
1142
- // DHL
1143
- router.get('/dhl/:id', lazyloadRouteHandler('./routes/dhl/shipment-tracking'));
1144
-
1145
794
  // Hanime
1146
795
  router.get('/hanime/video', lazyloadRouteHandler('./routes/hanime/video'));
1147
796
 
@@ -1152,14 +801,8 @@ router.get('/soul/posts/hot/:pid*', lazyloadRouteHandler('./routes/soul/hot'));
1152
801
  // 单向空间
1153
802
  router.get('/owspace/read/:type?', lazyloadRouteHandler('./routes/owspace/read'));
1154
803
 
1155
- // 天涯论坛
1156
- router.get('/tianya/index/:type', lazyloadRouteHandler('./routes/tianya/index'));
1157
- router.get('/tianya/user/:userid', lazyloadRouteHandler('./routes/tianya/user'));
1158
- router.get('/tianya/comments/:userid', lazyloadRouteHandler('./routes/tianya/comments'));
1159
-
1160
804
  // eleme
1161
805
  router.get('/eleme/open/announce', lazyloadRouteHandler('./routes/eleme/open/announce'));
1162
- router.get('/eleme/open-be/announce', lazyloadRouteHandler('./routes/eleme/open-be/announce'));
1163
806
 
1164
807
  // 美团开放平台
1165
808
  router.get('/meituan/open/announce', lazyloadRouteHandler('./routes/meituan/open/announce'));
@@ -1176,37 +819,16 @@ router.get('/weidian/goods/:id', lazyloadRouteHandler('./routes/weidian/goods'))
1176
819
  // 有赞
1177
820
  router.get('/youzan/goods/:id', lazyloadRouteHandler('./routes/youzan/goods'));
1178
821
 
1179
- // 币世界快讯
1180
- router.get('/bishijie/kuaixun', lazyloadRouteHandler('./routes/bishijie/kuaixun'));
1181
-
1182
- // 顺丰丰桥
1183
- router.get('/sf/sffq-announce', lazyloadRouteHandler('./routes/sf/sffq-announce'));
1184
-
1185
822
  // 缺书网
1186
823
  router.get('/queshu/sale', lazyloadRouteHandler('./routes/queshu/sale'));
1187
824
  router.get('/queshu/book/:bookid', lazyloadRouteHandler('./routes/queshu/book'));
1188
825
 
1189
- // MITRE
1190
- router.get('/mitre/publications', lazyloadRouteHandler('./routes/mitre/publications'));
1191
-
1192
- // SANS
1193
- router.get('/sans/summit_archive', lazyloadRouteHandler('./routes/sans/summit_archive'));
1194
-
1195
826
  // LaTeX 开源小屋
1196
827
  router.get('/latexstudio/home', lazyloadRouteHandler('./routes/latexstudio/home'));
1197
828
 
1198
- // 前端艺术家每日整理&&飞冰早报
1199
- router.get('/jskou/:type?', lazyloadRouteHandler('./routes/jskou/index'));
1200
-
1201
829
  // 邮箱
1202
830
  // router.get('/mail/imap/:email/:folder*', lazyloadRouteHandler('./routes/mail/imap'));
1203
831
 
1204
- // 好队友
1205
- router.get('/network360/jobs', lazyloadRouteHandler('./routes/network360/jobs'));
1206
-
1207
- // 智联招聘
1208
- router.get('/zhilian/:city/:keyword', lazyloadRouteHandler('./routes/zhilian/index'));
1209
-
1210
832
  // 北华航天工业学院 - 新闻
1211
833
  router.get('/nciae/news', lazyloadRouteHandler('./routes/universities/nciae/news'));
1212
834
  // 北华航天工业学院 - 通知公告
@@ -1217,25 +839,9 @@ router.get('/nciae/xsxx', lazyloadRouteHandler('./routes/universities/nciae/xsxx
1217
839
  // cfan
1218
840
  router.get('/cfan/news', lazyloadRouteHandler('./routes/cfan/news'));
1219
841
 
1220
- // 奈菲影视
1221
- router.get('/nfmovies/:id?', lazyloadRouteHandler('./routes/nfmovies/index'));
1222
-
1223
- // 书友社区
1224
- router.get('/andyt/:view?', lazyloadRouteHandler('./routes/andyt/index'));
1225
-
1226
- // 品途商业评论
1227
- router.get('/pintu360/:type?', lazyloadRouteHandler('./routes/pintu360/index'));
1228
-
1229
- // engadget中国版
1230
- router.get('/engadget-cn', lazyloadRouteHandler('./routes/engadget/home'));
1231
-
1232
842
  // engadget
1233
843
  router.get('/engadget/:lang?', lazyloadRouteHandler('./routes/engadget/home'));
1234
844
 
1235
- // 吹牛部落
1236
- router.get('/chuiniu/column/:id', lazyloadRouteHandler('./routes/chuiniu/column'));
1237
- router.get('/chuiniu/column_list', lazyloadRouteHandler('./routes/chuiniu/column_list'));
1238
-
1239
845
  // leemeng
1240
846
  router.get('/leemeng', lazyloadRouteHandler('./routes/blogs/leemeng'));
1241
847
 
@@ -1246,12 +852,6 @@ router.get('/cug/xgxy', lazyloadRouteHandler('./routes/universities/cug/xgxy'));
1246
852
  router.get('/cug/news', lazyloadRouteHandler('./routes/universities/cug/news'));
1247
853
  router.get('/cug/gcxy/:type?', lazyloadRouteHandler('./routes/universities/cug/gcxy/index'));
1248
854
 
1249
- // 海猫吧
1250
- router.get('/haimaoba/:id?', lazyloadRouteHandler('./routes/haimaoba/comics'));
1251
-
1252
- // 蒲公英
1253
- router.get('/pgyer/:app?', lazyloadRouteHandler('./routes/pgyer/app'));
1254
-
1255
855
  // 米坛社区表盘
1256
856
  router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes/watchface/update'));
1257
857
 
@@ -1259,15 +859,6 @@ router.get('/watchface/:watch_type?/:list_type?', lazyloadRouteHandler('./routes
1259
859
  router.get('/cnu/selected', lazyloadRouteHandler('./routes/cnu/selected'));
1260
860
  router.get('/cnu/discovery/:type?/:category?', lazyloadRouteHandler('./routes/cnu/discovery'));
1261
861
 
1262
- // 战旗直播
1263
- router.get('/zhanqi/room/:id', lazyloadRouteHandler('./routes/zhanqi/room'));
1264
-
1265
- // 酒云网
1266
- router.get('/wineyun/:category', lazyloadRouteHandler('./routes/wineyun'));
1267
-
1268
- // 快知
1269
- router.get('/kzfeed/topic/:id', lazyloadRouteHandler('./routes/kzfeed/topic'));
1270
-
1271
862
  // X-MOL化学资讯平台
1272
863
  // router.get('/x-mol/news/:tag?', lazyloadRouteHandler('./routes/x-mol/news.js'));
1273
864
  // router.get('/x-mol/paper/:type/:magazine', lazyloadRouteHandler('./routes/x-mol/paper'));
@@ -1277,16 +868,13 @@ router.get('/zhishifenzi/news/:type?', lazyloadRouteHandler('./routes/zhishifenz
1277
868
  router.get('/zhishifenzi/depth', lazyloadRouteHandler('./routes/zhishifenzi/depth'));
1278
869
  router.get('/zhishifenzi/innovation/:type?', lazyloadRouteHandler('./routes/zhishifenzi/innovation'));
1279
870
 
1280
- // 電撃Online
1281
- router.get('/dengekionline/:type?', lazyloadRouteHandler('./routes/dengekionline/new'));
1282
-
1283
871
  // 4Gamers
1284
- router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
1285
- router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
1286
- router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
872
+ // router.get('/4gamers/category/:category', lazyloadRouteHandler('./routes/4gamers/category'));
873
+ // router.get('/4gamers/tag/:tag', lazyloadRouteHandler('./routes/4gamers/tag'));
874
+ // router.get('/4gamers/topic/:topic', lazyloadRouteHandler('./routes/4gamers/topic'));
1287
875
 
1288
876
  // 大麦网
1289
- router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
877
+ // router.get('/damai/activity/:city/:category/:subcategory/:keyword?', lazyloadRouteHandler('./routes/damai/activity'));
1290
878
 
1291
879
  // 桂林电子科技大学新闻资讯
1292
880
  router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news'));
@@ -1294,14 +882,6 @@ router.get('/guet/xwzx/:type?', lazyloadRouteHandler('./routes/guet/news'));
1294
882
  // はてな匿名ダイアリー
1295
883
  router.get('/hatena/anonymous_diary/archive', lazyloadRouteHandler('./routes/hatena/anonymous_diary/archive'));
1296
884
 
1297
- // kaggle
1298
- router.get('/kaggle/discussion/:forumId/:sort?', lazyloadRouteHandler('./routes/kaggle/discussion'));
1299
- router.get('/kaggle/competitions/:category?', lazyloadRouteHandler('./routes/kaggle/competitions'));
1300
- router.get('/kaggle/user/:user', lazyloadRouteHandler('./routes/kaggle/user'));
1301
-
1302
- // eLife [Sci Journal]
1303
- router.get('/elife/:tid', lazyloadRouteHandler('./routes/elife/index'));
1304
-
1305
885
  // IEEE Xplore [Sci Journal]
1306
886
  router.get('/ieee/author/:aid/:sortType/:count?', lazyloadRouteHandler('./routes/ieee/author'));
1307
887
 
@@ -1316,14 +896,8 @@ router.get('/cell/cover', lazyloadRouteHandler('./routes/cell/cover'));
1316
896
  router.get('/mcbbs/forum/:type', lazyloadRouteHandler('./routes/mcbbs/forum'));
1317
897
  router.get('/mcbbs/post/:tid/:authorid?', lazyloadRouteHandler('./routes/mcbbs/post'));
1318
898
 
1319
- // Pocket
1320
- router.get('/pocket/trending', lazyloadRouteHandler('./routes/pocket/trending'));
1321
-
1322
- // 码农周刊
1323
- router.get('/manong-weekly', lazyloadRouteHandler('./routes/manong-weekly/issues'));
1324
-
1325
899
  // 每日猪价
1326
- router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
900
+ // router.get('/pork-price', lazyloadRouteHandler('./routes/pork-price'));
1327
901
 
1328
902
  // NOI 全国青少年信息学奥林匹克竞赛
1329
903
  router.get('/noi', lazyloadRouteHandler('./routes/noi'));
@@ -1339,40 +913,28 @@ router.get('/gov/cnca/zxtz', lazyloadRouteHandler('./routes/gov/cnca/zxtz'));
1339
913
  // 文汇报
1340
914
  router.get('/whb/:category', lazyloadRouteHandler('./routes/whb/zhuzhan'));
1341
915
 
1342
- // 三界异次元
1343
- router.get('/3ycy/home', lazyloadRouteHandler('./routes/3ycy/home.js'));
1344
-
1345
916
  // Emi Nitta official website
1346
917
  router.get('/emi-nitta/:type', lazyloadRouteHandler('./routes/emi-nitta/home'));
1347
918
 
1348
- // Alter China
1349
- router.get('/alter-cn/news', lazyloadRouteHandler('./routes/alter-cn/news'));
1350
-
1351
919
  // Visual Studio Code Marketplace
1352
920
  router.get('/vscode/marketplace/:type?', lazyloadRouteHandler('./routes/vscode/marketplace'));
1353
921
 
1354
922
  // 饭否
1355
- router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/user_timeline'));
1356
- router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/home_timeline'));
923
+ router.get('/fanfou/user_timeline/:uid', lazyloadRouteHandler('./routes/fanfou/user-timeline'));
924
+ router.get('/fanfou/home_timeline', lazyloadRouteHandler('./routes/fanfou/home-timeline'));
1357
925
  router.get('/fanfou/favorites/:uid', lazyloadRouteHandler('./routes/fanfou/favorites'));
1358
926
  router.get('/fanfou/trends', lazyloadRouteHandler('./routes/fanfou/trends'));
1359
- router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/public_timeline'));
1360
-
1361
- // ITSlide
1362
- router.get('/itslide/new', lazyloadRouteHandler('./routes/itslide/new'));
927
+ router.get('/fanfou/public_timeline/:keyword', lazyloadRouteHandler('./routes/fanfou/public-timeline'));
1363
928
 
1364
929
  // Remote Work
1365
930
  router.get('/remote-work/:caty?', lazyloadRouteHandler('./routes/remote-work/index'));
1366
931
 
1367
- // China Times
1368
- router.get('/chinatimes/:caty', lazyloadRouteHandler('./routes/chinatimes/index'));
1369
-
1370
932
  // chocolatey
1371
933
  router.get('/chocolatey/software/:name?', lazyloadRouteHandler('./routes/chocolatey/software'));
1372
934
 
1373
935
  // 巴哈姆特
1374
936
  router.get('/bahamut/creation/:author/:category?', lazyloadRouteHandler('./routes/bahamut/creation'));
1375
- router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/creation_index'));
937
+ router.get('/bahamut/creation_index/:category?/:subcategory?/:type?', lazyloadRouteHandler('./routes/bahamut/creation-index'));
1376
938
 
1377
939
  // CentBrowser
1378
940
  router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/history'));
@@ -1380,9 +942,6 @@ router.get('/centbrowser/history', lazyloadRouteHandler('./routes/centbrowser/hi
1380
942
  // 755
1381
943
  router.get('/755/user/:username', lazyloadRouteHandler('./routes/755/user'));
1382
944
 
1383
- // Kernel Aliyun
1384
- router.get('/aliyun-kernel/index', lazyloadRouteHandler('./routes/aliyun-kernel/index'));
1385
-
1386
945
  // Vulture
1387
946
  router.get('/vulture/:tag/:excludetags?', lazyloadRouteHandler('./routes/vulture/index'));
1388
947
 
@@ -1395,19 +954,9 @@ router.get('/xinwenlianbo/index', lazyloadRouteHandler('./routes/xinwenlianbo/in
1395
954
  // invisionapp
1396
955
  router.get('/invisionapp/inside-design', lazyloadRouteHandler('./routes/invisionapp/inside-design'));
1397
956
 
1398
- // mlog.club
1399
- router.get('/mlog-club/topics/:node', lazyloadRouteHandler('./routes/mlog-club/topics'));
1400
- router.get('/mlog-club/projects', lazyloadRouteHandler('./routes/mlog-club/projects'));
1401
-
1402
- // Chrome 网上应用店
1403
- router.get('/chrome/webstore/extensions/:id', lazyloadRouteHandler('./routes/chrome/extensions'));
1404
-
1405
957
  // RTHK
1406
958
  router.get('/rthk-news/:lang/:category', lazyloadRouteHandler('./routes/rthk-news/index'));
1407
959
 
1408
- // Yahoo!テレビ
1409
- router.get('/yahoo-jp-tv/:query', lazyloadRouteHandler('./routes/yahoo-jp-tv/index'));
1410
-
1411
960
  // Yahoo! by Author
1412
961
  router.get('/yahoo-author/:author', lazyloadRouteHandler('./routes/yahoo-author/index'));
1413
962
 
@@ -1421,11 +970,6 @@ router.get('/ddrk/index', lazyloadRouteHandler('./routes/ddrk/list'));
1421
970
  router.get('/avgle/videos/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
1422
971
  router.get('/avgle/search/:keyword/:order?/:time?/:top?', lazyloadRouteHandler('./routes/avgle/videos.js'));
1423
972
 
1424
- // 公主链接公告
1425
- router.get('/pcr/news', lazyloadRouteHandler('./routes/pcr/news'));
1426
- router.get('/pcr/news-tw', lazyloadRouteHandler('./routes/pcr/news-tw'));
1427
- router.get('/pcr/news-cn', lazyloadRouteHandler('./routes/pcr/news-cn'));
1428
-
1429
973
  // project-zero issues
1430
974
  router.get('/project-zero-issues', lazyloadRouteHandler('./routes/project-zero-issues/index'));
1431
975
 
@@ -1433,59 +977,25 @@ router.get('/project-zero-issues', lazyloadRouteHandler('./routes/project-zero-i
1433
977
  router.get('/galaxylab', lazyloadRouteHandler('./routes/galaxylab/index'));
1434
978
 
1435
979
  // NOSEC 安全讯息平台
1436
- router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
1437
-
1438
- // 新趣集
1439
- router.get('/xinquji/today', lazyloadRouteHandler('./routes/xinquji/today'));
1440
- router.get('/xinquji/today/internal', lazyloadRouteHandler('./routes/xinquji/internal'));
1441
-
1442
- // 英中协会
1443
- router.get('/gbcc/trust', lazyloadRouteHandler('./routes/gbcc/trust'));
1444
-
1445
- // CBC
1446
- // router.get('/cbc/topics/:topic?', lazyloadRouteHandler('./routes/cbc/topics'));
980
+ // router.get('/nosec/:keykind?', lazyloadRouteHandler('./routes/nosec/index'));
1447
981
 
1448
982
  // discuz
1449
983
  // router.get('/discuz/:ver([7|x])/:cid([0-9]{2})/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
1450
984
  // router.get('/discuz/:ver([7|x])/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
1451
985
  // router.get('/discuz/:link(.*)', lazyloadRouteHandler('./routes/discuz/discuz'));
1452
986
 
1453
- // China Dialogue 中外对话
1454
- router.get('/chinadialogue/topics/:topic', lazyloadRouteHandler('./routes/chinadialogue/topics'));
1455
- router.get('/chinadialogue/:column', lazyloadRouteHandler('./routes/chinadialogue/column'));
1456
-
1457
987
  // 人民日报社 国际金融报
1458
988
  router.get('/ifnews/:cid', lazyloadRouteHandler('./routes/ifnews/column'));
1459
989
 
1460
- // Scala Blog
1461
- router.get('/scala/blog/:part?', lazyloadRouteHandler('./routes/scala-blog/scala-blog'));
1462
-
1463
990
  // 微信更新日志
1464
991
  router.get('/weixin/miniprogram/release', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
1465
992
  router.get('/weixin/miniprogram/framework', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/framework')); // 基础库更新日志
1466
993
  router.get('/weixin/miniprogram/devtools', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/devtools')); // 开发者工具更新日志
1467
994
  router.get('/weixin/miniprogram/wxcloud/:caty?', lazyloadRouteHandler('./routes/tencent/wechat/miniprogram/wxcloud')); // 云开发更新日志
1468
995
 
1469
- // 新冠肺炎疫情动态
1470
- router.get('/coronavirus/caixin', lazyloadRouteHandler('./routes/coronavirus/caixin'));
1471
- router.get('/coronavirus/dxy/data/:province?/:city?', lazyloadRouteHandler('./routes/coronavirus/dxy-data'));
1472
- router.get('/coronavirus/dxy', lazyloadRouteHandler('./routes/coronavirus/dxy'));
1473
- router.get('/coronavirus/scmp', lazyloadRouteHandler('./routes/coronavirus/scmp'));
1474
- router.get('/coronavirus/nhc', lazyloadRouteHandler('./routes/coronavirus/nhc'));
1475
- router.get('/coronavirus/mogov-2019ncov/:lang', lazyloadRouteHandler('./routes/coronavirus/mogov-2019ncov'));
1476
- router.get('/coronavirus/qq/fact', lazyloadRouteHandler('./routes/tencent/factcheck'));
1477
- router.get('/coronavirus/sg-moh', lazyloadRouteHandler('./routes/coronavirus/sg-moh'));
1478
- router.get('/coronavirus/yahoo-japan/:tdfk?', lazyloadRouteHandler('./routes/coronavirus/yahoo-japan'));
1479
-
1480
996
  // 南京林业大学教务处
1481
997
  router.get('/njfu/jwc/:category?', lazyloadRouteHandler('./routes/universities/njfu/jwc'));
1482
998
 
1483
- // MQube
1484
- router.get('/mqube/user/:user', lazyloadRouteHandler('./routes/mqube/user'));
1485
- router.get('/mqube/tag/:tag', lazyloadRouteHandler('./routes/mqube/tag'));
1486
- router.get('/mqube/latest', lazyloadRouteHandler('./routes/mqube/latest'));
1487
- router.get('/mqube/top', lazyloadRouteHandler('./routes/mqube/top'));
1488
-
1489
999
  // Letterboxd
1490
1000
  router.get('/letterboxd/user/diary/:username', lazyloadRouteHandler('./routes/letterboxd/userdiary'));
1491
1001
  router.get('/letterboxd/user/followingdiary/:username', lazyloadRouteHandler('./routes/letterboxd/followingdiary'));
@@ -1499,14 +1009,6 @@ router.get('/lastfm/top/:country?', lazyloadRouteHandler('./routes/lastfm/top'))
1499
1009
  router.get('/piapro/user/:pid', lazyloadRouteHandler('./routes/piapro/user'));
1500
1010
  router.get('/piapro/public/:type/:tag?/:category?', lazyloadRouteHandler('./routes/piapro/public'));
1501
1011
 
1502
- // 第一版主
1503
- router.get('/novel/d1bz/:category/:id', lazyloadRouteHandler('./routes/d1bz/novel'));
1504
-
1505
- // 爱下电子书
1506
- router.get('/axdzs/:novel', lazyloadRouteHandler('./routes/novel/axdzs'));
1507
- // deprecated
1508
- router.get('/axdzs/:id1/:id2', lazyloadRouteHandler('./routes/novel/axdzs'));
1509
-
1510
1012
  // HackerOne
1511
1013
  router.get('/hackerone/hacktivity', lazyloadRouteHandler('./routes/hackerone/hacktivity'));
1512
1014
  router.get('/hackerone/search/:search', lazyloadRouteHandler('./routes/hackerone/search'));
@@ -1522,30 +1024,13 @@ router.get('/p-articles/contributors/:author', lazyloadRouteHandler('./routes/p-
1522
1024
  router.get('/haohaozhu/whole-house/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/whole-house'));
1523
1025
  router.get('/haohaozhu/discover/:keyword?', lazyloadRouteHandler('./routes/haohaozhu/discover'));
1524
1026
 
1525
- // 稻草人书屋
1526
- router.get('/dcrsw/:name/:count?', lazyloadRouteHandler('./routes/novel/dcrsw'));
1527
-
1528
1027
  // 魔法纪录
1529
1028
  router.get('/magireco/announcements', lazyloadRouteHandler('./routes/magireco/announcements'));
1530
- router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/event_banner'));
1531
-
1532
- // wolley
1533
- router.get('/wolley', lazyloadRouteHandler('./routes/wolley/index'));
1534
- router.get('/wolley/user/:id', lazyloadRouteHandler('./routes/wolley/user'));
1535
- router.get('/wolley/host/:host', lazyloadRouteHandler('./routes/wolley/host'));
1536
-
1537
- // booksource
1538
- router.get('/booksource', lazyloadRouteHandler('./routes/booksource/index'));
1539
-
1540
- // ku
1541
- router.get('/ku/:name?', lazyloadRouteHandler('./routes/ku/index'));
1029
+ router.get('/magireco/event_banner', lazyloadRouteHandler('./routes/magireco/event-banner'));
1542
1030
 
1543
1031
  // 我有一片芝麻地
1544
1032
  router.get('/blogs/hedwig/:type', lazyloadRouteHandler('./routes/blogs/hedwig'));
1545
1033
 
1546
- // LoveHeaven
1547
- router.get('/loveheaven/update/:slug', lazyloadRouteHandler('./routes/loveheaven/update'));
1548
-
1549
1034
  // 拉勾
1550
1035
  router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/jobs'));
1551
1036
 
@@ -1553,9 +1038,6 @@ router.get('/lagou/jobs/:position/:city', lazyloadRouteHandler('./routes/lagou/j
1553
1038
  router.get('/yzu/home/:type', lazyloadRouteHandler('./routes/universities/yzu/home'));
1554
1039
  router.get('/yzu/yjszs/:type', lazyloadRouteHandler('./routes/universities/yzu/yjszs'));
1555
1040
 
1556
- // 德国新闻社卫健新闻
1557
- router.get('/krankenkassen', lazyloadRouteHandler('./routes/krankenkassen'));
1558
-
1559
1041
  // 桂林航天工业学院
1560
1042
  router.get('/guat/news/:type?', lazyloadRouteHandler('./routes/guat/news'));
1561
1043
 
@@ -1589,16 +1071,6 @@ router.get('/hnust/graduate/:type?', lazyloadRouteHandler('./routes/universities
1589
1071
  // Checkra1n
1590
1072
  router.get('/checkra1n/releases', lazyloadRouteHandler('./routes/checkra1n/releases'));
1591
1073
 
1592
- // 四川省科学技术厅
1593
- router.get('/sckjt/news/:type?', lazyloadRouteHandler('./routes/sckjt/news'));
1594
-
1595
- // 绝对领域
1596
- router.get('/jdlingyu/:type', lazyloadRouteHandler('./routes/jdlingyu/index'));
1597
-
1598
- // Hi, DIYgod
1599
- router.get('/blogs/diygod/animal-crossing', lazyloadRouteHandler('./routes/blogs/diygod/animal-crossing'));
1600
- router.get('/blogs/diygod/gk', lazyloadRouteHandler('./routes/blogs/diygod/gk'));
1601
-
1602
1074
  // 湖北工业大学
1603
1075
  router.get('/hbut/news/:type', lazyloadRouteHandler('./routes/universities/hbut/news'));
1604
1076
  router.get('/hbut/cs/:type', lazyloadRouteHandler('./routes/universities/hbut/cs'));
@@ -1609,28 +1081,15 @@ router.get('/acwifi', lazyloadRouteHandler('./routes/acwifi'));
1609
1081
  // MIT科技评论
1610
1082
  // router.get('/mittrchina/:type', lazyloadRouteHandler('./routes/mittrchina'));
1611
1083
 
1612
- // iYouPort
1613
- router.get('/iyouport/article', lazyloadRouteHandler('./routes/iyouport'));
1614
- router.get('/iyouport/:category?', lazyloadRouteHandler('./routes/iyouport'));
1615
-
1616
- // girlimg
1617
- router.get('/girlimg/album/:tag?/:mode?', lazyloadRouteHandler('./routes/girlimg/album'));
1618
-
1619
1084
  // etoland
1620
1085
  router.get('/etoland/:bo_table', lazyloadRouteHandler('./routes/etoland/board'));
1621
1086
 
1622
1087
  // 辽宁工程技术大学教务在线公告
1623
1088
  router.get('/lntu/jwnews', lazyloadRouteHandler('./routes/universities/lntu/jwnews'));
1624
1089
 
1625
- // 51voa
1626
- router.get('/51voa/:channel', lazyloadRouteHandler('./routes/51voa/channel'));
1627
-
1628
1090
  // 追新番
1629
- router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
1630
- router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
1631
-
1632
- // scoresaber
1633
- router.get('/scoresaber/user/:id', lazyloadRouteHandler('./routes/scoresaber/user'));
1091
+ // router.get('/fanxinzhui', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
1092
+ // router.get('/zhuixinfan/list', lazyloadRouteHandler('./routes/fanxinzhui/latest'));
1634
1093
 
1635
1094
  // blur-studio
1636
1095
  router.get('/blur-studio', lazyloadRouteHandler('./routes/blur-studio/index'));
@@ -1647,24 +1106,9 @@ router.get('/axis-studios/:type/:tag?', lazyloadRouteHandler('./routes/axis-stud
1647
1106
  // 人民邮电出版社
1648
1107
  router.get('/ptpress/book/:type?', lazyloadRouteHandler('./routes/ptpress/book'));
1649
1108
 
1650
- // uniqlo styling book
1651
- router.get('/uniqlo/stylingbook/:category?', lazyloadRouteHandler('./routes/uniqlo/stylingbook'));
1652
-
1653
1109
  // unit-image
1654
1110
  router.get('/unit-image/films/:type?', lazyloadRouteHandler('./routes/unit-image/films'));
1655
1111
 
1656
- // digic-picture
1657
- router.get('/digic-pictures/:menu/:tags?', lazyloadRouteHandler('./routes/digic-pictures/index'));
1658
-
1659
- // cve.mitre.org
1660
- router.get('/cve/search/:keyword', lazyloadRouteHandler('./routes/cve/search'));
1661
-
1662
- // Xposed Module Repository
1663
- router.get('/xposed/module/:mod', lazyloadRouteHandler('./routes/xposed/module'));
1664
-
1665
- // Microsoft Edge
1666
- router.get('/edge/addon/:crxid', lazyloadRouteHandler('./routes/edge/addon'));
1667
-
1668
1112
  // Microsoft Store
1669
1113
  router.get('/microsoft-store/updates/:productid/:market?', lazyloadRouteHandler('./routes/microsoft-store/updates'));
1670
1114
 
@@ -1680,23 +1124,16 @@ router.get('/slu/csggxy/:id', lazyloadRouteHandler('./routes/universities/slu/cs
1680
1124
  router.get('/ruby-china/topics/:type?', lazyloadRouteHandler('./routes/ruby-china/topics'));
1681
1125
  router.get('/ruby-china/jobs', lazyloadRouteHandler('./routes/ruby-china/jobs'));
1682
1126
 
1683
- // 中国人事考试网
1684
- router.get('/cpta/notice', lazyloadRouteHandler('./routes/cpta/notice'));
1685
-
1686
1127
  // 广告网
1687
1128
  router.get('/adquan/:type?', lazyloadRouteHandler('./routes/adquan/index'));
1688
1129
 
1689
- // 齐鲁晚报
1690
- router.get('/qlwb/news', lazyloadRouteHandler('./routes/qlwb/news'));
1691
- router.get('/qlwb/city/:city', lazyloadRouteHandler('./routes/qlwb/city'));
1692
-
1693
1130
  // 金色财经
1694
- router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
1695
- router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
1696
- router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
1131
+ // router.get('/jinse/lives', lazyloadRouteHandler('./routes/jinse/lives'));
1132
+ // router.get('/jinse/timeline', lazyloadRouteHandler('./routes/jinse/timeline'));
1133
+ // router.get('/jinse/catalogue/:caty', lazyloadRouteHandler('./routes/jinse/catalogue'));
1697
1134
 
1698
1135
  // deeplearning.ai
1699
- router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
1136
+ // router.get('/deeplearningai/thebatch', lazyloadRouteHandler('./routes/deeplearningai/thebatch'));
1700
1137
 
1701
1138
  // Fate Grand Order
1702
1139
  router.get('/fgo/news', lazyloadRouteHandler('./routes/fgo/news'));
@@ -1711,50 +1148,24 @@ router.get('/umass/amherst/csnews', lazyloadRouteHandler('./routes/umass/amherst
1711
1148
  router.get('/umass/amherst/ipoevents', lazyloadRouteHandler('./routes/umass/amherst/ipoevents'));
1712
1149
  router.get('/umass/amherst/ipostories', lazyloadRouteHandler('./routes/umass/amherst/ipostories'));
1713
1150
 
1714
- // 飘花电影网
1715
- router.get('/piaohua/hot', lazyloadRouteHandler('./routes/piaohua/hot'));
1716
-
1717
1151
  // 快媒体
1718
1152
  router.get('/kuai', lazyloadRouteHandler('./routes/kuai/index'));
1719
1153
  router.get('/kuai/:id', lazyloadRouteHandler('./routes/kuai/id'));
1720
1154
 
1721
- // 生物帮
1722
- router.get('/biobio/:id', lazyloadRouteHandler('./routes/biobio/index'));
1723
- router.get('/biobio/:column/:id', lazyloadRouteHandler('./routes/biobio/others'));
1724
-
1725
1155
  // 199it
1726
1156
  router.get('/199it', lazyloadRouteHandler('./routes/199it/index'));
1727
1157
  router.get('/199it/category/:caty', lazyloadRouteHandler('./routes/199it/category'));
1728
1158
  router.get('/199it/tag/:tag', lazyloadRouteHandler('./routes/199it/tag'));
1729
1159
 
1730
- // 唧唧堂
1731
- router.get('/jijitang/article/:id', lazyloadRouteHandler('./routes/jijitang/article'));
1732
- router.get('/jijitang/publication', lazyloadRouteHandler('./routes/jijitang/publication'));
1733
-
1734
1160
  // Grub Street
1735
1161
  // router.get('/grubstreet', lazyloadRouteHandler('./routes/grubstreet/index'));
1736
1162
 
1737
- // 漫画堆
1738
- router.get('/manhuadui/manhua/:name/:serial?', lazyloadRouteHandler('./routes/manhuadui/manhua'));
1739
-
1740
- // CFD indices dividend adjustment
1741
- router.get('/cfd/gbp_div', lazyloadRouteHandler('./routes/cfd/gbp_div'));
1742
-
1743
1163
  // Monotype
1744
1164
  router.get('/monotype/article', lazyloadRouteHandler('./routes/monotype/article'));
1745
1165
 
1746
- // Stork
1747
- router.get('/stork/keyword/:trackID/:displayKey', lazyloadRouteHandler('./routes/stork/keyword'));
1748
-
1749
- // 致美化
1750
- router.get('/zhutix/latest', lazyloadRouteHandler('./routes/zhutix/latest'));
1751
-
1752
1166
  // arXiv
1753
1167
  router.get('/arxiv/:query', lazyloadRouteHandler('./routes/arxiv/query'));
1754
1168
 
1755
- // 生物谷
1756
- router.get('/shengwugu/:uid?', lazyloadRouteHandler('./routes/shengwugu/index'));
1757
-
1758
1169
  // 环球律师事务所文章
1759
1170
  router.get('/law/hq', lazyloadRouteHandler('./routes/law/hq'));
1760
1171
 
@@ -1791,35 +1202,20 @@ router.get('/gov/caict/qwsj', lazyloadRouteHandler('./routes/gov/caict/qwsj'));
1791
1202
  router.get('/gov/caict/caictgd', lazyloadRouteHandler('./routes/gov/caict/caictgd'));
1792
1203
 
1793
1204
  // 中证网
1794
- router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
1205
+ // router.get('/cs/news/:caty', lazyloadRouteHandler('./routes/cs/news'));
1795
1206
 
1796
1207
  // hentai-cosplays
1797
- router.get('/hentai-cosplays/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/hentai-cosplays'));
1798
1208
  router.get('/porn-images-xxx/:type?/:name?', lazyloadRouteHandler('./routes/hentai-cosplays/porn-images-xxx'));
1799
1209
 
1800
1210
  // dcinside
1801
1211
  router.get('/dcinside/board/:id', lazyloadRouteHandler('./routes/dcinside/board'));
1802
1212
 
1803
- // 企鹅电竞
1804
- router.get('/egameqq/room/:id', lazyloadRouteHandler('./routes/tencent/egame/room'));
1805
-
1806
1213
  // 荔枝FM
1807
1214
  router.get('/lizhi/user/:id', lazyloadRouteHandler('./routes/lizhi/user'));
1808
1215
 
1809
- // Boston.com
1810
- router.get('/boston/:tag?', lazyloadRouteHandler('./routes/boston/index'));
1811
-
1812
- // 场库
1813
- router.get('/changku', lazyloadRouteHandler('./routes/changku/index'));
1814
- router.get('/changku/cate/:postid', lazyloadRouteHandler('./routes/changku/index'));
1815
-
1816
1216
  // 上海市生态环境局
1817
1217
  router.get('/gov/shanghai/sthj', lazyloadRouteHandler('./routes/gov/shanghai/sthj'));
1818
1218
 
1819
- // 才符
1820
- router.get('/91ddcc/user/:user', lazyloadRouteHandler('./routes/91ddcc/user'));
1821
- router.get('/91ddcc/stage/:stage', lazyloadRouteHandler('./routes/91ddcc/stage'));
1822
-
1823
1219
  // BookwalkerTW热门新书
1824
1220
  router.get('/bookwalkertw/news', lazyloadRouteHandler('./routes/bookwalkertw/news'));
1825
1221
 
@@ -1836,21 +1232,9 @@ router.get('/amazfitwatchfaces/search/:model/:keyword?/:sortBy?', lazyloadRouteH
1836
1232
  router.get('/missevan/drama/latest', lazyloadRouteHandler('./routes/missevan/latest'));
1837
1233
  router.get('/missevan/drama/:id', lazyloadRouteHandler('./routes/missevan/drama'));
1838
1234
 
1839
- // popiask提问箱
1840
- router.get('/popiask/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/questions'));
1841
-
1842
- // Tapechat提问箱
1843
- router.get('/tapechat/questionbox/:sharecode/:pagesize?', lazyloadRouteHandler('./routes/popiask/tapechat_questions'));
1844
-
1845
1235
  // AMD
1846
1236
  router.get('/amd/graphicsdrivers/:id/:rid?', lazyloadRouteHandler('./routes/amd/graphicsdrivers'));
1847
1237
 
1848
- // 电商报
1849
- router.get('/dsb/area/:area', lazyloadRouteHandler('./routes/dsb/area'));
1850
-
1851
- // 靠谱新闻
1852
- router.get('/kaopunews/:language?', lazyloadRouteHandler('./routes/kaopunews'));
1853
-
1854
1238
  // 光谷社区
1855
1239
  router.get('/guanggoo/:category?', lazyloadRouteHandler('./routes/guanggoo/index'));
1856
1240
 
@@ -1881,14 +1265,10 @@ router.get('/kuaibao', lazyloadRouteHandler('./routes/kuaibao/index'));
1881
1265
 
1882
1266
  // SocialBeta
1883
1267
  router.get('/socialbeta/home', lazyloadRouteHandler('./routes/socialbeta/home'));
1884
- router.get('/socialbeta/hunt', lazyloadRouteHandler('./routes/socialbeta/hunt'));
1885
1268
 
1886
1269
  // 东方我乐多丛志
1887
1270
  router.get('/touhougarakuta/:language/:type', lazyloadRouteHandler('./routes/touhougarakuta'));
1888
1271
 
1889
- // 猎趣TV
1890
- router.get('/liequtv/room/:id', lazyloadRouteHandler('./routes/liequtv/room'));
1891
-
1892
1272
  // 北京物资学院
1893
1273
  router.get('/bwu/news', lazyloadRouteHandler('./routes/universities/bwu/news'));
1894
1274
 
@@ -1904,38 +1284,15 @@ router.get('/hfut/tzgg', lazyloadRouteHandler('./routes/universities/hfut/tzgg')
1904
1284
  // OneJAV
1905
1285
  router.get('/onejav/:type/:key?', lazyloadRouteHandler('./routes/onejav/one'));
1906
1286
 
1907
- // 水木社区
1908
- router.get('/newsmth/account/:id', lazyloadRouteHandler('./routes/newsmth/account'));
1909
- router.get('/newsmth/section/:section', lazyloadRouteHandler('./routes/newsmth/section'));
1910
-
1911
1287
  // Kotaku
1912
1288
  router.get('/kotaku/story/:type', lazyloadRouteHandler('./routes/kotaku/story'));
1913
1289
 
1914
1290
  // 梅斯医学
1915
1291
  router.get('/medsci/recommend', lazyloadRouteHandler('./routes/medsci/recommend'));
1916
1292
 
1917
- // 悟空问答
1918
- router.get('/wukong/user/:id/:type?', lazyloadRouteHandler('./routes/wukong/user'));
1919
-
1920
- // 腾讯大数据
1921
- router.get('/tencent/bigdata', lazyloadRouteHandler('./routes/tencent/bigdata/index'));
1922
-
1923
1293
  // 搜韵网
1924
1294
  router.get('/souyun/today', lazyloadRouteHandler('./routes/souyun/today'));
1925
1295
 
1926
- // 生物谷
1927
- router.get('/bioon/latest', lazyloadRouteHandler('./routes/bioon/latest'));
1928
-
1929
- // soomal
1930
- router.get('/soomal/topics/:category/:language?', lazyloadRouteHandler('./routes/soomal/topics'));
1931
-
1932
- // JustRun
1933
- router.get('/justrun', lazyloadRouteHandler('./routes/justrun/index'));
1934
-
1935
- // 福建新闻
1936
- router.get('/fjnews/:city/:limit', lazyloadRouteHandler('./routes/fjnews/fznews'));
1937
- router.get('/fjnews/jjnews', lazyloadRouteHandler('./routes/fjnews/jjnews'));
1938
-
1939
1296
  // 中山网新闻
1940
1297
  router.get('/zsnews/index/:cateid', lazyloadRouteHandler('./routes/zsnews/index'));
1941
1298
 
@@ -1949,15 +1306,6 @@ router.get('/xmind/mindmap/:lang?', lazyloadRouteHandler('./routes/xmind/mindmap
1949
1306
  // 思维导图社区
1950
1307
  router.get('/edrawsoft/mindmap/:classId?/:order?/:sort?/:lang?/:price?/:search?', lazyloadRouteHandler('./routes/edrawsoft/mindmap'));
1951
1308
 
1952
- // 它惠网
1953
- router.get('/tahui/rptlist', lazyloadRouteHandler('./routes/tahui/rptlist'));
1954
-
1955
- // Guiltfree
1956
- router.get('/guiltfree/onsale', lazyloadRouteHandler('./routes/guiltfree/onsale'));
1957
-
1958
- // 消费明鉴
1959
- router.get('/mingjian', lazyloadRouteHandler('./routes/mingjian/index'));
1960
-
1961
1309
  // hentaimama
1962
1310
  router.get('/hentaimama/videos', lazyloadRouteHandler('./routes/hentaimama/videos'));
1963
1311
 
@@ -1970,9 +1318,6 @@ router.get('/wenxuecity/bbs/:cat/:elite?', lazyloadRouteHandler('./routes/wenxue
1970
1318
  router.get('/wenxuecity/hot/:cid', lazyloadRouteHandler('./routes/wenxuecity/hot'));
1971
1319
  router.get('/wenxuecity/news', lazyloadRouteHandler('./routes/wenxuecity/news'));
1972
1320
 
1973
- // 不安全
1974
- router.get('/buaq', lazyloadRouteHandler('./routes/buaq/index'));
1975
-
1976
1321
  // 快出海
1977
1322
  router.get('/kchuhai', lazyloadRouteHandler('./routes/kchuhai/index'));
1978
1323
 
@@ -1991,15 +1336,9 @@ router.get('/secshi', lazyloadRouteHandler('./routes/secshi/index'));
1991
1336
  // 出海笔记
1992
1337
  router.get('/chuhaibiji', lazyloadRouteHandler('./routes/chuhaibiji/index'));
1993
1338
 
1994
- // 建宁闲谈
1995
- router.get('/blogs/jianning', lazyloadRouteHandler('./routes/blogs/jianning'));
1996
-
1997
1339
  // 互动吧
1998
1340
  router.get('/hudongba/:city/:id', lazyloadRouteHandler('./routes/hudongba/index'));
1999
1341
 
2000
- // 飞雪娱乐网
2001
- router.get('/feixuew/:id?', lazyloadRouteHandler('./routes/feixuew/index'));
2002
-
2003
1342
  // 1X
2004
1343
  router.get('/1x/:category?', lazyloadRouteHandler('./routes/1x/index'));
2005
1344
 
@@ -2009,54 +1348,25 @@ router.get('/jx3/:caty?', lazyloadRouteHandler('./routes/jx3/news'));
2009
1348
  // 泉州市跨境电子商务协会
2010
1349
  router.get('/qzcea/:caty?', lazyloadRouteHandler('./routes/qzcea/index'));
2011
1350
 
2012
- // 福利年
2013
- router.get('/fulinian/:caty?', lazyloadRouteHandler('./routes/fulinian/index'));
2014
-
2015
1351
  // CGTN
2016
- router.get('/cgtn/top', lazyloadRouteHandler('./routes/cgtn/top'));
2017
1352
  router.get('/cgtn/most/:type?/:time?', lazyloadRouteHandler('./routes/cgtn/most'));
2018
-
2019
- router.get('/cgtn/pick', lazyloadRouteHandler('./routes/cgtn/pick'));
2020
-
2021
1353
  router.get('/cgtn/opinions', lazyloadRouteHandler('./routes/cgtn/opinions'));
2022
1354
 
2023
1355
  // AppSales
2024
1356
  router.get('/appsales/:caty?/:time?', lazyloadRouteHandler('./routes/appsales/index'));
2025
1357
 
2026
- // Academy of Management
2027
- router.get('/aom/journal/:id', lazyloadRouteHandler('./routes/aom/journal'));
2028
-
2029
1358
  // iCity
2030
1359
  router.get('/icity/:id', lazyloadRouteHandler('./routes/icity/index'));
2031
1360
 
2032
- // Anki
2033
- router.get('/anki/changes', lazyloadRouteHandler('./routes/anki/changes'));
2034
-
2035
1361
  // ABC News
2036
1362
  // router.get('/abc/:id?', lazyloadRouteHandler('./routes/abc'));
2037
1363
 
2038
1364
  // 台湾中央通讯社
2039
1365
  // router.get('/cna/:id?', lazyloadRouteHandler('./routes/cna/index'));
2040
1366
 
2041
- // 华为心声社区
2042
- router.get('/huawei/xinsheng/:caty?/:order?/:keyword?', lazyloadRouteHandler('./routes/huawei/xinsheng/index'));
2043
-
2044
- // 守望先锋
2045
- router.get('/ow/patch', lazyloadRouteHandler('./routes/ow/patch'));
2046
-
2047
- // 中国工程科技知识中心
2048
- router.get('/cktest/app/:ctgroup?/:domain?', lazyloadRouteHandler('./routes/cktest/app'));
2049
- router.get('/cktest/policy', lazyloadRouteHandler('./routes/cktest/policy'));
2050
-
2051
1367
  // 妈咪帮
2052
1368
  router.get('/mamibuy/:caty?/:age?/:sort?', lazyloadRouteHandler('./routes/mamibuy/index'));
2053
1369
 
2054
- // Mercari
2055
- router.get('/mercari/:type/:id', lazyloadRouteHandler('./routes/mercari/index'));
2056
-
2057
- // World Economic Forum
2058
- router.get('/weforum/report/:lang?/:year?/:platform?', lazyloadRouteHandler('./routes/weforum/report'));
2059
-
2060
1370
  // Nobel Prize
2061
1371
  router.get('/nobelprize/:caty?', lazyloadRouteHandler('./routes/nobelprize/index'));
2062
1372
 
@@ -2069,9 +1379,6 @@ router.get('/gov/taiwan/mnd', lazyloadRouteHandler('./routes/gov/taiwan/mnd'));
2069
1379
  // 高科技行业门户
2070
1380
  router.get('/ofweek/news', lazyloadRouteHandler('./routes/ofweek/news'));
2071
1381
 
2072
- // 八阕
2073
- router.get('/popyard/:caty?', lazyloadRouteHandler('./routes/popyard/index'));
2074
-
2075
1382
  // World Trade Organization
2076
1383
  router.get('/wto/dispute-settlement/:year?', lazyloadRouteHandler('./routes/wto/dispute-settlement'));
2077
1384
 
@@ -2081,12 +1388,6 @@ router.get('/forum4399/:mtag', lazyloadRouteHandler('./routes/game4399/forum'));
2081
1388
  // 国防科技大学
2082
1389
  router.get('/nudt/yjszs/:id?', lazyloadRouteHandler('./routes/universities/nudt/yjszs'));
2083
1390
 
2084
- // 全现在
2085
- router.get('/allnow/column/:id', lazyloadRouteHandler('./routes/allnow/column'));
2086
- router.get('/allnow/tag/:id', lazyloadRouteHandler('./routes/allnow/tag'));
2087
- router.get('/allnow/user/:id', lazyloadRouteHandler('./routes/allnow/user'));
2088
- router.get('/allnow', lazyloadRouteHandler('./routes/allnow/index'));
2089
-
2090
1391
  // dev.to
2091
1392
  router.get('/dev.to/top/:period', lazyloadRouteHandler('./routes/dev.to/top'));
2092
1393
 
@@ -2100,17 +1401,11 @@ router.get('/manictime/releases', lazyloadRouteHandler('./routes/manictime/relea
2100
1401
  // Deutsche Welle 德国之声
2101
1402
  router.get('/dw/:lang?/:caty?', lazyloadRouteHandler('./routes/dw/index'));
2102
1403
 
2103
- // Amazon
2104
- router.get('/amazon/ku/:type?', lazyloadRouteHandler('./routes/amazon/ku'));
2105
-
2106
1404
  // Citavi 中文网站论坛
2107
1405
  router.get('/citavi/:caty?', lazyloadRouteHandler('./routes/citavi/index'));
2108
1406
 
2109
1407
  // Sesame
2110
- router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/release_notes'));
2111
-
2112
- // 佐川急便
2113
- router.get('/sagawa/:id', lazyloadRouteHandler('./routes/sagawa/index'));
1408
+ router.get('/sesame/release_notes', lazyloadRouteHandler('./routes/sesame/release-notes'));
2114
1409
 
2115
1410
  // QNAP
2116
1411
  router.get('/qnap/release-notes/:id', lazyloadRouteHandler('./routes/qnap/release-notes'));
@@ -2135,23 +1430,10 @@ router.get('/grandchallenge/challenges', lazyloadRouteHandler('./routes/grandcha
2135
1430
  router.get('/nwpu/:column', lazyloadRouteHandler('./routes/nwpu/index'));
2136
1431
 
2137
1432
  // 美国联邦最高法院
2138
- router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/argument_audio'));
2139
-
2140
- // 未名新闻
2141
- router.get('/mitbbs/:caty?', lazyloadRouteHandler('./routes/mitbbs/index'));
2142
-
2143
- // 贾真的电商108将
2144
- router.get('/jiazhen108', lazyloadRouteHandler('./routes/jiazhen108/index'));
1433
+ router.get('/us/supremecourt/argument_audio/:year?', lazyloadRouteHandler('./routes/us/supremecourt/argument-audio'));
2145
1434
 
2146
1435
  // 优设网
2147
- router.get('/uisdc/talk/:sort?', lazyloadRouteHandler('./routes/uisdc/talk'));
2148
1436
  router.get('/uisdc/hangye/:caty?', lazyloadRouteHandler('./routes/uisdc/hangye'));
2149
- router.get('/uisdc/news', lazyloadRouteHandler('./routes/uisdc/news'));
2150
- router.get('/uisdc/zt/:title?', lazyloadRouteHandler('./routes/uisdc/zt'));
2151
- router.get('/uisdc/topic/:title?/:sort?', lazyloadRouteHandler('./routes/uisdc/topic'));
2152
-
2153
- // 中国劳工观察
2154
- router.get('/chinalaborwatch/reports/:lang?/:industry?', lazyloadRouteHandler('./routes/chinalaborwatch/reports'));
2155
1437
 
2156
1438
  // 美国中央情报局
2157
1439
  router.get('/cia/foia-annual-report', lazyloadRouteHandler('./routes/us/cia/foia-annual-report'));
@@ -2162,15 +1444,9 @@ router.get('/everything/changes', lazyloadRouteHandler('./routes/everything/chan
2162
1444
  // 中国劳工通讯
2163
1445
  router.get('/clb/commentary/:lang?', lazyloadRouteHandler('./routes/clb/commentary'));
2164
1446
 
2165
- // 国际教育研究所
2166
- router.get('/iie/blog', lazyloadRouteHandler('./routes/iie/blog'));
2167
-
2168
1447
  // 超理论坛
2169
1448
  router.get('/chaoli/:channel?', lazyloadRouteHandler('./routes/chaoli/index'));
2170
1449
 
2171
- // Polar
2172
- router.get('/polar/blog', lazyloadRouteHandler('./routes/polar/blog'));
2173
-
2174
1450
  // XYplorer
2175
1451
  router.get('/xyplorer/whatsnew', lazyloadRouteHandler('./routes/xyplorer/whatsnew'));
2176
1452
 
@@ -2193,49 +1469,18 @@ router.get('/qstheory/:category?', lazyloadRouteHandler('./routes/qstheory/index
2193
1469
  // 生命时报
2194
1470
  router.get('/lifetimes/:category?', lazyloadRouteHandler('./routes/lifetimes/index'));
2195
1471
 
2196
- // MakeUseOf
2197
- router.get('/makeuseof/:category?', lazyloadRouteHandler('./routes/makeuseof/index'));
2198
-
2199
- // 瞬Matataki
2200
- // 热门作品
2201
- router.get('/matataki/posts/hot/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/scoreranking'));
2202
- // 最新作品
2203
- router.get('/matataki/posts/latest/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/timeranking'));
2204
- // 作者创作
2205
- router.get('/matataki/users/:authorId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/author'));
2206
- // Fan票关联作品
2207
- router.get('/matataki/tokens/:id/posts/:filterCode/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/token'));
2208
- // 标签关联作品
2209
- router.get('/matataki/tags/:tagId/:tagName/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/tag'));
2210
- // 收藏夹
2211
- router.get('/matataki/users/:userId/favorites/:favoriteListId/posts/:ipfsFlag?', lazyloadRouteHandler('./routes/matataki/site/posts/favorite'));
2212
-
2213
1472
  // Zhimap 知识导图社区
2214
1473
  router.get('/zhimap/:categoryUuid?/:recommend?', lazyloadRouteHandler('./routes/zhimap/index'));
2215
1474
 
2216
- // ProcessOn
2217
- router.get('/processon/popular/:cate?/:sort?', lazyloadRouteHandler('./routes/processon/popular'));
2218
-
2219
1475
  // Mathpix
2220
1476
  router.get('/mathpix/blog', lazyloadRouteHandler('./routes/mathpix/blog'));
2221
1477
 
2222
1478
  // OneNote Gem Add-Ins
2223
1479
  router.get('/onenotegem/release', lazyloadRouteHandler('./routes/onenotegem/release'));
2224
1480
 
2225
- // Mind42
2226
- router.get('/mind42/tag/:id', lazyloadRouteHandler('./routes/mind42/tag'));
2227
- router.get('/mind42/search/:keyword', lazyloadRouteHandler('./routes/mind42/search'));
2228
- router.get('/mind42/:caty?', lazyloadRouteHandler('./routes/mind42/index'));
2229
-
2230
1481
  // 幕布网
2231
1482
  router.get('/mubu/explore/:category?/:title?', lazyloadRouteHandler('./routes/mubu/explore'));
2232
1483
 
2233
- // Esquirehk
2234
- router.get('/esquirehk/tag/:id', lazyloadRouteHandler('./routes/esquirehk/tag'));
2235
-
2236
- // 国家普通话测试 杭州市
2237
- router.get('/putonghua', lazyloadRouteHandler('./routes/putonghua/hangzhou'));
2238
-
2239
1484
  // 有道云笔记
2240
1485
  router.get('/youdao/xueba', lazyloadRouteHandler('./routes/youdao/xueba'));
2241
1486
  router.get('/youdao/latest', lazyloadRouteHandler('./routes/youdao/latest'));
@@ -2247,9 +1492,6 @@ router.get('/yinxiang/card/:id', lazyloadRouteHandler('./routes/yinxiang/card'))
2247
1492
  router.get('/yinxiang/personal/:id', lazyloadRouteHandler('./routes/yinxiang/personal'));
2248
1493
  router.get('/yinxiang/category/:id', lazyloadRouteHandler('./routes/yinxiang/category'));
2249
1494
 
2250
- // 遠見 gvm.com.tw
2251
- router.get('/gvm/index/:category?', lazyloadRouteHandler('./routes/gvm/index'));
2252
-
2253
1495
  // 触乐
2254
1496
  router.get('/chuapp/index/:category?', lazyloadRouteHandler('./routes/chuapp/index'));
2255
1497
 
@@ -2259,9 +1501,6 @@ router.get('/deloitte/industries/:category?', lazyloadRouteHandler('./routes/del
2259
1501
  // 复旦大学继续教育学院
2260
1502
  router.get('/fudan/cce', lazyloadRouteHandler('./routes/universities/fudan/cce'));
2261
1503
 
2262
- // LowEndTalk
2263
- router.get('/lowendtalk/discussion/:id?', lazyloadRouteHandler('./routes/lowendtalk/discussion'));
2264
-
2265
1504
  // 无产者评论
2266
1505
  router.get('/proletar/:type?/:id?', lazyloadRouteHandler('./routes/proletar/index'));
2267
1506
 
@@ -2274,9 +1513,6 @@ router.get('/ustr/press-releases/:year?/:month?', lazyloadRouteHandler('./routes
2274
1513
  // 游戏动力
2275
1514
  router.get('/vgn/:platform?', lazyloadRouteHandler('./routes/vgn/index'));
2276
1515
 
2277
- // 国际能源署
2278
- router.get('/iea/:category?', lazyloadRouteHandler('./routes/iea/index'));
2279
-
2280
1516
  // The Brain
2281
1517
  router.get('/thebrain/:category?', lazyloadRouteHandler('./routes/thebrain/blog'));
2282
1518
 
@@ -2292,14 +1528,8 @@ router.get('/marginnote/tag/:id?', lazyloadRouteHandler('./routes/marginnote/tag
2292
1528
  // ASML
2293
1529
  router.get('/asml/press-releases', lazyloadRouteHandler('./routes/asml/press-releases'));
2294
1530
 
2295
- // 中国机械工程学会
2296
- router.get('/cmes/news/:category?', lazyloadRouteHandler('./routes/cmes/news'));
2297
-
2298
- // Craigslist
2299
- router.get('/craigslist/:location/:type', lazyloadRouteHandler('./routes/craigslist/search'));
2300
-
2301
1531
  // 有趣天文奇观
2302
- router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/astronomical_events'));
1532
+ router.get('/interesting-sky/astronomical_events/:year?', lazyloadRouteHandler('./routes/interesting-sky/astronomical-events'));
2303
1533
  router.get('/interesting-sky/recent-interesting', lazyloadRouteHandler('./routes/interesting-sky/recent-interesting'));
2304
1534
  router.get('/interesting-sky', lazyloadRouteHandler('./routes/interesting-sky/index'));
2305
1535
 
@@ -2309,12 +1539,6 @@ router.get('/mathunion/fields-medal', lazyloadRouteHandler('./routes/mathunion/f
2309
1539
  // ACM
2310
1540
  router.get('/acm/amturingaward', lazyloadRouteHandler('./routes/acm/amturingaward'));
2311
1541
 
2312
- // 網路天文館
2313
- router.get('/tam/forecast', lazyloadRouteHandler('./routes/tam/forecast'));
2314
-
2315
- // Day One
2316
- router.get('/dayone/blog', lazyloadRouteHandler('./routes/dayone/blog'));
2317
-
2318
1542
  // 滴答清单
2319
1543
  router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/habit-checkins'));
2320
1544
 
@@ -2322,10 +1546,7 @@ router.get('/dida365/habit/checkins', lazyloadRouteHandler('./routes/dida365/hab
2322
1546
  router.get('/ditto/changes/:type?', lazyloadRouteHandler('./routes/ditto/changes'));
2323
1547
 
2324
1548
  // iDaily 每日环球视野
2325
- router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
2326
-
2327
- // 北屋
2328
- router.get('/northhouse/:category?', lazyloadRouteHandler('./routes/northhouse/index'));
1549
+ // router.get('/idaily/today', lazyloadRouteHandler('./routes/idaily/index'));
2329
1550
 
2330
1551
  // Oak Ridge National Laboratory
2331
1552
  router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news'));
@@ -2333,21 +1554,9 @@ router.get('/ornl/news', lazyloadRouteHandler('./routes/ornl/news'));
2333
1554
  // 信阳师范学院 自考办
2334
1555
  router.get('/xynu/zkb/:category', lazyloadRouteHandler('./routes/universities/xynu/zkb'));
2335
1556
 
2336
- // Bell Labs
2337
- router.get('/bell-labs/events-news/:category?', lazyloadRouteHandler('./routes/bell-labs/events-news.js'));
2338
-
2339
- // 中国科学院青年创新促进会
2340
- router.get('/yicas/blog', lazyloadRouteHandler('./routes/yicas/blog'));
2341
-
2342
- // 九三学社
2343
- router.get('/93/:category?', lazyloadRouteHandler('./routes/93/index'));
2344
-
2345
1557
  // DailyArt
2346
1558
  router.get('/dailyart/:language?', lazyloadRouteHandler('./routes/dailyart/index'));
2347
1559
 
2348
- // SCBOY
2349
- router.get('/scboy/thread/:tid', lazyloadRouteHandler('./routes/scboy/thread'));
2350
-
2351
1560
  // 猿料
2352
1561
  router.get('/yuanliao/:tag?/:sort?', lazyloadRouteHandler('./routes/yuanliao/index'));
2353
1562
 
@@ -2360,21 +1569,12 @@ router.get('/nace/blog/:sort?', lazyloadRouteHandler('./routes/nace/blog'));
2360
1569
  // Semiconductor Industry Association
2361
1570
  router.get('/semiconductors/latest-news', lazyloadRouteHandler('./routes/semiconductors/latest-news'));
2362
1571
 
2363
- // VOA News
2364
- router.get('/voa/day-photos', lazyloadRouteHandler('./routes/voa/day-photos'));
2365
-
2366
1572
  // Voice of America
2367
1573
  router.get('/voa/:language/:channel?', lazyloadRouteHandler('./routes/voa/index'));
2368
1574
 
2369
- // 游戏葡萄
2370
- router.get('/gamegrape/:id?', lazyloadRouteHandler('./routes/gamegrape/index'));
2371
-
2372
1575
  // 阳光高考
2373
1576
  router.get('/chsi/zszcgd/:category?', lazyloadRouteHandler('./routes/chsi/zszcgd'));
2374
1577
 
2375
- // 眾新聞
2376
- router.get('/hkcnews/news/:category?', lazyloadRouteHandler('./routes/hkcnews/news'));
2377
-
2378
1578
  // AnyTXT
2379
1579
  router.get('/anytxt/release-notes', lazyloadRouteHandler('./routes/anytxt/release-notes'));
2380
1580
 
@@ -2401,12 +1601,8 @@ router.get('/simpread/changelog', lazyloadRouteHandler('./routes/simpread/change
2401
1601
  // booth.pm
2402
1602
  router.get('/booth.pm/shop/:subdomain', lazyloadRouteHandler('./routes/booth-pm/shop'));
2403
1603
 
2404
- // Minecraft feed the beast
2405
- router.get('/feed-the-beast/modpack/:modpackEntry', lazyloadRouteHandler('./routes/feed-the-beast/modpack'));
2406
-
2407
1604
  // Gab
2408
1605
  router.get('/gab/user/:username', lazyloadRouteHandler('./routes/gab/user'));
2409
- router.get('/gab/popular/:sort?', lazyloadRouteHandler('./routes/gab/explore'));
2410
1606
 
2411
1607
  // Phrack Magazine
2412
1608
  router.get('/phrack', lazyloadRouteHandler('./routes/phrack/index'));
@@ -2418,44 +1614,22 @@ router.get('/cqut/libnews', lazyloadRouteHandler('./routes/universities/cqut/cqu
2418
1614
  // 城农 Growin' City
2419
1615
  router.get('/growincity/news/:id?', lazyloadRouteHandler('./routes/growincity/news'));
2420
1616
 
2421
- // Thrillist
2422
- router.get('/thrillist/:tag?', lazyloadRouteHandler('./routes/thrillist/index'));
2423
-
2424
- // 丁香园
2425
- router.get('/dxy/vaccine/:province?/:city?/:location?', lazyloadRouteHandler('./routes/dxy/vaccine'));
2426
-
2427
1617
  // 中国庭审公开网
2428
1618
  router.get('/tingshen', lazyloadRouteHandler('./routes/tingshen/tingshen'));
2429
1619
 
2430
1620
  // 中华人民共和国人力资源和社会保障部
2431
1621
  router.get('/gov/mohrss/sbjm/:category?', lazyloadRouteHandler('./routes/gov/mohrss/sbjm'));
2432
1622
 
2433
- // 深影译站
2434
- router.get('/shinybbs/latest', lazyloadRouteHandler('./routes/shinybbs/latest'));
2435
- router.get('/shinybbs/p/:id', lazyloadRouteHandler('./routes/shinybbs/p'));
2436
- router.get('/shinybbs/page/:id?', lazyloadRouteHandler('./routes/shinybbs/index'));
2437
- router.get('/shinybbs', lazyloadRouteHandler('./routes/shinybbs/index'));
2438
-
2439
1623
  // 天眼查
2440
1624
  router.get('/tianyancha/hot', lazyloadRouteHandler('./routes/tianyancha/hot'));
2441
1625
 
2442
1626
  // King Arthur
2443
1627
  router.get('/kingarthur/:type', lazyloadRouteHandler('./routes/kingarthur/index'));
2444
1628
 
2445
- // BabeHub
2446
- router.get('/babehub/search/:keyword?', lazyloadRouteHandler('./routes/babehub/search'));
2447
- router.get('/babehub/:category?', lazyloadRouteHandler('./routes/babehub/index'));
2448
-
2449
1629
  // 深圳新闻网
2450
1630
  router.get('/sznews/press', lazyloadRouteHandler('./routes/sznews/press'));
2451
1631
  router.get('/sznews/ranking', lazyloadRouteHandler('./routes/sznews/ranking'));
2452
1632
 
2453
- // Shuax
2454
- router.get('/shuax/project/:name?', lazyloadRouteHandler('./routes/shuax/project'));
2455
-
2456
- // Obsidian
2457
- router.get('/obsidian/announcements', lazyloadRouteHandler('./routes/obsidian/announcements'));
2458
-
2459
1633
  // 吉林工商学院
2460
1634
  router.get('/jlbtc/kyc/:category?', lazyloadRouteHandler('./routes/universities/jlbtc/kyc'));
2461
1635
  router.get('/jlbtc/jwc/:id?', lazyloadRouteHandler('./routes/universities/jlbtc/jwc'));
@@ -2468,9 +1642,6 @@ router.get('/kenshin/:category?/:type?', lazyloadRouteHandler('./routes/kenshin/
2468
1642
  router.get('/av01/actor/:name/:type?', lazyloadRouteHandler('./routes/av01/actor'));
2469
1643
  router.get('/av01/tag/:name/:type?', lazyloadRouteHandler('./routes/av01/tag'));
2470
1644
 
2471
- // macked
2472
- router.get('/macked/app/:name', lazyloadRouteHandler('./routes/macked/app'));
2473
-
2474
1645
  // 美国劳工联合会-产业工会联合会
2475
1646
  router.get('/aflcio/blog', lazyloadRouteHandler('./routes/aflcio/blog'));
2476
1647
 
@@ -2488,22 +1659,8 @@ router.get('/furaffinity/journals/:username', lazyloadRouteHandler('./routes/fur
2488
1659
  router.get('/furaffinity/gallery/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/gallery'));
2489
1660
  router.get('/furaffinity/scraps/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/scraps'));
2490
1661
  router.get('/furaffinity/favorites/:username/:nsfw?', lazyloadRouteHandler('./routes/furaffinity/favorites'));
2491
- router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/submission_comments'));
2492
- router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/journal_comments'));
2493
-
2494
- // 亿欧网
2495
- router.get('/iyiou', lazyloadRouteHandler('./routes/iyiou'));
2496
-
2497
- // 香港商报
2498
- router.get('/hkcd/pdf', lazyloadRouteHandler('./routes/hkcd/pdf'));
2499
-
2500
- // 博客来
2501
- router.get('/bookscomtw/newbooks/:category', lazyloadRouteHandler('./routes/bookscomtw/newbooks'));
2502
-
2503
- // Elite Babes
2504
- router.get('/elitebabes/videos/:sort?', lazyloadRouteHandler('./routes/elitebabes/videos'));
2505
- router.get('/elitebabes/search/:keyword?', lazyloadRouteHandler('./routes/elitebabes/search'));
2506
- router.get('/elitebabes/:category?', lazyloadRouteHandler('./routes/elitebabes/index'));
1662
+ router.get('/furaffinity/submission_comments/:id', lazyloadRouteHandler('./routes/furaffinity/submission-comments'));
1663
+ router.get('/furaffinity/journal_comments/:id', lazyloadRouteHandler('./routes/furaffinity/journal-comments'));
2507
1664
 
2508
1665
  // Trakt.tv
2509
1666
  router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/trakt/collection'));
@@ -2511,12 +1668,6 @@ router.get('/trakt/collection/:username/:type?', lazyloadRouteHandler('./routes/
2511
1668
  // 全球化智库
2512
1669
  router.get('/ccg/:category?', lazyloadRouteHandler('./routes/ccg/index'));
2513
1670
 
2514
- // 中国橡胶网
2515
- router.get('/cria/news/:id?', lazyloadRouteHandler('./routes/cria/news'));
2516
-
2517
- // 灵异网
2518
- router.get('/lingyi/:category', lazyloadRouteHandler('./routes/lingyi/index'));
2519
-
2520
1671
  // 歪脑读
2521
1672
  router.get('/wainao-reads/all-articles', lazyloadRouteHandler('./routes/wainao/index'));
2522
1673
 
@@ -2540,25 +1691,12 @@ router.get('/topbook/today', lazyloadRouteHandler('./routes/topbook/today'));
2540
1691
  // Melon
2541
1692
  router.get('/melon/chart/:category?', lazyloadRouteHandler('./routes/melon/chart'));
2542
1693
 
2543
- // 弯弯字幕组
2544
- router.get('/wanwansub/info/:id', lazyloadRouteHandler('./routes/wanwansub/info'));
2545
- router.get('/wanwansub/:id?', lazyloadRouteHandler('./routes/wanwansub/index'));
2546
-
2547
1694
  // FIX 字幕侠
2548
1695
  // router.get('/zimuxia/portfolio/:id', lazyloadRouteHandler('./routes/zimuxia/portfolio'));
2549
1696
  // router.get('/zimuxia/:category?', lazyloadRouteHandler('./routes/zimuxia/index'));
2550
1697
 
2551
- // Hugo 更新日志
2552
- router.get('/hugo/releases', lazyloadRouteHandler('./routes/hugo/releases'));
2553
-
2554
1698
  // 东立出版
2555
- router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
2556
-
2557
- // OR
2558
- router.get('/or/:id?', lazyloadRouteHandler('./routes/or'));
2559
-
2560
- // 字型故事
2561
- router.get('/fontstory', lazyloadRouteHandler('./routes/fontstory/tw'));
1699
+ // router.get('/tongli/news/:type', lazyloadRouteHandler('./routes/tongli/news'));
2562
1700
 
2563
1701
  // 海南大学
2564
1702
  router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs'));
@@ -2566,9 +1704,6 @@ router.get('/hainanu/ssszs', lazyloadRouteHandler('./routes/hainanu/ssszs'));
2566
1704
  // 游戏年轮
2567
1705
  router.get('/bibgame/:category?/:type?', lazyloadRouteHandler('./routes/bibgame/category'));
2568
1706
 
2569
- // 澳門特別行政區政府各公共部門獎助貸學金服務平台
2570
- router.get('/macau-bolsas/:lang?', lazyloadRouteHandler('./routes/macau-bolsas/index'));
2571
-
2572
1707
  // PotPlayer
2573
1708
  router.get('/potplayer/update/:language?', lazyloadRouteHandler('./routes/potplayer/update'));
2574
1709
 
@@ -2576,13 +1711,10 @@ router.get('/potplayer/update/:language?', lazyloadRouteHandler('./routes/potpla
2576
1711
  // router.get('/caus/:category?', lazyloadRouteHandler('./routes/caus'));
2577
1712
 
2578
1713
  // 摩点
2579
- router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
2580
-
2581
- // MacWk
2582
- router.get('/macwk/soft/:name', lazyloadRouteHandler('./routes/macwk/soft'));
1714
+ // router.get('/modian/zhongchou/:category?/:sort?/:status?', lazyloadRouteHandler('./routes/modian/zhongchou'));
2583
1715
 
2584
1716
  // 世界计划 多彩舞台 feat.初音未来 (ProjectSekai)
2585
- router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
1717
+ // router.get('/pjsk/news', lazyloadRouteHandler('./routes/pjsk/news'));
2586
1718
 
2587
1719
  // 人民论坛网
2588
1720
  router.get('/rmlt/idea/:category?', lazyloadRouteHandler('./routes/rmlt/idea'));
@@ -2594,17 +1726,11 @@ router.get('/cbndata/information/:category?', lazyloadRouteHandler('./routes/cbn
2594
1726
  router.get('/tanchinese/:category?', lazyloadRouteHandler('./routes/tanchinese'));
2595
1727
 
2596
1728
  // Harvard
2597
- router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
1729
+ // router.get('/harvard/health/blog', lazyloadRouteHandler('./routes/universities/harvard/health/blog'));
2598
1730
 
2599
1731
  // yuzu emulator
2600
1732
  router.get('/yuzu-emu/entry', lazyloadRouteHandler('./routes/yuzu-emu/entry'));
2601
1733
 
2602
- // Resources - The Partnership on AI
2603
- router.get('/partnershiponai/resources', lazyloadRouteHandler('./routes/partnershiponai/resources'));
2604
-
2605
- // Common App
2606
- router.get('/commonapp/blog', lazyloadRouteHandler('./routes/commonapp/blog'));
2607
-
2608
1734
  // Europa Press
2609
1735
  router.get('/europapress/:category?', lazyloadRouteHandler('./routes/europapress'));
2610
1736
 
@@ -2637,9 +1763,6 @@ router.get('/x410/news', lazyloadRouteHandler('./routes/x410/news'));
2637
1763
  router.get('/micmicidol', lazyloadRouteHandler('./routes/micmicidol/latest'));
2638
1764
  router.get('/micmicidol/search/:label', lazyloadRouteHandler('./routes/micmicidol/search'));
2639
1765
 
2640
- // 香港高登
2641
- router.get('/hkgolden/:id?/:limit?/:sort?', lazyloadRouteHandler('./routes/hkgolden'));
2642
-
2643
1766
  // 香港討論區
2644
1767
  router.get('/discuss/:fid', lazyloadRouteHandler('./routes/discuss'));
2645
1768
 
@@ -2649,9 +1772,6 @@ router.get('/uwants/:fid', lazyloadRouteHandler('./routes/uwants'));
2649
1772
  // Now新聞
2650
1773
  router.get('/now/news/rank', lazyloadRouteHandler('./routes/now/rank'));
2651
1774
 
2652
- // s-hentai
2653
- router.get('/s-hentai/:id?', lazyloadRouteHandler('./routes/s-hentai'));
2654
-
2655
1775
  // etherscan
2656
1776
  router.get('/etherscan/transactions/:address', lazyloadRouteHandler('./routes/etherscan/transactions'));
2657
1777
 
@@ -2661,11 +1781,8 @@ router.get('/blogs/foreverblog', lazyloadRouteHandler('./routes/blogs/foreverblo
2661
1781
  // Netflix
2662
1782
  router.get('/netflix/newsroom/:category?/:region?', lazyloadRouteHandler('./routes/netflix/newsroom'));
2663
1783
 
2664
- // SBS
2665
- router.get('/sbs/chinese/:category?/:id?/:dialect?/:language?', lazyloadRouteHandler('./routes/sbs/chinese'));
2666
-
2667
1784
  // QuestMobile
2668
- router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
1785
+ // router.get('/questmobile/report/:category?/:label?', lazyloadRouteHandler('./routes/questmobile/report'));
2669
1786
 
2670
1787
  // Fashion Network
2671
1788
  router.get('/fashionnetwork/news/:sectors?/:categories?/:language?', lazyloadRouteHandler('./routes/fashionnetwork/news.js'));