├── .gitattributes ├── .github └── workflows │ ├── build-release.yml │ └── docker-publish.yml ├── .gitignore ├── Dockerfile ├── bot └── index.js ├── config.example.json ├── core.js ├── data ├── .gitignore └── README.md ├── database ├── autodiscovery.js ├── config.js ├── groups.js ├── index.js ├── load.js ├── migrations.js ├── servers.js ├── setting.js ├── ssh_scripts.js └── traffic.js ├── docker-compose.yml ├── docker-permissions-guide.md ├── docker-update.sh ├── docs ├── TG通知功能说明.md ├── docker-auto-update.md ├── images │ ├── dark-mode.png │ └── mobile-view.png └── 月度流量功能说明.md ├── dstatus.sh ├── fix-docker-permissions.sh ├── getStat.js ├── install.sh ├── modules ├── admin │ └── index.js ├── autodiscovery │ └── index.js ├── groups │ └── index.js ├── notification │ └── index.js ├── restart │ └── index.js ├── servers │ ├── func.js │ └── index.js ├── setting │ └── index.js ├── ssh_scripts │ └── index.js └── stats │ ├── index.js │ ├── iplocation.js │ └── monthly-traffic.js ├── neko-status ├── .gitignore ├── Dockerfile.build ├── Dockerfile.build.new ├── Dockerfile.simple ├── README.md ├── build-ci.sh ├── build-m1.sh ├── build-simple.sh ├── build.sh ├── config.go ├── config.yaml ├── direct_api_data.json ├── docker-build-simple.sh ├── docker-build.sh ├── go.mod ├── go.mod.docker ├── iperf3.go ├── iperf3 │ └── iperf3.go ├── main.go ├── main_simple.go ├── mtr │ └── mtr.go ├── mtr_simple.go ├── node_data.json ├── package.sh ├── stat │ └── stat.go └── walled │ └── walled.go ├── nekonekostatus.js ├── nekonekostatus.service ├── package.json ├── postcss.config.js ├── public └── js │ └── ssh.js ├── readme.md ├── restart.sh ├── run.sh ├── scripts └── migrate.js ├── ssh.js ├── static ├── bgsvg │ ├── bg 1.svg │ ├── bg 2.svg │ ├── bg 3.svg │ ├── bg 4.svg │ └── bg.svg ├── css │ ├── components │ │ └── card.css │ ├── flags.css │ ├── material-icons.css │ ├── style.css │ ├── style.min.css │ └── tailwind.css ├── fonts │ └── MaterialIcons-Regular.woff2 ├── icons │ └── icon.svg ├── img │ ├── flags │ │ ├── AD.SVG │ │ ├── AE.SVG │ │ ├── AF.SVG │ │ ├── AG.SVG │ │ ├── AI.SVG │ │ ├── AL.SVG │ │ ├── AM.SVG │ │ ├── AO.SVG │ │ ├── AQ.SVG │ │ ├── AR.SVG │ │ ├── ARAB.SVG │ │ ├── AS.SVG │ │ ├── ASEAN.SVG │ │ ├── AT.SVG │ │ ├── AU.SVG │ │ ├── AW.SVG │ │ ├── AX.SVG │ │ ├── AZ.SVG │ │ ├── BA.SVG │ │ ├── BB.SVG │ │ ├── BD.SVG │ │ ├── BE.SVG │ │ ├── BF.SVG │ │ ├── BG.SVG │ │ ├── BH.SVG │ │ ├── BI.SVG │ │ ├── BJ.SVG │ │ ├── BL.SVG │ │ ├── BM.SVG │ │ ├── BN.SVG │ │ ├── BO.SVG │ │ ├── BQ.SVG │ │ ├── BR.SVG │ │ ├── BS.SVG │ │ ├── BT.SVG │ │ ├── BV.SVG │ │ ├── BW.SVG │ │ ├── BY.SVG │ │ ├── BZ.SVG │ │ ├── CA.SVG │ │ ├── CC.SVG │ │ ├── CD.SVG │ │ ├── CEFTA.SVG │ │ ├── CF.SVG │ │ ├── CG.SVG │ │ ├── CH.SVG │ │ ├── CI.SVG │ │ ├── CK.SVG │ │ ├── CL.SVG │ │ ├── CM.SVG │ │ ├── CN.SVG │ │ ├── CO.SVG │ │ ├── CP.SVG │ │ ├── CR.SVG │ │ ├── CU.SVG │ │ ├── CV.SVG │ │ ├── CW.SVG │ │ ├── CX.SVG │ │ ├── CY.SVG │ │ ├── CZ.SVG │ │ ├── DE.SVG │ │ ├── DG.SVG │ │ ├── DJ.SVG │ │ ├── DK.SVG │ │ ├── DM.SVG │ │ ├── DO.SVG │ │ ├── DZ.SVG │ │ ├── EAC.SVG │ │ ├── EC.SVG │ │ ├── EE.SVG │ │ ├── EG.SVG │ │ ├── EH.SVG │ │ ├── ER.SVG │ │ ├── ES-CT.SVG │ │ ├── ES-GA.SVG │ │ ├── ES-PV.SVG │ │ ├── ES.SVG │ │ ├── ET.SVG │ │ ├── EU.SVG │ │ ├── FI.SVG │ │ ├── FJ.SVG │ │ ├── FK.SVG │ │ ├── FM.SVG │ │ ├── FO.SVG │ │ ├── FR.SVG │ │ ├── GA.SVG │ │ ├── GB-ENG.SVG │ │ ├── GB-NIR.SVG │ │ ├── GB-SCT.SVG │ │ ├── GB-WLS.SVG │ │ ├── GB.SVG │ │ ├── GD.SVG │ │ ├── GE.SVG │ │ ├── GF.SVG │ │ ├── GG.SVG │ │ ├── GH.SVG │ │ ├── GI.SVG │ │ ├── GL.SVG │ │ ├── GM.SVG │ │ ├── GN.SVG │ │ ├── GP.SVG │ │ ├── GQ.SVG │ │ ├── GR.SVG │ │ ├── GS.SVG │ │ ├── GT.SVG │ │ ├── GU.SVG │ │ ├── GW.SVG │ │ ├── GY.SVG │ │ ├── HK.SVG │ │ ├── HM.SVG │ │ ├── HN.SVG │ │ ├── HR.SVG │ │ ├── HT.SVG │ │ ├── HU.SVG │ │ ├── IC.SVG │ │ ├── ID.SVG │ │ ├── IE.SVG │ │ ├── IL.SVG │ │ ├── IM.SVG │ │ ├── IN.SVG │ │ ├── IO.SVG │ │ ├── IQ.SVG │ │ ├── IR.SVG │ │ ├── IS.SVG │ │ ├── IT.SVG │ │ ├── JE.SVG │ │ ├── JM.SVG │ │ ├── JO.SVG │ │ ├── JP.SVG │ │ ├── KE.SVG │ │ ├── KG.SVG │ │ ├── KH.SVG │ │ ├── KI.SVG │ │ ├── KM.SVG │ │ ├── KN.SVG │ │ ├── KP.SVG │ │ ├── KR.SVG │ │ ├── KW.SVG │ │ ├── KY.SVG │ │ ├── KZ.SVG │ │ ├── LA.SVG │ │ ├── LB.SVG │ │ ├── LC.SVG │ │ ├── LI.SVG │ │ ├── LK.SVG │ │ ├── LR.SVG │ │ ├── LS.SVG │ │ ├── LT.SVG │ │ ├── LU.SVG │ │ ├── LV.SVG │ │ ├── LY.SVG │ │ ├── MA.SVG │ │ ├── MC.SVG │ │ ├── MD.SVG │ │ ├── ME.SVG │ │ ├── MF.SVG │ │ ├── MG.SVG │ │ ├── MH.SVG │ │ ├── MK.SVG │ │ ├── ML.SVG │ │ ├── MM.SVG │ │ ├── MN.SVG │ │ ├── MO.SVG │ │ ├── MP.SVG │ │ ├── MQ.SVG │ │ ├── MR.SVG │ │ ├── MS.SVG │ │ ├── MT.SVG │ │ ├── MU.SVG │ │ ├── MV.SVG │ │ ├── MW.SVG │ │ ├── MX.SVG │ │ ├── MY.SVG │ │ ├── MZ.SVG │ │ ├── NA.SVG │ │ ├── NC.SVG │ │ ├── NE.SVG │ │ ├── NF.SVG │ │ ├── NG.SVG │ │ ├── NI.SVG │ │ ├── NL.SVG │ │ ├── NO.SVG │ │ ├── NP.SVG │ │ ├── NR.SVG │ │ ├── NU.SVG │ │ ├── NZ.SVG │ │ ├── OM.SVG │ │ ├── PA.SVG │ │ ├── PC.SVG │ │ ├── PE.SVG │ │ ├── PF.SVG │ │ ├── PG.SVG │ │ ├── PH.SVG │ │ ├── PK.SVG │ │ ├── PL.SVG │ │ ├── PM.SVG │ │ ├── PN.SVG │ │ ├── PR.SVG │ │ ├── PS.SVG │ │ ├── PT.SVG │ │ ├── PW.SVG │ │ ├── PY.SVG │ │ ├── QA.SVG │ │ ├── RE.SVG │ │ ├── RO.SVG │ │ ├── RS.SVG │ │ ├── RU.SVG │ │ ├── RW.SVG │ │ ├── SA.SVG │ │ ├── SB.SVG │ │ ├── SC.SVG │ │ ├── SD.SVG │ │ ├── SE.SVG │ │ ├── SG.SVG │ │ ├── SH-AC.SVG │ │ ├── SH-HL.SVG │ │ ├── SH-TA.SVG │ │ ├── SH.SVG │ │ ├── SI.SVG │ │ ├── SJ.SVG │ │ ├── SK.SVG │ │ ├── SL.SVG │ │ ├── SM.SVG │ │ ├── SN.SVG │ │ ├── SO.SVG │ │ ├── SR.SVG │ │ ├── SS.SVG │ │ ├── ST.SVG │ │ ├── SV.SVG │ │ ├── SX.SVG │ │ ├── SY.SVG │ │ ├── SZ.SVG │ │ ├── TC.SVG │ │ ├── TD.SVG │ │ ├── TF.SVG │ │ ├── TG.SVG │ │ ├── TH.SVG │ │ ├── TJ.SVG │ │ ├── TK.SVG │ │ ├── TL.SVG │ │ ├── TM.SVG │ │ ├── TN.SVG │ │ ├── TO.SVG │ │ ├── TR.SVG │ │ ├── TT.SVG │ │ ├── TV.SVG │ │ ├── TW.SVG │ │ ├── TZ.SVG │ │ ├── UA.SVG │ │ ├── UG.SVG │ │ ├── UM.SVG │ │ ├── UN.SVG │ │ ├── US.SVG │ │ ├── UY.SVG │ │ ├── UZ.SVG │ │ ├── VA.SVG │ │ ├── VC.SVG │ │ ├── VE.SVG │ │ ├── VG.SVG │ │ ├── VI.SVG │ │ ├── VN.SVG │ │ ├── VU.SVG │ │ ├── WF.SVG │ │ ├── WS.SVG │ │ ├── XK.SVG │ │ ├── XX.SVG │ │ ├── YE.SVG │ │ ├── YT.SVG │ │ ├── ZA.SVG │ │ ├── ZM.SVG │ │ └── ZW.SVG │ └── logo.svg ├── js │ ├── admin-buttons.js │ ├── card-beautifier.js │ ├── client.js │ ├── core.js │ ├── country-selector.js │ ├── database.js │ ├── install-dstatus.sh │ ├── load.js │ ├── login.js │ ├── md5.min.js │ ├── region-stats.js │ ├── settings-sync.js │ ├── sort.js │ ├── stat-unified.js │ ├── stats.js │ ├── traffic.js │ ├── wallpaper.js │ └── webssh.js ├── manifest.json └── svg │ ├── 1.svg │ ├── 2.svg │ └── keji.svg ├── stop.sh ├── tailwind.config.js ├── test-telegram.js ├── test_ssh_improvements.txt └── views ├── admin.html ├── admin ├── autodiscovery.html ├── change-password.html ├── groups.html ├── notification_logs.html ├── personalization.html ├── server.html ├── servers.html ├── servers │ ├── add.html │ └── edit.html ├── setting.html ├── sidebar.html └── ssh_scripts.html ├── appbar.html ├── base.html ├── footer.html ├── login.html ├── stat.html ├── stats ├── card.html ├── dashboard.html ├── flag.html └── list.html ├── test.html └── webssh.html /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/docker-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/.github/workflows/docker-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/Dockerfile -------------------------------------------------------------------------------- /bot/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/bot/index.js -------------------------------------------------------------------------------- /config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/config.example.json -------------------------------------------------------------------------------- /core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/core.js -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/data/.gitignore -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/data/README.md -------------------------------------------------------------------------------- /database/autodiscovery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/autodiscovery.js -------------------------------------------------------------------------------- /database/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/config.js -------------------------------------------------------------------------------- /database/groups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/groups.js -------------------------------------------------------------------------------- /database/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/index.js -------------------------------------------------------------------------------- /database/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/load.js -------------------------------------------------------------------------------- /database/migrations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/migrations.js -------------------------------------------------------------------------------- /database/servers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/servers.js -------------------------------------------------------------------------------- /database/setting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/setting.js -------------------------------------------------------------------------------- /database/ssh_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/ssh_scripts.js -------------------------------------------------------------------------------- /database/traffic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/database/traffic.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker-permissions-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docker-permissions-guide.md -------------------------------------------------------------------------------- /docker-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docker-update.sh -------------------------------------------------------------------------------- /docs/TG通知功能说明.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docs/TG通知功能说明.md -------------------------------------------------------------------------------- /docs/docker-auto-update.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docs/docker-auto-update.md -------------------------------------------------------------------------------- /docs/images/dark-mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docs/images/dark-mode.png -------------------------------------------------------------------------------- /docs/images/mobile-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/docs/images/mobile-view.png -------------------------------------------------------------------------------- /docs/月度流量功能说明.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dstatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/dstatus.sh -------------------------------------------------------------------------------- /fix-docker-permissions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/fix-docker-permissions.sh -------------------------------------------------------------------------------- /getStat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/getStat.js -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/install.sh -------------------------------------------------------------------------------- /modules/admin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/admin/index.js -------------------------------------------------------------------------------- /modules/autodiscovery/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/autodiscovery/index.js -------------------------------------------------------------------------------- /modules/groups/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/groups/index.js -------------------------------------------------------------------------------- /modules/notification/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/notification/index.js -------------------------------------------------------------------------------- /modules/restart/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/restart/index.js -------------------------------------------------------------------------------- /modules/servers/func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/servers/func.js -------------------------------------------------------------------------------- /modules/servers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/servers/index.js -------------------------------------------------------------------------------- /modules/setting/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/setting/index.js -------------------------------------------------------------------------------- /modules/ssh_scripts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/ssh_scripts/index.js -------------------------------------------------------------------------------- /modules/stats/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/stats/index.js -------------------------------------------------------------------------------- /modules/stats/iplocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/stats/iplocation.js -------------------------------------------------------------------------------- /modules/stats/monthly-traffic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/modules/stats/monthly-traffic.js -------------------------------------------------------------------------------- /neko-status/.gitignore: -------------------------------------------------------------------------------- 1 | neko-status 2 | go.sum -------------------------------------------------------------------------------- /neko-status/Dockerfile.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/Dockerfile.build -------------------------------------------------------------------------------- /neko-status/Dockerfile.build.new: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/Dockerfile.build.new -------------------------------------------------------------------------------- /neko-status/Dockerfile.simple: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/Dockerfile.simple -------------------------------------------------------------------------------- /neko-status/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/README.md -------------------------------------------------------------------------------- /neko-status/build-ci.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/build-ci.sh -------------------------------------------------------------------------------- /neko-status/build-m1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/build-m1.sh -------------------------------------------------------------------------------- /neko-status/build-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/build-simple.sh -------------------------------------------------------------------------------- /neko-status/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/build.sh -------------------------------------------------------------------------------- /neko-status/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/config.go -------------------------------------------------------------------------------- /neko-status/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/config.yaml -------------------------------------------------------------------------------- /neko-status/direct_api_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/direct_api_data.json -------------------------------------------------------------------------------- /neko-status/docker-build-simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/docker-build-simple.sh -------------------------------------------------------------------------------- /neko-status/docker-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/docker-build.sh -------------------------------------------------------------------------------- /neko-status/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/go.mod -------------------------------------------------------------------------------- /neko-status/go.mod.docker: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/go.mod.docker -------------------------------------------------------------------------------- /neko-status/iperf3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/iperf3.go -------------------------------------------------------------------------------- /neko-status/iperf3/iperf3.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/iperf3/iperf3.go -------------------------------------------------------------------------------- /neko-status/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/main.go -------------------------------------------------------------------------------- /neko-status/main_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/main_simple.go -------------------------------------------------------------------------------- /neko-status/mtr/mtr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/mtr/mtr.go -------------------------------------------------------------------------------- /neko-status/mtr_simple.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/mtr_simple.go -------------------------------------------------------------------------------- /neko-status/node_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/node_data.json -------------------------------------------------------------------------------- /neko-status/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/package.sh -------------------------------------------------------------------------------- /neko-status/stat/stat.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/stat/stat.go -------------------------------------------------------------------------------- /neko-status/walled/walled.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/neko-status/walled/walled.go -------------------------------------------------------------------------------- /nekonekostatus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/nekonekostatus.js -------------------------------------------------------------------------------- /nekonekostatus.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/nekonekostatus.service -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/js/ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/public/js/ssh.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/readme.md -------------------------------------------------------------------------------- /restart.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/restart.sh -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/run.sh -------------------------------------------------------------------------------- /scripts/migrate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/scripts/migrate.js -------------------------------------------------------------------------------- /ssh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/ssh.js -------------------------------------------------------------------------------- /static/bgsvg/bg 1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/bgsvg/bg 1.svg -------------------------------------------------------------------------------- /static/bgsvg/bg 2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/bgsvg/bg 2.svg -------------------------------------------------------------------------------- /static/bgsvg/bg 3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/bgsvg/bg 3.svg -------------------------------------------------------------------------------- /static/bgsvg/bg 4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/bgsvg/bg 4.svg -------------------------------------------------------------------------------- /static/bgsvg/bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/bgsvg/bg.svg -------------------------------------------------------------------------------- /static/css/components/card.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/css/components/card.css -------------------------------------------------------------------------------- /static/css/flags.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/css/flags.css -------------------------------------------------------------------------------- /static/css/material-icons.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/css/material-icons.css -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/style.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/css/style.min.css -------------------------------------------------------------------------------- /static/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/css/tailwind.css -------------------------------------------------------------------------------- /static/fonts/MaterialIcons-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/fonts/MaterialIcons-Regular.woff2 -------------------------------------------------------------------------------- /static/icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/icons/icon.svg -------------------------------------------------------------------------------- /static/img/flags/AD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AD.SVG -------------------------------------------------------------------------------- /static/img/flags/AE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AE.SVG -------------------------------------------------------------------------------- /static/img/flags/AF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AF.SVG -------------------------------------------------------------------------------- /static/img/flags/AG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AG.SVG -------------------------------------------------------------------------------- /static/img/flags/AI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AI.SVG -------------------------------------------------------------------------------- /static/img/flags/AL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AL.SVG -------------------------------------------------------------------------------- /static/img/flags/AM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AM.SVG -------------------------------------------------------------------------------- /static/img/flags/AO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AO.SVG -------------------------------------------------------------------------------- /static/img/flags/AQ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AQ.SVG -------------------------------------------------------------------------------- /static/img/flags/AR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AR.SVG -------------------------------------------------------------------------------- /static/img/flags/ARAB.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ARAB.SVG -------------------------------------------------------------------------------- /static/img/flags/AS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AS.SVG -------------------------------------------------------------------------------- /static/img/flags/ASEAN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ASEAN.SVG -------------------------------------------------------------------------------- /static/img/flags/AT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AT.SVG -------------------------------------------------------------------------------- /static/img/flags/AU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AU.SVG -------------------------------------------------------------------------------- /static/img/flags/AW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AW.SVG -------------------------------------------------------------------------------- /static/img/flags/AX.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AX.SVG -------------------------------------------------------------------------------- /static/img/flags/AZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/AZ.SVG -------------------------------------------------------------------------------- /static/img/flags/BA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BA.SVG -------------------------------------------------------------------------------- /static/img/flags/BB.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BB.SVG -------------------------------------------------------------------------------- /static/img/flags/BD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BD.SVG -------------------------------------------------------------------------------- /static/img/flags/BE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BE.SVG -------------------------------------------------------------------------------- /static/img/flags/BF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BF.SVG -------------------------------------------------------------------------------- /static/img/flags/BG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BG.SVG -------------------------------------------------------------------------------- /static/img/flags/BH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BH.SVG -------------------------------------------------------------------------------- /static/img/flags/BI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BI.SVG -------------------------------------------------------------------------------- /static/img/flags/BJ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BJ.SVG -------------------------------------------------------------------------------- /static/img/flags/BL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BL.SVG -------------------------------------------------------------------------------- /static/img/flags/BM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BM.SVG -------------------------------------------------------------------------------- /static/img/flags/BN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BN.SVG -------------------------------------------------------------------------------- /static/img/flags/BO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BO.SVG -------------------------------------------------------------------------------- /static/img/flags/BQ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BQ.SVG -------------------------------------------------------------------------------- /static/img/flags/BR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BR.SVG -------------------------------------------------------------------------------- /static/img/flags/BS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BS.SVG -------------------------------------------------------------------------------- /static/img/flags/BT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BT.SVG -------------------------------------------------------------------------------- /static/img/flags/BV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BV.SVG -------------------------------------------------------------------------------- /static/img/flags/BW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BW.SVG -------------------------------------------------------------------------------- /static/img/flags/BY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BY.SVG -------------------------------------------------------------------------------- /static/img/flags/BZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/BZ.SVG -------------------------------------------------------------------------------- /static/img/flags/CA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CA.SVG -------------------------------------------------------------------------------- /static/img/flags/CC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CC.SVG -------------------------------------------------------------------------------- /static/img/flags/CD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CD.SVG -------------------------------------------------------------------------------- /static/img/flags/CEFTA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CEFTA.SVG -------------------------------------------------------------------------------- /static/img/flags/CF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CF.SVG -------------------------------------------------------------------------------- /static/img/flags/CG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CG.SVG -------------------------------------------------------------------------------- /static/img/flags/CH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CH.SVG -------------------------------------------------------------------------------- /static/img/flags/CI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CI.SVG -------------------------------------------------------------------------------- /static/img/flags/CK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CK.SVG -------------------------------------------------------------------------------- /static/img/flags/CL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CL.SVG -------------------------------------------------------------------------------- /static/img/flags/CM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CM.SVG -------------------------------------------------------------------------------- /static/img/flags/CN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CN.SVG -------------------------------------------------------------------------------- /static/img/flags/CO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CO.SVG -------------------------------------------------------------------------------- /static/img/flags/CP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CP.SVG -------------------------------------------------------------------------------- /static/img/flags/CR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CR.SVG -------------------------------------------------------------------------------- /static/img/flags/CU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CU.SVG -------------------------------------------------------------------------------- /static/img/flags/CV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CV.SVG -------------------------------------------------------------------------------- /static/img/flags/CW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CW.SVG -------------------------------------------------------------------------------- /static/img/flags/CX.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CX.SVG -------------------------------------------------------------------------------- /static/img/flags/CY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CY.SVG -------------------------------------------------------------------------------- /static/img/flags/CZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/CZ.SVG -------------------------------------------------------------------------------- /static/img/flags/DE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DE.SVG -------------------------------------------------------------------------------- /static/img/flags/DG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DG.SVG -------------------------------------------------------------------------------- /static/img/flags/DJ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DJ.SVG -------------------------------------------------------------------------------- /static/img/flags/DK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DK.SVG -------------------------------------------------------------------------------- /static/img/flags/DM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DM.SVG -------------------------------------------------------------------------------- /static/img/flags/DO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DO.SVG -------------------------------------------------------------------------------- /static/img/flags/DZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/DZ.SVG -------------------------------------------------------------------------------- /static/img/flags/EAC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EAC.SVG -------------------------------------------------------------------------------- /static/img/flags/EC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EC.SVG -------------------------------------------------------------------------------- /static/img/flags/EE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EE.SVG -------------------------------------------------------------------------------- /static/img/flags/EG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EG.SVG -------------------------------------------------------------------------------- /static/img/flags/EH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EH.SVG -------------------------------------------------------------------------------- /static/img/flags/ER.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ER.SVG -------------------------------------------------------------------------------- /static/img/flags/ES-CT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ES-CT.SVG -------------------------------------------------------------------------------- /static/img/flags/ES-GA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ES-GA.SVG -------------------------------------------------------------------------------- /static/img/flags/ES-PV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ES-PV.SVG -------------------------------------------------------------------------------- /static/img/flags/ES.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ES.SVG -------------------------------------------------------------------------------- /static/img/flags/ET.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ET.SVG -------------------------------------------------------------------------------- /static/img/flags/EU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/EU.SVG -------------------------------------------------------------------------------- /static/img/flags/FI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FI.SVG -------------------------------------------------------------------------------- /static/img/flags/FJ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FJ.SVG -------------------------------------------------------------------------------- /static/img/flags/FK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FK.SVG -------------------------------------------------------------------------------- /static/img/flags/FM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FM.SVG -------------------------------------------------------------------------------- /static/img/flags/FO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FO.SVG -------------------------------------------------------------------------------- /static/img/flags/FR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/FR.SVG -------------------------------------------------------------------------------- /static/img/flags/GA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GA.SVG -------------------------------------------------------------------------------- /static/img/flags/GB-ENG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GB-ENG.SVG -------------------------------------------------------------------------------- /static/img/flags/GB-NIR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GB-NIR.SVG -------------------------------------------------------------------------------- /static/img/flags/GB-SCT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GB-SCT.SVG -------------------------------------------------------------------------------- /static/img/flags/GB-WLS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GB-WLS.SVG -------------------------------------------------------------------------------- /static/img/flags/GB.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GB.SVG -------------------------------------------------------------------------------- /static/img/flags/GD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GD.SVG -------------------------------------------------------------------------------- /static/img/flags/GE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GE.SVG -------------------------------------------------------------------------------- /static/img/flags/GF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GF.SVG -------------------------------------------------------------------------------- /static/img/flags/GG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GG.SVG -------------------------------------------------------------------------------- /static/img/flags/GH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GH.SVG -------------------------------------------------------------------------------- /static/img/flags/GI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GI.SVG -------------------------------------------------------------------------------- /static/img/flags/GL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GL.SVG -------------------------------------------------------------------------------- /static/img/flags/GM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GM.SVG -------------------------------------------------------------------------------- /static/img/flags/GN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GN.SVG -------------------------------------------------------------------------------- /static/img/flags/GP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GP.SVG -------------------------------------------------------------------------------- /static/img/flags/GQ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GQ.SVG -------------------------------------------------------------------------------- /static/img/flags/GR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GR.SVG -------------------------------------------------------------------------------- /static/img/flags/GS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GS.SVG -------------------------------------------------------------------------------- /static/img/flags/GT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GT.SVG -------------------------------------------------------------------------------- /static/img/flags/GU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GU.SVG -------------------------------------------------------------------------------- /static/img/flags/GW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GW.SVG -------------------------------------------------------------------------------- /static/img/flags/GY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/GY.SVG -------------------------------------------------------------------------------- /static/img/flags/HK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HK.SVG -------------------------------------------------------------------------------- /static/img/flags/HM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HM.SVG -------------------------------------------------------------------------------- /static/img/flags/HN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HN.SVG -------------------------------------------------------------------------------- /static/img/flags/HR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HR.SVG -------------------------------------------------------------------------------- /static/img/flags/HT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HT.SVG -------------------------------------------------------------------------------- /static/img/flags/HU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/HU.SVG -------------------------------------------------------------------------------- /static/img/flags/IC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IC.SVG -------------------------------------------------------------------------------- /static/img/flags/ID.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ID.SVG -------------------------------------------------------------------------------- /static/img/flags/IE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IE.SVG -------------------------------------------------------------------------------- /static/img/flags/IL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IL.SVG -------------------------------------------------------------------------------- /static/img/flags/IM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IM.SVG -------------------------------------------------------------------------------- /static/img/flags/IN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IN.SVG -------------------------------------------------------------------------------- /static/img/flags/IO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IO.SVG -------------------------------------------------------------------------------- /static/img/flags/IQ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IQ.SVG -------------------------------------------------------------------------------- /static/img/flags/IR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IR.SVG -------------------------------------------------------------------------------- /static/img/flags/IS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IS.SVG -------------------------------------------------------------------------------- /static/img/flags/IT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/IT.SVG -------------------------------------------------------------------------------- /static/img/flags/JE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/JE.SVG -------------------------------------------------------------------------------- /static/img/flags/JM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/JM.SVG -------------------------------------------------------------------------------- /static/img/flags/JO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/JO.SVG -------------------------------------------------------------------------------- /static/img/flags/JP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/JP.SVG -------------------------------------------------------------------------------- /static/img/flags/KE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KE.SVG -------------------------------------------------------------------------------- /static/img/flags/KG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KG.SVG -------------------------------------------------------------------------------- /static/img/flags/KH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KH.SVG -------------------------------------------------------------------------------- /static/img/flags/KI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KI.SVG -------------------------------------------------------------------------------- /static/img/flags/KM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KM.SVG -------------------------------------------------------------------------------- /static/img/flags/KN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KN.SVG -------------------------------------------------------------------------------- /static/img/flags/KP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KP.SVG -------------------------------------------------------------------------------- /static/img/flags/KR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KR.SVG -------------------------------------------------------------------------------- /static/img/flags/KW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KW.SVG -------------------------------------------------------------------------------- /static/img/flags/KY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KY.SVG -------------------------------------------------------------------------------- /static/img/flags/KZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/KZ.SVG -------------------------------------------------------------------------------- /static/img/flags/LA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LA.SVG -------------------------------------------------------------------------------- /static/img/flags/LB.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LB.SVG -------------------------------------------------------------------------------- /static/img/flags/LC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LC.SVG -------------------------------------------------------------------------------- /static/img/flags/LI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LI.SVG -------------------------------------------------------------------------------- /static/img/flags/LK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LK.SVG -------------------------------------------------------------------------------- /static/img/flags/LR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LR.SVG -------------------------------------------------------------------------------- /static/img/flags/LS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LS.SVG -------------------------------------------------------------------------------- /static/img/flags/LT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LT.SVG -------------------------------------------------------------------------------- /static/img/flags/LU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LU.SVG -------------------------------------------------------------------------------- /static/img/flags/LV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LV.SVG -------------------------------------------------------------------------------- /static/img/flags/LY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/LY.SVG -------------------------------------------------------------------------------- /static/img/flags/MA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MA.SVG -------------------------------------------------------------------------------- /static/img/flags/MC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MC.SVG -------------------------------------------------------------------------------- /static/img/flags/MD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MD.SVG -------------------------------------------------------------------------------- /static/img/flags/ME.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ME.SVG -------------------------------------------------------------------------------- /static/img/flags/MF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MF.SVG -------------------------------------------------------------------------------- /static/img/flags/MG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MG.SVG -------------------------------------------------------------------------------- /static/img/flags/MH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MH.SVG -------------------------------------------------------------------------------- /static/img/flags/MK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MK.SVG -------------------------------------------------------------------------------- /static/img/flags/ML.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ML.SVG -------------------------------------------------------------------------------- /static/img/flags/MM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MM.SVG -------------------------------------------------------------------------------- /static/img/flags/MN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MN.SVG -------------------------------------------------------------------------------- /static/img/flags/MO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MO.SVG -------------------------------------------------------------------------------- /static/img/flags/MP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MP.SVG -------------------------------------------------------------------------------- /static/img/flags/MQ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MQ.SVG -------------------------------------------------------------------------------- /static/img/flags/MR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MR.SVG -------------------------------------------------------------------------------- /static/img/flags/MS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MS.SVG -------------------------------------------------------------------------------- /static/img/flags/MT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MT.SVG -------------------------------------------------------------------------------- /static/img/flags/MU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MU.SVG -------------------------------------------------------------------------------- /static/img/flags/MV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MV.SVG -------------------------------------------------------------------------------- /static/img/flags/MW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MW.SVG -------------------------------------------------------------------------------- /static/img/flags/MX.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MX.SVG -------------------------------------------------------------------------------- /static/img/flags/MY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MY.SVG -------------------------------------------------------------------------------- /static/img/flags/MZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/MZ.SVG -------------------------------------------------------------------------------- /static/img/flags/NA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NA.SVG -------------------------------------------------------------------------------- /static/img/flags/NC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NC.SVG -------------------------------------------------------------------------------- /static/img/flags/NE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NE.SVG -------------------------------------------------------------------------------- /static/img/flags/NF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NF.SVG -------------------------------------------------------------------------------- /static/img/flags/NG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NG.SVG -------------------------------------------------------------------------------- /static/img/flags/NI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NI.SVG -------------------------------------------------------------------------------- /static/img/flags/NL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NL.SVG -------------------------------------------------------------------------------- /static/img/flags/NO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NO.SVG -------------------------------------------------------------------------------- /static/img/flags/NP.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NP.SVG -------------------------------------------------------------------------------- /static/img/flags/NR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NR.SVG -------------------------------------------------------------------------------- /static/img/flags/NU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NU.SVG -------------------------------------------------------------------------------- /static/img/flags/NZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/NZ.SVG -------------------------------------------------------------------------------- /static/img/flags/OM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/OM.SVG -------------------------------------------------------------------------------- /static/img/flags/PA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PA.SVG -------------------------------------------------------------------------------- /static/img/flags/PC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PC.SVG -------------------------------------------------------------------------------- /static/img/flags/PE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PE.SVG -------------------------------------------------------------------------------- /static/img/flags/PF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PF.SVG -------------------------------------------------------------------------------- /static/img/flags/PG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PG.SVG -------------------------------------------------------------------------------- /static/img/flags/PH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PH.SVG -------------------------------------------------------------------------------- /static/img/flags/PK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PK.SVG -------------------------------------------------------------------------------- /static/img/flags/PL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PL.SVG -------------------------------------------------------------------------------- /static/img/flags/PM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PM.SVG -------------------------------------------------------------------------------- /static/img/flags/PN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PN.SVG -------------------------------------------------------------------------------- /static/img/flags/PR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PR.SVG -------------------------------------------------------------------------------- /static/img/flags/PS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PS.SVG -------------------------------------------------------------------------------- /static/img/flags/PT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PT.SVG -------------------------------------------------------------------------------- /static/img/flags/PW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PW.SVG -------------------------------------------------------------------------------- /static/img/flags/PY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/PY.SVG -------------------------------------------------------------------------------- /static/img/flags/QA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/QA.SVG -------------------------------------------------------------------------------- /static/img/flags/RE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/RE.SVG -------------------------------------------------------------------------------- /static/img/flags/RO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/RO.SVG -------------------------------------------------------------------------------- /static/img/flags/RS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/RS.SVG -------------------------------------------------------------------------------- /static/img/flags/RU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/RU.SVG -------------------------------------------------------------------------------- /static/img/flags/RW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/RW.SVG -------------------------------------------------------------------------------- /static/img/flags/SA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SA.SVG -------------------------------------------------------------------------------- /static/img/flags/SB.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SB.SVG -------------------------------------------------------------------------------- /static/img/flags/SC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SC.SVG -------------------------------------------------------------------------------- /static/img/flags/SD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SD.SVG -------------------------------------------------------------------------------- /static/img/flags/SE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SE.SVG -------------------------------------------------------------------------------- /static/img/flags/SG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SG.SVG -------------------------------------------------------------------------------- /static/img/flags/SH-AC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SH-AC.SVG -------------------------------------------------------------------------------- /static/img/flags/SH-HL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SH-HL.SVG -------------------------------------------------------------------------------- /static/img/flags/SH-TA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SH-TA.SVG -------------------------------------------------------------------------------- /static/img/flags/SH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SH.SVG -------------------------------------------------------------------------------- /static/img/flags/SI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SI.SVG -------------------------------------------------------------------------------- /static/img/flags/SJ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SJ.SVG -------------------------------------------------------------------------------- /static/img/flags/SK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SK.SVG -------------------------------------------------------------------------------- /static/img/flags/SL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SL.SVG -------------------------------------------------------------------------------- /static/img/flags/SM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SM.SVG -------------------------------------------------------------------------------- /static/img/flags/SN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SN.SVG -------------------------------------------------------------------------------- /static/img/flags/SO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SO.SVG -------------------------------------------------------------------------------- /static/img/flags/SR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SR.SVG -------------------------------------------------------------------------------- /static/img/flags/SS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SS.SVG -------------------------------------------------------------------------------- /static/img/flags/ST.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ST.SVG -------------------------------------------------------------------------------- /static/img/flags/SV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SV.SVG -------------------------------------------------------------------------------- /static/img/flags/SX.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SX.SVG -------------------------------------------------------------------------------- /static/img/flags/SY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SY.SVG -------------------------------------------------------------------------------- /static/img/flags/SZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/SZ.SVG -------------------------------------------------------------------------------- /static/img/flags/TC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TC.SVG -------------------------------------------------------------------------------- /static/img/flags/TD.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TD.SVG -------------------------------------------------------------------------------- /static/img/flags/TF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TF.SVG -------------------------------------------------------------------------------- /static/img/flags/TG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TG.SVG -------------------------------------------------------------------------------- /static/img/flags/TH.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TH.SVG -------------------------------------------------------------------------------- /static/img/flags/TJ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TJ.SVG -------------------------------------------------------------------------------- /static/img/flags/TK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TK.SVG -------------------------------------------------------------------------------- /static/img/flags/TL.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TL.SVG -------------------------------------------------------------------------------- /static/img/flags/TM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TM.SVG -------------------------------------------------------------------------------- /static/img/flags/TN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TN.SVG -------------------------------------------------------------------------------- /static/img/flags/TO.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TO.SVG -------------------------------------------------------------------------------- /static/img/flags/TR.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TR.SVG -------------------------------------------------------------------------------- /static/img/flags/TT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TT.SVG -------------------------------------------------------------------------------- /static/img/flags/TV.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TV.SVG -------------------------------------------------------------------------------- /static/img/flags/TW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TW.SVG -------------------------------------------------------------------------------- /static/img/flags/TZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/TZ.SVG -------------------------------------------------------------------------------- /static/img/flags/UA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UA.SVG -------------------------------------------------------------------------------- /static/img/flags/UG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UG.SVG -------------------------------------------------------------------------------- /static/img/flags/UM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UM.SVG -------------------------------------------------------------------------------- /static/img/flags/UN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UN.SVG -------------------------------------------------------------------------------- /static/img/flags/US.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/US.SVG -------------------------------------------------------------------------------- /static/img/flags/UY.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UY.SVG -------------------------------------------------------------------------------- /static/img/flags/UZ.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/UZ.SVG -------------------------------------------------------------------------------- /static/img/flags/VA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VA.SVG -------------------------------------------------------------------------------- /static/img/flags/VC.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VC.SVG -------------------------------------------------------------------------------- /static/img/flags/VE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VE.SVG -------------------------------------------------------------------------------- /static/img/flags/VG.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VG.SVG -------------------------------------------------------------------------------- /static/img/flags/VI.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VI.SVG -------------------------------------------------------------------------------- /static/img/flags/VN.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VN.SVG -------------------------------------------------------------------------------- /static/img/flags/VU.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/VU.SVG -------------------------------------------------------------------------------- /static/img/flags/WF.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/WF.SVG -------------------------------------------------------------------------------- /static/img/flags/WS.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/WS.SVG -------------------------------------------------------------------------------- /static/img/flags/XK.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/XK.SVG -------------------------------------------------------------------------------- /static/img/flags/XX.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/XX.SVG -------------------------------------------------------------------------------- /static/img/flags/YE.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/YE.SVG -------------------------------------------------------------------------------- /static/img/flags/YT.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/YT.SVG -------------------------------------------------------------------------------- /static/img/flags/ZA.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ZA.SVG -------------------------------------------------------------------------------- /static/img/flags/ZM.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ZM.SVG -------------------------------------------------------------------------------- /static/img/flags/ZW.SVG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/flags/ZW.SVG -------------------------------------------------------------------------------- /static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/img/logo.svg -------------------------------------------------------------------------------- /static/js/admin-buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/admin-buttons.js -------------------------------------------------------------------------------- /static/js/card-beautifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/card-beautifier.js -------------------------------------------------------------------------------- /static/js/client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/client.js -------------------------------------------------------------------------------- /static/js/core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/core.js -------------------------------------------------------------------------------- /static/js/country-selector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/country-selector.js -------------------------------------------------------------------------------- /static/js/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/database.js -------------------------------------------------------------------------------- /static/js/install-dstatus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/install-dstatus.sh -------------------------------------------------------------------------------- /static/js/load.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/load.js -------------------------------------------------------------------------------- /static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/login.js -------------------------------------------------------------------------------- /static/js/md5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/md5.min.js -------------------------------------------------------------------------------- /static/js/region-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/region-stats.js -------------------------------------------------------------------------------- /static/js/settings-sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/settings-sync.js -------------------------------------------------------------------------------- /static/js/sort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/sort.js -------------------------------------------------------------------------------- /static/js/stat-unified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/stat-unified.js -------------------------------------------------------------------------------- /static/js/stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/stats.js -------------------------------------------------------------------------------- /static/js/traffic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/js/traffic.js -------------------------------------------------------------------------------- /static/js/wallpaper.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/webssh.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/manifest.json -------------------------------------------------------------------------------- /static/svg/1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/svg/1.svg -------------------------------------------------------------------------------- /static/svg/2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/svg/2.svg -------------------------------------------------------------------------------- /static/svg/keji.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/static/svg/keji.svg -------------------------------------------------------------------------------- /stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/stop.sh -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test-telegram.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/test-telegram.js -------------------------------------------------------------------------------- /test_ssh_improvements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /views/admin.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin.html -------------------------------------------------------------------------------- /views/admin/autodiscovery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/autodiscovery.html -------------------------------------------------------------------------------- /views/admin/change-password.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/change-password.html -------------------------------------------------------------------------------- /views/admin/groups.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/groups.html -------------------------------------------------------------------------------- /views/admin/notification_logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/notification_logs.html -------------------------------------------------------------------------------- /views/admin/personalization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/personalization.html -------------------------------------------------------------------------------- /views/admin/server.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/server.html -------------------------------------------------------------------------------- /views/admin/servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/servers.html -------------------------------------------------------------------------------- /views/admin/servers/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/servers/add.html -------------------------------------------------------------------------------- /views/admin/servers/edit.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/servers/edit.html -------------------------------------------------------------------------------- /views/admin/setting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/setting.html -------------------------------------------------------------------------------- /views/admin/sidebar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/sidebar.html -------------------------------------------------------------------------------- /views/admin/ssh_scripts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/admin/ssh_scripts.html -------------------------------------------------------------------------------- /views/appbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/appbar.html -------------------------------------------------------------------------------- /views/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/base.html -------------------------------------------------------------------------------- /views/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/footer.html -------------------------------------------------------------------------------- /views/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/login.html -------------------------------------------------------------------------------- /views/stat.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/stat.html -------------------------------------------------------------------------------- /views/stats/card.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/stats/card.html -------------------------------------------------------------------------------- /views/stats/dashboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/stats/dashboard.html -------------------------------------------------------------------------------- /views/stats/flag.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/stats/flag.html -------------------------------------------------------------------------------- /views/stats/list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/stats/list.html -------------------------------------------------------------------------------- /views/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/test.html -------------------------------------------------------------------------------- /views/webssh.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fev125/dstatus/HEAD/views/webssh.html --------------------------------------------------------------------------------