├── .gitattributes ├── .gitignore ├── README.md ├── hashes └── lol │ ├── hashes.binentries.txt │ ├── hashes.binfields.txt │ ├── hashes.binhashes.txt │ ├── hashes.bintypes.txt │ ├── hashes.game.txt.0 │ ├── hashes.game.txt.1 │ ├── hashes.lcu.txt │ ├── hashes.rst.txt │ ├── hashes.rst.xxh3.txt │ └── hashes.rst.xxh64.txt └── tools ├── git-merge-hashes ├── hashes-merge └── hashes-prepare /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/README.md -------------------------------------------------------------------------------- /hashes/lol/hashes.binentries.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.binentries.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.binfields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.binfields.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.binhashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.binhashes.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.bintypes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.bintypes.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.game.txt.0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.game.txt.0 -------------------------------------------------------------------------------- /hashes/lol/hashes.game.txt.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.game.txt.1 -------------------------------------------------------------------------------- /hashes/lol/hashes.lcu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.lcu.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.rst.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.rst.xxh3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.rst.xxh3.txt -------------------------------------------------------------------------------- /hashes/lol/hashes.rst.xxh64.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/hashes/lol/hashes.rst.xxh64.txt -------------------------------------------------------------------------------- /tools/git-merge-hashes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/tools/git-merge-hashes -------------------------------------------------------------------------------- /tools/hashes-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/tools/hashes-merge -------------------------------------------------------------------------------- /tools/hashes-prepare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityDragon/Data/HEAD/tools/hashes-prepare --------------------------------------------------------------------------------