Many thanks for making this available, liked it enough to login to BCT and post for the first time in years!!
I started playing with the all addresses with balance data and made a poor version of a full ranked list. Simple one line command in bash or git bash (and others) if people are interested.
For those that want to, download the data file locally and use something like this (probably more efficient ways to do this but I was in a hurry

) :
zcat datafile.tar.gz | grep -v address | sort -k2 -nr | nl -w8 - > outputfilename.txt
This will rank from largest as #1 down to smallest (over 50 million currently).
Unfortunately it seems the BTC addresses that I have are off-chain / micro wallets. Is this an area that interests you to expand the dataset? (I don't know much about how these sort of wallets/systems work under the covers at this stage so not sure what is in the art of the possible)
Assuming the places that run these wallets provide access to the data in some way of course, at this stage I haven't gone down the path of opening any discussion with blockchair directly.
Enjoy!