├── .gitignore ├── README.md ├── binaries ├── KrkrHxv4Hash.dll ├── krkr_hxv4_dumphash.dll ├── pbd2json.exe └── psb_decompile │ ├── PsbDecompile.exe │ ├── PsbDecompile.exe.config │ └── lib │ ├── BCnEncoder.dll │ ├── Be.IO.dll │ ├── FastBitmapLib.dll │ ├── FreeMote.FastLz.dll │ ├── FreeMote.NET.dll │ ├── FreeMote.Plugins.dll │ ├── FreeMote.Plugins.x64.dll │ ├── FreeMote.PsBuild.dll │ ├── FreeMote.Psb.dll │ ├── FreeMote.dll │ ├── K4os.Compression.LZ4.Streams.dll │ ├── K4os.Compression.LZ4.dll │ ├── K4os.Hash.xxHash.dll │ ├── McMaster.Extensions.CommandLineUtils.dll │ ├── MersenneTwister.dll │ ├── Microsoft.Bcl.HashCode.dll │ ├── Microsoft.IO.RecyclableMemoryStream.dll │ ├── Microsoft.Toolkit.HighPerformance.dll │ ├── Newtonsoft.Json.dll │ ├── PhotoShop.dll │ ├── System.Buffers.dll │ ├── System.Drawing.Common.dll │ ├── System.IO.Pipelines.dll │ ├── System.Memory.dll │ ├── System.Numerics.Vectors.dll │ ├── System.Runtime.CompilerServices.Unsafe.dll │ ├── System.Threading.Tasks.Extensions.dll │ ├── System.ValueTuple.dll │ ├── TlgLib.dll │ ├── VGAudio.dll │ ├── XMemCompress.dll │ ├── XmpCore.dll │ ├── ZstdNet.dll │ ├── emotedriver.dll │ ├── x64 │ ├── libzstd.dll │ └── xcompress.dll │ └── x86 │ ├── libzstd.dll │ └── xcompress.dll ├── config.py ├── main.py ├── plain_dict.py └── utils ├── __init__.py ├── deprecated ├── filehash.py ├── move_bomhash_files.py └── pathhash.py ├── file_utils.py ├── generate_clean_hxnames.py ├── get_progress_percent.py ├── krkr_hxv4_hash.py ├── restore_dir_structure.py └── tjs_parser.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/README.md -------------------------------------------------------------------------------- /binaries/KrkrHxv4Hash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/KrkrHxv4Hash.dll -------------------------------------------------------------------------------- /binaries/krkr_hxv4_dumphash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/krkr_hxv4_dumphash.dll -------------------------------------------------------------------------------- /binaries/pbd2json.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/pbd2json.exe -------------------------------------------------------------------------------- /binaries/psb_decompile/PsbDecompile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/PsbDecompile.exe -------------------------------------------------------------------------------- /binaries/psb_decompile/PsbDecompile.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/PsbDecompile.exe.config -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/BCnEncoder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/BCnEncoder.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/Be.IO.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/Be.IO.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FastBitmapLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FastBitmapLib.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.FastLz.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.FastLz.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.NET.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.NET.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.Plugins.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.Plugins.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.Plugins.x64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.Plugins.x64.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.PsBuild.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.PsBuild.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.Psb.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.Psb.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/FreeMote.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/FreeMote.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/K4os.Compression.LZ4.Streams.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/K4os.Compression.LZ4.Streams.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/K4os.Compression.LZ4.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/K4os.Compression.LZ4.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/K4os.Hash.xxHash.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/K4os.Hash.xxHash.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/McMaster.Extensions.CommandLineUtils.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/McMaster.Extensions.CommandLineUtils.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/MersenneTwister.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/MersenneTwister.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/Microsoft.Bcl.HashCode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/Microsoft.Bcl.HashCode.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/Microsoft.IO.RecyclableMemoryStream.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/Microsoft.IO.RecyclableMemoryStream.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/Microsoft.Toolkit.HighPerformance.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/Microsoft.Toolkit.HighPerformance.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/PhotoShop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/PhotoShop.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Buffers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Buffers.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Drawing.Common.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Drawing.Common.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.IO.Pipelines.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.IO.Pipelines.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Memory.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Memory.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Numerics.Vectors.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Numerics.Vectors.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Runtime.CompilerServices.Unsafe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Runtime.CompilerServices.Unsafe.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.Threading.Tasks.Extensions.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.Threading.Tasks.Extensions.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/System.ValueTuple.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/System.ValueTuple.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/TlgLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/TlgLib.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/VGAudio.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/VGAudio.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/XMemCompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/XMemCompress.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/XmpCore.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/XmpCore.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/ZstdNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/ZstdNet.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/emotedriver.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/emotedriver.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/x64/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/x64/libzstd.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/x64/xcompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/x64/xcompress.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/x86/libzstd.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/x86/libzstd.dll -------------------------------------------------------------------------------- /binaries/psb_decompile/lib/x86/xcompress.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/binaries/psb_decompile/lib/x86/xcompress.dll -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/config.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/main.py -------------------------------------------------------------------------------- /plain_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/plain_dict.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/deprecated/filehash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/deprecated/filehash.py -------------------------------------------------------------------------------- /utils/deprecated/move_bomhash_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/deprecated/move_bomhash_files.py -------------------------------------------------------------------------------- /utils/deprecated/pathhash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/deprecated/pathhash.py -------------------------------------------------------------------------------- /utils/file_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/file_utils.py -------------------------------------------------------------------------------- /utils/generate_clean_hxnames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/generate_clean_hxnames.py -------------------------------------------------------------------------------- /utils/get_progress_percent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/get_progress_percent.py -------------------------------------------------------------------------------- /utils/krkr_hxv4_hash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/krkr_hxv4_hash.py -------------------------------------------------------------------------------- /utils/restore_dir_structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/restore_dir_structure.py -------------------------------------------------------------------------------- /utils/tjs_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MLChinoo/hxv4_deobf_tools/HEAD/utils/tjs_parser.py --------------------------------------------------------------------------------