Quite easily
bitarray60000 = 1<<60000
With that, you can use bitshift operator to your heart content.
For instance, position 2 set True would be:
bitarray60000 | 1<<2
Getting bit from position 2
bitarray60000 & 1<<2
I guess the idea is quite simple. Though some operations might be tricky.