Turbo.FontScheme = Turbo.LoadSystemScheme("font.json");var font_header = Turbo.ReadBinaryObject(stream, Turbo.FontScheme.header);// Now font_header has all the properties from the font.json's `header' array, loaded from the ByteArray reader `stream'.if(font_header.signature != Turbo.FontScheme.signature) throw "Bad signature. Should be " + Turbo.FontScheme.signature + " instead of " + font_header.signature;var characters = new Array(font_header.num_characters);//...