├── .github ├── ISSUE_TEMPLATE.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── Channels ├── Check_Mii_Out_Channel │ ├── DebugTools │ │ ├── TestUpdate.py │ │ ├── addToList.py │ │ ├── generateCountries.py │ │ ├── quicklist.py │ │ └── reset.py │ ├── ForceUpdate.sh │ ├── bestlist.py │ ├── cmoc.py │ ├── condetail.py │ ├── config.json.example │ ├── coninfo.py │ ├── conmail.py │ ├── contestCLI.py │ ├── entrylist.py │ ├── htmlcontest.py │ ├── htmlpopular.py │ ├── htmlrankings.py │ ├── htmltop50.py │ ├── jobs.cron │ ├── miikaitai.py │ ├── numberinfo.py │ ├── popcrafts.py │ ├── popular.py │ ├── randlist.py │ ├── sign_encrypt.py │ ├── top50.py │ └── wiisports.py ├── Everybody_Votes_Channel │ ├── __init__.py │ ├── config.json.example │ ├── jobs.cron │ ├── votes.py │ └── voteslists.py ├── Forecast_Channel │ ├── README.md │ ├── __init__.py │ ├── config.json.example │ ├── forecast.py │ ├── forecastlists.py │ ├── forecastregions.py │ └── jobs.cron ├── News_Channel │ ├── README.md │ ├── __init__.py │ ├── config.json.example │ ├── jobs.cron │ ├── logos │ │ ├── AFP_French.jpg │ │ ├── AFP_German.jpg │ │ ├── AFP_Spanish.jpg │ │ ├── ANP.jpg │ │ ├── AP.jpg │ │ ├── CanadianPress.jpg │ │ ├── Reuters.jpg │ │ └── SID.jpg │ ├── news.py │ ├── newsdownload.py │ └── newsmake.py ├── Nintendo_Channel │ ├── __init__.py │ ├── config.json.example │ ├── dllist.py │ ├── dstrial_header.py │ ├── info.py │ ├── ninch_thumb.py │ ├── ninfile.py │ ├── ninfile1.py │ ├── ninfile2.py │ ├── ninfile3.py │ └── ratings │ │ ├── BBFC │ │ ├── 12.jpg │ │ ├── 15.jpg │ │ ├── 18.jpg │ │ ├── PG.jpg │ │ └── U.jpg │ │ ├── CERO │ │ ├── A.jpg │ │ ├── B.jpg │ │ ├── C.jpg │ │ ├── D.jpg │ │ ├── Z.jpg │ │ ├── education.jpg │ │ └── scheduled.jpg │ │ ├── ESRB │ │ ├── E-small.jpg │ │ ├── E.jpg │ │ ├── E10-small.jpg │ │ ├── E10.jpg │ │ ├── EC.jpg │ │ ├── M.jpg │ │ ├── T.jpg │ │ ├── maycontain.jpg │ │ └── visitesrb.jpg │ │ └── PEGI │ │ ├── .DS_Store │ │ ├── 12.jpg │ │ ├── 16.jpg │ │ ├── 18.jpg │ │ ├── 3.jpg │ │ └── 7.jpg └── __init__.py ├── Games └── My_Aquarium │ └── myaquarium.py ├── LICENSE ├── README.md ├── Tools ├── Forecast │ └── parse.py ├── LZ Tools │ ├── DSDecmp │ │ ├── DSDecmp.exe │ │ └── Plugins │ │ │ ├── DSDecmp.xml │ │ │ ├── GoldenSunDD.dll │ │ │ └── LuminousArc.dll │ └── lzss │ │ ├── lzss │ │ ├── lzss-mac │ │ └── lzss.exe ├── Sign_Encrypt │ └── sign_encrypt.py └── Time │ └── convert.py ├── requirements.txt └── utils.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/.gitignore -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/DebugTools/TestUpdate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/DebugTools/TestUpdate.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/DebugTools/addToList.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/DebugTools/addToList.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/DebugTools/generateCountries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/DebugTools/generateCountries.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/DebugTools/quicklist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/DebugTools/quicklist.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/DebugTools/reset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/DebugTools/reset.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/ForceUpdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/ForceUpdate.sh -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/bestlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/bestlist.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/cmoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/cmoc.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/condetail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/condetail.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/config.json.example -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/coninfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/coninfo.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/conmail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/conmail.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/contestCLI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/contestCLI.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/entrylist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/entrylist.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/htmlcontest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/htmlcontest.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/htmlpopular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/htmlpopular.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/htmlrankings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/htmlrankings.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/htmltop50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/htmltop50.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/jobs.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/jobs.cron -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/miikaitai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/miikaitai.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/numberinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/numberinfo.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/popcrafts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/popcrafts.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/popular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/popular.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/randlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/randlist.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/sign_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/sign_encrypt.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/top50.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/top50.py -------------------------------------------------------------------------------- /Channels/Check_Mii_Out_Channel/wiisports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Check_Mii_Out_Channel/wiisports.py -------------------------------------------------------------------------------- /Channels/Everybody_Votes_Channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Channels/Everybody_Votes_Channel/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Everybody_Votes_Channel/config.json.example -------------------------------------------------------------------------------- /Channels/Everybody_Votes_Channel/jobs.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Everybody_Votes_Channel/jobs.cron -------------------------------------------------------------------------------- /Channels/Everybody_Votes_Channel/votes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Everybody_Votes_Channel/votes.py -------------------------------------------------------------------------------- /Channels/Everybody_Votes_Channel/voteslists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Everybody_Votes_Channel/voteslists.py -------------------------------------------------------------------------------- /Channels/Forecast_Channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/README.md -------------------------------------------------------------------------------- /Channels/Forecast_Channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Channels/Forecast_Channel/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/config.json.example -------------------------------------------------------------------------------- /Channels/Forecast_Channel/forecast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/forecast.py -------------------------------------------------------------------------------- /Channels/Forecast_Channel/forecastlists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/forecastlists.py -------------------------------------------------------------------------------- /Channels/Forecast_Channel/forecastregions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/forecastregions.py -------------------------------------------------------------------------------- /Channels/Forecast_Channel/jobs.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Forecast_Channel/jobs.cron -------------------------------------------------------------------------------- /Channels/News_Channel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/README.md -------------------------------------------------------------------------------- /Channels/News_Channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Channels/News_Channel/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/config.json.example -------------------------------------------------------------------------------- /Channels/News_Channel/jobs.cron: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/jobs.cron -------------------------------------------------------------------------------- /Channels/News_Channel/logos/AFP_French.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/AFP_French.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/AFP_German.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/AFP_German.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/AFP_Spanish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/AFP_Spanish.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/ANP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/ANP.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/AP.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/AP.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/CanadianPress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/CanadianPress.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/Reuters.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/Reuters.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/logos/SID.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/logos/SID.jpg -------------------------------------------------------------------------------- /Channels/News_Channel/news.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/news.py -------------------------------------------------------------------------------- /Channels/News_Channel/newsdownload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/newsdownload.py -------------------------------------------------------------------------------- /Channels/News_Channel/newsmake.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/News_Channel/newsmake.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/config.json.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/config.json.example -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/dllist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/dllist.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/dstrial_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/dstrial_header.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/info.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ninch_thumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ninch_thumb.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ninfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ninfile.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ninfile1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ninfile1.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ninfile2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ninfile2.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ninfile3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ninfile3.py -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/BBFC/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/BBFC/12.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/BBFC/15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/BBFC/15.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/BBFC/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/BBFC/18.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/BBFC/PG.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/BBFC/PG.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/BBFC/U.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/BBFC/U.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/A.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/B.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/C.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/C.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/D.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/Z.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/Z.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/education.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/education.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/CERO/scheduled.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/CERO/scheduled.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/E-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/E-small.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/E.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/E.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/E10-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/E10-small.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/E10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/E10.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/EC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/EC.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/M.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/M.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/T.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/T.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/maycontain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/maycontain.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/ESRB/visitesrb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/ESRB/visitesrb.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/.DS_Store -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/12.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/16.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/18.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/3.jpg -------------------------------------------------------------------------------- /Channels/Nintendo_Channel/ratings/PEGI/7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Channels/Nintendo_Channel/ratings/PEGI/7.jpg -------------------------------------------------------------------------------- /Channels/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Games/My_Aquarium/myaquarium.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Games/My_Aquarium/myaquarium.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/README.md -------------------------------------------------------------------------------- /Tools/Forecast/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/Forecast/parse.py -------------------------------------------------------------------------------- /Tools/LZ Tools/DSDecmp/DSDecmp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/DSDecmp/DSDecmp.exe -------------------------------------------------------------------------------- /Tools/LZ Tools/DSDecmp/Plugins/DSDecmp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/DSDecmp/Plugins/DSDecmp.xml -------------------------------------------------------------------------------- /Tools/LZ Tools/DSDecmp/Plugins/GoldenSunDD.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/DSDecmp/Plugins/GoldenSunDD.dll -------------------------------------------------------------------------------- /Tools/LZ Tools/DSDecmp/Plugins/LuminousArc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/DSDecmp/Plugins/LuminousArc.dll -------------------------------------------------------------------------------- /Tools/LZ Tools/lzss/lzss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/lzss/lzss -------------------------------------------------------------------------------- /Tools/LZ Tools/lzss/lzss-mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/lzss/lzss-mac -------------------------------------------------------------------------------- /Tools/LZ Tools/lzss/lzss.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/LZ Tools/lzss/lzss.exe -------------------------------------------------------------------------------- /Tools/Sign_Encrypt/sign_encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/Sign_Encrypt/sign_encrypt.py -------------------------------------------------------------------------------- /Tools/Time/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/Tools/Time/convert.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RiiConnect24/File-Maker/HEAD/utils.py --------------------------------------------------------------------------------