if (c < 0x00 || c > 0xff) {
            const reason = `byte out of range 0x00 <= ${c} <= 0xFF`;
            const position = {start, end: start + 1};
            throw new Base32DecodeError(reason, bytes, position);
        }