Public signup for this instance is disabled. Go to our Self serve sign up page to request an account. Report potential security issues privately
That value is defined as
SMALL_LIMIT = 1 << 7; MEDIUM_LIMIT = 1 << (16-2) + SMALL_LIMIT;
However it should most likely be
MEDIUM_LIMIT = (1 << 16-2) + SMALL_LIMIT;