├── .gitignore ├── LICENSE ├── README.md ├── config.example.json ├── static ├── components │ ├── aboutpage │ │ ├── aboutpage.css │ │ └── aboutpage.js │ ├── cachemanage │ │ ├── cachemanage.css │ │ ├── cachemanage.js │ │ └── cacheutils.js │ ├── calibrate │ │ ├── calibrate.css │ │ └── calibrate.js │ ├── changelogs │ │ ├── changelogs.css │ │ ├── changelogs.js │ │ └── releaseNotes.js │ ├── chartdetails │ │ ├── chartdetails.css │ │ └── chartdetails.js │ ├── chartselect │ │ ├── chartselect.css │ │ └── chartselect.js │ ├── login │ │ ├── login.css │ │ └── login.js │ ├── multiplayer │ │ ├── multiplayer.css │ │ └── multiplayer.js │ ├── playerB20 │ │ ├── playerB20.css │ │ └── playerB20.js │ ├── playing │ │ └── playing.js │ ├── pzRankSingle │ │ └── pzRankSingle.js │ ├── recordMgr │ │ ├── recordMgr.js │ │ └── replayMgr.js │ ├── replayPage │ │ └── replayPage.js │ ├── startpage │ │ ├── startpage.css │ │ └── startpage.js │ ├── tips │ │ └── tips.js │ ├── userChartEdit │ │ ├── userChartEdit.css │ │ └── userChartEdit.js │ └── userChartUpload │ │ └── userChartUpload.js ├── global.js ├── manifest.json ├── src │ ├── core │ │ ├── calibrate.mp3 │ │ ├── favicon.ico │ │ ├── fonts │ │ │ ├── Exo-Regular.otf │ │ │ ├── Source Han Sans & Saira Hybrid-Regular.ttf │ │ │ ├── cairo-regular.ttf │ │ │ ├── cairo-regular.woff │ │ │ ├── cairo-regular.woff2 │ │ │ ├── noto-sans-sc-regular.ttf │ │ │ ├── noto-sans-sc-regular.woff │ │ │ └── noto-sans-sc-regular.woff2 │ │ ├── icons │ │ │ ├── return.svg │ │ │ └── settings.svg │ │ └── lg512y512.png │ └── respack │ │ ├── together-pack-1 │ │ ├── Drag.png │ │ ├── DragHL.png │ │ ├── FCV.png │ │ ├── Flick.png │ │ ├── FlickHL.png │ │ ├── HitSong0.ogg │ │ ├── HitSong1.ogg │ │ ├── HitSong2.ogg │ │ ├── Hold.png │ │ ├── HoldEnd.png │ │ ├── HoldHL.png │ │ ├── HoldHead.png │ │ ├── HoldHeadHL.png │ │ ├── JudgeLine.png │ │ ├── LevelOver0.ogg │ │ ├── PauseNew.png │ │ ├── ProgressBar.png │ │ ├── Rank.png │ │ ├── Tap.png │ │ ├── TapHL.png │ │ └── clickRaw.png │ │ └── together-pack-2 │ │ ├── Drag.png │ │ ├── DragHL.png │ │ ├── FCV.png │ │ ├── Flick.png │ │ ├── FlickHL.png │ │ ├── HitSong0.ogg │ │ ├── HitSong1.ogg │ │ ├── HitSong2.ogg │ │ ├── Hold.png │ │ ├── HoldEnd.png │ │ ├── HoldHL.png │ │ ├── HoldHead.png │ │ ├── HoldHeadHL.png │ │ ├── JudgeLine.png │ │ ├── LevelOver0.ogg │ │ ├── PauseNew.png │ │ ├── ProgressBar.png │ │ ├── Rank.png │ │ ├── Tap.png │ │ ├── TapHL.png │ │ └── clickRaw.png ├── style.css ├── sw.v2.js └── utils │ ├── js │ ├── FileSaver.min.js │ ├── aup.js │ ├── common.js │ ├── createImageBitmap.js │ ├── filter.js │ ├── interact.js │ ├── jszip.js │ ├── md5-js.js │ ├── notiflix-aio-3.2.6.min.js │ ├── oggmented-bundle.js │ ├── pec2json.js │ ├── phizoneApi.js │ ├── playerMain.js │ ├── reader.js │ ├── shared.js │ ├── simphi.js │ ├── stackblur-canvas.js │ ├── utils.js │ ├── vue-router.js │ ├── vue.js │ ├── wasm_exec.js │ └── zip.js │ └── wasm │ └── pzEncrypted.wasm └── templates └── mainplay.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/README.md -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/config.example.json -------------------------------------------------------------------------------- /static/components/aboutpage/aboutpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/aboutpage/aboutpage.css -------------------------------------------------------------------------------- /static/components/aboutpage/aboutpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/aboutpage/aboutpage.js -------------------------------------------------------------------------------- /static/components/cachemanage/cachemanage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/cachemanage/cachemanage.css -------------------------------------------------------------------------------- /static/components/cachemanage/cachemanage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/cachemanage/cachemanage.js -------------------------------------------------------------------------------- /static/components/cachemanage/cacheutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/cachemanage/cacheutils.js -------------------------------------------------------------------------------- /static/components/calibrate/calibrate.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/calibrate/calibrate.css -------------------------------------------------------------------------------- /static/components/calibrate/calibrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/calibrate/calibrate.js -------------------------------------------------------------------------------- /static/components/changelogs/changelogs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/changelogs/changelogs.css -------------------------------------------------------------------------------- /static/components/changelogs/changelogs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/changelogs/changelogs.js -------------------------------------------------------------------------------- /static/components/changelogs/releaseNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/changelogs/releaseNotes.js -------------------------------------------------------------------------------- /static/components/chartdetails/chartdetails.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/chartdetails/chartdetails.css -------------------------------------------------------------------------------- /static/components/chartdetails/chartdetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/chartdetails/chartdetails.js -------------------------------------------------------------------------------- /static/components/chartselect/chartselect.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/chartselect/chartselect.css -------------------------------------------------------------------------------- /static/components/chartselect/chartselect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/chartselect/chartselect.js -------------------------------------------------------------------------------- /static/components/login/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/login/login.css -------------------------------------------------------------------------------- /static/components/login/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/login/login.js -------------------------------------------------------------------------------- /static/components/multiplayer/multiplayer.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/multiplayer/multiplayer.css -------------------------------------------------------------------------------- /static/components/multiplayer/multiplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/multiplayer/multiplayer.js -------------------------------------------------------------------------------- /static/components/playerB20/playerB20.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/playerB20/playerB20.css -------------------------------------------------------------------------------- /static/components/playerB20/playerB20.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/playerB20/playerB20.js -------------------------------------------------------------------------------- /static/components/playing/playing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/playing/playing.js -------------------------------------------------------------------------------- /static/components/pzRankSingle/pzRankSingle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/pzRankSingle/pzRankSingle.js -------------------------------------------------------------------------------- /static/components/recordMgr/recordMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/recordMgr/recordMgr.js -------------------------------------------------------------------------------- /static/components/recordMgr/replayMgr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/recordMgr/replayMgr.js -------------------------------------------------------------------------------- /static/components/replayPage/replayPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/replayPage/replayPage.js -------------------------------------------------------------------------------- /static/components/startpage/startpage.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/startpage/startpage.css -------------------------------------------------------------------------------- /static/components/startpage/startpage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/startpage/startpage.js -------------------------------------------------------------------------------- /static/components/tips/tips.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/tips/tips.js -------------------------------------------------------------------------------- /static/components/userChartEdit/userChartEdit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/userChartEdit/userChartEdit.css -------------------------------------------------------------------------------- /static/components/userChartEdit/userChartEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/userChartEdit/userChartEdit.js -------------------------------------------------------------------------------- /static/components/userChartUpload/userChartUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/components/userChartUpload/userChartUpload.js -------------------------------------------------------------------------------- /static/global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/global.js -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/src/core/calibrate.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/calibrate.mp3 -------------------------------------------------------------------------------- /static/src/core/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/favicon.ico -------------------------------------------------------------------------------- /static/src/core/fonts/Exo-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/Exo-Regular.otf -------------------------------------------------------------------------------- /static/src/core/fonts/Source Han Sans & Saira Hybrid-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/Source Han Sans & Saira Hybrid-Regular.ttf -------------------------------------------------------------------------------- /static/src/core/fonts/cairo-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/cairo-regular.ttf -------------------------------------------------------------------------------- /static/src/core/fonts/cairo-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/cairo-regular.woff -------------------------------------------------------------------------------- /static/src/core/fonts/cairo-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/cairo-regular.woff2 -------------------------------------------------------------------------------- /static/src/core/fonts/noto-sans-sc-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/noto-sans-sc-regular.ttf -------------------------------------------------------------------------------- /static/src/core/fonts/noto-sans-sc-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/noto-sans-sc-regular.woff -------------------------------------------------------------------------------- /static/src/core/fonts/noto-sans-sc-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/fonts/noto-sans-sc-regular.woff2 -------------------------------------------------------------------------------- /static/src/core/icons/return.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/icons/return.svg -------------------------------------------------------------------------------- /static/src/core/icons/settings.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/icons/settings.svg -------------------------------------------------------------------------------- /static/src/core/lg512y512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/core/lg512y512.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/Drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/Drag.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/DragHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/DragHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/FCV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/FCV.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/Flick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/Flick.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/FlickHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/FlickHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HitSong0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HitSong0.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HitSong1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HitSong1.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HitSong2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HitSong2.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/Hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/Hold.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HoldEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HoldEnd.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HoldHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HoldHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HoldHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HoldHead.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/HoldHeadHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/HoldHeadHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/JudgeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/JudgeLine.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/LevelOver0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/LevelOver0.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/PauseNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/PauseNew.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/ProgressBar.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/Rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/Rank.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/Tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/Tap.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/TapHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/TapHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-1/clickRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-1/clickRaw.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/Drag.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/Drag.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/DragHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/DragHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/FCV.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/FCV.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/Flick.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/Flick.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/FlickHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/FlickHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HitSong0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HitSong0.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HitSong1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HitSong1.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HitSong2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HitSong2.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/Hold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/Hold.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HoldEnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HoldEnd.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HoldHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HoldHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HoldHead.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HoldHead.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/HoldHeadHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/HoldHeadHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/JudgeLine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/JudgeLine.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/LevelOver0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/LevelOver0.ogg -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/PauseNew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/PauseNew.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/ProgressBar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/ProgressBar.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/Rank.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/Rank.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/Tap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/Tap.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/TapHL.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/TapHL.png -------------------------------------------------------------------------------- /static/src/respack/together-pack-2/clickRaw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/src/respack/together-pack-2/clickRaw.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/style.css -------------------------------------------------------------------------------- /static/sw.v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/sw.v2.js -------------------------------------------------------------------------------- /static/utils/js/FileSaver.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/FileSaver.min.js -------------------------------------------------------------------------------- /static/utils/js/aup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/aup.js -------------------------------------------------------------------------------- /static/utils/js/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/common.js -------------------------------------------------------------------------------- /static/utils/js/createImageBitmap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/createImageBitmap.js -------------------------------------------------------------------------------- /static/utils/js/filter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/filter.js -------------------------------------------------------------------------------- /static/utils/js/interact.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/interact.js -------------------------------------------------------------------------------- /static/utils/js/jszip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/jszip.js -------------------------------------------------------------------------------- /static/utils/js/md5-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/md5-js.js -------------------------------------------------------------------------------- /static/utils/js/notiflix-aio-3.2.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/notiflix-aio-3.2.6.min.js -------------------------------------------------------------------------------- /static/utils/js/oggmented-bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/oggmented-bundle.js -------------------------------------------------------------------------------- /static/utils/js/pec2json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/pec2json.js -------------------------------------------------------------------------------- /static/utils/js/phizoneApi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/phizoneApi.js -------------------------------------------------------------------------------- /static/utils/js/playerMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/playerMain.js -------------------------------------------------------------------------------- /static/utils/js/reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/reader.js -------------------------------------------------------------------------------- /static/utils/js/shared.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/shared.js -------------------------------------------------------------------------------- /static/utils/js/simphi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/simphi.js -------------------------------------------------------------------------------- /static/utils/js/stackblur-canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/stackblur-canvas.js -------------------------------------------------------------------------------- /static/utils/js/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/utils.js -------------------------------------------------------------------------------- /static/utils/js/vue-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/vue-router.js -------------------------------------------------------------------------------- /static/utils/js/vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/vue.js -------------------------------------------------------------------------------- /static/utils/js/wasm_exec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/wasm_exec.js -------------------------------------------------------------------------------- /static/utils/js/zip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/js/zip.js -------------------------------------------------------------------------------- /static/utils/wasm/pzEncrypted.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/static/utils/wasm/pzEncrypted.wasm -------------------------------------------------------------------------------- /templates/mainplay.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Team-PhiTogether/PhiTogether-Legacy/HEAD/templates/mainplay.html --------------------------------------------------------------------------------