@lf_maple/koishi-plugin-phi-plugin-full 0.1.80

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.
Files changed (629) hide show
  1. package/LICENSE +22 -0
  2. package/core/.github/ISSUE_TEMPLATE/bug.yaml +133 -0
  3. package/core/.github/ISSUE_TEMPLATE/config.yml +1 -0
  4. package/core/.github/ISSUE_TEMPLATE/enhancement.yml +44 -0
  5. package/core/.vscode/c_cpp_properties.json +18 -0
  6. package/core/.vscode/launch.json +24 -0
  7. package/core/.vscode/settings.json +59 -0
  8. package/core/CHANGELOG.md +184 -0
  9. package/core/LICENSE +674 -0
  10. package/core/README.md +330 -0
  11. package/core/README_en.md +285 -0
  12. package/core/apps/Dan.js +129 -0
  13. package/core/apps/RankList.js +322 -0
  14. package/core/apps/aliasProposal.js +223 -0
  15. package/core/apps/apiSetting.js +592 -0
  16. package/core/apps/b19.js +1329 -0
  17. package/core/apps/botClient.js +64 -0
  18. package/core/apps/chart.js +692 -0
  19. package/core/apps/guessGame/guessIll.js +821 -0
  20. package/core/apps/guessGame/guessLetter.js +831 -0
  21. package/core/apps/guessGame/guessTips.js +254 -0
  22. package/core/apps/guessGame/letterGameUtils.js +74 -0
  23. package/core/apps/guessGame.js +214 -0
  24. package/core/apps/help.js +117 -0
  25. package/core/apps/manage.js +288 -0
  26. package/core/apps/market.js +243 -0
  27. package/core/apps/money.js +1064 -0
  28. package/core/apps/phisong.js +1418 -0
  29. package/core/apps/session.js +664 -0
  30. package/core/apps/setting.js +468 -0
  31. package/core/apps/update.js +541 -0
  32. package/core/apps/user.js +968 -0
  33. package/core/components/Config.js +249 -0
  34. package/core/components/Data.js +304 -0
  35. package/core/components/FileWatcherRegistry.js +102 -0
  36. package/core/components/Logger.js +11 -0
  37. package/core/components/ProcessCleanup.js +113 -0
  38. package/core/components/Version.js +56 -0
  39. package/core/components/YamlReader.js +157 -0
  40. package/core/components/baseClass.js +287 -0
  41. package/core/components/common.js +47 -0
  42. package/core/components/index.js +13 -0
  43. package/core/components/platform/index.js +79 -0
  44. package/core/components/platform/koishi.js +800 -0
  45. package/core/components/platform/koishiDatabaseRedis.js +391 -0
  46. package/core/components/platform/memoryRedis.js +209 -0
  47. package/core/components/platform/types.d.ts +272 -0
  48. package/core/components/platform/yunzai.js +604 -0
  49. package/core/components/segment.js +4 -0
  50. package/core/config/config//350/277/231/351/207/214/346/230/257/351/205/215/347/275/256/346/226/207/344/273/266/347/233/256/345/275/225.txt +0 -0
  51. package/core/config/default_config/banGroup.yaml +14 -0
  52. package/core/config/default_config/config.yaml +159 -0
  53. package/core/config/default_config/nickconfig.yaml +6 -0
  54. package/core/config/default_config/otherinfo.yaml +51 -0
  55. package/core/guoba.support.js +597 -0
  56. package/core/index.js +85 -0
  57. package/core/lib/AES.js +40 -0
  58. package/core/lib/Base64.js +22 -0
  59. package/core/lib/ByteReader.js +168 -0
  60. package/core/lib/GameProgress.js +37 -0
  61. package/core/lib/GameRecord.js +47 -0
  62. package/core/lib/GameSettings.js +24 -0
  63. package/core/lib/GameUser.js +19 -0
  64. package/core/lib/Level.js +6 -0
  65. package/core/lib/LevelRecord.js +9 -0
  66. package/core/lib/PhigrosUser.js +135 -0
  67. package/core/lib/SaveManager.js +117 -0
  68. package/core/lib/Summary.js +47 -0
  69. package/core/lib/TapTap/CompleteQRCodeData.js +27 -0
  70. package/core/lib/TapTap/LCHelper.js +81 -0
  71. package/core/lib/TapTap/TapTapHelper.js +170 -0
  72. package/core/lib/TapTap/getQRcode.js +61 -0
  73. package/core/lib/Util.js +30 -0
  74. package/core/lib/getQRcode.js +73 -0
  75. package/core/lib/http.js +105 -0
  76. package/core/model/README.md +3 -0
  77. package/core/model/api/aliasProposalService.js +151 -0
  78. package/core/model/api/apiVersion.js +67 -0
  79. package/core/model/api/autoSeekApi.js +165 -0
  80. package/core/model/api/botApiAuth.js +208 -0
  81. package/core/model/api/botSyncService.js +78 -0
  82. package/core/model/api/gameRecordPayload.js +24 -0
  83. package/core/model/api/makeRequest.js +1004 -0
  84. package/core/model/api/makeRequestFnc.js +17 -0
  85. package/core/model/api/phiApiClient.js +53 -0
  86. package/core/model/api/phiApiErrors.js +121 -0
  87. package/core/model/filesystem/getFile.js +256 -0
  88. package/core/model/filesystem/path.js +84 -0
  89. package/core/model/game/Chart.js +57 -0
  90. package/core/model/game/LevelRecordInfo.js +109 -0
  91. package/core/model/game/SongsInfo.js +46 -0
  92. package/core/model/game/b30Analysis.js +93 -0
  93. package/core/model/game/chartParser/Chart.js +23 -0
  94. package/core/model/game/chartParser/JudgeLine.js +38 -0
  95. package/core/model/game/chartParser/base/JudgeLineEvent.js +99 -0
  96. package/core/model/game/chartParser/base/Note.js +44 -0
  97. package/core/model/game/chartParser/base/SpeedEvent.js +25 -0
  98. package/core/model/game/chartParser/base/baseType.js +2 -0
  99. package/core/model/game/constNum.js +215 -0
  100. package/core/model/game/fCompute.js +711 -0
  101. package/core/model/game/getChartTag.js +140 -0
  102. package/core/model/game/getComment.js +132 -0
  103. package/core/model/game/getInfo.js +1069 -0
  104. package/core/model/game/getRksRank.js +77 -0
  105. package/core/model/game/markdown.js +77 -0
  106. package/core/model/integrations/Vika.js +103 -0
  107. package/core/model/integrations/getInfoFromTap.js +80 -0
  108. package/core/model/render/getPic.js +79 -0
  109. package/core/model/render/picmodle.js +496 -0
  110. package/core/model/render/progress-bar.js +44 -0
  111. package/core/model/render/puppeteer.js +431 -0
  112. package/core/model/render/renderPressureHistory.js +71 -0
  113. package/core/model/render/send.js +94 -0
  114. package/core/model/save/Save.js +953 -0
  115. package/core/model/save/analyzeSaveHistory.js +413 -0
  116. package/core/model/save/getBackup.js +328 -0
  117. package/core/model/save/getSave.js +90 -0
  118. package/core/model/save/getSaveFromApi.js +46 -0
  119. package/core/model/save/saveHistory.js +586 -0
  120. package/core/model/save/scoreHistory.js +101 -0
  121. package/core/model/theme/catalog.js +192 -0
  122. package/core/model/theme/installGuard.js +275 -0
  123. package/core/model/theme/installLock.js +174 -0
  124. package/core/model/theme/installer.js +398 -0
  125. package/core/model/theme/manager.js +408 -0
  126. package/core/model/theme/marketClient.js +294 -0
  127. package/core/model/theme/paths.js +42 -0
  128. package/core/model/theme/policy.js +54 -0
  129. package/core/model/theme/recovery.js +167 -0
  130. package/core/model/theme/useService.js +187 -0
  131. package/core/model/type/aliasProposal.d.ts +45 -0
  132. package/core/model/type/type.js +420 -0
  133. package/core/model/user/apiPermission.js +62 -0
  134. package/core/model/user/getBanGroup.js +120 -0
  135. package/core/model/user/getNotes.js +48 -0
  136. package/core/model/user/pluginData.js +101 -0
  137. package/core/model/user/userCredentialStore.js +154 -0
  138. package/core/model/user/userCredentials.js +860 -0
  139. package/core/package.json +60 -0
  140. package/core/resources/0608badSave/save.json +1 -0
  141. package/core/resources/LICENSE +201 -0
  142. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.art +220 -0
  143. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.css +345 -0
  144. package/core/resources/html/analyzeSaveHistory/analyzeSaveHistory.html +434 -0
  145. package/core/resources/html/arcgrosB19/arcgros.png +0 -0
  146. package/core/resources/html/arcgrosB19/arcgrosB19-orz.html +276 -0
  147. package/core/resources/html/arcgrosB19/arcgrosB19.art +168 -0
  148. package/core/resources/html/arcgrosB19/arcgrosB19.css +637 -0
  149. package/core/resources/html/atlas/atlas-orz.html +313 -0
  150. package/core/resources/html/atlas/atlas.art +194 -0
  151. package/core/resources/html/atlas/atlas.css +695 -0
  152. package/core/resources/html/avatar/-SURREALISM-.png +0 -0
  153. package/core/resources/html/avatar/Alkaid.png +0 -0
  154. package/core/resources/html/avatar/Aphasia.png +0 -0
  155. package/core/resources/html/avatar/Artificial Existence.png +0 -0
  156. package/core/resources/html/avatar/Bonus Time.png +0 -0
  157. package/core/resources/html/avatar/Burn.png +0 -0
  158. package/core/resources/html/avatar/Cereris1.png +0 -0
  159. package/core/resources/html/avatar/Cereris2.png +0 -0
  160. package/core/resources/html/avatar/Cereris3.png +0 -0
  161. package/core/resources/html/avatar/Christmas -2019.png +0 -0
  162. package/core/resources/html/avatar/Cipher1.png +0 -0
  163. package/core/resources/html/avatar/Class Memories.png +0 -0
  164. package/core/resources/html/avatar/Credits.png +0 -0
  165. package/core/resources/html/avatar/Dash.png +0 -0
  166. package/core/resources/html/avatar/Dlyrotz.png +0 -0
  167. package/core/resources/html/avatar/Doppelganger1.png +0 -0
  168. package/core/resources/html/avatar/Doppelganger2.png +0 -0
  169. package/core/resources/html/avatar/Drop it.png +0 -0
  170. package/core/resources/html/avatar/Energy Synergy Matrix1.png +0 -0
  171. package/core/resources/html/avatar/Energy Synergy Matrix2.png +0 -0
  172. package/core/resources/html/avatar/Energy Synergy Matrix3.png +0 -0
  173. package/core/resources/html/avatar/Engine x Start!! (melody mix).png +0 -0
  174. package/core/resources/html/avatar/Engine x Start!! extra 1 -by cycats.png +0 -0
  175. package/core/resources/html/avatar/Eradication Catastrophe.png +0 -0
  176. package/core/resources/html/avatar/FULi AUTO SHOOTER extra 1 -by cycats.png +0 -0
  177. package/core/resources/html/avatar/FULi AUTO SHOOTER.png +0 -0
  178. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special1.png +0 -0
  179. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/264-Special2.png +0 -0
  180. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2641.png +0 -0
  181. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2642.png +0 -0
  182. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2643.png +0 -0
  183. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2644.png +0 -0
  184. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2645.png +0 -0
  185. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2646.png +0 -0
  186. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2647.png +0 -0
  187. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2648.png +0 -0
  188. package/core/resources/html/avatar/Feast/350/277/234/344/270/234/344/271/213/345/256/2649.png +0 -0
  189. package/core/resources/html/avatar/Find_Me.png +0 -0
  190. package/core/resources/html/avatar/Geopelia 1 -by cycats.png +0 -0
  191. package/core/resources/html/avatar/Geopelia 2 -by cycats.png +0 -0
  192. package/core/resources/html/avatar/Geopelia 3 -by /344/275/225/345/221/265.png +0 -0
  193. package/core/resources/html/avatar/Geopelia in WEPLAY -by /346/265/267/344/272/247.png +0 -0
  194. package/core/resources/html/avatar/Gino-AprilFool.png +0 -0
  195. package/core/resources/html/avatar/Glaciaxion.png +0 -0
  196. package/core/resources/html/avatar/HumaN.png +0 -0
  197. package/core/resources/html/avatar/Indelible Scar.png +0 -0
  198. package/core/resources/html/avatar/Introduction.png +0 -0
  199. package/core/resources/html/avatar/Khronostasis Katharsis.png +0 -0
  200. package/core/resources/html/avatar/MARENOL.png +0 -0
  201. package/core/resources/html/avatar/Marenol extra 1 -by /345/226/265n/350/221/265.png +0 -0
  202. package/core/resources/html/avatar/Non-Melodic Ragez (MUG Edit).png +0 -0
  203. package/core/resources/html/avatar/Non-Melodic Ragez extra 1 -by cycats.png +0 -0
  204. package/core/resources/html/avatar/Oblivion +0 -0
  205. package/core/resources/html/avatar/OblivionPHIN.png +0 -0
  206. package/core/resources/html/avatar/Para.png +0 -0
  207. package/core/resources/html/avatar/Pixel Rebelz1.png +0 -0
  208. package/core/resources/html/avatar/Pixel Rebelz2.png +0 -0
  209. package/core/resources/html/avatar/Pixel Rebelz3.png +0 -0
  210. package/core/resources/html/avatar/RIPPER extra 1 -by cycats.png +0 -0
  211. package/core/resources/html/avatar/RIPPER extra 2 -by /344/275/225/345/221/265.png +0 -0
  212. package/core/resources/html/avatar/Sein.png +0 -0
  213. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special.png +0 -0
  214. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-Special2.png +0 -0
  215. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/231/256/351/200/232.png +0 -0
  216. package/core/resources/html/avatar/ShineAfter-/346/260/264/351/235/222-/346/233/262/347/273/230Ver.png +0 -0
  217. package/core/resources/html/avatar/ShineAfter-/351/270/240-Special.png +0 -0
  218. package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/231/256/351/200/232.png +0 -0
  219. package/core/resources/html/avatar/ShineAfter-/351/270/240-/346/233/262/347/273/230Ver.png +0 -0
  220. package/core/resources/html/avatar/ShineAfter-/351/270/240/345/222/214/346/260/264/351/235/222-Special.png +0 -0
  221. package/core/resources/html/avatar/Snow Desert.png +0 -0
  222. package/core/resources/html/avatar/Sparkle New Life.png +0 -0
  223. package/core/resources/html/avatar/Sultan Rage.png +0 -0
  224. package/core/resources/html/avatar/Winter /342/206/221cube/342/206/223.png +0 -0
  225. package/core/resources/html/avatar/Xenolith.png +0 -0
  226. package/core/resources/html/avatar/[PRAW].png +0 -0
  227. package/core/resources/html/avatar/dB doll.png +0 -0
  228. package/core/resources/html/avatar/ripper.png +0 -0
  229. package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2721.png +0 -0
  230. package/core/resources/html/avatar//343/202/202/343/201/272/343/202/202/343/201/2722.png +0 -0
  231. package/core/resources/html/avatar//344/270/207/345/220/250/345/214/277/345/220/215/344/277/241.png +0 -0
  232. package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251 extra 1 -by /345/276/241/345/235/202/346/236/234/345/255/220.png +0 -0
  233. package/core/resources/html/avatar//344/272/221/345/245/263/345/255/251.png +0 -0
  234. package/core/resources/html/avatar//345/205/211.png +0 -0
  235. package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2051.png +0 -0
  236. package/core/resources/html/avatar//345/274/200/345/277/203/347/227/2052.png +0 -0
  237. package/core/resources/html/avatar//346/260/264/351/235/222-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
  238. package/core/resources/html/avatar//346/267/267/344/271/261-Confusion.png +0 -0
  239. package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2361.png +0 -0
  240. package/core/resources/html/avatar//347/213/202/345/226/234/350/230/255/350/210/2362.png +0 -0
  241. package/core/resources/html/avatar//347/223/267/345/262/201-Special.png +0 -0
  242. package/core/resources/html/avatar//347/223/267/345/262/2011.png +0 -0
  243. package/core/resources/html/avatar//347/223/267/345/262/2012.png +0 -0
  244. package/core/resources/html/avatar//347/223/267/345/262/2013.png +0 -0
  245. package/core/resources/html/avatar//347/223/267/345/262/2014.png +0 -0
  246. package/core/resources/html/avatar//347/223/267/345/262/2015.png +0 -0
  247. package/core/resources/html/avatar//347/223/267/345/262/2016.png +0 -0
  248. package/core/resources/html/avatar//347/223/267/345/262/2017.png +0 -0
  249. package/core/resources/html/avatar//347/233/217/350/214/227-Special.png +0 -0
  250. package/core/resources/html/avatar//347/233/217/350/214/2271.png +0 -0
  251. package/core/resources/html/avatar//347/233/217/350/214/2272.png +0 -0
  252. package/core/resources/html/avatar//347/233/217/350/214/2273.png +0 -0
  253. package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2611.png +0 -0
  254. package/core/resources/html/avatar//350/217/257/347/201/257/347/210/2612.png +0 -0
  255. package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2501.png +0 -0
  256. package/core/resources/html/avatar//350/220/244/347/201/253/350/231/253/343/201/256/346/200/2502.png +0 -0
  257. package/core/resources/html/avatar//351/235/222/350/212/275-Special.png +0 -0
  258. package/core/resources/html/avatar//351/235/222/350/212/275.png +0 -0
  259. package/core/resources/html/avatar//351/243/216/345/261/277.png +0 -0
  260. package/core/resources/html/avatar//351/270/240-AprilFool.png +0 -0
  261. package/core/resources/html/avatar//351/270/240-/344/270/200/345/221/250/345/271/264/347/233/270/350/201/232.png +0 -0
  262. package/core/resources/html/b19/b19.art +490 -0
  263. package/core/resources/html/b19/b19.css +1261 -0
  264. package/core/resources/html/b19/b19666.art +350 -0
  265. package/core/resources/html/b19/b19666.css +1409 -0
  266. package/core/resources/html/b19/b19666.html +481 -0
  267. package/core/resources/html/b19/b19title.css +120 -0
  268. package/core/resources/html/b19/best19.html +853 -0
  269. package/core/resources/html/b19/dss2-orz.html +428 -0
  270. package/core/resources/html/b19/dss2.art +298 -0
  271. package/core/resources/html/b19/dss2.css +776 -0
  272. package/core/resources/html/b19/res/666.jpeg +0 -0
  273. package/core/resources/html/chap/chap-orz.html +93 -0
  274. package/core/resources/html/chap/chap.art +87 -0
  275. package/core/resources/html/chap/chap.css +365 -0
  276. package/core/resources/html/chartImg/chartImg.art +169 -0
  277. package/core/resources/html/chartImg/chartImg.css +439 -0
  278. package/core/resources/html/chartImg/echarts-wordcloud.min.js +3 -0
  279. package/core/resources/html/chartImg/echarts.js +85796 -0
  280. package/core/resources/html/chartImg/img/Drag.png +0 -0
  281. package/core/resources/html/chartImg/img/DragHL.png +0 -0
  282. package/core/resources/html/chartImg/img/Flick.png +0 -0
  283. package/core/resources/html/chartImg/img/FlickHL.png +0 -0
  284. package/core/resources/html/chartImg/img/Hold.png +0 -0
  285. package/core/resources/html/chartImg/img/HoldHL.png +0 -0
  286. package/core/resources/html/chartImg/img/Hold_End.png +0 -0
  287. package/core/resources/html/chartImg/img/Hold_Head.png +0 -0
  288. package/core/resources/html/chartImg/img/Hold_HeadHL.png +0 -0
  289. package/core/resources/html/chartImg/img/Tap.png +0 -0
  290. package/core/resources/html/chartImg/img/TapHL.png +0 -0
  291. package/core/resources/html/chartInfo/chartInfo-orz.html +250 -0
  292. package/core/resources/html/chartInfo/chartInfo.art +222 -0
  293. package/core/resources/html/chartInfo/chartInfo.css +265 -0
  294. package/core/resources/html/chartInfo/echarts-wordcloud.min.js +3 -0
  295. package/core/resources/html/chartInfo/echarts.js +85796 -0
  296. package/core/resources/html/clg/clg-orz.html +218 -0
  297. package/core/resources/html/clg/clg.art +88 -0
  298. package/core/resources/html/clg/clg.css +230 -0
  299. package/core/resources/html/clg/demo.jpg +0 -0
  300. package/core/resources/html/common/common.css +319 -0
  301. package/core/resources/html/common/css/playerInfo.css +136 -0
  302. package/core/resources/html/common/font/Aldrich-Regular.ttf +0 -0
  303. package/core/resources/html/common/font/HIMALAYA.TTF +0 -0
  304. package/core/resources/html/common/font/NotoColorEmoji-Regular.ttf +0 -0
  305. package/core/resources/html/common/font/NotoSans-Regular.ttf +0 -0
  306. package/core/resources/html/common/font/NotoSansArabic.ttf +0 -0
  307. package/core/resources/html/common/font/NotoSansCanadianAboriginal.ttf +0 -0
  308. package/core/resources/html/common/font/NotoSansJP.ttf +0 -0
  309. package/core/resources/html/common/font/NotoSansKannada.ttf +0 -0
  310. package/core/resources/html/common/font/NotoSansMath-Regular.ttf +0 -0
  311. package/core/resources/html/common/font/NotoSansSymbols2.ttf +0 -0
  312. package/core/resources/html/common/font/phi.ttf +0 -0
  313. package/core/resources/html/common/font//345/220/236/345/274/245/346/201/260/344/277/212.ttf +0 -0
  314. package/core/resources/html/common/layout/default.art +324 -0
  315. package/core/resources/html/common/layout/elem.art +21 -0
  316. package/core/resources/html/common/theme/snow/snow.css +17 -0
  317. package/core/resources/html/common/theme/snow/snow.js +19 -0
  318. package/core/resources/html/common/theme/star/star.js +201 -0
  319. package/core/resources/html/common/theme/topText/topText.css +15 -0
  320. package/core/resources/html/common/theme/topText/topText.js +30 -0
  321. package/core/resources/html/difficultyHistory/difficultyHistory-orz.html +361 -0
  322. package/core/resources/html/difficultyHistory/difficultyHistory.art +102 -0
  323. package/core/resources/html/difficultyHistory/difficultyHistory.css +205 -0
  324. package/core/resources/html/guess/guess-orz.html +50 -0
  325. package/core/resources/html/guess/guess.art +51 -0
  326. package/core/resources/html/guess/guess.css +33 -0
  327. package/core/resources/html/help/help-orz.html +73 -0
  328. package/core/resources/html/help/help.art +84 -0
  329. package/core/resources/html/help/help.css +266 -0
  330. package/core/resources/html/historyB30/historyB30-orz.html +168 -0
  331. package/core/resources/html/historyB30/historyB30.art +143 -0
  332. package/core/resources/html/historyB30/historyB30.css +270 -0
  333. package/core/resources/html/ill/ill-orz.html +21 -0
  334. package/core/resources/html/ill/ill.art +23 -0
  335. package/core/resources/html/ill/ill.css +79 -0
  336. package/core/resources/html/jrrp/ShineAfter.removebg.png +0 -0
  337. package/core/resources/html/jrrp/jrrp-orz.html +68 -0
  338. package/core/resources/html/jrrp/jrrp.art +58 -0
  339. package/core/resources/html/jrrp/jrrp.css +251 -0
  340. package/core/resources/html/list/list-orz.html +35 -0
  341. package/core/resources/html/list/list.art +67 -0
  342. package/core/resources/html/list/list.css +259 -0
  343. package/core/resources/html/lvsco/demo.jpg +0 -0
  344. package/core/resources/html/lvsco/lvsco-orz.html +334 -0
  345. package/core/resources/html/lvsco/lvsco.art +314 -0
  346. package/core/resources/html/lvsco/lvsco.css +706 -0
  347. package/core/resources/html/market/detail.art +44 -0
  348. package/core/resources/html/market/market.art +86 -0
  349. package/core/resources/html/market/market.css +64 -0
  350. package/core/resources/html/newSong/newSong.art +34 -0
  351. package/core/resources/html/newSong/newSong.css +48 -0
  352. package/core/resources/html/newSong/newSong.html +23 -0
  353. package/core/resources/html/newnotice/newnotice.art +47 -0
  354. package/core/resources/html/newnotice/newnotice.css +83 -0
  355. package/core/resources/html/otherimg/0.png +0 -0
  356. package/core/resources/html/otherimg/1.png +0 -0
  357. package/core/resources/html/otherimg/2.png +0 -0
  358. package/core/resources/html/otherimg/3.png +0 -0
  359. package/core/resources/html/otherimg/4.png +0 -0
  360. package/core/resources/html/otherimg/5.png +0 -0
  361. package/core/resources/html/otherimg/A.png +0 -0
  362. package/core/resources/html/otherimg/B.png +0 -0
  363. package/core/resources/html/otherimg/C.png +0 -0
  364. package/core/resources/html/otherimg/F.png +0 -0
  365. package/core/resources/html/otherimg/FC.png +0 -0
  366. package/core/resources/html/otherimg/NEW.png +0 -0
  367. package/core/resources/html/otherimg/Phigros_Icon_3.0.0.png +0 -0
  368. package/core/resources/html/otherimg/S.png +0 -0
  369. package/core/resources/html/otherimg/Star1.png +0 -0
  370. package/core/resources/html/otherimg/Star2.png +0 -0
  371. package/core/resources/html/otherimg/V.png +0 -0
  372. package/core/resources/html/otherimg/callback.png +0 -0
  373. package/core/resources/html/otherimg/chapHelp.png +0 -0
  374. package/core/resources/html/otherimg/dan_code.png +0 -0
  375. package/core/resources/html/otherimg/data.png +0 -0
  376. package/core/resources/html/otherimg/helpDoc.png +0 -0
  377. package/core/resources/html/otherimg/nickSuggest.png +0 -0
  378. package/core/resources/html/otherimg/phi.png +0 -0
  379. package/core/resources/html/otherimg/phigros.png +0 -0
  380. package/core/resources/html/otherimg/snow1.png +0 -0
  381. package/core/resources/html/otherimg/snow2.png +0 -0
  382. package/core/resources/html/otherimg/snow3.png +0 -0
  383. package/core/resources/html/otherimg/snow4.png +0 -0
  384. package/core/resources/html/otherimg/title.png +0 -0
  385. package/core/resources/html/rand/rand-orz.html +62 -0
  386. package/core/resources/html/rand/rand.art +59 -0
  387. package/core/resources/html/rand/rand.css +257 -0
  388. package/core/resources/html/rankingList/rankingList-orz.html +456 -0
  389. package/core/resources/html/rankingList/rankingList.art +171 -0
  390. package/core/resources/html/rankingList/rankingList.css +570 -0
  391. package/core/resources/html/rankingList-old/rankingList-orz.html +300 -0
  392. package/core/resources/html/rankingList-old/rankingList.art +89 -0
  393. package/core/resources/html/rankingList-old/rankingList.css +265 -0
  394. package/core/resources/html/score/score-orz.html +625 -0
  395. package/core/resources/html/score/score.art +249 -0
  396. package/core/resources/html/score/score.css +435 -0
  397. package/core/resources/html/score/scoreOld-orz.html +128 -0
  398. package/core/resources/html/score/scoreOld.art +230 -0
  399. package/core/resources/html/score/scoreOld.css +475 -0
  400. package/core/resources/html/score/scoreRankList-orz.html +613 -0
  401. package/core/resources/html/score/scoreRankList.art +231 -0
  402. package/core/resources/html/score/scoreRankList.css +197 -0
  403. package/core/resources/html/setting/setting-orz.html +123 -0
  404. package/core/resources/html/setting/setting.art +72 -0
  405. package/core/resources/html/setting/setting.css +170 -0
  406. package/core/resources/html/setting/userSetting-orz.html +132 -0
  407. package/core/resources/html/setting/userSetting.art +48 -0
  408. package/core/resources/html/setting/userSetting.css +160 -0
  409. package/core/resources/html/sign/sign-orz.html +262 -0
  410. package/core/resources/html/sign/sign.art +163 -0
  411. package/core/resources/html/sign/sign.css +706 -0
  412. package/core/resources/html/suggest/suggest.art +271 -0
  413. package/core/resources/html/suggest/suggest.css +300 -0
  414. package/core/resources/html/table/table-orz.html +228 -0
  415. package/core/resources/html/table/table.art +163 -0
  416. package/core/resources/html/table/table.css +401 -0
  417. package/core/resources/html/tasks/tasks-orz.html +83 -0
  418. package/core/resources/html/tasks/tasks.art +118 -0
  419. package/core/resources/html/tasks/tasks.css +334 -0
  420. package/core/resources/html/update/update-orz.html +735 -0
  421. package/core/resources/html/update/update.art +259 -0
  422. package/core/resources/html/update/update.css +676 -0
  423. package/core/resources/html/userinfo/userinfo-old-orz.html +408 -0
  424. package/core/resources/html/userinfo/userinfo-old.art +233 -0
  425. package/core/resources/html/userinfo/userinfo-old.css +466 -0
  426. package/core/resources/html/userinfo/userinfo-orz.html +543 -0
  427. package/core/resources/html/userinfo/userinfo.art +288 -0
  428. package/core/resources/html/userinfo/userinfo.css +757 -0
  429. package/core/resources/info/DLC/arc.json +412 -0
  430. package/core/resources/info/DLC/chunithm.json +1172 -0
  431. package/core/resources/info/DLC/dynamix.json +455 -0
  432. package/core/resources/info/DLC/fanshi.json +132 -0
  433. package/core/resources/info/DLC/lanota.json +412 -0
  434. package/core/resources/info/DLC/maimai.json +1110 -0
  435. package/core/resources/info/DLC/orz.json +158 -0
  436. package/core/resources/info/DLC/rizline.json +40 -0
  437. package/core/resources/info/DLC/rotaeno.json +159 -0
  438. package/core/resources/info/DLC/ryceam.json +53 -0
  439. package/core/resources/info/avatar.txt +109 -0
  440. package/core/resources/info/chaplist.yaml +102 -0
  441. package/core/resources/info/help/api.json +83 -0
  442. package/core/resources/info/help.json +436 -0
  443. package/core/resources/info/info.csv +315 -0
  444. package/core/resources/info/infolist.json +1758 -0
  445. package/core/resources/info/jrrp.json +92 -0
  446. package/core/resources/info/nicklist.yaml +2373 -0
  447. package/core/resources/info/notesInfo.json +1 -0
  448. package/core/resources/info/notice.json +11 -0
  449. package/core/resources/info/oldInfo/100/change.csv +218 -0
  450. package/core/resources/info/oldInfo/100/info.json +7 -0
  451. package/core/resources/info/oldInfo/101/change.csv +218 -0
  452. package/core/resources/info/oldInfo/101/info.json +7 -0
  453. package/core/resources/info/oldInfo/102/change.csv +223 -0
  454. package/core/resources/info/oldInfo/102/info.json +7 -0
  455. package/core/resources/info/oldInfo/103/change.csv +224 -0
  456. package/core/resources/info/oldInfo/103/info.json +7 -0
  457. package/core/resources/info/oldInfo/104/change.csv +225 -0
  458. package/core/resources/info/oldInfo/104/info.json +7 -0
  459. package/core/resources/info/oldInfo/105/change.csv +228 -0
  460. package/core/resources/info/oldInfo/105/info.json +7 -0
  461. package/core/resources/info/oldInfo/106/change.csv +229 -0
  462. package/core/resources/info/oldInfo/106/info.json +7 -0
  463. package/core/resources/info/oldInfo/108/change.csv +233 -0
  464. package/core/resources/info/oldInfo/108/info.json +7 -0
  465. package/core/resources/info/oldInfo/109/change.csv +235 -0
  466. package/core/resources/info/oldInfo/109/info.json +7 -0
  467. package/core/resources/info/oldInfo/110/change.csv +235 -0
  468. package/core/resources/info/oldInfo/110/info.json +7 -0
  469. package/core/resources/info/oldInfo/111/change.csv +242 -0
  470. package/core/resources/info/oldInfo/111/info.json +7 -0
  471. package/core/resources/info/oldInfo/112/change.csv +242 -0
  472. package/core/resources/info/oldInfo/112/info.json +7 -0
  473. package/core/resources/info/oldInfo/113/change.csv +244 -0
  474. package/core/resources/info/oldInfo/113/info.json +7 -0
  475. package/core/resources/info/oldInfo/115/change.csv +247 -0
  476. package/core/resources/info/oldInfo/115/info.json +7 -0
  477. package/core/resources/info/oldInfo/116/change.csv +249 -0
  478. package/core/resources/info/oldInfo/116/info.json +7 -0
  479. package/core/resources/info/oldInfo/118/change.csv +252 -0
  480. package/core/resources/info/oldInfo/118/info.json +7 -0
  481. package/core/resources/info/oldInfo/119/change.csv +255 -0
  482. package/core/resources/info/oldInfo/119/info.json +7 -0
  483. package/core/resources/info/oldInfo/120/change.csv +255 -0
  484. package/core/resources/info/oldInfo/120/info.json +7 -0
  485. package/core/resources/info/oldInfo/121/change.csv +257 -0
  486. package/core/resources/info/oldInfo/121/info.json +7 -0
  487. package/core/resources/info/oldInfo/122/change.csv +260 -0
  488. package/core/resources/info/oldInfo/122/info.json +7 -0
  489. package/core/resources/info/oldInfo/123/change.csv +260 -0
  490. package/core/resources/info/oldInfo/123/info.json +7 -0
  491. package/core/resources/info/oldInfo/124/change.csv +262 -0
  492. package/core/resources/info/oldInfo/124/info.json +7 -0
  493. package/core/resources/info/oldInfo/125/change.csv +266 -0
  494. package/core/resources/info/oldInfo/125/info.json +7 -0
  495. package/core/resources/info/oldInfo/126/change.csv +269 -0
  496. package/core/resources/info/oldInfo/126/info.json +7 -0
  497. package/core/resources/info/oldInfo/127/change.csv +270 -0
  498. package/core/resources/info/oldInfo/127/info.json +7 -0
  499. package/core/resources/info/oldInfo/128/change.csv +273 -0
  500. package/core/resources/info/oldInfo/128/info.json +7 -0
  501. package/core/resources/info/oldInfo/129/change.csv +274 -0
  502. package/core/resources/info/oldInfo/129/info.json +7 -0
  503. package/core/resources/info/oldInfo/130/change.csv +275 -0
  504. package/core/resources/info/oldInfo/130/info.json +7 -0
  505. package/core/resources/info/oldInfo/131/change.csv +278 -0
  506. package/core/resources/info/oldInfo/131/info.json +7 -0
  507. package/core/resources/info/oldInfo/132/change.csv +280 -0
  508. package/core/resources/info/oldInfo/132/info.json +7 -0
  509. package/core/resources/info/oldInfo/133/change.csv +284 -0
  510. package/core/resources/info/oldInfo/133/info.json +7 -0
  511. package/core/resources/info/oldInfo/134/change.csv +286 -0
  512. package/core/resources/info/oldInfo/134/info.json +7 -0
  513. package/core/resources/info/oldInfo/135/change.csv +290 -0
  514. package/core/resources/info/oldInfo/135/info.json +7 -0
  515. package/core/resources/info/oldInfo/136/change.csv +290 -0
  516. package/core/resources/info/oldInfo/136/info.json +7 -0
  517. package/core/resources/info/oldInfo/137/change.csv +293 -0
  518. package/core/resources/info/oldInfo/137/info.json +7 -0
  519. package/core/resources/info/oldInfo/138/change.csv +295 -0
  520. package/core/resources/info/oldInfo/138/info.json +7 -0
  521. package/core/resources/info/oldInfo/139/change.csv +295 -0
  522. package/core/resources/info/oldInfo/139/info.json +7 -0
  523. package/core/resources/info/oldInfo/140/change.csv +298 -0
  524. package/core/resources/info/oldInfo/140/info.json +7 -0
  525. package/core/resources/info/oldInfo/141/change.csv +300 -0
  526. package/core/resources/info/oldInfo/141/info.json +7 -0
  527. package/core/resources/info/oldInfo/142/change.csv +302 -0
  528. package/core/resources/info/oldInfo/142/info.json +7 -0
  529. package/core/resources/info/oldInfo/143/change.csv +303 -0
  530. package/core/resources/info/oldInfo/143/info.json +7 -0
  531. package/core/resources/info/oldInfo/144/change.csv +303 -0
  532. package/core/resources/info/oldInfo/144/info.json +7 -0
  533. package/core/resources/info/oldInfo/145/change.csv +305 -0
  534. package/core/resources/info/oldInfo/145/info.json +7 -0
  535. package/core/resources/info/oldInfo/146/change.csv +305 -0
  536. package/core/resources/info/oldInfo/146/info.json +7 -0
  537. package/core/resources/info/oldInfo/148/change.csv +307 -0
  538. package/core/resources/info/oldInfo/148/info.json +7 -0
  539. package/core/resources/info/oldInfo/149/change.csv +307 -0
  540. package/core/resources/info/oldInfo/149/info.json +7 -0
  541. package/core/resources/info/oldInfo/151/change.csv +309 -0
  542. package/core/resources/info/oldInfo/151/info.json +7 -0
  543. package/core/resources/info/oldInfo/152/change.csv +312 -0
  544. package/core/resources/info/oldInfo/152/info.json +7 -0
  545. package/core/resources/info/oldInfo/153/change.csv +313 -0
  546. package/core/resources/info/oldInfo/153/info.json +7 -0
  547. package/core/resources/info/oldInfo/154/change.csv +315 -0
  548. package/core/resources/info/oldInfo/154/info.json +7 -0
  549. package/core/resources/info/oldInfo/92/change.csv +204 -0
  550. package/core/resources/info/oldInfo/92/info.json +7 -0
  551. package/core/resources/info/oldInfo/93/change.csv +206 -0
  552. package/core/resources/info/oldInfo/93/info.json +7 -0
  553. package/core/resources/info/oldInfo/94/change.csv +209 -0
  554. package/core/resources/info/oldInfo/94/info.json +7 -0
  555. package/core/resources/info/oldInfo/95/change.csv +211 -0
  556. package/core/resources/info/oldInfo/95/info.json +7 -0
  557. package/core/resources/info/oldInfo/96/change.csv +216 -0
  558. package/core/resources/info/oldInfo/96/info.json +7 -0
  559. package/core/resources/info/oldInfo/98/change.csv +216 -0
  560. package/core/resources/info/oldInfo/98/info.json +7 -0
  561. package/core/resources/info/oldInfo/99/change.csv +217 -0
  562. package/core/resources/info/oldInfo/99/info.json +7 -0
  563. package/core/resources/info/oldNotesInfo.json +1 -0
  564. package/core/resources/info/sentences.json +1 -0
  565. package/core/resources/info/spinfo.json +362 -0
  566. package/core/resources/info/tips.txt +278 -0
  567. package/core/resources/otherill//351/233/252/351/231/215SP.png +0 -0
  568. package/core/resources/song-select.html +535 -0
  569. package/core/resources/themes/README.md +24 -0
  570. package/core/resources/themes/milthm/A.png +0 -0
  571. package/core/resources/themes/milthm/B.png +0 -0
  572. package/core/resources/themes/milthm/C.png +0 -0
  573. package/core/resources/themes/milthm/F.png +0 -0
  574. package/core/resources/themes/milthm/FC.png +0 -0
  575. package/core/resources/themes/milthm/S.png +0 -0
  576. package/core/resources/themes/milthm/V.png +0 -0
  577. package/core/resources/themes/milthm/arcgrosB19.css +36 -0
  578. package/core/resources/themes/milthm/b19.art +464 -0
  579. package/core/resources/themes/milthm/b19.css +1314 -0
  580. package/core/resources/themes/milthm/bg.png +0 -0
  581. package/core/resources/themes/milthm/clg.css +37 -0
  582. package/core/resources/themes/milthm/difficultyHistory.css +42 -0
  583. package/core/resources/themes/milthm/font.ttf +0 -0
  584. package/core/resources/themes/milthm/help.css +36 -0
  585. package/core/resources/themes/milthm/historyB30.css +48 -0
  586. package/core/resources/themes/milthm/info.yaml +45 -0
  587. package/core/resources/themes/milthm/list.css +39 -0
  588. package/core/resources/themes/milthm/phi.png +0 -0
  589. package/core/resources/themes/milthm/setting.css +37 -0
  590. package/core/resources/themes/milthm/sign.css +81 -0
  591. package/core/resources/themes/milthm/suggest.css +40 -0
  592. package/core/resources/themes/milthm/table.css +54 -0
  593. package/core/resources/themes/milthm/update.css +68 -0
  594. package/core/tests/aliasProposalService.test.js +82 -0
  595. package/core/tests/apiAccountDeletion.test.js +125 -0
  596. package/core/tests/apiPermission.test.js +44 -0
  597. package/core/tests/apiVersion.test.js +55 -0
  598. package/core/tests/b30Analysis.test.js +38 -0
  599. package/core/tests/backgroundIllustration.test.js +21 -0
  600. package/core/tests/botApiAuthRecovery.test.js +148 -0
  601. package/core/tests/botSyncService.test.js +42 -0
  602. package/core/tests/fileWatcherRegistry.test.js +44 -0
  603. package/core/tests/gameRecordPayload.test.js +34 -0
  604. package/core/tests/guessLetter.test.js +79 -0
  605. package/core/tests/makeRequestHandling.test.js +118 -0
  606. package/core/tests/marketOverflow.test.js +31 -0
  607. package/core/tests/platformTemplateCache.test.js +92 -0
  608. package/core/tests/pluginDataThemePreference.test.js +36 -0
  609. package/core/tests/processCleanup.test.js +58 -0
  610. package/core/tests/puppeteerShutdown.test.js +17 -0
  611. package/core/tests/renderPressureHistory.test.js +59 -0
  612. package/core/tests/saveStats.test.js +26 -0
  613. package/core/tests/themeInstallGuard.test.js +289 -0
  614. package/core/tests/themeManager.test.js +625 -0
  615. package/core/tests/themeManagerInit.test.js +11 -0
  616. package/core/tests/themeMarket.test.js +855 -0
  617. package/core/tests/themePageRouting.test.js +431 -0
  618. package/core/tests/themePolicy.test.js +28 -0
  619. package/core/tests/themeStorageRecovery.test.js +192 -0
  620. package/core/tests/userCredentialModuleBoundaries.test.js +41 -0
  621. package/core/tests/userCredentials.test.js +285 -0
  622. package/core/tsconfig.json +32 -0
  623. package/core/types/vendor.d.ts +14 -0
  624. package/lib/index.cjs +358 -0
  625. package/lib/index.d.cts +182 -0
  626. package/lib/index.d.ts +182 -0
  627. package/lib/index.js +320 -0
  628. package/package.json +74 -0
  629. package/readme.md +3 -0
@@ -0,0 +1,1409 @@
1
+ @import "../common/common.css";
2
+
3
+ body {
4
+ /* writing-mode: vertical-lr; */
5
+ flex-direction: column;
6
+ display: flex;
7
+ width: 1200px;
8
+ height: fit-content;
9
+ }
10
+
11
+ body p {
12
+ color: white;
13
+ margin: 0px;
14
+ margin-block: 0;
15
+ margin-inline: 0;
16
+ }
17
+
18
+ .background img {
19
+ height: auto;
20
+ width: 100%;
21
+ min-width: unset;
22
+ min-height: unset;
23
+ transform: none;
24
+ }
25
+
26
+ .title {
27
+ display: flex;
28
+ flex-direction: row;
29
+ justify-content: center;
30
+ align-items: center;
31
+ width: 100%;
32
+ height: 7rem;
33
+ position: relative;
34
+ margin-top: 2rem;
35
+ margin-bottom: 2rem;
36
+ top: 0;
37
+ z-index: 2;
38
+ }
39
+
40
+ .playerInfo {
41
+ display: flex;
42
+ flex-direction: row;
43
+ align-items: center;
44
+ width: 50%;
45
+ height: 5rem;
46
+ position: absolute;
47
+ left: 7%;
48
+ }
49
+
50
+ .blackBlock {
51
+ width: 98%;
52
+ --height: 72.8px;
53
+ background-color: rgba(0, 0, 0, 0.5);
54
+ position: absolute;
55
+ z-index: 0;
56
+ right: 0px;
57
+ backdrop-filter: blur(5px);
58
+ }
59
+
60
+ .avatar {
61
+ --height: 80px;
62
+ z-index: 2;
63
+ display: flex;
64
+ align-items: center;
65
+ }
66
+
67
+ .avatar img {
68
+ height: 200%;
69
+ }
70
+
71
+ .playerId {
72
+ position: absolute;
73
+ height: 80%;
74
+ width: 51%;
75
+ right: 6%;
76
+ display: flex;
77
+ align-items: center;
78
+ justify-content: center;
79
+ }
80
+
81
+ .playerId p {
82
+ font-size: 2rem;
83
+ }
84
+
85
+ .rks {
86
+ width: 18%;
87
+ --height: 24px;
88
+ display: flex;
89
+ justify-self: center;
90
+ align-items: center;
91
+ background-color: white;
92
+ z-index: 1;
93
+ justify-content: center;
94
+ position: absolute;
95
+ left: 22%;
96
+ bottom: 13%;
97
+ }
98
+
99
+ .rks p {
100
+ font-size: 1.3rem;
101
+ color: black;
102
+ }
103
+
104
+ .clgBox {
105
+ width: 4rem;
106
+ height: 1rem;
107
+ left: 27%;
108
+ top: 17%;
109
+ position: absolute;
110
+ display: flex;
111
+ justify-content: center;
112
+ align-items: center;
113
+ }
114
+
115
+ .clgBox p {
116
+ font-size: 1.5rem;
117
+ color: white;
118
+ }
119
+
120
+ .date {
121
+ position: absolute;
122
+ right: -6px;
123
+ top: -20px;
124
+ }
125
+
126
+ .dataBox {
127
+ position: absolute;
128
+ --height: 20px;
129
+ bottom: -31%;
130
+ left: -7px;
131
+ display: flex;
132
+ background-color: rgba(0, 0, 0, 0.5);
133
+ align-items: center;
134
+ justify-content: center;
135
+ padding-right: 0.6rem;
136
+ white-space: nowrap;
137
+ }
138
+
139
+ .dataBox img {
140
+ height: 100%;
141
+ padding: 4px;
142
+ padding-left: 10px;
143
+ box-sizing: border-box;
144
+ }
145
+
146
+ .spInfoBox {
147
+ position: absolute;
148
+ --height: 20px;
149
+ bottom: -31%;
150
+ right: 4%;
151
+ display: flex;
152
+ align-items: center;
153
+ justify-content: center;
154
+ white-space: nowrap;
155
+ }
156
+
157
+ .spInfo {
158
+ display: flex;
159
+ align-items: center;
160
+ justify-content: center;
161
+ padding-right: 0.7rem;
162
+ padding-left: 0.6rem;
163
+ white-space: nowrap;
164
+ }
165
+
166
+ .spInfo p {
167
+ color: black;
168
+ text-shadow: 1px 1px white;
169
+ }
170
+
171
+ .recordInfo {
172
+ position: absolute;
173
+ width: 22%;
174
+ right: 12%;
175
+ background-color: rgba(0, 0, 0, 0.5);
176
+ backdrop-filter: blur(5px);
177
+ padding-left: 3%;
178
+ }
179
+
180
+ .whiteLine {
181
+ width: 37px;
182
+ background-color: white;
183
+ position: absolute;
184
+ left: 0;
185
+ }
186
+
187
+ .recordInfo,
188
+ .whiteLine {
189
+ --height: 112px;
190
+ }
191
+
192
+ :root {
193
+ --row: 3.5%;
194
+ --Poz: 3rem;
195
+ }
196
+
197
+ .sheet {
198
+ height: 100%;
199
+ }
200
+
201
+ .row {
202
+ position: relative;
203
+ height: 25%;
204
+ display: flex;
205
+ align-items: center;
206
+ }
207
+
208
+ .row:nth-child(1) {
209
+ left: calc(var(--row) * 3);
210
+ }
211
+
212
+ .row:nth-child(2) {
213
+ left: calc(var(--row) * 2);
214
+ }
215
+
216
+ .row:nth-child(3) {
217
+ left: calc(var(--row) * 1);
218
+ }
219
+
220
+ .row:nth-child(4) {
221
+ left: 0;
222
+ }
223
+
224
+ .poz {
225
+ width: 0;
226
+ height: 0;
227
+ position: absolute;
228
+ display: flex;
229
+ justify-content: center;
230
+ align-items: center;
231
+ }
232
+
233
+ .poz:nth-child(2) {
234
+ left: var(--Poz);
235
+ }
236
+
237
+ .poz:nth-child(3) {
238
+ left: calc(var(--Poz) * 2);
239
+ }
240
+
241
+ .poz:nth-child(4) {
242
+ left: calc(var(--Poz) * 3);
243
+ }
244
+
245
+ .poz:nth-child(5) {
246
+ left: calc(var(--Poz) * 4);
247
+ }
248
+
249
+ .poz p {
250
+ font-size: 1rem;
251
+ color: white;
252
+ }
253
+
254
+ .b19 {
255
+ display: flex;
256
+ z-index: 5;
257
+ flex-wrap: wrap;
258
+ }
259
+
260
+ .b19 .L,
261
+ .b19 .M,
262
+ .b19 .R {
263
+ display: flex;
264
+ flex-direction: column;
265
+ align-items: center;
266
+ justify-content: flex-start;
267
+ margin-right: -1%;
268
+ width: 400px;
269
+ }
270
+
271
+ .b19 .L {
272
+ margin-left: 2%;
273
+ }
274
+
275
+ .b19 .M {
276
+ margin-top: 5%;
277
+ }
278
+
279
+ .b19 .R {
280
+ margin-top: 8%;
281
+ }
282
+
283
+ .Nosignal,
284
+ .song,
285
+ .over_flow {
286
+ margin-bottom: 2%;
287
+ }
288
+
289
+ .song {
290
+ width: 360px;
291
+ height: 100px;
292
+ display: flex;
293
+ flex-direction: row;
294
+ align-items: center;
295
+ margin-left: 35px;
296
+ margin-right: 0;
297
+ position: relative;
298
+ justify-content: flex-start;
299
+ }
300
+
301
+ .phi_song .info-AT,
302
+ .phi_song .info-IN,
303
+ .phi_song .info-HD,
304
+ .phi_song .info-EZ {
305
+ filter: drop-shadow(0 0 10px #fbff00aa);
306
+ }
307
+
308
+ .b_song .info-AT,
309
+ .b_song .info-IN,
310
+ .b_song .info-HD,
311
+ .b_song .info-EZ,
312
+ .over_flow {
313
+ filter: drop-shadow(0 0 10px #ffffffaa);
314
+ }
315
+
316
+ .song .ill-box {
317
+ width: 50%;
318
+ height: auto;
319
+ z-index: 1;
320
+ filter: drop-shadow(2px 4px 10px #00000055);
321
+ position: relative;
322
+ }
323
+
324
+ .num {
325
+ width: 18%;
326
+ --height: 15.6px;
327
+ margin-left: -2%;
328
+ background-color: rgba(255, 255, 255, 1);
329
+ position: absolute;
330
+ text-align: center;
331
+ }
332
+
333
+ .num p {
334
+ font-size: xx-small;
335
+ margin: 0;
336
+ line-height: 130%;
337
+ color: black;
338
+ }
339
+
340
+ .ill {
341
+ --height: 94.92px;
342
+ }
343
+
344
+ .ill img {
345
+ width: 100%;
346
+ display: block;
347
+ }
348
+
349
+ .rank-AT,
350
+ .rank-IN,
351
+ .rank-HD,
352
+ .rank-EZ {
353
+ width: 33%;
354
+ --height: 31.32px;
355
+ bottom: 0px;
356
+ position: absolute;
357
+ margin-left: -13%;
358
+ }
359
+
360
+ .rank-AT {
361
+ background-color: rgb(110, 110, 110);
362
+ }
363
+
364
+ .rank-IN {
365
+ background-color: rgb(255, 0, 0);
366
+ }
367
+
368
+ .rank-HD {
369
+ background-color: #00b0f0;
370
+ }
371
+
372
+ .rank-EZ {
373
+ background-color: #92d050;
374
+ }
375
+
376
+ .org,
377
+ .rel {
378
+ width: auto;
379
+ text-align: center;
380
+ }
381
+
382
+ .org {
383
+ height: 39%;
384
+ margin-left: 5%;
385
+ margin-top: 0%;
386
+ }
387
+
388
+ .org p {
389
+ font-size: 12px;
390
+ }
391
+
392
+ .rel {
393
+ height: 49%;
394
+ margin-right: 10%;
395
+ }
396
+
397
+ .rel p {
398
+ font-size: 13px;
399
+ }
400
+
401
+ .info-AT,
402
+ .info-IN,
403
+ .info-HD,
404
+ .info-EZ {
405
+ margin-left: -9.1%;
406
+ padding-left: 7%;
407
+ border-right: 3px solid;
408
+ width: 49%;
409
+ height: 90%;
410
+ filter: drop-shadow(2px 4px 10px #00000055);
411
+ backdrop-filter: blur(5px);
412
+ position: absolute;
413
+ right: 4%;
414
+ top: 5%;
415
+ }
416
+
417
+ .info-AT {
418
+ background-color: rgba(240, 0, 0, 0.3);
419
+ border-color: rgb(255, 0, 0);
420
+ }
421
+
422
+ .info-IN,
423
+ .info-HD,
424
+ .info-EZ {
425
+ background-color: rgba(0, 183, 240, 0.3);
426
+ border-color: rgb(0, 183, 240);
427
+ }
428
+
429
+ .songname {
430
+ width: 95%;
431
+ height: 25%;
432
+ margin-left: 5%;
433
+ display: flex;
434
+ justify-content: center;
435
+ align-items: center;
436
+ }
437
+
438
+ .songname p {
439
+ margin: 0;
440
+ text-align: center;
441
+ font-size: 15px;
442
+ }
443
+
444
+ .songinfo {
445
+ width: 100%;
446
+ height: 70%;
447
+ text-align: center;
448
+ position: relative;
449
+ }
450
+
451
+ .Rating {
452
+ width: 20%;
453
+ height: auto;
454
+ position: absolute;
455
+ top: 15%;
456
+ }
457
+
458
+ .Rating img {
459
+ width: 100%;
460
+ filter: drop-shadow(0px 0px 10px #ffffffbb);
461
+ display: block;
462
+ }
463
+
464
+ .chengji {
465
+ width: 80%;
466
+ height: 100%;
467
+ margin-left: 18%;
468
+ display: flex;
469
+ flex-direction: column;
470
+ align-items: center;
471
+ }
472
+
473
+ .score {
474
+ width: 100%;
475
+ height: auto;
476
+ }
477
+
478
+ .score p {
479
+ font-size: x-large;
480
+ }
481
+
482
+ .acc-box {
483
+ width: 100%;
484
+ height: 45%;
485
+ display: flex;
486
+ align-items: center;
487
+ justify-content: space-evenly;
488
+ }
489
+
490
+ .acc {
491
+ width: 50%;
492
+ display: inline-block;
493
+ }
494
+
495
+ .acc p {
496
+ font-size: unset;
497
+ }
498
+
499
+ .suggest {
500
+ width: 50%;
501
+ height: 60%;
502
+ border-radius: 30px;
503
+ overflow: unset;
504
+ display: flex;
505
+ --bkg-color: rgba(0, 0, 0, 0.5);
506
+ background: var(--bkg-color);
507
+ align-items: center;
508
+ filter: drop-shadow(0 0 2px rgba(128, 128, 128, 0.667));
509
+ justify-content: space-evenly;
510
+ }
511
+
512
+ .suggest-tip {
513
+ width: 5px;
514
+ height: 5px;
515
+ border-radius: 50%;
516
+ border: 2px solid #ffffff;
517
+ filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.6666));
518
+ margin: 3px;
519
+ }
520
+
521
+ .suggest p {
522
+ font-size: 12px;
523
+ font-weight: bold;
524
+ color: #ffffff;
525
+ /* text-shadow: 0 0 2px #000000ac; */
526
+ }
527
+
528
+ .suggest-kind-0 {
529
+ --bkg-color: hsla(0, 80%, 60%, 0.675);
530
+ }
531
+
532
+ .suggest-kind-1 {
533
+ --bkg-color: hsla(34, 80%, 60%, 0.675);
534
+ }
535
+
536
+ .suggest-kind-2 {
537
+ --bkg-color: hsla(136, 80%, 60%, 0.675);
538
+ }
539
+
540
+ .suggest-kind-3 {
541
+ --bkg-color: hsla(183, 80%, 60%, 0.675);
542
+ }
543
+
544
+ .suggest-kind-4 {
545
+ --bkg-color: hsla(276, 80%, 60%, 0.675);
546
+ }
547
+
548
+ .suggest-kind-5 {
549
+ --bkg-color: hsla(276, 80%, 60%, 0.675);
550
+ }
551
+
552
+ .chengji .line {
553
+ width: 95%;
554
+ margin: 0;
555
+ border-bottom: 2px solid;
556
+ border-color: white;
557
+ }
558
+
559
+ .accHigher {
560
+ --bkgColor: #9b84007a;
561
+ --lineColor: hsl(60, 100%, 70%);
562
+ }
563
+
564
+ .accLower {
565
+ --bkgColor: hsl(334.64deg 100% 21.47% / 67.5%);
566
+ --lineColor: hsl(351.09deg 100% 70%);
567
+ }
568
+
569
+ .accHyper {
570
+ --bkgColor: #00b0f04d;
571
+ --lineColor: #00b0f0;
572
+ }
573
+
574
+ .accFinished {
575
+ --bkgColor: #00f0444d;
576
+ --lineColor: #00f044;
577
+ }
578
+
579
+ .accAvg {
580
+ position: absolute;
581
+ top: -14px;
582
+ left: 28.5px;
583
+ --height: 17px;
584
+ padding: 0 8px;
585
+ white-space: nowrap;
586
+ background-color: var(--bkgColor);
587
+ display: flex;
588
+ justify-content: center;
589
+ align-items: center;
590
+ }
591
+
592
+ .accAvgLine {
593
+ position: absolute;
594
+ left: 0;
595
+ width: 8px;
596
+ background-color: var(--lineColor);
597
+ }
598
+
599
+ .accAvg p,
600
+ .cpToOld p {
601
+ font-size: 12px;
602
+ }
603
+
604
+ .accAvg svg,
605
+ .cpToOld svg {
606
+ height: 75%;
607
+ }
608
+
609
+ .accLower svg {
610
+ transform: rotate(180deg);
611
+ }
612
+
613
+ .accHyper svg {
614
+ transform: rotate(90deg);
615
+ }
616
+
617
+ .accAvg path,
618
+ .cpToOld path {
619
+ fill: var(--lineColor);
620
+ }
621
+
622
+ .cpToOld {
623
+ position: absolute;
624
+ top: -14px;
625
+ right: 4%;
626
+ /* width: 17px; */
627
+ --height: 19px;
628
+ padding: 0 8px;
629
+ white-space: nowrap;
630
+ background-color: var(--bkgColor);
631
+ display: flex;
632
+ justify-content: center;
633
+ align-items: center;
634
+ border-right: 3px solid var(--lineColor);
635
+ }
636
+
637
+ .Nosignal {
638
+ width: 330px;
639
+ height: 100px;
640
+ display: flex;
641
+ position: relative;
642
+ flex-direction: column;
643
+ align-items: flex-start;
644
+ justify-content: center;
645
+ background-color: rgba(112, 112, 112, 0.4);
646
+ margin-left: 3%;
647
+ margin-right: 2.5%;
648
+ }
649
+
650
+ .border_corner {
651
+ z-index: 2500;
652
+ position: absolute;
653
+ width: 10px;
654
+ height: 10px;
655
+ background: rgba(0, 0, 0, 0);
656
+ border: 3px solid #ffffff;
657
+ }
658
+
659
+ .border_corner_left_top {
660
+ top: 5px;
661
+ left: 5px;
662
+ border-right: none;
663
+ border-bottom: none;
664
+ border-top-left-radius: 4px;
665
+ }
666
+
667
+ .border_corner_right_top {
668
+ top: 5px;
669
+ right: 5px;
670
+ border-left: none;
671
+ border-bottom: none;
672
+ border-top-right-radius: 4px;
673
+ }
674
+
675
+ .border_corner_left_bottom {
676
+ bottom: 5px;
677
+ left: 5px;
678
+ border-right: none;
679
+ border-top: none;
680
+ border-bottom-left-radius: 4px;
681
+ }
682
+
683
+ .border_corner_right_bottom {
684
+ bottom: 5px;
685
+ right: 5px;
686
+ border-left: none;
687
+ border-top: none;
688
+ border-bottom-right-radius: 4px;
689
+ }
690
+
691
+ .Nosignal .border_corner,
692
+ .Nosignal .line,
693
+ .Nosignal .sqrt {
694
+ will-change: filter;
695
+ }
696
+
697
+ .Nosignal .timeout,
698
+ .Nosignal .client {
699
+ width: 90%;
700
+ margin-top: -1%;
701
+ margin-bottom: -1%;
702
+ z-index: 5;
703
+ }
704
+
705
+ .Nosignal .timeout p {
706
+ /* text-shadow:
707
+ 0 0 1px #d8f9ffab,
708
+ 1px 0 2px #d8f9ffab,
709
+ -1px 0 2px #d8f9ffab,
710
+ 1px 0 5px #d8f9ffab,
711
+ -1px 0 10px #d8f9ffab; */
712
+ margin-left: 5%;
713
+ font-size: x-large;
714
+ color: white;
715
+ }
716
+
717
+ .Nosignal .client p {
718
+ /* text-shadow: 0 0 1px #8eeeff88, 1px 0 2px #8eeeff88, -1px 0 5px #8eeeff88; */
719
+ margin-left: 5%;
720
+ font-size: x-small;
721
+ color: #00b0f0;
722
+ }
723
+
724
+ .Nosignal .line {
725
+ width: 20%;
726
+ margin: 0;
727
+ border-bottom: 5px solid;
728
+ border-color: white;
729
+ margin-left: 5%;
730
+ }
731
+
732
+ .Nosignal .sqrt {
733
+ width: 89%;
734
+ height: 20%;
735
+ border: 3px solid;
736
+ border-color: white;
737
+ margin-left: 5%;
738
+ margin-top: 2%;
739
+ z-index: 1;
740
+ display: flex;
741
+ justify-content: center;
742
+ align-items: center;
743
+ background: repeating-linear-gradient(
744
+ -45deg,
745
+ #ffffff,
746
+ #ffffff 5px,
747
+ rgb(255 255 255 / 0%) 0,
748
+ rgb(255 255 255 / 0%) 10px
749
+ );
750
+ /* filter: drop-shadow(0px 0px 3px #ffffff); */
751
+ }
752
+
753
+ .Nosignal .sqrt p {
754
+ color: white;
755
+ font-size: 40px;
756
+ filter: blur(3px);
757
+ }
758
+
759
+ .over_flow {
760
+ width: 100%;
761
+ height: 30px;
762
+ display: flex;
763
+ align-items: center;
764
+ justify-content: space-evenly;
765
+ }
766
+
767
+ .flow_line_box_l,
768
+ .flow_line_box_r {
769
+ display: flex;
770
+ width: 38%;
771
+ justify-content: center;
772
+ }
773
+
774
+ .flow_line {
775
+ background-color: #ffffff;
776
+ height: 15px;
777
+ --rpoz: 5.5px;
778
+ clip-path: polygon(100% 0%, calc(100% - var(--rpoz)) 100%, 0% 100%, var(--rpoz) 0%);
779
+ /* border-radius: 5px; */
780
+ overflow: hidden;
781
+ }
782
+
783
+ .flow_line_box_l .flow_line:nth-child(1),
784
+ .flow_line_box_r .flow_line:nth-child(6) {
785
+ width: 50%;
786
+ }
787
+
788
+ .flow_line_box_l .flow_line:nth-child(2),
789
+ .flow_line_box_r .flow_line:nth-child(5) {
790
+ width: 25%;
791
+ }
792
+
793
+ .flow_line_box_l .flow_line:nth-child(3),
794
+ .flow_line_box_r .flow_line:nth-child(4) {
795
+ width: 12.5%;
796
+ }
797
+
798
+ .flow_line_box_l .flow_line:nth-child(4),
799
+ .flow_line_box_r .flow_line:nth-child(3) {
800
+ width: 6.25%;
801
+ }
802
+
803
+ .flow_line_box_l .flow_line:nth-child(5),
804
+ .flow_line_box_r .flow_line:nth-child(2) {
805
+ width: 3.125%;
806
+ }
807
+
808
+ .flow_line_box_l .flow_line:nth-child(6),
809
+ .flow_line_box_r .flow_line:nth-child(1) {
810
+ width: 1.5625%;
811
+ }
812
+
813
+ .over_flow p {
814
+ font-size: 25px;
815
+ font-family: "Aldrich", "PHI";
816
+ }
817
+
818
+ .createdbox {
819
+ width: 100%;
820
+ display: flex;
821
+ flex-direction: row;
822
+ align-items: flex-start;
823
+ margin-top: 5%;
824
+ margin-bottom: 5%;
825
+ writing-mode: horizontal-tb;
826
+ justify-content: center;
827
+ }
828
+
829
+ .createdbox p {
830
+ color: white;
831
+ font-size: 70px;
832
+ font-family: "Aldrich", "PHI";
833
+ }
834
+
835
+ .phi-plugin {
836
+ display: flex;
837
+ z-index: 1;
838
+ justify-content: center;
839
+ align-items: center;
840
+ }
841
+
842
+ .ver {
843
+ display: flex;
844
+ z-index: 1;
845
+ }
846
+
847
+ .phi-plugin p {
848
+ font-size: xx-large;
849
+ text-shadow: 0 0 20px rgb(0 186 255);
850
+ }
851
+
852
+ .ver p {
853
+ font-size: large;
854
+ text-shadow: 0 0 20px #fff700;
855
+ }
856
+
857
+ /* Over-the-top retro webgame ad style overrides */
858
+ :root {
859
+ --ad-gold-1: #fff6a3;
860
+ --ad-gold-2: #ffd24d;
861
+ --ad-gold-3: #ff9d00;
862
+ --ad-red-1: #ff2a00;
863
+ --ad-red-2: #a10000;
864
+ --ad-cyan: #00eaff;
865
+ }
866
+
867
+ body {
868
+ position: relative;
869
+ overflow: hidden;
870
+ background:
871
+ radial-gradient(circle at 20% 10%, rgb(255 220 92 / 55%) 0%, rgb(255 220 92 / 0%) 40%),
872
+ radial-gradient(circle at 85% 25%, rgb(255 70 0 / 45%) 0%, rgb(255 70 0 / 0%) 40%),
873
+ radial-gradient(circle at 50% 88%, rgb(255 255 255 / 20%) 0%, rgb(255 255 255 / 0%) 45%),
874
+ linear-gradient(130deg, #2a0000 0%, #5b0900 30%, #2a0000 60%, #000000 100%);
875
+ }
876
+
877
+ body::before,
878
+ body::after {
879
+ /* content: ""; */
880
+ position: absolute;
881
+ inset: 0;
882
+ pointer-events: none;
883
+ z-index: 1;
884
+ }
885
+
886
+ body::before {
887
+ /* background:
888
+ repeating-linear-gradient(
889
+ -27deg,
890
+ rgb(255 236 120 / 0%) 0 10px,
891
+ rgb(255 236 120 / 26%) 10px 16px,
892
+ rgb(255 236 120 / 0%) 16px 30px
893
+ ),
894
+ radial-gradient(circle at 10% 15%, rgb(255 255 255 / 45%) 0 2px, rgb(255 255 255 / 0%) 7px),
895
+ radial-gradient(circle at 80% 22%, rgb(255 255 255 / 45%) 0 2px, rgb(255 255 255 / 0%) 7px),
896
+ radial-gradient(circle at 32% 76%, rgb(255 255 255 / 45%) 0 2px, rgb(255 255 255 / 0%) 7px),
897
+ radial-gradient(circle at 66% 64%, rgb(255 255 255 / 45%) 0 2px, rgb(255 255 255 / 0%) 7px); */
898
+ mix-blend-mode: screen;
899
+ opacity: 0.9;
900
+ }
901
+
902
+ body::after {
903
+ background:
904
+ linear-gradient(
905
+ 105deg,
906
+ rgb(255 255 255 / 0%) 22%,
907
+ rgb(255 255 255 / 22%) 28%,
908
+ rgb(255 255 255 / 0%) 35%
909
+ ),
910
+ linear-gradient(
911
+ 285deg,
912
+ rgb(255 200 74 / 0%) 62%,
913
+ rgb(255 200 74 / 28%) 69%,
914
+ rgb(255 200 74 / 0%) 75%
915
+ );
916
+ }
917
+
918
+ body p {
919
+ color: #ffe7a6;
920
+ -webkit-text-stroke: 0.1px #a1720091;
921
+ text-shadow:
922
+ 0 0.3px 0 #fff7d8,
923
+ 0 0.6px 0 #ffdc78,
924
+ 0 0.9px 0 #f9b13f,
925
+ 0 1.2px 0 #d7820f,
926
+ 0 1.5px 0 #a65100,
927
+ 0 1.8px 0 #6f2b00,
928
+ 0 0 9px rgb(255 224 132 / 88%),
929
+ 0 0 18px rgb(255 158 28 / 74%),
930
+ 0 0 30px rgb(255 77 0 / 58%);
931
+ letter-spacing: 0px;
932
+ }
933
+
934
+ .background img {
935
+ filter: none;
936
+ }
937
+
938
+ .title,
939
+ .b19,
940
+ .createdbox {
941
+ position: relative;
942
+ z-index: 3;
943
+ }
944
+
945
+ .title::before,
946
+ .b19::before,
947
+ .createdbox::before {
948
+ /* content: ""; */
949
+ position: absolute;
950
+ inset: 0;
951
+ pointer-events: none;
952
+ z-index: 0;
953
+ /* background:
954
+ repeating-linear-gradient(
955
+ 90deg,
956
+ rgb(255 255 255 / 0%) 0 21px,
957
+ rgb(255 255 255 / 10%) 21px 23px,
958
+ rgb(255 255 255 / 0%) 23px 40px
959
+ ); */
960
+ mix-blend-mode: screen;
961
+ opacity: 0.45;
962
+ }
963
+
964
+ .blackBlock,
965
+ .recordInfo,
966
+ .dataBox,
967
+ .spInfo,
968
+ .Nosignal,
969
+ .song,
970
+ .accAvg,
971
+ .cpToOld,
972
+ .over_flow {
973
+ /* box-shadow:
974
+ 0 0 0 1px rgb(255 232 117 / 75%),
975
+ 0 0 12px rgb(255 200 0 / 55%),
976
+ 0 0 26px rgb(255 89 0 / 40%),
977
+ inset 0 0 22px rgb(255 255 255 / 10%); */
978
+ }
979
+
980
+ .blackBlock {
981
+ background: linear-gradient(
982
+ 90deg,
983
+ rgb(60 0 0 / 78%) 0%,
984
+ rgb(120 15 0 / 68%) 45%,
985
+ rgb(60 0 0 / 78%) 100%
986
+ );
987
+ }
988
+
989
+ .avatar {
990
+ box-shadow:
991
+ 0 0 0 2px rgb(255 214 102 / 88%),
992
+ 0 0 15px rgb(255 154 0 / 80%),
993
+ 0 0 28px rgb(255 61 0 / 55%);
994
+ }
995
+
996
+ .avatar img {
997
+ filter: saturate(1.45) contrast(1.2) drop-shadow(0 0 12px rgb(255 216 124 / 80%));
998
+ }
999
+
1000
+ .playerId p,
1001
+ .rks p,
1002
+ .date p,
1003
+ .dataBox p,
1004
+ .clgBox p,
1005
+ .spInfo p,
1006
+ .createdbox p {
1007
+ font-weight: 900;
1008
+ }
1009
+
1010
+ .rks,
1011
+ .num,
1012
+ .dataBox,
1013
+ .spInfo,
1014
+ .recordInfo,
1015
+ .whiteLine,
1016
+ .flow_line,
1017
+ .accAvgLine {
1018
+ background-image: linear-gradient(
1019
+ 180deg,
1020
+ var(--ad-gold-1) 0%,
1021
+ var(--ad-gold-2) 46%,
1022
+ var(--ad-gold-3) 52%,
1023
+ #ff6f00 100%
1024
+ );
1025
+ }
1026
+
1027
+ .rks p,
1028
+ .num p,
1029
+ .spInfo p {
1030
+ color: #1b0000;
1031
+ /* text-shadow:
1032
+ 0 0 1px rgb(255 255 255 / 90%),
1033
+ 0 0 4px rgb(255 243 181 / 90%); */
1034
+ }
1035
+
1036
+ .recordInfo {
1037
+ background: linear-gradient(135deg, rgb(20 0 0 / 72%) 0%, rgb(70 0 0 / 65%) 100%);
1038
+ }
1039
+
1040
+ .sheet .poz p {
1041
+ text-shadow:
1042
+ 0 0 1px #fff,
1043
+ 0 0 7px rgb(255 200 90 / 80%),
1044
+ 0 0 14px rgb(255 90 0 / 70%);
1045
+ }
1046
+
1047
+ .Nosignal {
1048
+ background: linear-gradient(125deg, rgb(127 9 0 / 68%) 0%, rgb(62 0 0 / 75%) 100%);
1049
+ }
1050
+
1051
+ .Nosignal .line,
1052
+ .Nosignal .sqrt,
1053
+ .border_corner {
1054
+ filter: drop-shadow(0 0 10px rgb(255 235 130 / 75%)) drop-shadow(0 0 20px rgb(255 88 0 / 42%));
1055
+ }
1056
+
1057
+ .song {
1058
+ overflow: visible;
1059
+ isolation: isolate;
1060
+ }
1061
+
1062
+ .song::before,
1063
+ .song::after {
1064
+ /* content: ""; */
1065
+ position: absolute;
1066
+ pointer-events: none;
1067
+ z-index: -1;
1068
+ }
1069
+
1070
+ .song::before {
1071
+ inset: -7px -4px;
1072
+ background: linear-gradient(
1073
+ 130deg,
1074
+ rgb(255 231 120 / 26%) 0%,
1075
+ rgb(255 80 0 / 8%) 50%,
1076
+ rgb(255 231 120 / 26%) 100%
1077
+ );
1078
+ border: 1px solid rgb(255 218 105 / 45%);
1079
+ filter: drop-shadow(0 0 8px rgb(255 183 0 / 70%));
1080
+ }
1081
+
1082
+ .song::after {
1083
+ top: -12px;
1084
+ right: 8px;
1085
+ width: 55px;
1086
+ height: 55px;
1087
+ background: radial-gradient(
1088
+ circle,
1089
+ rgb(255 255 255 / 85%) 0 14%,
1090
+ rgb(255 227 132 / 65%) 18%,
1091
+ rgb(255 227 132 / 0%) 58%
1092
+ );
1093
+ mix-blend-mode: screen;
1094
+ }
1095
+
1096
+ .song {
1097
+ filter: drop-shadow(0 0 3px rgb(255 255 255 / 75%)) drop-shadow(0 0 10px rgb(255 187 0 / 88%))
1098
+ drop-shadow(0 0 22px rgb(255 78 0 / 48%));
1099
+ }
1100
+
1101
+ .ill img {
1102
+ filter: contrast(1.2) saturate(1.5) brightness(1.02);
1103
+ }
1104
+
1105
+ .rank-AT,
1106
+ .rank-IN,
1107
+ .rank-HD,
1108
+ .rank-EZ {
1109
+ box-shadow:
1110
+ 0 0 0 1px rgb(255 240 165 / 70%),
1111
+ 0 0 12px rgb(255 149 0 / 70%);
1112
+ }
1113
+
1114
+ .info-AT,
1115
+ .info-IN,
1116
+ .info-HD,
1117
+ .info-EZ {
1118
+ border-right-width: 4px;
1119
+ }
1120
+
1121
+ .songname p {
1122
+ font-weight: 900;
1123
+ text-shadow:
1124
+ 0 0 1px #ffffff,
1125
+ 0 0 6px rgb(255 255 255 / 80%),
1126
+ 0 0 12px rgb(255 172 72 / 88%),
1127
+ 0 0 22px rgb(255 66 0 / 65%);
1128
+ }
1129
+
1130
+ .Rating img {
1131
+ filter: drop-shadow(0 0 8px rgb(255 238 164 / 85%)) drop-shadow(0 0 18px rgb(255 103 0 / 65%));
1132
+ }
1133
+
1134
+ .score p {
1135
+ font-weight: 900;
1136
+ text-shadow:
1137
+ 0 0 2px #fff,
1138
+ 0 0 7px #fff,
1139
+ 0 0 14px #ffd66a,
1140
+ 0 0 24px #ff6e00,
1141
+ 0 0 35px #ff3500;
1142
+ }
1143
+
1144
+ .chengji .line {
1145
+ border-bottom-color: rgb(255 238 162);
1146
+ box-shadow: 0 0 8px rgb(255 188 58 / 82%);
1147
+ }
1148
+
1149
+ .suggest {
1150
+ border: 1px solid rgb(255 224 125 / 65%);
1151
+ box-shadow:
1152
+ 0 0 8px rgb(255 181 62 / 72%),
1153
+ inset 0 0 10px rgb(255 255 255 / 20%);
1154
+ }
1155
+
1156
+ .suggest-tip {
1157
+ box-shadow:
1158
+ 0 0 6px rgb(255 255 255 / 80%),
1159
+ 0 0 10px rgb(255 157 0 / 82%);
1160
+ }
1161
+
1162
+ .accAvg,
1163
+ .cpToOld {
1164
+ border-top: 1px solid rgb(255 235 150 / 75%);
1165
+ border-bottom: 1px solid rgb(255 170 45 / 72%);
1166
+ }
1167
+
1168
+ .accAvg p,
1169
+ .cpToOld p {
1170
+ font-weight: 800;
1171
+ }
1172
+
1173
+ .accAvg svg,
1174
+ .cpToOld svg {
1175
+ filter: drop-shadow(0 0 5px rgb(255 255 255 / 85%));
1176
+ }
1177
+
1178
+ .accAvg path,
1179
+ .cpToOld path {
1180
+ filter: drop-shadow(0 0 5px rgb(255 190 55 / 78%));
1181
+ }
1182
+
1183
+ .over_flow {
1184
+ /* background:
1185
+ linear-gradient(90deg, rgb(72 0 0 / 22%) 0%, rgb(255 186 56 / 28%) 50%, rgb(72 0 0 / 22%) 100%); */
1186
+ }
1187
+
1188
+ .over_flow p {
1189
+ font-weight: 900;
1190
+ text-shadow:
1191
+ 0 0 4px #fff,
1192
+ 0 0 12px #ffd866,
1193
+ 0 0 18px #ff7b00;
1194
+ }
1195
+
1196
+ .flow_line {
1197
+ box-shadow:
1198
+ 0 0 4px rgb(255 255 255 / 70%),
1199
+ 0 0 8px rgb(255 198 87 / 78%),
1200
+ 0 0 14px rgb(255 82 0 / 55%);
1201
+ }
1202
+
1203
+ /* Static-only mode: disable all dynamic effects */
1204
+ *,
1205
+ *::before,
1206
+ *::after {
1207
+ animation: none !important;
1208
+ transition: none !important;
1209
+ }
1210
+
1211
+ /* Heavier luxury 3D text treatment */
1212
+ .playerId p,
1213
+ .rks p,
1214
+ .clgBox p,
1215
+ .date p,
1216
+ .dataBox p,
1217
+ .spInfo p,
1218
+ .sheet .poz p,
1219
+ .songname p,
1220
+ .score p,
1221
+ .acc p,
1222
+ .suggest p,
1223
+ .accAvg p,
1224
+ .cpToOld p,
1225
+ .over_flow p,
1226
+ .phi-plugin p,
1227
+ .ver p {
1228
+ background: linear-gradient(
1229
+ 180deg,
1230
+ #fffdf2 0%,
1231
+ #ffe89a 26%,
1232
+ #ffc63e 52%,
1233
+ #ff9f00 63%,
1234
+ #ff7a00 100%
1235
+ );
1236
+ -webkit-background-clip: text;
1237
+ background-clip: text;
1238
+ color: transparent;
1239
+ -webkit-text-fill-color: transparent;
1240
+ -webkit-text-stroke: 0.1px #5a2500;
1241
+ }
1242
+
1243
+ .createdbox {
1244
+ position: relative;
1245
+ }
1246
+
1247
+ .createdbox::after {
1248
+ /* content: ""; */
1249
+ position: absolute;
1250
+ inset: -12px 15%;
1251
+ pointer-events: none;
1252
+ background: radial-gradient(
1253
+ circle at 50% 52%,
1254
+ rgb(255 224 106 / 27%) 0%,
1255
+ rgb(255 224 106 / 0%) 65%
1256
+ );
1257
+ mix-blend-mode: screen;
1258
+ }
1259
+
1260
+ .phi-plugin p,
1261
+ .ver p {
1262
+ text-shadow:
1263
+ 0 0 3px #ffffff,
1264
+ 0 0 12px #ffe57b,
1265
+ 0 0 24px #ff9d00,
1266
+ 0 0 40px #ff3d00;
1267
+ }
1268
+
1269
+ @keyframes adBodyFlash {
1270
+ 0%,
1271
+ 100% {
1272
+ filter: saturate(1.1) contrast(1.02);
1273
+ }
1274
+ 50% {
1275
+ filter: saturate(1.34) contrast(1.15);
1276
+ }
1277
+ }
1278
+
1279
+ @keyframes adBackgroundPulse {
1280
+ 0%,
1281
+ 100% {
1282
+ transform: scale(1);
1283
+ }
1284
+ 50% {
1285
+ transform: scale(1.02);
1286
+ }
1287
+ }
1288
+
1289
+ @keyframes adScan {
1290
+ 0% {
1291
+ background-position:
1292
+ 0 0,
1293
+ 0 0,
1294
+ 0 0,
1295
+ 0 0,
1296
+ 0 0;
1297
+ }
1298
+ 100% {
1299
+ background-position:
1300
+ 120px 60px,
1301
+ 24px 10px,
1302
+ -18px 30px,
1303
+ 16px -24px,
1304
+ -25px 15px;
1305
+ }
1306
+ }
1307
+
1308
+ @keyframes adSweep {
1309
+ 0% {
1310
+ transform: translateX(-8%);
1311
+ opacity: 0.5;
1312
+ }
1313
+ 50% {
1314
+ opacity: 0.95;
1315
+ }
1316
+ 100% {
1317
+ transform: translateX(8%);
1318
+ opacity: 0.5;
1319
+ }
1320
+ }
1321
+
1322
+ @keyframes adPanelShake {
1323
+ 0%,
1324
+ 100% {
1325
+ transform: translate(0, 0);
1326
+ }
1327
+ 50% {
1328
+ transform: translate(0.5px, -0.5px);
1329
+ }
1330
+ }
1331
+
1332
+ @keyframes adSongPulse {
1333
+ 0%,
1334
+ 100% {
1335
+ transform: scale(1);
1336
+ }
1337
+ 50% {
1338
+ transform: scale(1.01);
1339
+ }
1340
+ }
1341
+
1342
+ @keyframes adSparkle {
1343
+ 0%,
1344
+ 100% {
1345
+ transform: scale(0.8);
1346
+ opacity: 0.3;
1347
+ }
1348
+ 50% {
1349
+ transform: scale(1.15);
1350
+ opacity: 1;
1351
+ }
1352
+ }
1353
+
1354
+ @keyframes adInfoBreath {
1355
+ 0%,
1356
+ 100% {
1357
+ box-shadow:
1358
+ 0 0 0 1px rgb(255 242 184 / 45%),
1359
+ inset 0 0 10px rgb(255 255 255 / 8%);
1360
+ }
1361
+ 50% {
1362
+ box-shadow:
1363
+ 0 0 8px rgb(255 209 95 / 72%),
1364
+ 0 0 18px rgb(255 88 0 / 36%),
1365
+ inset 0 0 12px rgb(255 255 255 / 16%);
1366
+ }
1367
+ }
1368
+
1369
+ @keyframes adBadgeFlash {
1370
+ 0%,
1371
+ 100% {
1372
+ transform: scale(1);
1373
+ opacity: 0.9;
1374
+ }
1375
+ 50% {
1376
+ transform: scale(1.08);
1377
+ opacity: 1;
1378
+ }
1379
+ }
1380
+
1381
+ @keyframes adSuggestBlink {
1382
+ 0%,
1383
+ 100% {
1384
+ opacity: 0.95;
1385
+ }
1386
+ 50% {
1387
+ opacity: 1;
1388
+ }
1389
+ }
1390
+
1391
+ @keyframes adTagGlow {
1392
+ 0%,
1393
+ 100% {
1394
+ filter: brightness(1);
1395
+ }
1396
+ 50% {
1397
+ filter: brightness(1.25);
1398
+ }
1399
+ }
1400
+
1401
+ @keyframes adFlowBlink {
1402
+ 0%,
1403
+ 100% {
1404
+ opacity: 0.85;
1405
+ }
1406
+ 50% {
1407
+ opacity: 1;
1408
+ }
1409
+ }