├── .github └── FUNDING.yml ├── Documents ├── Binary SII - Format.txt ├── Binary SII - Types.txt ├── PayPal.bmp ├── gui_screen.jpg ├── gui_screen.png ├── prog_icon.png ├── prog_icon.svg ├── prog_icon_small.ico ├── prog_icon_vista.ico └── prog_icon_xp.ico ├── Library ├── Delphi │ ├── DCU │ │ └── .gitkeep │ ├── Release │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.cfg │ ├── SII_Decrypt.dof │ ├── SII_Decrypt.dpr │ └── SII_Decrypt.res ├── Lazarus │ ├── Debug │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── Release │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.lpi │ ├── SII_Decrypt.lpr │ └── SII_Decrypt.res ├── SII_Decrypt_Library_Common.pas ├── SII_Decrypt_Library_Decryptor.pas ├── SII_Decrypt_Library_Header.pas └── SII_Decrypt_Library_Standalone.pas ├── Program_Console ├── Delphi │ ├── DCU │ │ └── .gitkeep │ ├── Release │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.cfg │ ├── SII_Decrypt.dof │ └── SII_Decrypt.dpr ├── Lazarus │ ├── Debug │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── Release │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.lpi │ ├── SII_Decrypt.lpr │ └── SII_Decrypt.res └── SII_Decrypt_Program.pas ├── Program_GUI ├── Delphi │ ├── DCU │ │ └── .gitkeep │ ├── Release │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.cfg │ ├── SII_Decrypt.dof │ ├── SII_Decrypt.dpr │ └── SII_Decrypt.res ├── Lazarus │ ├── Debug │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── Release │ │ ├── win_x64 │ │ │ └── .gitkeep │ │ └── win_x86 │ │ │ └── .gitkeep │ ├── SII_Decrypt.ico │ ├── SII_Decrypt.lpi │ ├── SII_Decrypt.lpr │ └── SII_Decrypt.res ├── MainForm.dfm ├── MainForm.lfm └── MainForm.pas ├── Scripts ├── Build GUI program.bat ├── Build Library.bat ├── Build Tester.bat ├── Build all (log).bat ├── Build all.bat ├── Build console program.bat ├── Clear GUI program builds.bat ├── Clear Library builds.bat ├── Clear Tester builds.bat ├── Clear all.bat ├── Clear console program builds.bat ├── Create Basic release.bat ├── Create full release.bat └── Create normal release.bat ├── Source ├── Libs │ ├── AES.pas │ ├── AES_Assembly.inc │ ├── AuxClasses.pas │ ├── AuxExceptions.pas │ ├── AuxTypes.pas │ ├── BinTextEnc.pas │ ├── BinaryStreaming.pas │ ├── CRC32.pas │ ├── ESL_inc │ │ ├── ESL_CharType.inc │ │ ├── ESL_CompFuncType.inc │ │ ├── ESL_DTParserEventType.inc │ │ ├── ESL_DTParserType.inc │ │ ├── ESL_ListType.inc │ │ ├── ESL_PCharType.inc │ │ └── ESL_StringType.inc │ ├── ExplicitStringLists.inc │ ├── ExplicitStringLists.pas │ ├── ExplicitStringListsA.pas │ ├── ExplicitStringListsBase.pas │ ├── ExplicitStringListsO.pas │ ├── ExplicitStringListsParser.inc │ ├── ExplicitStringListsParser.pas │ ├── ExplicitStringListsW.pas │ ├── ExplicitStringLists_defs.inc │ ├── FloatHex.pas │ ├── IniFileEx.pas │ ├── IniFileEx_Common.pas │ ├── IniFileEx_Nodes.pas │ ├── IniFileEx_Parser.pas │ ├── IniFileEx_Utils.pas │ ├── IniFileEx_defs.inc │ ├── ListSorters.pas │ ├── MemoryBuffer.pas │ ├── ProgressTracker.pas │ ├── SimpleCPUID.pas │ ├── SimpleCmdLineParser.pas │ ├── SimpleCompress.pas │ ├── SimpleLog.pas │ ├── SimpleLog_LogConsole.pas │ ├── StaticMemoryStream.pas │ ├── StrRect.pas │ ├── WinFileInfo.pas │ ├── WinTaskbarProgress.pas │ ├── ZLibCommon.pas │ ├── ZLibStatic.pas │ ├── ZLibUtils.pas │ ├── ZLib_defs.inc │ ├── zlib_win32 │ │ ├── adler32.o │ │ ├── adler32.obj │ │ ├── compress.o │ │ ├── compress.obj │ │ ├── crc32.o │ │ ├── crc32.obj │ │ ├── deflate.o │ │ ├── deflate.obj │ │ ├── gzclose.o │ │ ├── gzclose.obj │ │ ├── gzlib.o │ │ ├── gzlib.obj │ │ ├── gzread.o │ │ ├── gzread.obj │ │ ├── gzwrite.o │ │ ├── gzwrite.obj │ │ ├── infback.o │ │ ├── infback.obj │ │ ├── inffast.o │ │ ├── inffast.obj │ │ ├── inflate.o │ │ ├── inflate.obj │ │ ├── inftrees.o │ │ ├── inftrees.obj │ │ ├── trees.o │ │ ├── trees.obj │ │ ├── uncompr.o │ │ ├── uncompr.obj │ │ ├── zutil.o │ │ └── zutil.obj │ └── zlib_win64 │ │ ├── adler32.o │ │ ├── compress.o │ │ ├── crc32.o │ │ ├── deflate.o │ │ ├── gzclose.o │ │ ├── gzlib.o │ │ ├── gzread.o │ │ ├── gzwrite.o │ │ ├── infback.o │ │ ├── inffast.o │ │ ├── inflate.o │ │ ├── inftrees.o │ │ ├── trees.o │ │ ├── uncompr.o │ │ └── zutil.o ├── SII_3nK_Transcoder.pas ├── SII_3nK_defs.inc ├── SII_Decode_Common.pas ├── SII_Decode_DataBlock.pas ├── SII_Decode_Decoder.pas ├── SII_Decode_FieldData.pas ├── SII_Decode_Utils.pas ├── SII_Decode_ValueNode.pas ├── SII_Decode_defs.inc ├── SII_Decrypt_Decryptor.pas ├── SII_Decrypt_ProcessingThread.pas ├── SII_Decrypt_defs.inc └── ValueNodes │ ├── SII_Decode_ValueNode_00000001.pas │ ├── SII_Decode_ValueNode_00000002.pas │ ├── SII_Decode_ValueNode_00000003.pas │ ├── SII_Decode_ValueNode_00000004.pas │ ├── SII_Decode_ValueNode_00000005.pas │ ├── SII_Decode_ValueNode_00000006.pas │ ├── SII_Decode_ValueNode_00000007.pas │ ├── SII_Decode_ValueNode_00000008.pas │ ├── SII_Decode_ValueNode_00000009.pas │ ├── SII_Decode_ValueNode_0000000A.pas │ ├── SII_Decode_ValueNode_00000011.pas │ ├── SII_Decode_ValueNode_00000012.pas │ ├── SII_Decode_ValueNode_00000017.pas │ ├── SII_Decode_ValueNode_00000018.pas │ ├── SII_Decode_ValueNode_00000019.pas │ ├── SII_Decode_ValueNode_0000001A.pas │ ├── SII_Decode_ValueNode_00000025.pas │ ├── SII_Decode_ValueNode_00000026.pas │ ├── SII_Decode_ValueNode_00000027.pas │ ├── SII_Decode_ValueNode_00000028.pas │ ├── SII_Decode_ValueNode_00000029.pas │ ├── SII_Decode_ValueNode_0000002A.pas │ ├── SII_Decode_ValueNode_0000002B.pas │ ├── SII_Decode_ValueNode_0000002C.pas │ ├── SII_Decode_ValueNode_0000002F.pas │ ├── SII_Decode_ValueNode_00000031.pas │ ├── SII_Decode_ValueNode_00000032.pas │ ├── SII_Decode_ValueNode_00000033.pas │ ├── SII_Decode_ValueNode_00000034.pas │ ├── SII_Decode_ValueNode_00000035.pas │ ├── SII_Decode_ValueNode_00000036.pas │ ├── SII_Decode_ValueNode_00000037.pas │ ├── SII_Decode_ValueNode_00000038.pas │ ├── SII_Decode_ValueNode_00000039.pas │ └── SII_Decode_ValueNode_0000003A.pas ├── TestFiles └── readme.txt ├── Tester ├── Delphi │ ├── DCU │ │ └── .gitkeep │ ├── SII_Decrypt_Tester.cfg │ ├── SII_Decrypt_Tester.dof │ └── SII_Decrypt_Tester.dpr ├── Lazarus │ ├── SII_Decrypt_Tester.lpi │ ├── SII_Decrypt_Tester.lpr │ ├── SII_Decrypt_Tester.res │ ├── win_x64 │ │ └── .gitkeep │ └── win_x86 │ │ └── .gitkeep ├── SII_Decrypt_Tester_Library.pas ├── SII_Decrypt_Tester_LibraryDirect.pas ├── SII_Decrypt_Tester_Main.pas └── SII_Decrypt_Tester_Program.pas ├── license.txt ├── program_readme.txt ├── readme.txt └── todo.txt /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | custom: ['https://www.paypal.me/FMilt'] -------------------------------------------------------------------------------- /Documents/Binary SII - Format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/Binary SII - Format.txt -------------------------------------------------------------------------------- /Documents/Binary SII - Types.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/Binary SII - Types.txt -------------------------------------------------------------------------------- /Documents/PayPal.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/PayPal.bmp -------------------------------------------------------------------------------- /Documents/gui_screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/gui_screen.jpg -------------------------------------------------------------------------------- /Documents/gui_screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/gui_screen.png -------------------------------------------------------------------------------- /Documents/prog_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/prog_icon.png -------------------------------------------------------------------------------- /Documents/prog_icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/prog_icon.svg -------------------------------------------------------------------------------- /Documents/prog_icon_small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/prog_icon_small.ico -------------------------------------------------------------------------------- /Documents/prog_icon_vista.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/prog_icon_vista.ico -------------------------------------------------------------------------------- /Documents/prog_icon_xp.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Documents/prog_icon_xp.ico -------------------------------------------------------------------------------- /Library/Delphi/DCU/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Delphi/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Delphi/SII_Decrypt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Delphi/SII_Decrypt.cfg -------------------------------------------------------------------------------- /Library/Delphi/SII_Decrypt.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Delphi/SII_Decrypt.dof -------------------------------------------------------------------------------- /Library/Delphi/SII_Decrypt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Delphi/SII_Decrypt.dpr -------------------------------------------------------------------------------- /Library/Delphi/SII_Decrypt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Delphi/SII_Decrypt.res -------------------------------------------------------------------------------- /Library/Lazarus/Debug/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Lazarus/Debug/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Lazarus/Release/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Lazarus/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Library/Lazarus/SII_Decrypt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Lazarus/SII_Decrypt.lpi -------------------------------------------------------------------------------- /Library/Lazarus/SII_Decrypt.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Lazarus/SII_Decrypt.lpr -------------------------------------------------------------------------------- /Library/Lazarus/SII_Decrypt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/Lazarus/SII_Decrypt.res -------------------------------------------------------------------------------- /Library/SII_Decrypt_Library_Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/SII_Decrypt_Library_Common.pas -------------------------------------------------------------------------------- /Library/SII_Decrypt_Library_Decryptor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/SII_Decrypt_Library_Decryptor.pas -------------------------------------------------------------------------------- /Library/SII_Decrypt_Library_Header.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/SII_Decrypt_Library_Header.pas -------------------------------------------------------------------------------- /Library/SII_Decrypt_Library_Standalone.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Library/SII_Decrypt_Library_Standalone.pas -------------------------------------------------------------------------------- /Program_Console/Delphi/DCU/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Delphi/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Delphi/SII_Decrypt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Delphi/SII_Decrypt.cfg -------------------------------------------------------------------------------- /Program_Console/Delphi/SII_Decrypt.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Delphi/SII_Decrypt.dof -------------------------------------------------------------------------------- /Program_Console/Delphi/SII_Decrypt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Delphi/SII_Decrypt.dpr -------------------------------------------------------------------------------- /Program_Console/Lazarus/Debug/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Lazarus/Debug/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Lazarus/Release/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Lazarus/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_Console/Lazarus/SII_Decrypt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Lazarus/SII_Decrypt.lpi -------------------------------------------------------------------------------- /Program_Console/Lazarus/SII_Decrypt.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Lazarus/SII_Decrypt.lpr -------------------------------------------------------------------------------- /Program_Console/Lazarus/SII_Decrypt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/Lazarus/SII_Decrypt.res -------------------------------------------------------------------------------- /Program_Console/SII_Decrypt_Program.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_Console/SII_Decrypt_Program.pas -------------------------------------------------------------------------------- /Program_GUI/Delphi/DCU/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Delphi/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Delphi/SII_Decrypt.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Delphi/SII_Decrypt.cfg -------------------------------------------------------------------------------- /Program_GUI/Delphi/SII_Decrypt.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Delphi/SII_Decrypt.dof -------------------------------------------------------------------------------- /Program_GUI/Delphi/SII_Decrypt.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Delphi/SII_Decrypt.dpr -------------------------------------------------------------------------------- /Program_GUI/Delphi/SII_Decrypt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Delphi/SII_Decrypt.res -------------------------------------------------------------------------------- /Program_GUI/Lazarus/Debug/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Lazarus/Debug/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Lazarus/Release/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Lazarus/Release/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Program_GUI/Lazarus/SII_Decrypt.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Lazarus/SII_Decrypt.ico -------------------------------------------------------------------------------- /Program_GUI/Lazarus/SII_Decrypt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Lazarus/SII_Decrypt.lpi -------------------------------------------------------------------------------- /Program_GUI/Lazarus/SII_Decrypt.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Lazarus/SII_Decrypt.lpr -------------------------------------------------------------------------------- /Program_GUI/Lazarus/SII_Decrypt.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/Lazarus/SII_Decrypt.res -------------------------------------------------------------------------------- /Program_GUI/MainForm.dfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/MainForm.dfm -------------------------------------------------------------------------------- /Program_GUI/MainForm.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/MainForm.lfm -------------------------------------------------------------------------------- /Program_GUI/MainForm.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Program_GUI/MainForm.pas -------------------------------------------------------------------------------- /Scripts/Build GUI program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build GUI program.bat -------------------------------------------------------------------------------- /Scripts/Build Library.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build Library.bat -------------------------------------------------------------------------------- /Scripts/Build Tester.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build Tester.bat -------------------------------------------------------------------------------- /Scripts/Build all (log).bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build all (log).bat -------------------------------------------------------------------------------- /Scripts/Build all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build all.bat -------------------------------------------------------------------------------- /Scripts/Build console program.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Build console program.bat -------------------------------------------------------------------------------- /Scripts/Clear GUI program builds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Clear GUI program builds.bat -------------------------------------------------------------------------------- /Scripts/Clear Library builds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Clear Library builds.bat -------------------------------------------------------------------------------- /Scripts/Clear Tester builds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Clear Tester builds.bat -------------------------------------------------------------------------------- /Scripts/Clear all.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Clear all.bat -------------------------------------------------------------------------------- /Scripts/Clear console program builds.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Clear console program builds.bat -------------------------------------------------------------------------------- /Scripts/Create Basic release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Create Basic release.bat -------------------------------------------------------------------------------- /Scripts/Create full release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Create full release.bat -------------------------------------------------------------------------------- /Scripts/Create normal release.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Scripts/Create normal release.bat -------------------------------------------------------------------------------- /Source/Libs/AES.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/AES.pas -------------------------------------------------------------------------------- /Source/Libs/AES_Assembly.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/AES_Assembly.inc -------------------------------------------------------------------------------- /Source/Libs/AuxClasses.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/AuxClasses.pas -------------------------------------------------------------------------------- /Source/Libs/AuxExceptions.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/AuxExceptions.pas -------------------------------------------------------------------------------- /Source/Libs/AuxTypes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/AuxTypes.pas -------------------------------------------------------------------------------- /Source/Libs/BinTextEnc.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/BinTextEnc.pas -------------------------------------------------------------------------------- /Source/Libs/BinaryStreaming.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/BinaryStreaming.pas -------------------------------------------------------------------------------- /Source/Libs/CRC32.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/CRC32.pas -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_CharType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_CharType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_CompFuncType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_CompFuncType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_DTParserEventType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_DTParserEventType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_DTParserType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_DTParserType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_ListType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_ListType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_PCharType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_PCharType.inc -------------------------------------------------------------------------------- /Source/Libs/ESL_inc/ESL_StringType.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ESL_inc/ESL_StringType.inc -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringLists.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringLists.inc -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringLists.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringLists.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsA.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsA.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsBase.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsBase.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsO.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsO.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsParser.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsParser.inc -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsParser.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringListsW.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringListsW.pas -------------------------------------------------------------------------------- /Source/Libs/ExplicitStringLists_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ExplicitStringLists_defs.inc -------------------------------------------------------------------------------- /Source/Libs/FloatHex.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/FloatHex.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx_Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx_Common.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx_Nodes.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx_Nodes.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx_Parser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx_Parser.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx_Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx_Utils.pas -------------------------------------------------------------------------------- /Source/Libs/IniFileEx_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/IniFileEx_defs.inc -------------------------------------------------------------------------------- /Source/Libs/ListSorters.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ListSorters.pas -------------------------------------------------------------------------------- /Source/Libs/MemoryBuffer.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/MemoryBuffer.pas -------------------------------------------------------------------------------- /Source/Libs/ProgressTracker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ProgressTracker.pas -------------------------------------------------------------------------------- /Source/Libs/SimpleCPUID.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/SimpleCPUID.pas -------------------------------------------------------------------------------- /Source/Libs/SimpleCmdLineParser.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/SimpleCmdLineParser.pas -------------------------------------------------------------------------------- /Source/Libs/SimpleCompress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/SimpleCompress.pas -------------------------------------------------------------------------------- /Source/Libs/SimpleLog.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/SimpleLog.pas -------------------------------------------------------------------------------- /Source/Libs/SimpleLog_LogConsole.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/SimpleLog_LogConsole.pas -------------------------------------------------------------------------------- /Source/Libs/StaticMemoryStream.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/StaticMemoryStream.pas -------------------------------------------------------------------------------- /Source/Libs/StrRect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/StrRect.pas -------------------------------------------------------------------------------- /Source/Libs/WinFileInfo.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/WinFileInfo.pas -------------------------------------------------------------------------------- /Source/Libs/WinTaskbarProgress.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/WinTaskbarProgress.pas -------------------------------------------------------------------------------- /Source/Libs/ZLibCommon.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ZLibCommon.pas -------------------------------------------------------------------------------- /Source/Libs/ZLibStatic.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ZLibStatic.pas -------------------------------------------------------------------------------- /Source/Libs/ZLibUtils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ZLibUtils.pas -------------------------------------------------------------------------------- /Source/Libs/ZLib_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/ZLib_defs.inc -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/adler32.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/adler32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/adler32.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/compress.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/compress.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/compress.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/crc32.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/crc32.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/crc32.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/deflate.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/deflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/deflate.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzclose.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzclose.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzclose.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzclose.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzlib.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzlib.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzlib.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzread.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzread.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzread.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzwrite.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzwrite.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/gzwrite.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/gzwrite.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/infback.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/infback.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/infback.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/infback.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inffast.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inffast.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inffast.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inflate.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inflate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inflate.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inftrees.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/inftrees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/inftrees.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/trees.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/trees.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/trees.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/uncompr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/uncompr.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/uncompr.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/uncompr.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/zutil.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win32/zutil.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win32/zutil.obj -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/adler32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/adler32.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/compress.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/compress.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/crc32.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/crc32.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/deflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/deflate.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/gzclose.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/gzclose.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/gzlib.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/gzlib.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/gzread.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/gzread.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/gzwrite.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/gzwrite.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/infback.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/infback.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/inffast.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/inffast.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/inflate.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/inflate.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/inftrees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/inftrees.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/trees.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/trees.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/uncompr.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/uncompr.o -------------------------------------------------------------------------------- /Source/Libs/zlib_win64/zutil.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/Libs/zlib_win64/zutil.o -------------------------------------------------------------------------------- /Source/SII_3nK_Transcoder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_3nK_Transcoder.pas -------------------------------------------------------------------------------- /Source/SII_3nK_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_3nK_defs.inc -------------------------------------------------------------------------------- /Source/SII_Decode_Common.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_Common.pas -------------------------------------------------------------------------------- /Source/SII_Decode_DataBlock.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_DataBlock.pas -------------------------------------------------------------------------------- /Source/SII_Decode_Decoder.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_Decoder.pas -------------------------------------------------------------------------------- /Source/SII_Decode_FieldData.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_FieldData.pas -------------------------------------------------------------------------------- /Source/SII_Decode_Utils.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_Utils.pas -------------------------------------------------------------------------------- /Source/SII_Decode_ValueNode.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_ValueNode.pas -------------------------------------------------------------------------------- /Source/SII_Decode_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decode_defs.inc -------------------------------------------------------------------------------- /Source/SII_Decrypt_Decryptor.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decrypt_Decryptor.pas -------------------------------------------------------------------------------- /Source/SII_Decrypt_ProcessingThread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decrypt_ProcessingThread.pas -------------------------------------------------------------------------------- /Source/SII_Decrypt_defs.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/SII_Decrypt_defs.inc -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000001.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000001.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000002.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000002.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000003.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000003.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000004.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000004.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000005.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000005.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000006.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000006.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000007.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000007.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000008.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000008.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000009.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000009.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000000A.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000000A.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000011.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000011.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000012.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000012.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000017.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000017.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000018.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000018.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000019.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000019.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000001A.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000001A.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000025.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000025.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000026.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000026.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000027.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000027.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000028.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000028.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000029.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000029.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000002A.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000002A.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000002B.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000002B.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000002C.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000002C.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000002F.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000002F.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000031.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000031.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000032.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000032.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000033.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000033.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000034.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000034.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000035.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000035.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000036.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000036.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000037.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000037.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000038.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000038.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_00000039.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_00000039.pas -------------------------------------------------------------------------------- /Source/ValueNodes/SII_Decode_ValueNode_0000003A.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Source/ValueNodes/SII_Decode_ValueNode_0000003A.pas -------------------------------------------------------------------------------- /TestFiles/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/TestFiles/readme.txt -------------------------------------------------------------------------------- /Tester/Delphi/DCU/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tester/Delphi/SII_Decrypt_Tester.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Delphi/SII_Decrypt_Tester.cfg -------------------------------------------------------------------------------- /Tester/Delphi/SII_Decrypt_Tester.dof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Delphi/SII_Decrypt_Tester.dof -------------------------------------------------------------------------------- /Tester/Delphi/SII_Decrypt_Tester.dpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Delphi/SII_Decrypt_Tester.dpr -------------------------------------------------------------------------------- /Tester/Lazarus/SII_Decrypt_Tester.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Lazarus/SII_Decrypt_Tester.lpi -------------------------------------------------------------------------------- /Tester/Lazarus/SII_Decrypt_Tester.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Lazarus/SII_Decrypt_Tester.lpr -------------------------------------------------------------------------------- /Tester/Lazarus/SII_Decrypt_Tester.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/Lazarus/SII_Decrypt_Tester.res -------------------------------------------------------------------------------- /Tester/Lazarus/win_x64/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tester/Lazarus/win_x86/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tester/SII_Decrypt_Tester_Library.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/SII_Decrypt_Tester_Library.pas -------------------------------------------------------------------------------- /Tester/SII_Decrypt_Tester_LibraryDirect.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/SII_Decrypt_Tester_LibraryDirect.pas -------------------------------------------------------------------------------- /Tester/SII_Decrypt_Tester_Main.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/SII_Decrypt_Tester_Main.pas -------------------------------------------------------------------------------- /Tester/SII_Decrypt_Tester_Program.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/Tester/SII_Decrypt_Tester_Program.pas -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/license.txt -------------------------------------------------------------------------------- /program_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/program_readme.txt -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/readme.txt -------------------------------------------------------------------------------- /todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLazyTomcat/SII_Decrypt/HEAD/todo.txt --------------------------------------------------------------------------------