The community has figured out what the random numbers for the GDK users folder is btw:
const FNV_64_OFFSET_BASIS = BigInt('0xcbf29ce484222325');
const FNV_64_PRIME = BigInt('0x100000001b3');
const FNV_64_MASK = BigInt('0xffffffffffffffff');
function fnv1_64(input: string): bigint {
let hash = FNV_64_OFFSET_BASIS;
for(let i=0;i<input.length;i++){
hash = (hash * FNV_64_PRIME) ^ BigInt(input.charCodeAt(i) & 0xff);
hash &= FNV_64_MASK;
}
return hash;
}
console.log(fnv1_64('2535449383982194'))





🔥


when




Because new feature require min version etc.
The joke is that we would have to update format versions either way.








