diff --git a/modular-psu-firmware.eez-project b/modular-psu-firmware.eez-project index 9d70536ee..630c8b3bb 100644 --- a/modular-psu-firmware.eez-project +++ b/modular-psu-firmware.eez-project @@ -1981,6 +1981,11 @@ "name": "file_manager_opened_image", "type": "integer", "defaultValue": "0" + }, + { + "name": "script_info", + "type": "string", + "defaultValue": "script info" } ], "actions": [ @@ -7705,7 +7710,7 @@ "left": 222, "top": 158, "width": 248, - "height": 72, + "height": 100, "name": "Overlay", "widgets": [ { @@ -7866,6 +7871,33 @@ ] } ] + }, + { + "type": "Text", + "style": { + "inheritFrom": "overlay", + "font": "Heydings14" + }, + "left": 8, + "top": 64, + "width": 28, + "height": 28, + "text": "\\u007d", + "focusStyle": {} + }, + { + "type": "Text", + "style": { + "inheritFrom": "overlay", + "alignHorizontal": "left" + }, + "data": "script_info", + "left": 40, + "top": 64, + "width": 200, + "height": 28, + "text": "", + "focusStyle": {} } ], "overlay": "overlay", diff --git a/modular-psu-firmware.eez-project.bak b/modular-psu-firmware.eez-project.bak deleted file mode 100644 index d902961e1..000000000 --- a/modular-psu-firmware.eez-project.bak +++ /dev/null @@ -1,446299 +0,0 @@ -{ - "settings": { - "general": { - "projectVersion": "v2", - "scpiDocFolder": "docs\\SCPI reference guide\\Commands" - }, - "build": { - "configurations": [ - { - "name": "stm32", - "description": "Modular PSU", - "properties": "{\n \"connection\": {\n \"ethernet\": {\n \"port\": 5025\n },\n \"serial\": {\n \"baudRates\": [9600, 19200, 38400, 57600, 74880, 115200, 230400, 250000],\n \"defaultBaudRate\": 115200\n }\n },\n \"channels\": [\n {\n \"maxVoltage\": 40,\n \"maxCurrent\": 5,\n \"maxPower\": 155\n },\n {\n \"maxVoltage\": 40,\n \"maxCurrent\": 5,\n \"maxPower\": 155\n }\n ],\n \"lists\": {\n \"maxPoints\": 256,\n \"minDwell\": 0.0001,\n \"maxDwell\": 65535,\n \"dwellDigits\": 4,\n \"voltageDigits\": 3,\n \"currentDigits\": 3\n },\n \"fileDownload\": {\n \"shortFileName\": false,\n \"startCommand\": \"MMEM:DOWN:FNAMe \",\n \"fileSizeCommand\": \"MMEM:DOWN:SIZE \",\n \"sendChunkCommand\": \"MMEM:DOWN:DATA \",\n \"finishCommand\": \"MMEM:DOWN:FNAMe \\\"\\\"\",\n \"abortCommand\": \"MMEM:DOWN:ABORt\",\n \"chunkSize\": 1024\n }\n}" - }, - { - "name": "simulator", - "description": "Cross-platfrom simulator for EEZ PSU", - "properties": "{\n \"connection\": {\n \"ethernet\": {\n \"port\": 5025\n },\n \"serial\": {\n \"baudRates\": [9600, 19200, 38400, 57600, 74880, 115200, 230400, 250000],\n \"defaultBaudRate\": 115200\n }\n },\n \"channels\": [\n {\n \"maxVoltage\": 40,\n \"maxCurrent\": 5,\n \"maxPower\": 155\n },\n {\n \"maxVoltage\": 40,\n \"maxCurrent\": 5,\n \"maxPower\": 155\n }\n ],\n \"lists\": {\n \"maxPoints\": 256,\n \"minDwell\": 0.0001,\n \"maxDwell\": 65535,\n \"dwellDigits\": 4,\n \"voltageDigits\": 3,\n \"currentDigits\": 3\n },\n \"fileDownload\": {\n \"shortFileName\": false,\n \"startCommand\": \"MMEM:DOWN:FNAMe \",\n \"fileSizeCommand\": \"MMEM:DOWN:SIZE \",\n \"sendChunkCommand\": \"MMEM:DOWN:DATA \",\n \"finishCommand\": \"MMEM:DOWN:FNAMe \\\"\\\"\",\n \"abortCommand\": \"MMEM:DOWN:ABORt\",\n \"chunkSize\": 1024\n }\n}" - } - ], - "files": [ - { - "fileName": "gui/document_.h", - "template": "//${eez-studio DATA_ENUM}\n\n//${eez-studio DATA_FUNCS_DECL}\n\n//${eez-studio DATA_ARRAY_DECL}\n\n//${eez-studio ACTIONS_ENUM}\n\n//${eez-studio ACTIONS_FUNCS_DECL}\n\n//${eez-studio ACTIONS_ARRAY_DECL}\n\n//${eez-studio GUI_FONTS_ENUM}\n\n//${eez-studio GUI_BITMAPS_ENUM}\n\n//${eez-studio GUI_STYLES_ENUM}\n\n//${eez-studio GUI_THEMES_ENUM}\n\n//${eez-studio GUI_COLORS_ENUM}\n\n//${eez-studio GUI_PAGES_ENUM}\n\n#ifdef OPTION_SDRAM\n//${eez-studio GUI_ASSETS_DECL_COMPRESSED}\n#else\n//${eez-studio GUI_ASSETS_DECL}\n#endif\n" - }, - { - "fileName": "gui/document_.cpp", - "template": "//${eez-studio DATA_ARRAY_DEF}\n\n//${eez-studio ACTIONS_ARRAY_DEF}\n\n#ifdef OPTION_SDRAM\n//${eez-studio GUI_ASSETS_DEF_COMPRESSED}\n#else\n//${eez-studio GUI_ASSETS_DEF}\n#endif\n" - }, - { - "fileName": "scpi/commands_.h", - "template": "//${eez-studio SCPI_COMMANDS_DECL}\n" - } - ], - "destinationFolder": "src\\eez" - } - }, - "data": [ - { - "name": "edit_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channels", - "description": "list of installed channels", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}, {}]" - }, - { - "name": "channel_status", - "description": "0: not installed\n1: installed and ok\n2: installed and error", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"OK\",\n\"Error\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_output_state", - "description": "0: output is off\n1: output is on", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": 1 - }, - { - "name": "channel_is_cc", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "channel_is_cv", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "channel_u_set", - "description": "scpi: volt? and volt", - "type": "float", - "defaultValue": "30.00V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_u_mon", - "type": "float", - "defaultValue": "25.83V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_u_mon_snapshot", - "type": "float", - "defaultValue": "25.83V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_u_mon_dac", - "type": "float", - "defaultValue": "25.00V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_u_limit", - "type": "float", - "defaultValue": "35.00V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_u_edit", - "description": "scpi: volt? and volt", - "type": "float", - "defaultValue": "30.00V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_i_set", - "description": "scpi: curr? and curr", - "type": "float", - "defaultValue": "1.00A", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_i_mon", - "type": "float", - "defaultValue": "999.00mA", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_i_mon_snapshot", - "type": "float", - "defaultValue": "999.00mA", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_i_mon_dac", - "type": "float", - "defaultValue": "1.00A", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_i_limit", - "type": "float", - "defaultValue": "3.00A", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_i_edit", - "description": "", - "type": "float", - "defaultValue": "1.00A", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_p_mon", - "type": "float", - "defaultValue": "285.00W", - "defaultMinValue": 0, - "defaultMaxValue": 150 - }, - { - "name": "channel_p_mon_snapshot", - "type": "float", - "defaultValue": "285.00W", - "defaultMinValue": 0, - "defaultMaxValue": 150 - }, - { - "name": "channel_other_value_mon", - "type": "float", - "defaultValue": "999.00mA", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channels_is_max_view", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channels_view_mode", - "description": "0: Default (Voltage / Current)\n1: Horizontal bar graph\n2: Vertical bar graph\n3: YT", - "type": "enum", - "enumItems": "[\n\"Default\",\n\"Horizontal Bar\",\n\"Vertical Bar\",\n\"YT\"\n]", - "defaultValue": "0" - }, - { - "name": "channels_view_mode_in_default", - "description": "", - "type": "enum", - "enumItems": "[\n\"Default\",\n\"Vertical Bar\",\n\"Horizontal Bar\",\n\"YT\"\n]", - "defaultValue": "0" - }, - { - "name": "channels_view_mode_in_max", - "description": "", - "type": "enum", - "enumItems": "[\n\"Numeric\",\n\"Horizontal Bar\",\n\"YT\"\n]", - "defaultValue": "0" - }, - { - "name": "slot_max_channel_index", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "slot_max_view", - "type": "string", - "defaultValue": "slot_max_1ch_num_on" - }, - { - "name": "slot_min1_channel_index", - "type": "integer", - "defaultValue": "2" - }, - { - "name": "slot_min1_view", - "type": "string", - "defaultValue": "slot_min_1ch_on" - }, - { - "name": "slot_min2_channel_index", - "type": "integer", - "defaultValue": "3" - }, - { - "name": "slot_min2_view", - "type": "string", - "defaultValue": "slot_min_1ch_off" - }, - { - "name": "slot_micro1_view", - "type": "string", - "defaultValue": "slot_micro_1ch_on" - }, - { - "name": "slot_micro2_view", - "type": "string", - "defaultValue": "slot_micro_1ch_off" - }, - { - "name": "slot_micro3_view", - "type": "string", - "defaultValue": "slot_micro_2ch" - }, - { - "name": "channel_display_value1", - "type": "float", - "defaultValue": "25.00V", - "defaultMinValue": 8, - "defaultMaxValue": 40 - }, - { - "name": "channel_display_value2", - "type": "float", - "defaultValue": "1.00A", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "ovp", - "description": "scpi: volt:prot:stat? volt:prot:trip?", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Tripped\"\n]", - "defaultValue": 0 - }, - { - "name": "ocp", - "description": "scpi: curr:prot:stat? curr:prot:trip?", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Tripped\"\n]", - "defaultValue": 0 - }, - { - "name": "opp", - "description": "scpi: pow:prot:stat? pow:prot:trip?", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Tripped\"\n]", - "defaultValue": "1" - }, - { - "name": "otp_ch", - "description": "scpi: syst:temp:prot:stat? syst:temp:prot:trip?", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Tripped\"\n]", - "defaultValue": "2" - }, - { - "name": "otp_aux", - "description": "", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Tripped\"\n]", - "defaultValue": "1" - }, - { - "name": "alert_message", - "description": "Message in alert dialog", - "type": "string", - "defaultValue": "Are you sure?" - }, - { - "name": "alert_message_2", - "description": "Message in alert dialog", - "type": "string", - "defaultValue": "Second line" - }, - { - "name": "alert_message_3", - "description": "Message in alert dialog", - "type": "string", - "defaultValue": "Third line" - }, - { - "name": "edit_value", - "type": "float", - "defaultValue": "99.9999V", - "defaultMinValue": 0, - "defaultMaxValue": 50 - }, - { - "name": "edit_unit", - "type": "string", - "defaultValue": "mV" - }, - { - "name": "edit_info", - "type": "string", - "defaultValue": "Set Ch1 voltage [0-50 V]" - }, - { - "name": "edit_mode_interactive_mode_selector", - "description": "0: interactive mode\n1: non-interactive mode", - "type": "enum", - "enumItems": "[\n\"Interactive\",\n\"Non-interactive\"\n]", - "defaultValue": "1" - }, - { - "name": "edit_steps", - "type": "integer", - "defaultValue": "2", - "defaultValueList": "[\"5V\", \"2V\", \"1V\", \"500mV\", \"100mV\"]" - }, - { - "name": "master_info", - "type": "string", - "defaultValue": "STM32F7 r1B5" - }, - { - "name": "master_test_result", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "2" - }, - { - "name": "firmware_info", - "type": "string", - "defaultValue": "Firmware: M1" - }, - { - "name": "self_test_result", - "type": "string", - "defaultValue": "- FAN failed\\n- CH1 temp sensor failed" - }, - { - "name": "keypad_text", - "description": "Contains the text entered in keypad.", - "type": "string", - "defaultValue": "abc123|" - }, - { - "name": "keypad_caps", - "description": "0 - lower case\n1 - upper case", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "keypad_option1_text", - "type": "string", - "defaultValue": "max" - }, - { - "name": "keypad_option1_enabled", - "description": "Is \"max\" key on numeric keypad enabled?", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "keypad_option2_text", - "type": "string", - "defaultValue": "def" - }, - { - "name": "keypad_option2_enabled", - "description": "Is \"def\" key on numeric keypad enabled?", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "keypad_sign_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "keypad_dot_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "keypad_unit_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_label", - "description": "Channel label, i.e. \"Channel 1:\", \"Channel 2:\", etc.", - "type": "string", - "defaultValue": "Channel X:" - }, - { - "name": "channel_short_label", - "description": "Short channel label, i.e. \"CH1:\", \"CH2:\", etc.", - "type": "string", - "defaultValue": "Ch1:" - }, - { - "name": "channel_temp_status", - "description": "0: invalid (error)\n1: valid\n2: not installed", - "type": "enum", - "enumItems": "[\n\"Invalid\",\n\"Valid\",\n\"Not installed\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_temp", - "description": "", - "type": "float", - "defaultValue": "45.5oC" - }, - { - "name": "channel_on_time_total", - "description": "", - "type": "string", - "defaultValue": "323:33:10" - }, - { - "name": "channel_on_time_last", - "description": "", - "type": "string", - "defaultValue": "300:01:10" - }, - { - "name": "channel_calibration_status", - "description": "0 - not calibrated\n1 - calibrated", - "type": "enum", - "enumItems": "[\n\"Not calibrated\",\n\"Calibrated\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_calibration_state", - "description": "0 - not enabled\n1 - enabled", - "type": "enum", - "enumItems": "[\n\"Disabled\",\n\"Enabled\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_calibration_date", - "type": "string", - "defaultValue": "2016-12-31" - }, - { - "name": "channel_calibration_remark", - "type": "string", - "defaultValue": "" - }, - { - "name": "channel_calibration_step_is_set_remark_step", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "channel_calibration_step_num", - "description": "", - "type": "enum", - "enumItems": "[\n\"U min\",\n\"U mid\",\n\"U max\",\n\"I 5A min\",\n\"I 5A mid\",\n\"I 5A max\",\n\"I 50mA min\",\n\"I 50mA mid\",\n\"I 50mA max\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_calibration_step_status", - "description": "0 - calibration value is not defined\n1 - calibration value is defined", - "type": "enum", - "enumItems": "[\n\"Not defined\",\n\"Defined\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_calibration_step_level_value", - "type": "float", - "defaultValue": "50mV" - }, - { - "name": "channel_calibration_step_value", - "type": "float", - "defaultValue": "0.12 V" - }, - { - "name": "channel_calibration_step_prev_enabled", - "description": "Is previous step enabled?\n0 - No\n1 - Yes", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "channel_calibration_step_next_enabled", - "description": "Is next step enabled?\n0 - No\n1 - Yes", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "cal_ch_u_min", - "type": "float", - "defaultValue": "0.12V" - }, - { - "name": "cal_ch_u_mid", - "type": "float", - "defaultValue": "24.81V" - }, - { - "name": "cal_ch_u_max", - "type": "float", - "defaultValue": "48.12V" - }, - { - "name": "cal_ch_i0_min", - "type": "float", - "defaultValue": "0.02A" - }, - { - "name": "cal_ch_i0_mid", - "type": "float", - "defaultValue": "1.42A" - }, - { - "name": "cal_ch_i0_max", - "type": "float", - "defaultValue": "3.01A" - }, - { - "name": "cal_ch_i1_min", - "type": "float", - "defaultValue": "2mA" - }, - { - "name": "cal_ch_i1_mid", - "type": "float", - "defaultValue": "142mA" - }, - { - "name": "cal_ch_i1_max", - "type": "float", - "defaultValue": "301mA" - }, - { - "name": "channel_protection_status", - "type": "enum", - "enumItems": "[\n\"None\",\n\"OVP\",\n\"OCP\",\n\"OTP\",\n\"OPP\",\n\"Multiple\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_protection_ovp_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_protection_ovp_type", - "type": "enum", - "enumItems": "[\n\"HW\",\n\"SW\",\n\"SW_only\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_protection_ovp_level", - "type": "float", - "defaultValue": "40.00V" - }, - { - "name": "channel_protection_ovp_delay", - "type": "float", - "defaultValue": "0.05s" - }, - { - "name": "channel_protection_ovp_limit", - "type": "float", - "defaultValue": "30.50V" - }, - { - "name": "channel_protection_ocp_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_protection_ocp_delay", - "type": "float", - "defaultValue": "0.5s" - }, - { - "name": "channel_protection_ocp_limit", - "type": "float", - "defaultValue": "1.00A" - }, - { - "name": "channel_protection_ocp_max_current_limit_cause", - "description": "0: no cause\n1: fan\n2: temperature", - "type": "enum", - "enumItems": "[\n\"No cause\",\n\"Fan\",\n\"Temperature\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_protection_opp_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_protection_opp_level", - "type": "float", - "defaultValue": "150.00W" - }, - { - "name": "channel_protection_opp_delay", - "type": "float", - "defaultValue": "60 s" - }, - { - "name": "channel_protection_opp_limit", - "type": "float", - "defaultValue": "100.00W" - }, - { - "name": "channel_protection_otp_installed", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"Installed\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_protection_otp_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_protection_otp_level", - "type": "float", - "defaultValue": "125.00oC" - }, - { - "name": "channel_protection_otp_delay", - "defaultValue": "10s" - }, - { - "name": "event_queue_last_event_type", - "description": "0: none\n1: info\n2: warning\n3: error", - "type": "enum", - "enumItems": "[\n\"None\",\n\"Info\",\n\"Warning\",\n\"Error\"\n]", - "defaultValue": "3" - }, - { - "name": "event_queue_last_event_message", - "type": "string", - "defaultValue": "[2m ago] Ch1 OTP tripped" - }, - { - "name": "event_queue_events", - "description": "list of events in event queue", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}, {}, {}, {}]" - }, - { - "name": "event_queue_events_type", - "description": "0: none\n1: info\n2: warning\n3: error", - "type": "enum", - "enumItems": "[\n\"None\",\n\"Info\",\n\"Warning\",\n\"Error\"\n]", - "defaultValue": "3" - }, - { - "name": "event_queue_events_message", - "type": "string", - "defaultValue": "[2m ago] Ch1 OTP tripped" - }, - { - "name": "event_queue_multiple_pages", - "description": "0: single page only\n1: multiple pages", - "type": "enum", - "enumItems": "[\n\"Single page only\",\n\"Multiple pages\"\n]", - "defaultValue": "1" - }, - { - "name": "event_queue_previous_page_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "event_queue_next_page_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "event_queue_page_info", - "type": "string", - "defaultValue": "Page #1 of 2" - }, - { - "name": "channel_rsense_status", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_rprog_installed", - "description": "", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"Installed\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_rprog_status", - "description": "", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "0" - }, - { - "name": "channel_tracking_is_enabled", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "channel_tracking_is_allowed", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "channel_is_par_ser_coupled_or_tracked", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "coupling_type", - "description": "", - "type": "enum", - "enumItems": "[\n\"None\",\n\"Parallel\",\n\"Series\",\n\"Common gnd\",\n\"Split rails\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_coupling_is_series", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "0" - }, - { - "name": "sys_on_time_total", - "description": "", - "type": "string", - "defaultValue": "35d 10m 32s" - }, - { - "name": "sys_on_time_last", - "type": "string", - "defaultValue": "15m 10s" - }, - { - "name": "sys_temp_aux_status", - "description": "0: invalid (error)\n1: valid\n2: not installed", - "type": "enum", - "enumItems": "[\n\"Invalid\",\n\"Valid\",\n\"Not installed\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_temp_aux_otp_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_temp_aux_otp_level", - "type": "float", - "defaultValue": "125.00oC" - }, - { - "name": "sys_temp_aux_otp_delay", - "defaultValue": "10s" - }, - { - "name": "sys_temp_aux_otp_is_tripped", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "sys_temp_aux", - "type": "float", - "defaultValue": "45.5oC" - }, - { - "name": "sys_info_firmware_ver", - "type": "string", - "defaultValue": "M2" - }, - { - "name": "sys_info_serial_no", - "type": "string", - "defaultValue": "123456789" - }, - { - "name": "sys_info_scpi_ver", - "type": "string", - "defaultValue": "1999.0" - }, - { - "name": "sys_info_cpu", - "type": "string", - "defaultValue": "STM32F7" - }, - { - "name": "sys_info_fan_status", - "description": "", - "type": "enum", - "enumItems": "[\n\"Invalid\",\n\"Valid\",\n\"Unsupported\",\n\"Testing\",\n\"Not installed\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_info_fan_speed", - "type": "float", - "defaultValue": "2012rpm" - }, - { - "name": "channel_board_info_label", - "description": "", - "type": "string", - "defaultValue": "CH1 module:" - }, - { - "name": "channel_board_info_revision", - "description": "", - "type": "string", - "defaultValue": "R5B9" - }, - { - "name": "date_time_date", - "type": "string", - "defaultValue": "2016 - 12 - 28" - }, - { - "name": "date_time_year", - "type": "integer", - "defaultValue": "2016" - }, - { - "name": "date_time_month", - "type": "integer", - "defaultValue": "12" - }, - { - "name": "date_time_day", - "type": "integer", - "defaultValue": "28" - }, - { - "name": "date_time_time", - "type": "string", - "defaultValue": "23 : 58 : 48" - }, - { - "name": "date_time_hour", - "type": "integer", - "defaultValue": "23" - }, - { - "name": "date_time_minute", - "type": "integer", - "defaultValue": "58" - }, - { - "name": "date_time_second", - "type": "integer", - "defaultValue": "48" - }, - { - "name": "date_time_time_zone", - "type": "string", - "defaultValue": "+1 GMT" - }, - { - "name": "date_time_dst", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"Europe\",\n\"USA\"\n]", - "defaultValue": "Europe" - }, - { - "name": "set_page_dirty", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "profiles_list", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}, {}, {}, {}, {}, {}]" - }, - { - "name": "profiles_auto_recall_status", - "description": "0: disabled\n1: enabled", - "type": "enum", - "enumItems": "[\n\"Disabled\",\n\"Enabled\"\n]", - "defaultValue": "1" - }, - { - "name": "profiles_auto_recall_location", - "type": "string", - "defaultValue": "0" - }, - { - "name": "profile_status", - "description": "0: not installed\n1: installed", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"Installed\"\n]", - "defaultValue": "1" - }, - { - "name": "profile_label", - "type": "string", - "defaultValue": "[ 0 ]" - }, - { - "name": "profile_remark", - "type": "string", - "defaultValue": "This is very long remark, remark, remark, remark, remark ..." - }, - { - "name": "profile_is_auto_recall_location", - "description": "0 - no\n1 - yes", - "type": "enum", - "enumItems": "[\n\"No\",\n\"Yes\"\n]", - "defaultValue": "1" - }, - { - "name": "profile_channel_u_set", - "type": "float", - "defaultValue": "12.00V" - }, - { - "name": "profile_channel_i_set", - "type": "float", - "defaultValue": "1.00A" - }, - { - "name": "profile_channel_output_state", - "description": "0: output is off\n1: output is on", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\"\n]", - "defaultValue": "1" - }, - { - "name": "ethernet_installed", - "description": "0: not installed\n1: installed", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"Installed\"\n]", - "defaultValue": "1" - }, - { - "name": "ethernet_enabled", - "description": "0: disabled\n1: enabled", - "type": "enum", - "enumItems": "[\n\"Disabled\",\n\"Enabled\"\n]", - "defaultValue": "1" - }, - { - "name": "ethernet_status", - "description": "0: failed\n1: ok\n2: skipped\n3: warning", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "2" - }, - { - "name": "ethernet_ip_address", - "description": "", - "type": "string", - "defaultValue": "192.168.1.101" - }, - { - "name": "ethernet_dns", - "description": "", - "type": "string", - "defaultValue": "192.168.1.1" - }, - { - "name": "ethernet_gateway", - "description": "", - "type": "string", - "defaultValue": "192.168.1.1" - }, - { - "name": "ethernet_subnet_mask", - "description": "", - "type": "string", - "defaultValue": "255.255.255.0" - }, - { - "name": "ethernet_scpi_port", - "description": "", - "type": "integer", - "defaultValue": "5025" - }, - { - "name": "ethernet_is_connected", - "description": "", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "ethernet_dhcp", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "ethernet_mac", - "type": "string", - "defaultValue": "00-00-00-00-00-00" - }, - { - "name": "channel_is_voltage_balanced", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "channel_is_current_balanced", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_output_protection_coupled", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_shutdown_when_protection_tripped", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_force_disabling_all_outputs_on_power_up", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_password_is_set", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "sys_rl_state", - "type": "enum", - "enumItems": "[\n\"Local\",\n\"Remote\",\n\"RWLock\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_sound_is_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "sys_sound_is_click_enabled", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_sound_enabled", - "type": "enum", - "enumItems": "[\n\"Both disabled\",\n\"Both enabled\",\n\"Mixed\"\n]", - "defaultValue": "1" - }, - { - "name": "channel_display_view_settings_display_value1", - "type": "enum", - "enumItems": "[\n\"Voltage (V)\",\n\"Current (A)\",\n\"Power (W)\"\n]", - "defaultValue": "Voltage (V)" - }, - { - "name": "channel_display_view_settings_display_value2", - "type": "enum", - "enumItems": "[\n\"Voltage (V)\",\n\"Current (A)\",\n\"Power (W)\"\n]", - "defaultValue": "Power (W)" - }, - { - "name": "channel_display_view_settings_yt_view_rate", - "type": "float", - "defaultValue": "100 ms" - }, - { - "name": "sys_encoder_confirmation_mode", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "sys_encoder_moving_up_speed", - "type": "integer", - "defaultValue": "10\n", - "defaultMinValue": 1, - "defaultMaxValue": 10 - }, - { - "name": "sys_encoder_moving_down_speed", - "type": "integer", - "defaultValue": "1", - "defaultMinValue": 1, - "defaultMaxValue": 10 - }, - { - "name": "sys_encoder_installed", - "description": "0: not installed\n1: installed", - "type": "enum", - "enumItems": "[\n\"Not installed\",\n\"Installed\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_display_state", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "sys_display_brightness", - "type": "integer", - "defaultValue": "255" - }, - { - "name": "channel_trigger_mode", - "type": "enum", - "enumItems": "[\n\"Fixed\",\n\"List\",\n\"Step\"\n]", - "defaultValue": "Fixed" - }, - { - "name": "channel_trigger_output_state", - "type": "boolean", - "enumItems": "", - "defaultValue": "1", - "defaultMinValue": 0 - }, - { - "name": "channel_trigger_on_list_stop", - "type": "enum", - "enumItems": "[\n\"Output OFF\",\n\"Set to first step\",\n\"Set to last step\",\n\"Standby\"\n]", - "defaultValue": "Output OFF" - }, - { - "name": "channel_u_trigger_value", - "type": "float", - "defaultValue": "24.00V", - "defaultMinValue": 0, - "defaultMaxValue": 40 - }, - { - "name": "channel_i_trigger_value", - "type": "float", - "defaultValue": "2.00A", - "defaultMinValue": 0, - "defaultMaxValue": 5 - }, - { - "name": "channel_list_count", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "channel_lists", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}]" - }, - { - "name": "channel_list_index", - "type": "integer", - "defaultValue": "256" - }, - { - "name": "channel_list_dwell", - "type": "float", - "defaultValue": "0.01" - }, - { - "name": "channel_list_dwell_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_list_voltage", - "type": "float", - "defaultValue": "10.00" - }, - { - "name": "channel_list_voltage_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_list_current", - "type": "float", - "defaultValue": "2.00" - }, - { - "name": "channel_list_current_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_previous_page_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_next_page_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_cursor", - "type": "integer", - "defaultValue": "128" - }, - { - "name": "channel_lists_insert_menu_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_delete_menu_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_delete_row_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_clear_column_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_lists_delete_rows_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "trigger_source", - "type": "enum", - "enumItems": "[\n\"Bus\",\n\"Immediate\",\n\"Manual\",\n\"Pin1\"\n]", - "defaultValue": "Immediate" - }, - { - "name": "trigger_delay", - "type": "float", - "defaultValue": "0" - }, - { - "name": "trigger_initiate_continuously", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "trigger_is_initiated", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "trigger_is_manual", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_has_support_for_current_dual_range", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "channel_ranges_supported", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "channel_ranges_mode", - "type": "enum", - "enumItems": "[\n\"Best (default)\",\n\"50mA\",\n\"5A\"\n]", - "defaultValue": "Best (default)" - }, - { - "name": "channel_ranges_auto_ranging", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "channel_ranges_currently_selected", - "type": "string", - "defaultValue": "High" - }, - { - "name": "text_message", - "type": "string", - "defaultValue": "Hello, world!" - }, - { - "name": "serial_status", - "description": "0: failed\n1: ok\n2: skipped\n3: warning", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "2" - }, - { - "name": "serial_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "serial_is_connected", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "serial_baud", - "type": "integer", - "enumItems": "", - "defaultValue": "115200" - }, - { - "name": "serial_parity", - "type": "enum", - "enumItems": "[\n\"None\",\n\"Even\",\n\"Odd\",\n\"Mark\",\n\"Space\"\n]", - "defaultValue": "None" - }, - { - "name": "channel_list_countdown", - "type": "string", - "defaultValue": "23m 45s" - }, - { - "name": "io_pins", - "description": "", - "type": "list", - "defaultValue": "[{}, {}, {}, {}]" - }, - { - "name": "io_pins_inhibit_state", - "type": "enum", - "enumItems": "[\n\"Off\",\n\"On\",\n\"Not used\"\n]", - "defaultValue": "1" - }, - { - "name": "io_pin_number", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "io_pin_polarity", - "type": "boolean", - "enumItems": "", - "defaultValue": "1" - }, - { - "name": "io_pin_function", - "type": "enum", - "enumItems": "[\n\"None\",\n\"Fault\",\n\"Inhibit\",\n\"Couple\",\n\"Tinput\",\n\"Toutput\",\n]", - "defaultValue": "Couple" - }, - { - "name": "ntp_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "ntp_server", - "type": "string", - "defaultValue": "0.pool.ntp.org" - }, - { - "name": "async_operation_throbber", - "type": "string", - "defaultValue": "|" - }, - { - "name": "sys_display_background_luminosity_step", - "type": "integer", - "defaultValue": "10" - }, - { - "name": "progress", - "type": "float", - "defaultValue": "66%" - }, - { - "name": "main_app_view", - "type": "string", - "defaultValue": "sys_settings", - "usedIn": [ - "simulator" - ] - }, - { - "name": "touch_calibration_point", - "type": "enum", - "enumItems": "[\"Top left\", \"Bottom right\", \"Top right\"]", - "defaultValue": "0" - }, - { - "name": "slots", - "type": "list", - "defaultValue": "[{}, {}, {}]", - "usedIn": [ - "simulator" - ] - }, - { - "name": "simulator_load_state", - "description": "", - "type": "boolean", - "defaultValue": "1", - "usedIn": [ - "simulator" - ] - }, - { - "name": "simulator_load_state2", - "description": "", - "type": "boolean", - "defaultValue": "0", - "usedIn": [ - "simulator" - ] - }, - { - "name": "simulator_load", - "description": "", - "type": "float", - "defaultValue": "10 ohm", - "usedIn": [ - "simulator" - ] - }, - { - "name": "simulator_load2", - "description": "", - "type": "float", - "defaultValue": "5 ohm", - "usedIn": [ - "simulator" - ] - }, - { - "name": "selected_theme", - "type": "string", - "defaultValue": "Default" - }, - { - "name": "profile_dirty", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_title", - "type": "string", - "defaultValue": "DCP405 #1" - }, - { - "name": "channel_short_title", - "type": "string", - "defaultValue": "#1" - }, - { - "name": "channel_short_title_with_colon", - "type": "string", - "defaultValue": "#1:" - }, - { - "name": "channel_short_title_without_tracking_icon", - "type": "string", - "defaultValue": "#5" - }, - { - "name": "channel_long_title", - "defaultValue": "\\u00A2 DCP405 #1: 40V/5a, r3B1" - }, - { - "name": "scripts", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}, {}]" - }, - { - "name": "script_name", - "defaultValue": "Script 1" - }, - { - "name": "scripts_page_mode", - "type": "enum", - "enumItems": "[\"scripts\", \"shell\"]", - "defaultValue": "list" - }, - { - "name": "scripts_multiple_pages", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "scripts_previous_page_enabled", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "scripts_next_page_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "scripts_page_info", - "type": "string", - "defaultValue": "Page #1 of 2" - }, - { - "name": "animations_duration", - "type": "float", - "defaultValue": "250ms" - }, - { - "name": "slot1_info", - "type": "string", - "defaultValue": "DCP405 r2B5" - }, - { - "name": "slot2_info", - "type": "string", - "defaultValue": "DCP405 r2B5" - }, - { - "name": "slot3_info", - "type": "string", - "defaultValue": "DCM220" - }, - { - "name": "slot1_test_result", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "2" - }, - { - "name": "slot2_test_result", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "1" - }, - { - "name": "slot3_test_result", - "type": "enum", - "enumItems": "[\"None\", \"Failed\", \"OK\", \"Connecting\", \"Skipped\", \"Warning\"]", - "defaultValue": "2" - }, - { - "name": "slot_default1_view", - "type": "string", - "defaultValue": "slot_def_1ch_num_on" - }, - { - "name": "slot_default2_view", - "type": "string", - "defaultValue": "slot_def_1ch_vbar_on" - }, - { - "name": "slot_default3_view", - "type": "string", - "defaultValue": "slot_def_1ch_vert_off" - }, - { - "name": "slot1_channel_index", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "slot2_channel_index", - "type": "integer", - "defaultValue": "2" - }, - { - "name": "slot3_channel_index", - "type": "integer", - "defaultValue": "3" - }, - { - "name": "slot_def_2ch_view", - "type": "string", - "defaultValue": "slot_def_2ch_vert_on" - }, - { - "name": "slot_max_2ch_view", - "type": "string", - "defaultValue": "slot_max_2ch_num_on" - }, - { - "name": "slot_min_2ch_view", - "type": "string", - "defaultValue": "slot_min_2ch_on" - }, - { - "name": "slot_micro_2ch_view", - "type": "string", - "defaultValue": "slot_micro_2ch_on" - }, - { - "name": "slot_2ch_ch1_index", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "slot_2ch_ch2_index", - "type": "integer", - "defaultValue": "1" - }, - { - "name": "front_panel_slot1_view", - "type": "string", - "defaultValue": "dcp405_front_panel", - "usedIn": [ - "simulator" - ] - }, - { - "name": "front_panel_slot2_view", - "type": "string", - "defaultValue": "dcm220_front_panel", - "usedIn": [ - "simulator" - ] - }, - { - "name": "front_panel_slot3_view", - "defaultValue": "front_panel_empty_slot", - "usedIn": [ - "simulator" - ] - }, - { - "name": "battery", - "type": "string", - "defaultValue": "3.1V" - }, - { - "name": "io_pin_state", - "type": "enum", - "enumItems": "[\n\"Inactive\",\n\"Active\",\n\"Inactive_Changeable\",\n\"Active_Changeable\",\n\"Unassigned\"\n]", - "defaultValue": "3" - }, - { - "name": "channel_dprog", - "type": "enum", - "enumItems": "[\"Off\", \"On\", \"Auto\"]", - "defaultValue": "0" - }, - { - "name": "channel_dprog_installed", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_has_advanced_options", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "sys_info_sdcard_status", - "type": "enum", - "enumItems": "[\"Unsupported\", \"Present\", \"Not present\", \"No FAT\", \"Failed\", \"Busy\"]", - "defaultValue": "1" - }, - { - "name": "sys_info_has_error", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "sys_info_battery_status", - "type": "enum", - "enumItems": "[\n\"Invalid\",\n\"Valid\",\n\"Not installed\"\n]", - "defaultValue": "1" - }, - { - "name": "sys_fan_mode", - "type": "enum", - "enumItems": "[\"Auto\", \"Manual\"]", - "defaultValue": "1" - }, - { - "name": "sys_fan_speed", - "type": "string", - "enumItems": "[\"Manual\", \"Auto\"]", - "defaultValue": "95%" - }, - { - "name": "is_coupling_type_uncoupled", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "is_coupling_type_parallel", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "is_coupling_type_common_gnd", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "is_coupling_type_split_rails", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "is_tracking_allowed", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "is_coupling_parallel_allowed", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "is_coupling_series_allowed", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_coupling_enable_tracking_mode", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "channel_active_coupled_led", - "type": "enum", - "enumItems": "[\"Off\", \"Active\", \"Coupled\"]", - "defaultValue": "1" - }, - { - "name": "is_coupling_type_series", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "is_coupled_or_tracked", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "overlay" - }, - { - "name": "channels_with_list_counter_visible", - "description": "", - "type": "list", - "defaultValue": "[{}, {}]" - }, - { - "name": "dlog_state", - "type": "enum", - "enumItems": "[\n \"Idle\", \n \"Initiated\", \n \"Executing\"\n]", - "defaultValue": "3" - }, - { - "name": "dlog_toggle_state", - "type": "enum", - "enumItems": "[\"off\", \"on\", \"manual trigger\", \"other trigger\"]", - "defaultValue": "2" - }, - { - "name": "recording", - "type": "list", - "defaultValue": "[100, 25, 20]" - }, - { - "name": "channel_history_values" - }, - { - "name": "recording_ready", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "nondrag_overlay" - }, - { - "name": "dlog_overlay" - }, - { - "name": "dlog_visible_values", - "type": "list", - "defaultValue": "[{}, {}]" - }, - { - "name": "dlog_visible_value_label", - "type": "string", - "defaultValue": "U1" - }, - { - "name": "dlog_visible_value_div", - "type": "float", - "defaultValue": "2.000V/" - }, - { - "name": "dlog_visible_value_offset", - "defaultValue": "5.000V" - }, - { - "name": "dlog_visible_value_cursor", - "type": "string", - "defaultValue": "5V" - }, - { - "name": "dlog_all_values", - "type": "list", - "defaultValue": "[{}, {}, {}, {}]" - }, - { - "name": "dlog_value_label", - "type": "string", - "defaultValue": "U1" - }, - { - "name": "dlog_time_offset", - "description": "", - "type": "string", - "defaultValue": "0s" - }, - { - "name": "dlog_current_time", - "type": "string", - "defaultValue": "8.34s" - }, - { - "name": "dlog_time_duration", - "type": "string", - "defaultValue": "8.34s" - }, - { - "name": "dlog_time_div", - "defaultValue": "200ms" - }, - { - "name": "dlog_file_length", - "defaultValue": "17Kb" - }, - { - "name": "is_show_latest_recording", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "is_show_live_recording", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "dlog_view_state", - "type": "enum", - "enumItems": "[\"starting\", \"loading\", \"error\", \"ready\"]" - }, - { - "name": "dlog_period", - "type": "float", - "defaultValue": "100ms" - }, - { - "name": "dlog_duration", - "type": "float", - "defaultValue": "1h" - }, - { - "name": "dlog_voltage_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "dlog_current_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "dlog_power_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "dlog_view_overlay_minimized", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "dlog_start_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "dlog_file_name", - "type": "string", - "defaultValue": "file name" - }, - { - "name": "dlog_value_state", - "type": "enum", - "enumItems": "[\"unvisible\", \"visible\", \"disabled\"]", - "defaultValue": "1" - }, - { - "name": "slot_max_2ch_min_view", - "type": "string", - "defaultValue": "slot_max_2ch_min_on" - }, - { - "name": "channel_off_label", - "type": "string", - "defaultValue": "OFF" - }, - { - "name": "file_manager_files", - "type": "list", - "defaultValue": "[{}, {}, {}, {}, {}, {}]" - }, - { - "name": "file_manager_file_name", - "type": "string", - "defaultValue": "file.ext" - }, - { - "name": "file_manager_file_date_time", - "defaultValue": "99-99-99" - }, - { - "name": "file_manager_file_size", - "type": "string", - "defaultValue": "999.99K" - }, - { - "name": "file_manager_state", - "type": "enum", - "enumItems": "[\"starting\", \"loading\", \"ready\"]", - "defaultValue": "2" - }, - { - "name": "file_manager_is_root_directory", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "file_manager_current_directory", - "type": "string", - "defaultValue": "/Profiles" - }, - { - "name": "file_manager_is_directory", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "file_manager_file_type", - "type": "enum", - "enumItems": "[\"directory\", \"list\", \"profile\", \"dlog\", \"image\", \"other\"]", - "defaultValue": "0" - }, - { - "name": "file_manager_open_file_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "file_manager_upload_file_enabled", - "type": "boolean", - "defaultValue": "0" - }, - { - "name": "file_manager_rename_file_enabled", - "type": "boolean", - "defaultValue": "1" - }, - { - "name": "file_manager_delete_file_enabled", - "type": "boolean", - "defaultValue": "1" - } - ], - "actions": [ - { - "name": "channel_toggle_output", - "description": "turn channel on/off" - }, - { - "name": "edit", - "description": "enter edit modal mode" - }, - { - "name": "edit_mode_slider", - "description": "enter edit with slider modal mode" - }, - { - "name": "edit_mode_step", - "description": "enter edit with step modal mode" - }, - { - "name": "edit_mode_keypad", - "description": "enter edit with keypad modal mode" - }, - { - "name": "exit_edit_mode", - "description": "exit from slider or any other modal mode" - }, - { - "name": "toggle_interactive_mode" - }, - { - "name": "non_interactive_enter" - }, - { - "name": "non_interactive_discard" - }, - { - "name": "keypad_key" - }, - { - "name": "keypad_space" - }, - { - "name": "keypad_back" - }, - { - "name": "keypad_clear" - }, - { - "name": "keypad_caps" - }, - { - "name": "keypad_ok" - }, - { - "name": "keypad_cancel" - }, - { - "name": "keypad_sign" - }, - { - "name": "keypad_unit" - }, - { - "name": "keypad_option1" - }, - { - "name": "keypad_option2" - }, - { - "name": "enter_touch_calibration", - "description": "touch screen calibration" - }, - { - "name": "yes", - "description": "Yes action in Yes/No dialog" - }, - { - "name": "no", - "description": "No action in Yes/No dialog" - }, - { - "name": "ok" - }, - { - "name": "cancel", - "description": "Cancel action in dialog" - }, - { - "name": "later", - "description": "Yes action in Yes/No dialog" - }, - { - "name": "stand_by" - }, - { - "name": "show_previous_page" - }, - { - "name": "show_main_page" - }, - { - "name": "show_event_queue" - }, - { - "name": "show_sys_settings" - }, - { - "name": "show_sys_settings_trigger" - }, - { - "name": "show_sys_settings_io" - }, - { - "name": "show_sys_settings_date_time" - }, - { - "name": "show_sys_settings_cal" - }, - { - "name": "show_sys_settings_cal_ch" - }, - { - "name": "show_sys_settings_screen_calibration" - }, - { - "name": "show_sys_settings_display" - }, - { - "name": "show_sys_settings_serial" - }, - { - "name": "show_sys_settings_ethernet" - }, - { - "name": "show_sys_settings_protections" - }, - { - "name": "show_sys_settings_aux_otp" - }, - { - "name": "show_sys_settings_sound" - }, - { - "name": "show_sys_settings_encoder" - }, - { - "name": "show_sys_info" - }, - { - "name": "show_main_help_page" - }, - { - "name": "show_edit_mode_step_help" - }, - { - "name": "show_edit_mode_slider_help" - }, - { - "name": "show_ch_settings" - }, - { - "name": "show_ch_settings_prot_clear" - }, - { - "name": "show_ch_settings_prot_ocp" - }, - { - "name": "show_ch_settings_prot_ovp" - }, - { - "name": "show_ch_settings_prot_opp" - }, - { - "name": "show_ch_settings_prot_otp" - }, - { - "name": "show_ch_settings_trigger" - }, - { - "name": "show_ch_settings_lists" - }, - { - "name": "show_ch_settings_adv_options" - }, - { - "name": "show_ch_settings_adv_ranges" - }, - { - "name": "show_ch_settings_adv_view" - }, - { - "name": "show_ch_settings_info" - }, - { - "name": "show_ch_settings_cal" - }, - { - "name": "sys_settings_cal_edit_password" - }, - { - "name": "sys_settings_cal_ch_wiz_start" - }, - { - "name": "sys_settings_cal_ch_wiz_step_previous" - }, - { - "name": "sys_settings_cal_ch_wiz_step_next" - }, - { - "name": "sys_settings_cal_ch_wiz_stop_and_show_previous_page" - }, - { - "name": "sys_settings_cal_ch_wiz_stop_and_show_main_page" - }, - { - "name": "sys_settings_cal_ch_wiz_step_set" - }, - { - "name": "sys_settings_cal_ch_wiz_step_set_level_value" - }, - { - "name": "sys_settings_cal_ch_wiz_save" - }, - { - "name": "sys_settings_cal_toggle_enable" - }, - { - "name": "ch_settings_prot_clear" - }, - { - "name": "ch_settings_prot_clear_and_disable" - }, - { - "name": "ch_settings_prot_toggle_state" - }, - { - "name": "ch_settings_prot_toggle_type" - }, - { - "name": "ch_settings_prot_edit_limit" - }, - { - "name": "ch_settings_prot_edit_level" - }, - { - "name": "ch_settings_prot_edit_delay" - }, - { - "name": "set" - }, - { - "name": "discard" - }, - { - "name": "edit_field" - }, - { - "name": "event_queue_previous_page" - }, - { - "name": "event_queue_next_page" - }, - { - "name": "ch_settings_adv_remote_toggle_sense" - }, - { - "name": "ch_settings_adv_remote_toggle_programming" - }, - { - "name": "date_time_select_dst_rule" - }, - { - "name": "show_user_profiles" - }, - { - "name": "show_user_profile_settings" - }, - { - "name": "profiles_toggle_auto_recall" - }, - { - "name": "profile_toggle_is_auto_recall_location" - }, - { - "name": "profile_recall" - }, - { - "name": "profile_save" - }, - { - "name": "profile_delete" - }, - { - "name": "profile_edit_remark" - }, - { - "name": "toggle_channels_view_mode" - }, - { - "name": "ethernet_toggle" - }, - { - "name": "ethernet_toggle_dhcp" - }, - { - "name": "ethernet_edit_mac_address" - }, - { - "name": "ethernet_edit_static_address" - }, - { - "name": "ethernet_edit_ip_address" - }, - { - "name": "ethernet_edit_dns" - }, - { - "name": "ethernet_edit_gateway" - }, - { - "name": "ethernet_edit_subnet_mask" - }, - { - "name": "ethernet_edit_scpi_port" - }, - { - "name": "sys_settings_protections_toggle_output_protection_couple" - }, - { - "name": "sys_settings_protections_toggle_shutdown_when_protection_tripped" - }, - { - "name": "sys_settings_protections_toggle_force_disabling_all_outputs_on_power_up" - }, - { - "name": "sys_settings_protections_aux_otp_toggle_state" - }, - { - "name": "sys_settings_protections_aux_otp_edit_level" - }, - { - "name": "sys_settings_protections_aux_otp_edit_delay" - }, - { - "name": "sys_settings_protections_aux_otp_clear" - }, - { - "name": "edit_system_password" - }, - { - "name": "sys_front_panel_lock" - }, - { - "name": "sys_front_panel_unlock" - }, - { - "name": "sys_settings_sound_toggle" - }, - { - "name": "sys_settings_sound_toggle_click" - }, - { - "name": "ch_settings_adv_view_edit_display_value1" - }, - { - "name": "ch_settings_adv_view_edit_display_value2" - }, - { - "name": "ch_settings_adv_view_swap_display_values" - }, - { - "name": "ch_settings_adv_view_edit_ytview_rate" - }, - { - "name": "sys_settings_encoder_toggle_confirmation_mode" - }, - { - "name": "turn_display_off" - }, - { - "name": "ch_settings_trigger_edit_trigger_mode" - }, - { - "name": "ch_settings_trigger_edit_voltage_trigger_value" - }, - { - "name": "ch_settings_trigger_edit_current_trigger_value" - }, - { - "name": "ch_settings_trigger_edit_list_count" - }, - { - "name": "ch_settings_trigger_toggle_output_state" - }, - { - "name": "ch_settings_trigger_edit_on_list_stop" - }, - { - "name": "channel_lists_previous_page" - }, - { - "name": "channel_lists_next_page" - }, - { - "name": "channel_lists_edit" - }, - { - "name": "show_channel_lists_insert_menu" - }, - { - "name": "show_channel_lists_delete_menu" - }, - { - "name": "channel_lists_insert_row_above" - }, - { - "name": "channel_lists_insert_row_below" - }, - { - "name": "channel_lists_delete_row" - }, - { - "name": "channel_lists_clear_column" - }, - { - "name": "channel_lists_delete_rows" - }, - { - "name": "channel_lists_delete_all" - }, - { - "name": "channel_initiate_trigger" - }, - { - "name": "channel_set_to_fixed" - }, - { - "name": "channel_enable_output" - }, - { - "name": "trigger_select_source" - }, - { - "name": "trigger_edit_delay" - }, - { - "name": "trigger_toggle_initiate_continuously" - }, - { - "name": "trigger_generate_manual" - }, - { - "name": "trigger_show_general_settings" - }, - { - "name": "show_stand_by_menu" - }, - { - "name": "reset" - }, - { - "name": "ch_settings_adv_ranges_select_mode" - }, - { - "name": "ch_settings_adv_ranges_toggle_auto_ranging" - }, - { - "name": "io_pin_toggle_polarity" - }, - { - "name": "io_pin_select_function" - }, - { - "name": "serial_toggle" - }, - { - "name": "serial_select_parity" - }, - { - "name": "ntp_toggle" - }, - { - "name": "ntp_edit_server" - }, - { - "name": "simulator_load", - "usedIn": [ - "simulator" - ] - }, - { - "name": "select_theme" - }, - { - "name": "toggle_channels_max_view" - }, - { - "name": "start_script" - }, - { - "name": "set_scripts_page_mode_scripts" - }, - { - "name": "set_scripts_page_mode_shell" - }, - { - "name": "scripts_previous_page" - }, - { - "name": "scripts_next_page" - }, - { - "name": "edit_animations_duration" - }, - { - "name": "hard_reset" - }, - { - "name": "user_switch_clicked" - }, - { - "name": "front_panel_select_slot1", - "usedIn": [ - "simulator" - ] - }, - { - "name": "front_panel_select_slot2", - "usedIn": [ - "simulator" - ] - }, - { - "name": "front_panel_select_slot3", - "usedIn": [ - "simulator" - ] - }, - { - "name": "io_pin_toggle_state" - }, - { - "name": "ch_settings_adv_toggle_dprog" - }, - { - "name": "sys_settings_fan_toggle_mode" - }, - { - "name": "sys_settings_fan_edit_speed" - }, - { - "name": "show_sys_settings_tracking" - }, - { - "name": "show_sys_settings_coupling" - }, - { - "name": "set_coupling_uncoupled" - }, - { - "name": "set_coupling_parallel" - }, - { - "name": "set_coupling_series" - }, - { - "name": "set_coupling_common_gnd" - }, - { - "name": "set_coupling_split_rails" - }, - { - "name": "toggle_channel_tracking" - }, - { - "name": "toggle_enable_tracking_mode_in_coupling" - }, - { - "name": "drag_overlay" - }, - { - "name": "dlog_toggle" - }, - { - "name": "show_dlog_view" - }, - { - "name": "select_user_switch_action" - }, - { - "name": "show_file_manager" - }, - { - "name": "file_manager_select_file" - }, - { - "name": "file_manager_go_to_parent_directory" - }, - { - "name": "file_manager_open_file" - }, - { - "name": "file_manager_upload_file" - }, - { - "name": "file_manager_rename_file" - }, - { - "name": "file_manager_delete_file" - }, - { - "name": "show_dlog_params" - }, - { - "name": "dlog_voltage_toggle" - }, - { - "name": "dlog_current_toggle" - }, - { - "name": "dlog_power_toggle" - }, - { - "name": "dlog_value_toggle" - }, - { - "name": "dlog_edit_period" - }, - { - "name": "dlog_edit_duration" - }, - { - "name": "dlog_edit_file_name" - }, - { - "name": "dlog_start_recording" - }, - { - "name": "dlog_view_toggle_overlay_minimized" - }, - { - "name": "dlog_view_show_overlay_options" - }, - { - "name": "file_manager_sort_by" - } - ], - "extensionDefinitions": [ - { - "name": "EEZ Bench Box 3", - "description": "Open source EEZ DIB v1.0 chassis for up to three test and measurements modules", - "buildConfiguration": "stm32", - "buildFolder": "build/extensions", - "image": "images\\bb3_front_panel.png", - "extensionName": "eez_bb3", - "idn": "Envox,EEZ BB3 (STM32)", - "idfName": "EEZ BB3 R6B1", - "idfShortName": "BB3-R6B1", - "idfFirmwareVersion": "1.0", - "idfGuid": "687b6dee-2093-4c36-afb7-cfc7ea2bf262", - "idfRevisionNumber": "1.0.2", - "idfDescription": "EEZ Bench box 3-module T&M chassis", - "idfSupportedModels": "BB3 R6B1", - "idfRevisionComments": "Initial version", - "idfAuthor": "Envox", - "sdlFriendlyName": "EEZ BB3 R6B1" - }, - { - "name": "EEZ Bench Box 3 Simulator", - "description": "Open source EEZ DIB v1.0 chassis for up to three test and measurements modules", - "doNotBuild": false, - "buildConfiguration": "simulator", - "buildFolder": "build/extensions", - "image": "images\\bb3-simulator-front-panel.png", - "extensionName": "eez_bb3_simulator", - "idn": "Envox,EEZ BB3 (Simulator)", - "idfName": "EEZ BB3 Simulator", - "idfShortName": "BB3-simulator", - "idfFirmwareVersion": "1.0", - "idfGuid": "7cab6860-e593-4ba2-ee68-57fe84460fa4", - "idfRevisionNumber": "1.0.2", - "idfDescription": "EEZ Bench box 3-module T&M chassis firmware simulator", - "idfSupportedModels": "BB3 R6B1", - "idfRevisionComments": "Initial version", - "idfAuthor": "Envox", - "sdlFriendlyName": "EEZ BB3 Simulator" - } - ], - "gui": { - "pages": [ - { - "name": "a_main", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "1" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "left": 2, - "top": 150, - "width": 36, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "Background", - "backgroundColor": "#6a6a6a", - "activeColor": "#6a6a6a", - "activeBackgroundColor": "Background", - "borderSize": "0" - }, - "left": 37, - "top": 134, - "width": 78, - "height": 30, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 3, - "top": 32, - "width": 115, - "height": 47, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "0" - }, - "left": 37, - "top": 165, - "width": 77, - "height": 30, - "text": "0.500", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 2, - "top": 79, - "width": 116, - "height": 47, - "text": "0.500", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 115, - "top": 133, - "width": 43, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 117, - "top": 40, - "width": 41, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 115, - "top": 165, - "width": 43, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 117, - "top": 86, - "width": 41, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "0", - "borderRadius": 14, - "borderColor": "#ff8000", - "padding": "0 5 0 0" - }, - "left": 10, - "top": 202, - "width": 65, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "0", - "borderRadius": 12 - }, - "left": 13, - "top": 206, - "width": 24, - "height": 24 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#333333", - "backgroundColor": "#80ff00", - "activeColor": "#80ff00", - "activeBackgroundColor": "#333333", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#2b2b2b", - "backgroundColor": "#80ff00", - "activeColor": "#80ff00", - "activeBackgroundColor": "#2b2b2b" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 320, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#282828", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#282828", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#484848", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#484848" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "#ffffff", - "backgroundColor": "#ff8000", - "activeColor": "#ff8000", - "activeBackgroundColor": "#ffffff", - "borderSize": "0", - "borderRadius": 14, - "borderColor": "#ff8000", - "padding": "0 5 0 0" - }, - "left": 10, - "top": 240, - "width": 65, - "height": 32, - "text": "ON", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 160, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#242424", - "backgroundColor": "#ffff00", - "activeColor": "#ffff00", - "activeBackgroundColor": "#242424", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#313131", - "backgroundColor": "#ffff00", - "activeColor": "#ffff00", - "activeBackgroundColor": "#313131" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "0", - "borderRadius": 12 - }, - "left": 15, - "top": 244, - "width": 24, - "height": 24 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "1" - }, - "left": 160, - "top": 32, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "left": 162, - "top": 150, - "width": 36, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "Background", - "backgroundColor": "#6a6a6a", - "activeColor": "#6a6a6a", - "activeBackgroundColor": "Background", - "borderSize": "0" - }, - "left": 197, - "top": 134, - "width": 78, - "height": 30, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 161, - "top": 33, - "width": 115, - "height": 47, - "text": "------", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "0" - }, - "left": 197, - "top": 165, - "width": 77, - "height": 30, - "text": "0.500", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 161, - "top": 79, - "width": 116, - "height": 47, - "text": "------", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 275, - "top": 133, - "width": 43, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 276, - "top": 40, - "width": 42, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 275, - "top": 165, - "width": 43, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 277, - "top": 86, - "width": 41, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "center", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "0", - "borderRadius": 3, - "borderColor": "#ff8000", - "padding": "0 5 0 0" - }, - "left": 182, - "top": 202, - "width": 113, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "1" - }, - "left": 320, - "top": 32, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "left": 322, - "top": 150, - "width": 36, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "Background", - "backgroundColor": "#6a6a6a", - "activeColor": "#6a6a6a", - "activeBackgroundColor": "Background", - "borderSize": "0" - }, - "left": 357, - "top": 134, - "width": 78, - "height": 30, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 321, - "top": 33, - "width": 115, - "height": 47, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "0" - }, - "left": 357, - "top": 165, - "width": 77, - "height": 30, - "text": "0.500", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0" - }, - "left": 321, - "top": 79, - "width": 116, - "height": 47, - "text": "0.500", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 435, - "top": 133, - "width": 43, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 436, - "top": 40, - "width": 42, - "height": 32, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 435, - "top": 165, - "width": 43, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20" - }, - "left": 437, - "top": 86, - "width": 41, - "height": 32, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "center", - "color": "#ffffff", - "backgroundColor": "#ff8000", - "activeColor": "#ff8000", - "activeBackgroundColor": "#ffffff", - "borderSize": "0", - "borderRadius": 3, - "borderColor": "#ff8000", - "padding": "0 5 0 0" - }, - "left": 342, - "top": 202, - "width": 113, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "a_main (1)", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 240, - "name": "CH1", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#404040", - "backgroundColor": "#80ff00", - "activeColor": "#80ff00", - "activeBackgroundColor": "#404040", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#404040", - "backgroundColor": "#80ff00", - "activeColor": "#80ff00", - "activeBackgroundColor": "#404040" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "name": "Content", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "0 1 0 1" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 1, - "width": 158, - "height": 104, - "name": "Mon", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#80ff00", - "activeBackgroundColor": "#80ff00", - "borderSize": "2", - "borderRadius": 4, - "borderColor": "#c8c8c8" - }, - "left": 6, - "top": 6, - "width": 146, - "height": 92, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0", - "padding": "0 4" - }, - "left": 8, - "top": 10, - "width": 99, - "height": 42, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0", - "padding": "0 4" - }, - "left": 8, - "top": 52, - "width": 99, - "height": 42, - "text": "123", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24" - }, - "left": 107, - "top": 10, - "width": 42, - "height": 42, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24" - }, - "left": 107, - "top": 52, - "width": 41, - "height": 42, - "text": "mA", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 104, - "width": 158, - "height": 96, - "name": "Set", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 31, - "height": 96, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "Background", - "backgroundColor": "#6a6a6a", - "activeColor": "#6a6a6a", - "activeBackgroundColor": "Background", - "borderSize": "0", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 6, - "width": 112, - "height": 42, - "text": "1.023 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "1", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 48, - "width": 112, - "height": 42, - "text": "223 mA", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#6a6a6a", - "activeBackgroundColor": "#6a6a6a" - }, - "left": 35, - "top": 44, - "width": 112, - "height": 4, - "invertColors": false - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#dadada", - "activeBackgroundColor": "#dadada", - "borderSize": "0 1 0 1" - }, - "left": 35, - "top": 48, - "width": 112, - "height": 4, - "invertColors": false - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 160, - "top": 0, - "width": 160, - "height": 240, - "name": "CH2", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#404040", - "backgroundColor": "#ffff00", - "activeColor": "#ffff00", - "activeBackgroundColor": "#404040", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#404040", - "backgroundColor": "#ffff00", - "activeColor": "#ffff00", - "activeBackgroundColor": "#404040" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "name": "Content", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "0 1 0 1" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 1, - "width": 158, - "height": 104, - "name": "Mon", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "status_warning", - "borderSize": "1", - "borderRadius": 4 - }, - "left": 8, - "top": 8, - "width": 142, - "height": 88, - "text": "OFF", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 104, - "width": 158, - "height": 96, - "name": "Set", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 31, - "height": 96, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "text_regular", - "borderSize": "1", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 6, - "width": 112, - "height": 42, - "text": "5 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "1", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 48, - "width": 112, - "height": 42, - "text": "1 A", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#dadada", - "activeBackgroundColor": "#dadada", - "borderSize": "0 1 0 1" - }, - "left": 35, - "top": 42, - "width": 112, - "height": 11, - "invertColors": false - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#c8c8c8", - "activeBackgroundColor": "#c8c8c8" - }, - "left": 35, - "top": 47, - "width": 112, - "height": 1, - "invertColors": false - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 320, - "top": 0, - "width": 160, - "height": 240, - "name": "CH3", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#404040", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#404040", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#404040", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#404040" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "name": "Content", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "borderSize": "0 1 0 1" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 208, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 1, - "width": 158, - "height": 104, - "name": "Mon", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#80ff00", - "activeBackgroundColor": "#80ff00", - "borderSize": "2", - "borderRadius": 4, - "borderColor": "#c8c8c8" - }, - "left": 6, - "top": 6, - "width": 146, - "height": 92, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0", - "padding": "0 4" - }, - "left": 8, - "top": 10, - "width": 99, - "height": 42, - "text": "1.023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "right", - "borderSize": "0", - "padding": "0 4" - }, - "left": 8, - "top": 52, - "width": 99, - "height": 42, - "text": "123", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24" - }, - "left": 107, - "top": 10, - "width": 42, - "height": 42, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald24" - }, - "left": 107, - "top": 52, - "width": 41, - "height": 42, - "text": "mA", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 104, - "width": 158, - "height": 96, - "name": "Set", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 31, - "height": 96, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "text_regular", - "borderSize": "1", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 6, - "width": 112, - "height": 42, - "text": "3.3 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald20", - "alignHorizontal": "center", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "1", - "borderRadius": 4, - "padding": "0 4" - }, - "left": 35, - "top": 48, - "width": 112, - "height": 42, - "text": "500 mA", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#dadada", - "activeBackgroundColor": "#dadada", - "borderSize": "0 1 0 1" - }, - "left": 35, - "top": 42, - "width": 112, - "height": 11, - "invertColors": false - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#c8c8c8", - "activeBackgroundColor": "#c8c8c8" - }, - "left": 35, - "top": 47, - "width": 112, - "height": 1, - "invertColors": false - } - ] - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "left": 439, - "top": 240, - "width": 41, - "height": 32, - "text": "x", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_sys_settings", - "left": 0, - "top": 240, - "width": 41, - "height": 32, - "text": "\\u0022", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_sys_settings_ethernet", - "left": 398, - "top": 240, - "width": 41, - "height": 32, - "text": "z", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "#555555", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "#555555", - "borderSize": "1", - "borderRadius": 14, - "borderColor": "#808080", - "padding": "0 5 0 0" - }, - "left": 202, - "top": 240, - "width": 65, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#555555", - "activeBackgroundColor": "#555555", - "borderSize": "0", - "borderRadius": 12 - }, - "left": 205, - "top": 244, - "width": 24, - "height": 24 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#ffffff", - "backgroundColor": "#ff8000", - "activeColor": "#ff8000", - "activeBackgroundColor": "#ffffff", - "borderSize": "1", - "borderRadius": 14, - "borderColor": "#a45200", - "padding": "0 0 0 8" - }, - "left": 95, - "top": 240, - "width": 65, - "height": 32, - "text": "ON", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#555555", - "activeBackgroundColor": "#555555", - "borderSize": "0", - "borderRadius": 12 - }, - "left": 132, - "top": 244, - "width": 24, - "height": 24 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 118, - "name": "CH3 MIN ON", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#404040", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#404040", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#404040", - "backgroundColor": "#00ffff", - "activeColor": "#00ffff", - "activeBackgroundColor": "#404040" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 86, - "name": "Content", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 84, - "name": "Mon", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "borderSize": "2", - "borderRadius": 1, - "borderColor": "#00ffff" - }, - "left": 2, - "top": 4, - "width": 76, - "height": 78, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "bottom", - "borderSize": "0", - "padding": "0 0 4 0" - }, - "left": 4, - "top": 7, - "width": 72, - "height": 36, - "text": "1.023 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "top", - "borderSize": "0", - "padding": "4 0 0 0" - }, - "left": 4, - "top": 42, - "width": 72, - "height": 36, - "text": "123 mA", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 80, - "top": 0, - "width": 80, - "height": 86, - "name": "Set", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "left": 0, - "top": 3, - "width": 80, - "height": 23, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "text_regular", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "text_regular", - "borderSize": "1", - "borderRadius": 1, - "borderColor": "#c8c8c8", - "padding": "0 4" - }, - "left": 0, - "top": 26, - "width": 78, - "height": 28, - "text": "1.023 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "1", - "borderRadius": 1, - "borderColor": "#c8c8c8", - "padding": "0 4" - }, - "left": 0, - "top": 53, - "width": 78, - "height": 28, - "text": "223 mA", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#c8c8c8", - "activeBackgroundColor": "#c8c8c8" - }, - "left": 0, - "top": 53, - "width": 78, - "height": 1 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 122, - "width": 160, - "height": 118, - "name": "CH3 MIN OFF", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "name": "Title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "#404040", - "backgroundColor": "#cacaff", - "activeColor": "#cacaff", - "activeBackgroundColor": "#404040", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 132, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "#404040", - "backgroundColor": "#cacaff", - "activeColor": "#cacaff", - "activeBackgroundColor": "#404040" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 86, - "name": "Content", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 86, - "name": "Mon", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "color": "status_warning", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "status_warning", - "borderSize": "1", - "borderRadius": 3 - }, - "left": 4, - "top": 5, - "width": 72, - "height": 76, - "text": "OFF", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 80, - "top": 0, - "width": 80, - "height": 86, - "name": "Set", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "left": 0, - "top": 3, - "width": 80, - "height": 23, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "text_regular", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "activeBackgroundColor": "text_regular", - "borderSize": "1", - "borderRadius": 1, - "borderColor": "#c8c8c8", - "padding": "0 4" - }, - "left": 0, - "top": 26, - "width": 78, - "height": 28, - "text": "10.55 V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right", - "backgroundColor": "#dadada", - "activeColor": "#dadada", - "borderSize": "1", - "borderRadius": 1, - "borderColor": "#c8c8c8", - "padding": "0 4" - }, - "left": 0, - "top": 53, - "width": 78, - "height": 28, - "text": "500 mA", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#c8c8c8", - "activeBackgroundColor": "#c8c8c8" - }, - "left": 0, - "top": 53, - "width": 78, - "height": 1 - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "welcome", - "description": "Welcome screen, display channels capacity and firmware revision", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17" - }, - "left": 0, - "top": 26, - "width": 480, - "height": 40, - "text": "Welcome to EEZ BB3", - "focusStyle": {} - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 66, - "width": 480, - "height": 48, - "bitmap": "logo" - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 135, - "top": 121, - "width": 64, - "height": 25, - "text": "Master:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_S_left" - }, - "data": "master_info", - "left": 203, - "top": 121, - "width": 123, - "height": 25, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "master_test_result", - "left": 326, - "top": 121, - "width": 78, - "height": 25, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Failed", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "OK", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Warning", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 135, - "top": 146, - "width": 64, - "height": 25, - "text": "Slot #1:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_S_left" - }, - "data": "slot1_info", - "left": 203, - "top": 146, - "width": 123, - "height": 25, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "slot1_test_result", - "left": 326, - "top": 146, - "width": 78, - "height": 25, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Failed", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "OK", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Warning", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 135, - "top": 171, - "width": 64, - "height": 25, - "text": "Slot #2:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_S_left" - }, - "data": "slot2_info", - "left": 203, - "top": 171, - "width": 123, - "height": 25, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "slot2_test_result", - "left": 326, - "top": 171, - "width": 78, - "height": 25, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Failed", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "OK", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Warning", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 135, - "top": 196, - "width": 64, - "height": 25, - "text": "Slot #3:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_S_left" - }, - "data": "slot3_info", - "left": 203, - "top": 196, - "width": 123, - "height": 25, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "slot3_test_result", - "left": 326, - "top": 196, - "width": 78, - "height": 25, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Failed", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "OK", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": " ", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "right", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 25, - "text": "Warning", - "focusStyle": {} - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_S" - }, - "data": "firmware_info", - "left": 0, - "top": 232, - "width": 480, - "height": 30, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "touch_calibration_intro", - "description": "Touchscreen calibration introduction", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "alignHorizontal": "center" - }, - "left": 0, - "top": 17, - "width": 480, - "height": 26, - "text": "Initial touchscreen calibration", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "alignHorizontal": "center" - }, - "left": 0, - "top": 230, - "width": 480, - "height": 26, - "text": "Touch screen to start!", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 88, - "top": 181, - "width": 35, - "height": 26, - "text": "\\u0081", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 123, - "top": 181, - "width": 269, - "height": 49, - "text": "Do not use your finger as a stylus or the result will be imprecise." - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 96, - "top": 43, - "width": 288, - "height": 141, - "text": "Use a stylus or something similar to touch as close to the center of the highlighted crosshair as possible. Keep holding as still as possible until the highlight is removed. Repeat for all crosshairs in sequence." - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "touch_calibration", - "style": "touch_calibration", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "touch_calibration" - }, - "data": "touch_calibration_point", - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "touch_calibration" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderRadius": 4, - "padding": "10" - }, - "left": 95, - "top": 98, - "width": 290, - "height": 76, - "text": "Touch top-left cross in the center until change color" - }, - { - "type": "Text", - "style": { - "inheritFrom": "touch_calibration", - "activeColor": "#00ff00", - "activeBackgroundColor": "text_disabled_background" - }, - "action": "", - "left": 0, - "top": 0, - "width": 35, - "height": 35, - "text": "+", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "touch_calibration" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderRadius": 4, - "padding": "10" - }, - "left": 95, - "top": 98, - "width": 290, - "height": 76, - "text": "Touch bottom-right cross in the center until change color" - }, - { - "type": "Text", - "style": { - "inheritFrom": "touch_calibration", - "activeColor": "#00ff00", - "activeBackgroundColor": "text_disabled_background" - }, - "action": "", - "left": 445, - "top": 237, - "width": 35, - "height": 35, - "text": "+", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "touch_calibration" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderRadius": 4, - "padding": "10" - }, - "left": 95, - "top": 98, - "width": 290, - "height": 76, - "text": "Touch top-right cross in the center until change color" - }, - { - "type": "Text", - "style": { - "inheritFrom": "touch_calibration", - "activeColor": "#00ff00", - "activeBackgroundColor": "text_disabled_background" - }, - "action": "", - "left": 445, - "top": 0, - "width": 35, - "height": 35, - "text": "+", - "focusStyle": {} - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "touch_calibration_yes_no", - "description": "Touchscreen calibration confirmation", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "menu_S", - "font": "Oswald24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "alert_message", - "left": 0, - "top": 82, - "width": 480, - "height": 40, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "menu_S", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "yes", - "left": 159, - "top": 176, - "width": 48, - "height": 40, - "text": "Yes", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "menu_S", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "no", - "left": 221, - "top": 176, - "width": 100, - "height": 40, - "text": "Start again", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "touch_calibration_yes_no_cancel", - "description": "Touchscreen calibration confirmation with cancel", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "menu_S", - "font": "Oswald24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "alert_message", - "left": 0, - "top": 82, - "width": 480, - "height": 40, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "menu_S", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "yes", - "left": 114, - "top": 176, - "width": 48, - "height": 40, - "text": "Yes", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "menu_S", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "no", - "left": 174, - "top": 176, - "width": 100, - "height": 40, - "text": "Start again", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "menu_S", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "cancel", - "left": 286, - "top": 176, - "width": 79, - "height": 40, - "text": "Cancel", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "self_test_result", - "description": "List of error detected during power on self test procedure", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 34, - "text": "Selt-test is not passed:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "data": "self_test_result", - "left": 0, - "top": 34, - "width": 480, - "height": 202, - "text": "" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 236, - "width": 216, - "height": 36 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_rl_state", - "left": 216, - "top": 236, - "width": 48, - "height": 36, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 0, - "width": 48, - "height": 36 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "data": "", - "action": "sys_front_panel_unlock", - "left": 0, - "top": 0, - "width": 48, - "height": 36, - "text": "N", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "data": "", - "action": "sys_front_panel_unlock", - "left": 0, - "top": 0, - "width": 48, - "height": 36, - "text": "N", - "focusStyle": {} - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 264, - "top": 236, - "width": 176, - "height": 36 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_main_page", - "left": 440, - "top": 236, - "width": 40, - "height": 36, - "text": "X", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "main", - "description": "When three channels are displayed, each of then hast be 158px wide, separated by 2px rectangle. That occupy 478px of the screen. Therefore the first one has to start on 1px left.", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channels_is_max_view", - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channels_view_mode_in_default", - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "layout": "slot_def_vert" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "layout": "slot_def_vert" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "layout": "slot_def_horz" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "layout": "slot_def_horz" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_max_view", - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "layout": "", - "context": "slot_max_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_min1_view", - "left": 1, - "top": 168, - "width": 238, - "height": 72, - "layout": "", - "context": "slot_min1_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_min2_view", - "left": 241, - "top": 168, - "width": 238, - "height": 72, - "layout": "", - "context": "slot_min2_channel_index" - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "event_queue_last_event_type", - "action": "show_event_queue", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "x", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_with_need_attention" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "x", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "x", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "x", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "serial_status", - "left": 40, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "invertColors": false - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "action": "show_sys_settings_serial", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "{", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "status_bgnd" - }, - "data": "serial_is_connected", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "font": "Heydings14", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background" - }, - "action": "show_sys_settings_serial", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "{", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_active" - }, - "action": "show_sys_settings_serial", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "{", - "focusStyle": {} - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "invertColors": false - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "invertColors": false - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "action": "show_sys_settings_serial", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "{", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_installed", - "action": "", - "left": 80, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "invertColors": false - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_status", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "data": "", - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": " z", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "data": "", - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "z", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_is_connected", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "z", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_active" - }, - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "z", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "z", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error" - }, - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "z", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "action": "", - "left": 120, - "top": 0, - "width": 40, - "height": 32, - "invertColors": false - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_sdcard_status", - "left": 120, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_toggle_state", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_dlog_params", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "#ff0000", - "activeBackgroundColor": "#ff0000" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text", - "activeBackgroundColor": "status_line_text", - "blink": true - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled", - "blink": true - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "recording_ready", - "left": 160, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0027", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_dlog_view", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0027", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_tracking_allowed", - "left": 200, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u007f", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupled_or_tracked", - "action": "show_sys_settings_tracking", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u007f", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_active" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u007f", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_sdcard_status", - "left": 240, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_user_profiles", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_user_profiles", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "|", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_sdcard_status", - "left": 280, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_file_manager", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_file_manager", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u002c", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "toggle_channels_view_mode", - "left": 320, - "top": 0, - "width": 40, - "height": 32, - "text": "6", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_rl_state", - "left": 360, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "sys_front_panel_lock", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled_and_error", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "sys_front_panel_unlock", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "L", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_disabled" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "L", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_has_error", - "action": "show_sys_settings", - "left": 400, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "0", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled" - }, - "action": "show_stand_by_menu", - "left": 440, - "top": 0, - "width": 40, - "height": 32, - "text": "Q", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "overlay" - }, - "data": "", - "action": "drag_overlay", - "left": 222, - "top": 158, - "width": 248, - "height": 72, - "name": "Overlay", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "left": 8, - "top": 8, - "width": 28, - "height": 28, - "text": "\\u00a1", - "focusStyle": {} - }, - { - "type": "Grid", - "style": { - "inheritFrom": "overlay" - }, - "data": "channels_with_list_counter_visible", - "left": 40, - "top": 8, - "width": 200, - "height": 28, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "overlay" - }, - "left": 0, - "top": 0, - "width": 100, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 0, - "top": 0, - "width": 25, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left" - }, - "data": "channel_list_countdown", - "left": 25, - "top": 0, - "width": 75, - "height": 28, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - "gridFlow": "row" - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "left": 8, - "top": 36, - "width": 28, - "height": 28, - "text": "\\u00a3", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "overlay" - }, - "data": "dlog_state", - "left": 40, - "top": 36, - "width": 200, - "height": 28, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "overlay" - }, - "left": 0, - "top": 0, - "width": 200, - "height": 28, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left" - }, - "left": 0, - "top": 0, - "width": 200, - "height": 28, - "text": "Dlog trigger waiting", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 200, - "height": 28, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left" - }, - "data": "dlog_current_time", - "left": 0, - "top": 0, - "width": 100, - "height": 28, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left" - }, - "data": "dlog_file_length", - "left": 100, - "top": 0, - "width": 100, - "height": 28, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - } - ], - "overlay": "overlay", - "shadow": true - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "main_help", - "description": "Main menu help page", - "style": "default", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 19, - "width": 464, - "height": 154, - "text": "TODO: add new text here!" - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 173, - "width": 464, - "height": 51, - "text": "For more information please visit: www.envox.hr/eez or github.com/eez-open" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 236, - "width": 432, - "height": 36 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_main_page", - "left": 432, - "top": 236, - "width": 48, - "height": 36, - "text": "X", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "edit_mode_keypad", - "description": "Keypad value edit mode", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "edit_info", - "left": 0, - "top": 0, - "width": 276, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "keypad_text", - "left": 0, - "top": 32, - "width": 276, - "height": 34, - "focusStyle": { - "inheritFrom": "edit_value_active_S_left", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 2, - "top": 64, - "width": 271, - "height": 173, - "name": "Keypad", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 2, - "width": 67, - "height": 42, - "text": "7", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 68, - "top": 2, - "width": 67, - "height": 42, - "text": "8", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 136, - "top": 2, - "width": 67, - "height": 42, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_icons" - }, - "action": "keypad_back", - "left": 204, - "top": 2, - "width": 67, - "height": 42, - "text": "<", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 45, - "width": 67, - "height": 42, - "text": "4", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 68, - "top": 45, - "width": 67, - "height": 42, - "text": "5", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 136, - "top": 45, - "width": 67, - "height": 42, - "text": "6", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "key" - }, - "data": "edit_unit", - "action": "keypad_unit", - "left": 204, - "top": 45, - "width": 67, - "height": 42, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 88, - "width": 67, - "height": 42, - "text": "1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 68, - "top": 88, - "width": 67, - "height": 42, - "text": "2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 136, - "top": 88, - "width": 67, - "height": 42, - "text": "3", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_option2", - "left": 204, - "top": 88, - "width": 67, - "height": 42, - "text": "def", - "enabled": "keypad_option2_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "padding": 0 - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 131, - "width": 67, - "height": 42, - "text": "0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 68, - "top": 131, - "width": 67, - "height": 42, - "text": ".", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_icons" - }, - "action": "keypad_sign", - "left": 136, - "top": 131, - "width": 67, - "height": 42, - "text": "-", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_icons" - }, - "action": "keypad_ok", - "left": 204, - "top": 131, - "width": 67, - "height": 42, - "text": "O", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 276, - "top": 0, - "width": 48, - "height": 240, - "name": "Menu", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "tab_page_selected" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 40, - "text": "K", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page" - }, - "action": "edit_mode_step", - "left": 0, - "top": 40, - "width": 48, - "height": 40, - "text": "M", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page" - }, - "action": "edit_mode_slider", - "left": 0, - "top": 80, - "width": 48, - "height": 40, - "text": "S", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 120, - "width": 48, - "height": 80 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "exit_edit_mode", - "left": 0, - "top": 200, - "width": 48, - "height": 40, - "text": "E", - "focusStyle": {} - } - ] - } - ], - "left": 80, - "top": 16, - "width": 324, - "height": 240 - }, - { - "name": "edit_mode_step", - "description": "Step value edit mode", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "edit_info", - "left": 0, - "top": 0, - "width": 276, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "ButtonGroup", - "style": { - "inheritFrom": "default_S" - }, - "data": "edit_steps", - "left": 0, - "top": 32, - "width": 54, - "height": 208 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 54, - "top": 32, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 18, - "top": 43, - "width": 186, - "height": 82, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald48", - "alignHorizontal": "right" - }, - "data": "edit_value", - "left": 0, - "top": 0, - "width": 100, - "height": 82, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "center", - "padding": "4" - }, - "data": "edit_value", - "left": 100, - "top": 0, - "width": 86, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "bottom", - "padding": "5 4" - }, - "data": "edit_value", - "left": 100, - "top": 38, - "width": 86, - "height": 44, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 18, - "top": 5, - "width": 186, - "height": 82, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald48", - "alignHorizontal": "right" - }, - "data": "edit_value", - "left": 0, - "top": 0, - "width": 100, - "height": 82, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "center", - "padding": "4" - }, - "data": "edit_value", - "left": 100, - "top": 0, - "width": 86, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "bottom", - "padding": "5 4" - }, - "data": "edit_value", - "left": 100, - "top": 38, - "width": 86, - "height": 44, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_other_value_mon", - "left": 0, - "top": 92, - "width": 222, - "height": 38, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon", - "left": 0, - "top": 130, - "width": 222, - "height": 38, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_mode_interactive_mode_selector", - "left": 54, - "top": 200, - "width": 222, - "height": 40, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 40 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "non_interactive_enter", - "left": 6, - "top": 0, - "width": 102, - "height": 40, - "text": "\\u0086 Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "non_interactive_discard", - "left": 114, - "top": 0, - "width": 102, - "height": 40, - "text": " Discard", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 276, - "top": 0, - "width": 48, - "height": 240, - "name": "Menu", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "tab_page" - }, - "action": "edit_mode_keypad", - "left": 0, - "top": 0, - "width": 48, - "height": 40, - "text": "K", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page", - "backgroundColor": "Background", - "activeColor": "Background" - }, - "action": "", - "left": 0, - "top": 40, - "width": 48, - "height": 40, - "text": "M", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page_selected", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background" - }, - "action": "edit_mode_slider", - "left": 0, - "top": 80, - "width": 48, - "height": 40, - "text": "S", - "focusStyle": {} - }, - { - "type": "ToggleButton", - "style": { - "inheritFrom": "bottom_button" - }, - "data": "edit_mode_interactive_mode_selector", - "action": "toggle_interactive_mode", - "left": 0, - "top": 120, - "width": 48, - "height": 40, - "text1": "\\u0081", - "text2": "\\u0082" - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_edit_mode_step_help", - "left": 0, - "top": 160, - "width": 48, - "height": 40, - "text": "\\u0080", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "exit_edit_mode", - "left": 0, - "top": 200, - "width": 48, - "height": 40, - "text": "E", - "focusStyle": {} - } - ] - } - ], - "left": 80, - "top": 16, - "width": 324, - "height": 240 - }, - { - "name": "edit_mode_step_help", - "description": "Step value edit mode help page", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 0, - "width": 244, - "height": 32, - "text": "\\u0084 Interactive mode:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 32, - "width": 244, - "height": 71, - "text": "Move left/right to change value by selected step in a time." - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 112, - "width": 244, - "height": 32, - "text": "\\u0085 Non-interactive mode:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 144, - "width": 244, - "height": 48, - "text": "Move left/right to change value and confirm with \\u0086 option." - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 276, - "top": 0, - "width": 48, - "height": 240, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 0, - "width": 48, - "height": 200 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_previous_page", - "left": 0, - "top": 200, - "width": 48, - "height": 40, - "text": "E", - "focusStyle": {} - } - ] - } - ], - "left": 80, - "top": 16, - "width": 324, - "height": 240 - }, - { - "name": "edit_mode_slider", - "description": "Slider value edit mode", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "edit_info", - "left": 0, - "top": 0, - "width": 276, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 54, - "height": 208, - "name": "Slider area", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "slider_shade_1" - }, - "data": "", - "left": 0, - "top": 3, - "width": 54, - "height": 41 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "slider_shade_2" - }, - "data": "", - "left": 0, - "top": 44, - "width": 54, - "height": 41 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "slider_shade_3" - }, - "data": "", - "left": 0, - "top": 85, - "width": 54, - "height": 41 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "slider_shade_4" - }, - "data": "", - "left": 0, - "top": 126, - "width": 54, - "height": 41 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "slider_shade_5" - }, - "data": "", - "left": 0, - "top": 167, - "width": 54, - "height": 41 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 54, - "top": 32, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 18, - "top": 43, - "width": 186, - "height": 82, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald48", - "alignHorizontal": "right" - }, - "data": "edit_value", - "left": 0, - "top": 0, - "width": 100, - "height": 82, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "center", - "padding": "4" - }, - "data": "edit_value", - "left": 100, - "top": 0, - "width": 86, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "bottom", - "padding": "5 4" - }, - "data": "edit_value", - "left": 100, - "top": 38, - "width": 86, - "height": 44, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 168, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 18, - "top": 5, - "width": 186, - "height": 82, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald48", - "alignHorizontal": "right" - }, - "data": "edit_value", - "left": 0, - "top": 0, - "width": 100, - "height": 82, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "center", - "padding": "4" - }, - "data": "edit_value", - "left": 100, - "top": 0, - "width": 86, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "alignHorizontal": "left", - "alignVertical": "bottom", - "padding": "5 4" - }, - "data": "edit_value", - "left": 100, - "top": 38, - "width": 86, - "height": 44, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_other_value_mon", - "left": 0, - "top": 92, - "width": 222, - "height": 38, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value", - "font": "Oswald20", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon", - "left": 0, - "top": 130, - "width": 222, - "height": 38, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_mode_interactive_mode_selector", - "left": 54, - "top": 200, - "width": 222, - "height": 40, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 40 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 222, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "non_interactive_enter", - "left": 6, - "top": 0, - "width": 102, - "height": 40, - "text": "\\u0086 Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "non_interactive_discard", - "left": 114, - "top": 0, - "width": 102, - "height": 40, - "text": " Discard", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 276, - "top": 0, - "width": 48, - "height": 240, - "name": "Menu", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "tab_page" - }, - "action": "edit_mode_keypad", - "left": 0, - "top": 0, - "width": 48, - "height": 40, - "text": "K", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page" - }, - "action": "edit_mode_step", - "left": 0, - "top": 40, - "width": 48, - "height": 40, - "text": "M", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "tab_page_selected" - }, - "action": "", - "left": 0, - "top": 80, - "width": 48, - "height": 40, - "text": "S", - "focusStyle": {} - }, - { - "type": "ToggleButton", - "style": { - "inheritFrom": "bottom_button" - }, - "data": "edit_mode_interactive_mode_selector", - "action": "toggle_interactive_mode", - "left": 0, - "top": 120, - "width": 48, - "height": 40, - "text1": "\\u0081", - "text2": "\\u0082" - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_edit_mode_slider_help", - "left": 0, - "top": 160, - "width": 48, - "height": 40, - "text": "\\u0080", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "exit_edit_mode", - "left": 0, - "top": 200, - "width": 48, - "height": 40, - "text": "E", - "focusStyle": {} - } - ] - } - ], - "left": 80, - "top": 16, - "width": 324, - "height": 240 - }, - { - "name": "edit_mode_slider_help", - "description": "Slider value edit mode help page", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 0, - "width": 244, - "height": 32, - "text": "\\u0084 Interactive mode:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 32, - "width": 244, - "height": 71, - "text": "Move left/right to change value. Use upper area for coarse and lower for the fine adjustment." - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 120, - "width": 244, - "height": 32, - "text": "\\u0085 Non-interactive mode:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 152, - "width": 244, - "height": 52, - "text": "Move left/right to change value and confirm with \\u0086 option." - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 276, - "top": 0, - "width": 48, - "height": 240, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 0, - "width": 48, - "height": 200 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button" - }, - "action": "show_previous_page", - "left": 0, - "top": 200, - "width": 48, - "height": 40, - "text": "E", - "focusStyle": {} - } - ] - } - ], - "left": 80, - "top": 16, - "width": 324, - "height": 240 - }, - { - "name": "yes_no", - "description": "Confirmation message", - "style": "yes_no", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "yes_no", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning" - }, - "data": "alert_message", - "left": 0, - "top": 8, - "width": 320, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button", - "color": "text_enabled", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "yes", - "left": 105, - "top": 48, - "width": 48, - "height": 32, - "text": "Yes", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button", - "color": "text_enabled", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "no", - "left": 167, - "top": 48, - "width": 48, - "height": 32, - "text": "No", - "focusStyle": {} - } - ], - "left": 80, - "top": 92, - "width": 320, - "height": 88 - }, - { - "name": "are_you_sure_with_message", - "description": "Confirmation message with additional information", - "style": "yes_no", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "yes_no" - }, - "data": "", - "left": 0, - "top": 8, - "width": 320, - "height": 32, - "text": "Are you sure?", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_message" - }, - "data": "alert_message", - "left": 0, - "top": 40, - "width": 320, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button" - }, - "action": "yes", - "left": 105, - "top": 72, - "width": 48, - "height": 32, - "text": "Yes", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button" - }, - "action": "no", - "left": 167, - "top": 72, - "width": 48, - "height": 32, - "text": "No", - "focusStyle": {} - } - ], - "left": 80, - "top": 80, - "width": 320, - "height": 112 - }, - { - "name": "yes_no_later", - "description": "Confirmation message with option Later", - "style": "yes_no", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "yes_no" - }, - "data": "alert_message", - "left": 0, - "top": 8, - "width": 360, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button" - }, - "action": "yes", - "left": 94, - "top": 48, - "width": 48, - "height": 32, - "text": "Yes", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button" - }, - "action": "no", - "left": 156, - "top": 48, - "width": 48, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yes_no_button" - }, - "action": "later", - "left": 213, - "top": 48, - "width": 64, - "height": 32, - "text": "Later", - "focusStyle": {} - } - ], - "left": 60, - "top": 92, - "width": 360, - "height": 88 - }, - { - "name": "text_message", - "description": "Textual message", - "style": "text_message", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "text_message" - }, - "data": "text_message", - "left": 0, - "top": 28, - "width": 320, - "height": 32, - "text": "", - "focusStyle": {} - } - ], - "left": 80, - "top": 92, - "width": 320, - "height": 88 - }, - { - "name": "async_operation_in_progress", - "description": "Async operation in progress (e.g. NTP server connection)", - "style": "async_operation", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "async_operation" - }, - "data": "alert_message", - "left": 0, - "top": 14, - "width": 280, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "async_operation" - }, - "data": "async_operation_throbber", - "left": 0, - "top": 46, - "width": 280, - "height": 28, - "text": "", - "focusStyle": {} - } - ], - "left": 100, - "top": 92, - "width": 280, - "height": 88 - }, - { - "name": "progress", - "description": "Async operation in progress (e.g. NTP server connection)", - "style": "async_operation", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "async_operation" - }, - "data": "alert_message", - "left": 0, - "top": 12, - "width": 240, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "async_operation" - }, - "data": "progress", - "left": 0, - "top": 44, - "width": 240, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "async_operation_action", - "color": "text_enabled", - "activeBackgroundColor": "text_enabled" - }, - "action": "cancel", - "left": 70, - "top": 80, - "width": 100, - "height": 32, - "text": "Abort", - "focusStyle": {} - } - ], - "left": 120, - "top": 74, - "width": 240, - "height": 124 - }, - { - "name": "event_queue", - "description": "Event viewer queue", - "style": "default", - "widgets": [ - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "event_queue_events", - "left": 8, - "top": 8, - "width": 464, - "height": 228, - "itemWidget": { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "event_queue_events_type", - "action": "", - "left": 0, - "top": 0, - "width": 464, - "height": 28, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 464, - "height": 28 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "event_info" - }, - "data": "event_queue_events_message", - "action": "", - "left": 0, - "top": 0, - "width": 464, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "event_warning" - }, - "data": "event_queue_events_message", - "action": "", - "left": 0, - "top": 0, - "width": 464, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "event_error" - }, - "data": "event_queue_events_message", - "action": "", - "left": 0, - "top": 0, - "width": 464, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - "listType": "vertical" - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14" - }, - "action": "show_main_page", - "left": 0, - "top": 240, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 240, - "width": 53, - "height": 32, - "text": "Events", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "event_queue_multiple_pages", - "left": 93, - "top": 240, - "width": 387, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 0, - "top": 0, - "width": 387, - "height": 32 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 387, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "data": "event_queue_page_info", - "left": 0, - "top": 0, - "width": 291, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Button", - "style": { - "inheritFrom": "bottom_button", - "font": "Heydings14" - }, - "action": "event_queue_previous_page", - "left": 291, - "top": 0, - "width": 48, - "height": 32, - "text": "(", - "enabled": "event_queue_previous_page_enabled", - "disabledStyle": { - "inheritFrom": "bottom_button_disabled", - "font": "Heydings14", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "bottom_button", - "font": "Heydings14" - }, - "action": "event_queue_next_page", - "left": 339, - "top": 0, - "width": 48, - "height": 32, - "text": ")", - "enabled": "event_queue_next_page_enabled", - "disabledStyle": { - "inheritFrom": "bottom_button_disabled", - "font": "Heydings14", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "padding": 0 - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "keypad", - "description": "Enter generic text string", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "data": "keypad_text", - "left": 0, - "top": 0, - "width": 420, - "height": 32, - "focusStyle": { - "inheritFrom": "edit_value_active_S_left", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 420, - "height": 208, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 0, - "width": 41, - "height": 41, - "text": "1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 42, - "top": 0, - "width": 41, - "height": 41, - "text": "2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 84, - "top": 0, - "width": 41, - "height": 41, - "text": "3", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 126, - "top": 0, - "width": 41, - "height": 41, - "text": "4", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 168, - "top": 0, - "width": 41, - "height": 41, - "text": "5", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 210, - "top": 0, - "width": 41, - "height": 41, - "text": "6", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 252, - "top": 0, - "width": 41, - "height": 41, - "text": "7", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 294, - "top": 0, - "width": 41, - "height": 41, - "text": "8", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 336, - "top": 0, - "width": 41, - "height": 41, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 378, - "top": 0, - "width": 41, - "height": 41, - "text": "0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 42, - "width": 41, - "height": 41, - "text": "Q", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 42, - "top": 42, - "width": 41, - "height": 41, - "text": "W", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 84, - "top": 42, - "width": 41, - "height": 41, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 126, - "top": 42, - "width": 41, - "height": 41, - "text": "R", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 168, - "top": 42, - "width": 41, - "height": 41, - "text": "T", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 210, - "top": 42, - "width": 41, - "height": 41, - "text": "Y", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 252, - "top": 42, - "width": 41, - "height": 41, - "text": "U", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 294, - "top": 42, - "width": 41, - "height": 41, - "text": "I", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 336, - "top": 42, - "width": 41, - "height": 41, - "text": "O", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 378, - "top": 42, - "width": 41, - "height": 41, - "text": "P", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 84, - "width": 41, - "height": 41, - "text": "A", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 42, - "top": 84, - "width": 41, - "height": 41, - "text": "S", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 84, - "top": 84, - "width": 41, - "height": 41, - "text": "D", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 126, - "top": 84, - "width": 41, - "height": 41, - "text": "F", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 168, - "top": 84, - "width": 41, - "height": 41, - "text": "G", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 210, - "top": 84, - "width": 41, - "height": 41, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 252, - "top": 84, - "width": 41, - "height": 41, - "text": "J", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 294, - "top": 84, - "width": 41, - "height": 41, - "text": "K", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 336, - "top": 84, - "width": 41, - "height": 41, - "text": "L", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 378, - "top": 84, - "width": 41, - "height": 41, - "text": "#", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 126, - "width": 41, - "height": 41, - "text": "Z", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 42, - "top": 126, - "width": 41, - "height": 41, - "text": "X", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 84, - "top": 126, - "width": 41, - "height": 41, - "text": "C", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 126, - "top": 126, - "width": 41, - "height": 41, - "text": "V", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 168, - "top": 126, - "width": 41, - "height": 41, - "text": "B", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 210, - "top": 126, - "width": 41, - "height": 41, - "text": "N", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 252, - "top": 126, - "width": 41, - "height": 41, - "text": "M", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 294, - "top": 126, - "width": 41, - "height": 41, - "text": ",", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 336, - "top": 126, - "width": 41, - "height": 41, - "text": ".", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 378, - "top": 126, - "width": 41, - "height": 41, - "text": "/", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_spec_icons" - }, - "action": "keypad_back", - "left": 0, - "top": 168, - "width": 64, - "height": 40, - "text": "<", - "focusStyle": {} - }, - { - "type": "ToggleButton", - "style": { - "inheritFrom": "key_spec_icons", - "font": "Oswald24" - }, - "data": "keypad_caps", - "action": "keypad_caps", - "left": 64, - "top": 168, - "width": 64, - "height": 40, - "text1": "abc", - "text2": "ABC" - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_space", - "left": 129, - "top": 168, - "width": 162, - "height": 40, - "text": "Space", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_spec_icons" - }, - "action": "keypad_cancel", - "left": 292, - "top": 168, - "width": 64, - "height": 40, - "text": "U", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_spec_icons" - }, - "action": "keypad_ok", - "left": 356, - "top": 168, - "width": 64, - "height": 40, - "text": "I", - "focusStyle": {} - } - ] - } - ], - "left": 30, - "top": 16, - "width": 420, - "height": 240 - }, - { - "name": "numeric_keypad", - "description": "Enter generic numeric value", - "style": "default", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "keypad_text", - "left": 0, - "top": 0, - "width": 240, - "height": 32, - "focusStyle": { - "inheritFrom": "edit_value_active_S_left", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 30, - "width": 240, - "height": 174, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 2, - "width": 59, - "height": 42, - "text": "7", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 60, - "top": 2, - "width": 59, - "height": 42, - "text": "8", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 120, - "top": 2, - "width": 59, - "height": 42, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_icons" - }, - "action": "keypad_back", - "left": 180, - "top": 2, - "width": 59, - "height": 42, - "text": "<", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 45, - "width": 59, - "height": 42, - "text": "4", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 60, - "top": 45, - "width": 59, - "height": 42, - "text": "5", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 120, - "top": 45, - "width": 59, - "height": 42, - "text": "6", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key" - }, - "data": "edit_unit", - "action": "keypad_unit", - "left": 180, - "top": 45, - "width": 59, - "height": 42, - "enabled": "keypad_unit_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 88, - "width": 59, - "height": 42, - "text": "1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 60, - "top": 88, - "width": 59, - "height": 42, - "text": "2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 120, - "top": 88, - "width": 59, - "height": 42, - "text": "3", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key" - }, - "data": "keypad_option1_text", - "action": "keypad_option1", - "left": 180, - "top": 88, - "width": 59, - "height": 42, - "text": "", - "enabled": "keypad_option1_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 0, - "top": 131, - "width": 59, - "height": 42, - "text": "0", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key" - }, - "action": "keypad_key", - "left": 60, - "top": 131, - "width": 59, - "height": 42, - "text": ".", - "enabled": "keypad_dot_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "key_icons" - }, - "action": "keypad_sign", - "left": 120, - "top": 131, - "width": 59, - "height": 42, - "text": "-", - "enabled": "keypad_sign_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "key" - }, - "data": "keypad_option2_text", - "action": "keypad_option2", - "left": 180, - "top": 131, - "width": 59, - "height": 42, - "text": "", - "enabled": "keypad_option2_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled" - } - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background", - "color": "status_line_background", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_background" - }, - "left": 0, - "top": 204, - "width": 144, - "height": 36 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "keypad_ok", - "left": 144, - "top": 204, - "width": 48, - "height": 36, - "text": "\\u004f", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "keypad_cancel", - "left": 192, - "top": 204, - "width": 48, - "height": 36, - "text": "\\u0058", - "focusStyle": {} - } - ], - "left": 120, - "top": 16, - "width": 240, - "height": 240 - }, - { - "name": "ch_settings", - "description": "Clear, disable and define channel's protection parameters", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 8, - "width": 220, - "height": 205, - "name": "Protections", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 220, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 2, - "height": 202 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 218, - "top": 2, - "width": 2, - "height": 202 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 202, - "width": 220, - "height": 2 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 2, - "top": 2, - "width": 216, - "height": 34, - "text": "\\u009d Protections", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_prot_clear", - "left": 6, - "top": 34, - "width": 208, - "height": 28, - "text": "Clear / Disable protection", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_prot_ocp", - "left": 6, - "top": 74, - "width": 208, - "height": 28, - "text": "Current limit and OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_prot_ovp", - "left": 6, - "top": 106, - "width": 208, - "height": 28, - "text": "Voltage limit and OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_prot_opp", - "left": 6, - "top": 138, - "width": 208, - "height": 28, - "text": "Power limit and OPP", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_otp_installed", - "left": 6, - "top": 170, - "width": 208, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 208, - "height": 28, - "text": "Temp. (OTP) not installed", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 208, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_prot_otp", - "left": 0, - "top": 0, - "width": 208, - "height": 28, - "text": "Temperature (OTP)", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 240, - "top": 8, - "width": 234, - "height": 205, - "name": "Settings", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_center", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "show_ch_settings_trigger", - "left": 0, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u009b Trigger", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_center", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "show_ch_settings_lists", - "left": 120, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u00a1 List prog.", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_ranges_supported", - "left": 0, - "top": 54, - "width": 114, - "height": 50, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_disabled_S_left", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "", - "left": 0, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u009e Current ranges", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_left", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "ch_settings_adv_ranges_select_mode", - "left": 0, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u009e Current ranges", - "firstLineIndent": 0, - "hangingIndent": 24 - } - ] - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_left", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "show_ch_settings_adv_view", - "left": 120, - "top": 54, - "width": 114, - "height": 50, - "text": "\\u0087 Display view", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 108, - "width": 114, - "height": 50, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_left", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "show_ch_settings_cal", - "left": 0, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u0097 Calibration", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "", - "left": 0, - "top": 0, - "width": 114, - "height": 50, - "text": "\\u0097 Calibration", - "firstLineIndent": 0, - "hangingIndent": 24 - } - ] - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_left", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - "action": "show_ch_settings_info", - "left": 120, - "top": 108, - "width": 114, - "height": 50, - "text": "\\u0080 Info", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_has_advanced_options", - "left": 0, - "top": 170, - "width": 234, - "height": 28, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 28, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_ch_settings_adv_options", - "left": 0, - "top": 0, - "width": 234, - "height": 28, - "text": "Advanced options", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Protections and Settings", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Protections and Settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Protections and Settings", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_prot_clear", - "description": "Clear and/or disable selected channel's protection(s)", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 10, - "width": 460, - "height": 164, - "name": "Body", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 60, - "text": "Make sure that load is disconnected before clear tripped protection(s)." - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_clear", - "left": 20, - "top": 86, - "width": 143, - "height": 46, - "text": "Clear", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_clear_and_disable", - "left": 200, - "top": 86, - "width": 240, - "height": 46, - "text": "Clear and disable", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Clear channel protection", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Clear channels protection", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Clear channels protection", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_prot_ovp", - "description": "Channel over-voltage protection settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 464, - "height": 230, - "name": "Body", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 228, - "height": 227, - "name": "settings", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 150, - "height": 32, - "text": "Output voltage:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 150, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_u_mon", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Limit:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ovp_limit", - "action": "ch_settings_prot_edit_limit", - "left": 120, - "top": 36, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 119, - "height": 32, - "text": "OVP active:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_state", - "left": 120, - "top": 72, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 108, - "width": 119, - "height": 32, - "text": "OVP type:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 120, - "top": 108, - "width": 100, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "text": "Hardware", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "text": "Software", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_M", - "alignHorizontal": "left" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "text": "Software", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 0, - "top": 144, - "width": 208, - "height": 68, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 208, - "height": 68, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 208, - "height": 68, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 119, - "height": 32, - "text": "Trip level:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ovp_level", - "action": "ch_settings_prot_edit_level", - "left": 120, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ovp_delay", - "action": "ch_settings_prot_edit_delay", - "left": 120, - "top": 36, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 208, - "height": 68, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 119, - "height": 32, - "text": "Trip level:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ovp_level", - "action": "ch_settings_prot_edit_level", - "left": 120, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ovp_delay", - "action": "ch_settings_prot_edit_delay", - "left": 120, - "top": 36, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 230, - "top": 0, - "width": 234, - "height": 227, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 227, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 3, - "width": 214, - "height": 224, - "bitmap": "protection_curve" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 138, - "width": 61, - "height": 30, - "bitmap": "Vout" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 144, - "top": 0, - "width": 90, - "height": 74, - "bitmap": "protection_hw_trip_level" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 13, - "top": 70, - "width": 221, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 13, - "top": 45, - "width": 221, - "height": 2 - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 9, - "top": 47, - "width": 50, - "height": 23, - "bitmap": "Vset" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 227, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 3, - "width": 214, - "height": 224, - "bitmap": "protection_curve" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 138, - "width": 61, - "height": 30, - "bitmap": "Vout" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 144, - "top": 42, - "width": 90, - "height": 30, - "bitmap": "protection_trip_level" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 13, - "top": 70, - "width": 221, - "height": 2 - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 67, - "top": 157, - "width": 90, - "height": 50, - "bitmap": "protection_delay" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 83, - "top": 27, - "width": 2, - "height": 176 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 141, - "top": 27, - "width": 2, - "height": 176 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 227, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 3, - "width": 214, - "height": 224, - "bitmap": "protection_curve" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 138, - "width": 61, - "height": 30, - "bitmap": "Vout" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 144, - "top": 42, - "width": 90, - "height": 30, - "bitmap": "protection_trip_level" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 13, - "top": 70, - "width": 221, - "height": 2 - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 66, - "top": 133, - "width": 90, - "height": 50, - "bitmap": "protection_delay" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 83, - "top": 27, - "width": 2, - "height": 176 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 141, - "top": 27, - "width": 2, - "height": 176 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 321, - "height": 32, - "text": "Voltage protection settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "Voltage protection settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "\\u00a2 Voltage protection settings", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_prot_ocp", - "description": "Channel over-current protection settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "borderSize": "0", - "borderRadius": 0 - }, - "left": 8, - "top": 8, - "width": 464, - "height": 224, - "name": "Body", - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 230, - "top": 0, - "width": 214, - "height": 224, - "bitmap": "protection_curve" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 230, - "top": 135, - "width": 61, - "height": 30, - "bitmap": "Iout" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 374, - "top": 39, - "width": 90, - "height": 30, - "bitmap": "protection_trip_level" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 243, - "top": 67, - "width": 221, - "height": 2 - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 297, - "top": 154, - "width": 90, - "height": 50, - "bitmap": "protection_delay" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 313, - "top": 24, - "width": 2, - "height": 176 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 371, - "top": 24, - "width": 2, - "height": 176 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 150, - "height": 32, - "text": "Output current:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 150, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_i_mon", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Limit:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 119, - "top": 36, - "width": 106, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ocp_limit", - "action": "ch_settings_prot_edit_limit", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ocp_max_current_limit_cause", - "left": 74, - "top": 0, - "width": 32, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 32, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "max_current_limit_cause", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 32, - "height": 32, - "text": "\\u0088", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "max_current_limit_cause", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "left": 0, - "top": 0, - "width": 32, - "height": 32, - "text": "\\u0089", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 119, - "height": 32, - "text": "OCP active:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ocp_state", - "left": 119, - "top": 72, - "width": 74, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 108, - "width": 193, - "height": 32, - "text": "Trip level = Iset", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 144, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_ocp_delay", - "action": "ch_settings_prot_edit_delay", - "left": 119, - "top": 144, - "width": 74, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 321, - "height": 32, - "text": "Current protection settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "Current protection settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "\\u00a2 Current protection settings", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_prot_opp", - "description": "Channel over-power protection settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 464, - "height": 224, - "name": "Body", - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 230, - "top": 0, - "width": 214, - "height": 224, - "bitmap": "protection_curve" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 230, - "top": 135, - "width": 61, - "height": 30, - "bitmap": "Pout" - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 374, - "top": 39, - "width": 90, - "height": 30, - "bitmap": "protection_trip_level" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 243, - "top": 67, - "width": 221, - "height": 2 - }, - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 297, - "top": 154, - "width": 90, - "height": 50, - "bitmap": "protection_delay" - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 313, - "top": 24, - "width": 2, - "height": 176 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 371, - "top": 24, - "width": 2, - "height": 176 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 140, - "height": 32, - "text": "Output power:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 140, - "top": 0, - "width": 100, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_p_mon", - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Limit:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_opp_limit", - "action": "ch_settings_prot_edit_limit", - "left": 119, - "top": 36, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 119, - "height": 32, - "text": "OPP active:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_opp_state", - "left": 119, - "top": 72, - "width": 58, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 58, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 58, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 108, - "width": 119, - "height": 32, - "text": "Trip level:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_opp_level", - "action": "ch_settings_prot_edit_level", - "left": 119, - "top": 108, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 144, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_opp_delay", - "action": "ch_settings_prot_edit_delay", - "left": 119, - "top": 144, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 321, - "height": 32, - "text": "Power protection settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "Power protection settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "\\u00a2 Power protection settings", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_prot_otp", - "description": "Channel over-temperature protection settings\n", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 472, - "height": 224, - "name": "Body", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 119, - "height": 32, - "text": "OTP active:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_otp_state", - "left": 119, - "top": 0, - "width": 60, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_prot_toggle_state", - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "Trip level:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_otp_level", - "action": "ch_settings_prot_edit_level", - "left": 119, - "top": 36, - "width": 96, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_protection_otp_delay", - "action": "ch_settings_prot_edit_delay", - "left": 119, - "top": 72, - "width": 96, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 108, - "width": 140, - "height": 32, - "text": "Current temp.:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 140, - "top": 108, - "width": 332, - "height": 96, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 332, - "height": 96, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_temp_status", - "left": 0, - "top": 0, - "width": 130, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "font": "Oswald17" - }, - "data": "", - "left": 0, - "top": 0, - "width": 130, - "height": 32, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 130, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_M_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 130, - "height": 32, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 332, - "height": 96, - "widgets": [ - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 0, - "top": 0, - "width": 332, - "height": 96, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 166, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "font": "Oswald17", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_temp_status", - "left": 45, - "top": 0, - "width": 121, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "font": "Oswald17" - }, - "data": "", - "left": 0, - "top": 0, - "width": 121, - "height": 32, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 121, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_M_left", - "font": "Oswald17" - }, - "data": "", - "left": 0, - "top": 0, - "width": 121, - "height": 32, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - } - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 321, - "height": 32, - "text": "Temperature protection settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "Temperature protection settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "\\u00a2 Temperature protection settings", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_trigger", - "description": "Channel trigger settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 321, - "height": 210, - "name": "Body", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "trigger_show_general_settings", - "left": 0, - "top": 0, - "width": 236, - "height": 32, - "text": "General trigger settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 136, - "height": 32, - "text": "Trigger mode:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_trigger_mode", - "action": "ch_settings_trigger_edit_trigger_mode", - "left": 136, - "top": 36, - "width": 68, - "height": 32, - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_trigger_mode", - "left": 0, - "top": 72, - "width": 280, - "height": 108, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 280, - "height": 108 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 280, - "height": 108, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 136, - "height": 32, - "text": "Output state:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_trigger_output_state", - "left": 136, - "top": 0, - "width": 68, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_trigger_toggle_output_state", - "left": 0, - "top": 0, - "width": 68, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_trigger_toggle_output_state", - "left": 0, - "top": 0, - "width": 68, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "show_ch_settings_lists", - "left": 0, - "top": 36, - "width": 206, - "height": 32, - "text": "Edit lists", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 280, - "height": 108, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 136, - "height": 32, - "text": "Output state:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_trigger_output_state", - "left": 136, - "top": 0, - "width": 68, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_trigger_toggle_output_state", - "left": 0, - "top": 0, - "width": 68, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_trigger_toggle_output_state", - "left": 0, - "top": 0, - "width": 68, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 182, - "height": 32, - "text": "Voltage step value:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_u_trigger_value", - "action": "ch_settings_trigger_edit_voltage_trigger_value", - "left": 182, - "top": 36, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 182, - "height": 32, - "text": "Current step value:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_i_trigger_value", - "action": "ch_settings_trigger_edit_current_trigger_value", - "left": 182, - "top": 72, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Trigger settings", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Trigger settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Trigger settings", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_lists", - "description": "Channel LIST settings", - "style": "default", - "widgets": [ - { - "type": "ListGraph", - "style": { - "inheritFrom": "yt_graph" - }, - "data": "channel_lists", - "left": 2, - "top": 2, - "width": 476, - "height": 90, - "dwellData": "channel_list_dwell", - "y1Data": "channel_list_voltage", - "y1Style": { - "inheritFrom": "yt_graph_U_default", - "padding": 0 - }, - "y2Data": "channel_list_current", - "y2Style": { - "inheritFrom": "yt_graph_I_default", - "padding": 0 - }, - "cursorData": "channel_lists_cursor", - "cursorStyle": { - "inheritFrom": "list_graph_cursor", - "padding": 0 - } - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 92, - "width": 333, - "height": 144, - "name": "Table", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 0, - "top": 0, - "width": 33, - "height": 24, - "text": "#", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 33, - "top": 0, - "width": 100, - "height": 24, - "text": "Dwell", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yt_graph_U_default_label" - }, - "left": 133, - "top": 0, - "width": 100, - "height": 24, - "text": "Voltage", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "yt_graph_I_default_label" - }, - "left": 233, - "top": 0, - "width": 100, - "height": 24, - "text": "Current", - "focusStyle": {} - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "channel_lists", - "left": 0, - "top": 24, - "width": 333, - "height": 120, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 333, - "height": 24, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "channel_list_index", - "left": 0, - "top": 0, - "width": 33, - "height": 24, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_list_dwell_enabled", - "left": 33, - "top": 0, - "width": 96, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "text": "\\u0092", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "channel_list_dwell", - "action": "channel_lists_edit", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_list_voltage_enabled", - "left": 133, - "top": 0, - "width": 96, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "text": "\\u0092", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "channel_list_voltage", - "action": "channel_lists_edit", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_list_current_enabled", - "left": 233, - "top": 0, - "width": 96, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "text": "\\u0092", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "channel_list_current", - "action": "channel_lists_edit", - "left": 0, - "top": 0, - "width": 96, - "height": 24, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - "listType": "vertical" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 340, - "top": 115, - "width": 135, - "height": 121, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 135, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 2, - "height": 121 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 133, - "top": 0, - "width": 2, - "height": 121 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 119, - "width": 135, - "height": 2 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 342, - "top": 118, - "width": 131, - "height": 56, - "name": "List count", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 0, - "top": 0, - "width": 131, - "height": 28, - "text": "List count:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "channel_list_count", - "action": "ch_settings_trigger_edit_list_count", - "left": 41, - "top": 28, - "width": 57, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 342, - "top": 176, - "width": 131, - "height": 56, - "name": "On list stop", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 0, - "top": 0, - "width": 131, - "height": 28, - "text": "On list stop:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "channel_trigger_on_list_stop", - "action": "ch_settings_trigger_edit_on_list_stop", - "left": 6, - "top": 28, - "width": 120, - "height": 28, - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "left": 41, - "top": 0, - "width": 97, - "height": 32, - "invertColors": true - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "channel_lists_previous_page", - "left": 138, - "top": 0, - "width": 41, - "height": 32, - "text": "(", - "enabled": "channel_lists_previous_page_enabled", - "disabledStyle": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "#c0c0c0", - "activeBackgroundColor": "#c0c0c0", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "channel_lists_next_page", - "left": 179, - "top": 0, - "width": 41, - "height": 32, - "text": ")", - "enabled": "channel_lists_next_page_enabled", - "disabledStyle": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "#c0c0c0", - "activeBackgroundColor": "#c0c0c0", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_channel_lists_insert_menu", - "left": 220, - "top": 0, - "width": 41, - "height": 32, - "text": "]", - "enabled": "channel_lists_insert_menu_enabled", - "disabledStyle": { - "inheritFrom": "bottom_button_disabled", - "font": "Heydings14", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_channel_lists_delete_menu", - "left": 261, - "top": 0, - "width": 41, - "height": 32, - "text": "^", - "enabled": "channel_lists_delete_menu_enabled", - "disabledStyle": { - "inheritFrom": "bottom_button_disabled", - "font": "Heydings14", - "padding": 0 - } - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "left": 302, - "top": 0, - "width": 96, - "height": 32, - "invertColors": true - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_lists_insert_menu", - "description": "Channel LIST insert menu", - "style": "select_enum_item_popup_container", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "font": "Oswald17", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "data": "", - "action": "channel_lists_insert_row_above", - "left": 10, - "top": 12, - "width": 200, - "height": 32, - "text": "Insert row above", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "font": "Oswald17", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "data": "", - "action": "channel_lists_insert_row_below", - "left": 10, - "top": 46, - "width": 200, - "height": 32, - "text": "Insert row below", - "focusStyle": {} - } - ], - "closePageIfTouchedOutside": true, - "left": 130, - "top": 90, - "width": 220, - "height": 92 - }, - { - "name": "ch_settings_lists_delete_menu", - "description": "Channel LIST delete menu", - "style": "select_enum_item_popup_container", - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_lists_delete_row", - "left": 12, - "top": 12, - "width": 292, - "height": 32, - "text": "Delete row", - "enabled": "channel_lists_delete_row_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_lists_clear_column", - "left": 12, - "top": 44, - "width": 292, - "height": 32, - "text": "Clear column from cursor down", - "enabled": "channel_lists_clear_column_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_lists_delete_rows", - "left": 12, - "top": 76, - "width": 292, - "height": 32, - "text": "Delete all from cursor down", - "enabled": "channel_lists_delete_rows_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item", - "padding": 0 - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_lists_delete_all", - "left": 12, - "top": 108, - "width": 292, - "height": 32, - "text": "Delete all", - "focusStyle": {} - } - ], - "closePageIfTouchedOutside": true, - "left": 82, - "top": 60, - "width": 316, - "height": 152 - }, - { - "name": "ch_settings_calibration", - "description": "Retrieve channel's informations such as how long channel output is active, sensor temperature, self-test result and calibration status (CAL:STAT command). \"Calib. params:\" can be ON, OFF, Uncalibrated, Corrupted. Selecting this option when it's uncalibrated or calibration data is corrupted will lead to Calibration wizard.", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 8, - "top": 8, - "width": 464, - "height": 224, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 464, - "height": 224, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 32, - "text": "Last calibration:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_calibration_date", - "left": 160, - "top": 0, - "width": 124, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 86, - "height": 32, - "text": "Remark:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_calibration_remark", - "left": 86, - "top": 36, - "width": 377, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 142, - "height": 32, - "text": "Calib. enabled:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_status", - "action": "", - "left": 142, - "top": 72, - "width": 117, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_M_left" - }, - "action": "", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "text": "Not allowed", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_state", - "action": "", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_cal_toggle_enable", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_cal_toggle_enable", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default_inverse" - }, - "data": "channel_calibration_status", - "left": 0, - "top": 113, - "width": 304, - "height": 111, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 304, - "height": 111 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 304, - "height": 111, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 189, - "height": 30, - "text": "Calibration parameters:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_min", - "left": 16, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_mid", - "left": 106, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_max", - "left": 196, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_min", - "left": 16, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_mid", - "left": 106, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_max", - "left": 196, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_min", - "left": 16, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_mid", - "left": 106, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_max", - "left": 196, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_status", - "action": "", - "left": 335, - "top": 183, - "width": 120, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_cal_ch_wiz_start", - "left": 0, - "top": 0, - "width": 120, - "height": 32, - "text": "Calibrate", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_cal_ch_wiz_start", - "left": 0, - "top": 0, - "width": 120, - "height": 32, - "text": "Recalibrate", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 464, - "height": 224, - "widgets": [] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Calibration", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Calibration", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Calibration", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_start_list", - "description": "Channel start LIST menu", - "style": "select_enum_item_popup_container", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_enable_output", - "left": 12, - "top": 80, - "width": 216, - "height": 34, - "text": "Only enable output", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_initiate_trigger", - "left": 12, - "top": 12, - "width": 216, - "height": 34, - "text": "Initiate trigger", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item", - "color": "popup_text_selected", - "activeBackgroundColor": "popup_text_selected" - }, - "action": "channel_set_to_fixed", - "left": 12, - "top": 46, - "width": 216, - "height": 34, - "text": "Set to fixed", - "focusStyle": {} - } - ], - "closePageIfTouchedOutside": true, - "left": 120, - "top": 73, - "width": 240, - "height": 126 - }, - { - "name": "ch_settings_adv_options", - "description": "Output voltage remote sensing and programming settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 10, - "width": 460, - "height": 176, - "name": "Body", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 50, - "name": "Remote sensing", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 12, - "width": 344, - "height": 37, - "text": "Remote voltage sensing (CV mode only)" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_coupling_is_series", - "left": 344, - "top": 0, - "width": 100, - "height": 50, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rsense_status", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "ch_settings_adv_remote_toggle_sense", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "ch_settings_adv_remote_toggle_sense", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left", - "font": "Oswald24", - "alignHorizontal": "center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "OFF \\u008c", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_installed", - "left": 0, - "top": 60, - "width": 460, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "action": "", - "left": 0, - "top": 0, - "width": 460, - "height": 50, - "text": "Remote prog. not installed", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 50, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 344, - "height": 50, - "text": "Remote voltage programming using external signal source (+2.5 V for full scale)" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 344, - "top": 0, - "width": 100, - "height": 50, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "ch_settings_adv_remote_toggle_programming", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "ch_settings_adv_remote_toggle_programming", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left", - "font": "Oswald24", - "alignHorizontal": "center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "OFF \\u008c", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_dprog_installed", - "left": 0, - "top": 120, - "width": 460, - "height": 50, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 50, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 50, - "name": "Down-programmer", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 12, - "width": 344, - "height": 37, - "text": "Down-programmer (max. sinking power: 5 W)" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_dprog", - "action": "ch_settings_adv_toggle_dprog", - "left": 344, - "top": 0, - "width": 100, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "ON", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 100, - "height": 50, - "text": "Auto", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Advanced options", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Advanced options", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Advanced options", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_adv_ranges", - "description": "Channel current ranges settings (Power board r5B12 only)", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 288, - "height": 115, - "name": "Body", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 143, - "height": 32, - "text": "Current range:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_ranges_mode", - "action": "ch_settings_adv_ranges_select_mode", - "left": 143, - "top": 0, - "width": 143, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 115, - "height": 32, - "text": "Autoranging:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_ranges_auto_ranging", - "left": 143, - "top": 36, - "width": 48, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_adv_ranges_toggle_auto_ranging", - "left": 0, - "top": 0, - "width": 48, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_adv_ranges_toggle_auto_ranging", - "left": 0, - "top": 0, - "width": 48, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_output_state", - "left": 0, - "top": 72, - "width": 274, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 274, - "height": 32 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 274, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 181, - "height": 32, - "text": "Currently selected:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_ranges_currently_selected", - "left": 184, - "top": 0, - "width": 90, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Current ranges", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Current ranges", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Current ranges", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_adv_view", - "description": "Channel display view settings\n", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 464, - "height": 203, - "name": "Body", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 166, - "height": 32, - "text": "YT view value #1:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_display_view_settings_display_value1", - "action": "ch_settings_adv_view_edit_display_value1", - "left": 166, - "top": 0, - "width": 119, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 166, - "height": 32, - "text": "YT view value #2:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_display_view_settings_display_value2", - "action": "ch_settings_adv_view_edit_display_value2", - "left": 166, - "top": 36, - "width": 119, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ch_settings_adv_view_swap_display_values", - "left": 295, - "top": 18, - "width": 142, - "height": 32, - "text": "Swap values", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 80, - "width": 217, - "height": 32, - "text": "YT view sampling rate:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_display_view_settings_yt_view_rate", - "action": "ch_settings_adv_view_edit_ytview_rate", - "left": 217, - "top": 80, - "width": 101, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 321, - "height": 32, - "text": "Display view settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "Display view settings", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 357, - "height": 32, - "text": "\\u00a2 Display view settings", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "ch_settings_info", - "description": "Retrieve channel's informations such as how long channel output is active, sensor temperature, self-test result and calibration status (CAL:STAT command). \"Calib. params:\" can be ON, OFF, Uncalibrated, Corrupted. Selecting this option when it's uncalibrated or calibration data is corrupted will lead to Calibration wizard.", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 8, - "top": 8, - "width": 472, - "height": 232, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 472, - "height": 232, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_M_left" - }, - "left": 0, - "top": 0, - "width": 132, - "height": 32, - "text": "Model:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_long_title", - "left": 132, - "top": 0, - "width": 332, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_M_left" - }, - "left": 0, - "top": 36, - "width": 132, - "height": 32, - "text": "Brand:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "left": 132, - "top": 36, - "width": 176, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_M_left" - }, - "left": 0, - "top": 72, - "width": 132, - "height": 32, - "text": "Serial No.:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "left": 132, - "top": 72, - "width": 176, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_M_left" - }, - "left": 0, - "top": 108, - "width": 132, - "height": 32, - "text": "Total On time:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_on_time_total", - "left": 132, - "top": 108, - "width": 176, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 144, - "width": 132, - "height": 32, - "text": "Last On time:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_on_time_last", - "left": 132, - "top": 144, - "width": 176, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 180, - "width": 132, - "height": 32, - "text": "Temperature:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_temp_status", - "left": 132, - "top": 180, - "width": 117, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "font": "Oswald17" - }, - "data": "", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_M_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 117, - "height": 32, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 472, - "height": 232, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 112, - "height": 24, - "text": "Total On time:", - "focusStyle": {} - }, - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 10, - "top": 26, - "width": 462, - "height": 48, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 154, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 36, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_on_time_total", - "left": 36, - "top": 0, - "width": 118, - "height": 24, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 78, - "width": 112, - "height": 24, - "text": "Last On time:", - "focusStyle": {} - }, - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 10, - "top": 104, - "width": 462, - "height": 48, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 154, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 36, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_on_time_last", - "left": 36, - "top": 0, - "width": 118, - "height": 24, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 1, - "top": 156, - "width": 112, - "height": 24, - "text": "Temperature:", - "focusStyle": {} - }, - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 10, - "top": 184, - "width": 462, - "height": 48, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 154, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 36, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_temp_status", - "left": 36, - "top": 0, - "width": 118, - "height": 24, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "data": "", - "left": 0, - "top": 0, - "width": 118, - "height": 24, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 118, - "height": 24, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 118, - "height": 24, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - } - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "channel_is_par_ser_coupled_or_tracked", - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Information", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "Information", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 439, - "height": 32, - "text": "\\u00a2 Information", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "sys_settings", - "description": "System settings. Some of options will require that all channels outputs are turned off. In that case output status will not be displayed on the right.", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "borderSize": 0 - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Menu", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_protections", - "left": 3, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0081 System protection", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_display", - "left": 123, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0098 Display", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_sound", - "left": 243, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u009a Sound", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_trigger", - "left": 363, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u009b Trigger", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_io", - "left": 3, - "top": 56, - "width": 114, - "height": 54, - "text": "\\u009c Digital I/O", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_cal", - "left": 243, - "top": 112, - "width": 114, - "height": 54, - "text": "\\u0097 Channels calibration", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "data": "", - "action": "show_sys_settings_encoder", - "left": 243, - "top": 56, - "width": 114, - "height": 54, - "text": "\\u0093 Encoder & User sw", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_serial", - "left": 123, - "top": 112, - "width": 114, - "height": 54, - "text": "\\u0094 Serial (via USB)", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_aux_otp", - "left": 363, - "top": 56, - "width": 114, - "height": 54, - "text": "\\u0089 System temp & fan", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_installed", - "left": 3, - "top": 112, - "width": 114, - "height": 54, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0095 Ethernet", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "action": "show_sys_settings_ethernet", - "left": 0, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0095 Ethernet", - "firstLineIndent": 0, - "hangingIndent": 24 - } - ] - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "data": "", - "action": "show_sys_settings_date_time", - "left": 123, - "top": 56, - "width": 114, - "height": 54, - "text": "\\u0099 Date & time", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_has_error", - "action": "show_sys_info", - "left": 363, - "top": 112, - "width": 114, - "height": 54, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "data": "", - "action": "show_sys_info", - "left": 0, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0080 System info", - "firstLineIndent": 0, - "hangingIndent": 24 - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "data": "", - "action": "show_sys_info", - "left": 0, - "top": 0, - "width": 114, - "height": 54, - "text": "\\u0080 System info", - "firstLineIndent": 0, - "hangingIndent": 24 - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 40, - "top": 0, - "width": 440, - "height": 32, - "text": "System Settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_temperature", - "description": "AUX temperature sensor settings\n", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 235, - "height": 140, - "name": "Temperature settings", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 140, - "height": 32, - "text": "Current temp:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_temp_aux_status", - "left": 140, - "top": 0, - "width": 95, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "data": "", - "left": 0, - "top": 0, - "width": 95, - "height": 32, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "data": "sys_temp_aux", - "left": 0, - "top": 0, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_M_left", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "", - "left": 0, - "top": 0, - "width": 95, - "height": 32, - "text": "Not installed", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 119, - "height": 32, - "text": "OTP active:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_temp_aux_otp_state", - "left": 140, - "top": 36, - "width": 95, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_protections_aux_otp_toggle_state", - "left": 0, - "top": 0, - "width": 95, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_protections_aux_otp_toggle_state", - "left": 0, - "top": 0, - "width": 95, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 72, - "width": 119, - "height": 32, - "text": "Trip level:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "sys_temp_aux_otp_level", - "action": "sys_settings_protections_aux_otp_edit_level", - "left": 140, - "top": 72, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 108, - "width": 119, - "height": 32, - "text": "Trip delay:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "sys_temp_aux_otp_delay", - "action": "sys_settings_protections_aux_otp_edit_delay", - "left": 140, - "top": 108, - "width": 95, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Button", - "style": { - "inheritFrom": "non_interactive_button_M" - }, - "data": "", - "action": "sys_settings_protections_aux_otp_clear", - "left": 294, - "top": 125, - "width": 136, - "height": 38, - "text": "Clear Trip", - "enabled": "sys_temp_aux_otp_is_tripped", - "disabledStyle": { - "inheritFrom": "non_interactive_button_S_disabled", - "font": "Oswald17" - } - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 249, - "top": 0, - "width": 2, - "height": 118 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_fan_status", - "left": 256, - "top": 8, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 105, - "height": 32, - "text": "Fan status:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "data": "", - "left": 105, - "top": 0, - "width": 109, - "height": 32, - "text": "Fault", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 105, - "height": 32, - "text": "Fan mode:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_fan_mode", - "action": "sys_settings_fan_toggle_mode", - "left": 105, - "top": 36, - "width": 109, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 109, - "height": 32, - "text": "Auto", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "", - "left": 0, - "top": 0, - "width": 109, - "height": 32, - "text": "Manual", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_M_left" - }, - "left": 0, - "top": 0, - "width": 105, - "height": 32, - "text": "Fan speed:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "data": "sys_info_fan_speed", - "left": 105, - "top": 0, - "width": 108, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_fan_mode", - "left": 0, - "top": 72, - "width": 214, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 32, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 131, - "height": 32, - "text": "Set speed to:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "sys_fan_speed", - "action": "sys_settings_fan_edit_speed", - "left": 133, - "top": 0, - "width": 81, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 105, - "height": 32, - "text": "Fan status:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left", - "alignHorizontal": "center" - }, - "data": "", - "left": 105, - "top": 0, - "width": 108, - "height": 32, - "text": "Unsupported", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 105, - "height": 32, - "text": "Fan status:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left", - "font": "Oswald17", - "alignHorizontal": "center" - }, - "data": "", - "left": 105, - "top": 0, - "width": 108, - "height": 32, - "text": "Testing...", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 104, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 105, - "height": 32, - "text": "Fan status:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left", - "alignHorizontal": "center" - }, - "data": "", - "left": 105, - "top": 0, - "width": 108, - "height": 32, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 249, - "top": 118, - "width": 230, - "height": 2 - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "AUX temp. protection and cooling fan control", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_protections", - "description": "Define selected protection values\n", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 259, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 5, - "width": 236, - "height": 50, - "name": "Force disabling", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 171, - "height": 50, - "text": "Force disabling of all outputs on power up" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_force_disabling_all_outputs_on_power_up", - "action": "", - "left": 179, - "top": 0, - "width": 57, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_force_disabling_all_outputs_on_power_up", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_force_disabling_all_outputs_on_power_up", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 60, - "width": 236, - "height": 56, - "name": "Shutdown when tripped", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 179, - "height": 50, - "text": "Shutdown when protection tripped" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_shutdown_when_protection_tripped", - "action": "", - "left": 179, - "top": 0, - "width": 57, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_shutdown_when_protection_tripped", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_shutdown_when_protection_tripped", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_shutdown_when_protection_tripped", - "left": 10, - "top": 115, - "width": 236, - "height": 50, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 236, - "height": 50, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 179, - "height": 50, - "text": "Switch off all outputs when protection tripped" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_output_protection_coupled", - "action": "", - "left": 179, - "top": 0, - "width": 57, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_output_protection_couple", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center" - }, - "action": "sys_settings_protections_toggle_output_protection_couple", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 236, - "height": 50, - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "left": 0, - "top": 0, - "width": 179, - "height": 50, - "text": "Switch off all outputs when protection tripped" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_output_protection_coupled", - "action": "", - "left": 179, - "top": 0, - "width": 57, - "height": 50, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 57, - "height": 50, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "text": "System protection settings", - "focusStyle": {} - } - ] - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "icon_and_text_S" - }, - "data": "", - "action": "edit_system_password", - "left": 273, - "top": 14, - "width": 180, - "height": 32, - "text": "\\u008c Change password", - "firstLineIndent": 0, - "hangingIndent": 24 - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_trigger", - "description": "General trigger settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 10, - "top": 10, - "width": 68, - "height": 32, - "text": "Source:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "trigger_source", - "action": "trigger_select_source", - "left": 89, - "top": 10, - "width": 113, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 10, - "top": 46, - "width": 68, - "height": 32, - "text": "Delay:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "trigger_delay", - "action": "trigger_edit_delay", - "left": 89, - "top": 46, - "width": 67, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 10, - "top": 82, - "width": 202, - "height": 32, - "text": "Initiate continuously:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_initiate_continuously", - "left": 212, - "top": 82, - "width": 71, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "", - "action": "trigger_toggle_initiate_continuously", - "left": 0, - "top": 0, - "width": 71, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "", - "action": "trigger_toggle_initiate_continuously", - "left": 0, - "top": 0, - "width": 71, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "General trigger settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_io", - "description": "Digital I/O pin settings\n", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 13, - "width": 71, - "height": 28, - "text": "Name:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 81, - "top": 13, - "width": 95, - "height": 28, - "text": "Din1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 178, - "top": 13, - "width": 95, - "height": 28, - "text": "Din2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 275, - "top": 13, - "width": 95, - "height": 28, - "text": "Dout1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "left": 372, - "top": 13, - "width": 95, - "height": 28, - "text": "Dout2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 41, - "width": 71, - "height": 28, - "text": "Pin #:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 71, - "width": 71, - "height": 28, - "text": "Function:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 101, - "width": 71, - "height": 28, - "text": "Polarity:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 131, - "width": 71, - "height": 28, - "text": "State:", - "focusStyle": {} - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "io_pins", - "left": 81, - "top": 41, - "width": 388, - "height": 120, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 97, - "height": 118, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "io_pin_number", - "left": 0, - "top": 0, - "width": 97, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "io_pin_function", - "action": "io_pin_select_function", - "left": 0, - "top": 30, - "width": 95, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "io_pin_polarity", - "left": 0, - "top": 60, - "width": 95, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "io_pin_toggle_polarity", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Neg", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "io_pin_toggle_polarity", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Pos", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "io_pin_state", - "left": 0, - "top": 90, - "width": 95, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Inactive", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Active", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "io_pin_toggle_state", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Inactive", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "io_pin_toggle_state", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Active", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 95, - "height": 28, - "text": "Unassigned", - "focusStyle": {} - } - ] - } - ] - }, - "listType": "horizontal" - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Digital I/O pin settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_date_time", - "description": "Date and time and NTP server settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 5, - "width": 214, - "height": 68, - "name": "date & time", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_installed", - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "Date:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 60, - "top": 0, - "width": 154, - "height": 32, - "name": "set date", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_year", - "action": "edit_field", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 54, - "top": 0, - "width": 18, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_month", - "action": "edit_field", - "left": 72, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 104, - "top": 0, - "width": 18, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_day", - "action": "edit_field", - "left": 122, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 60, - "height": 32, - "text": "Time:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 60, - "top": 36, - "width": 120, - "height": 32, - "name": "set time", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_hour", - "action": "edit_field", - "left": 0, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 32, - "top": 0, - "width": 12, - "height": 32, - "text": ":", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_minute", - "action": "edit_field", - "left": 44, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 76, - "top": 0, - "width": 12, - "height": 32, - "text": ":", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_second", - "action": "edit_field", - "left": 88, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ntp_enabled", - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "name": "NTP disabled", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "Date:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 60, - "top": 0, - "width": 154, - "height": 32, - "name": "set date", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_year", - "action": "edit_field", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 54, - "top": 0, - "width": 18, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_month", - "action": "edit_field", - "left": 72, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 104, - "top": 0, - "width": 18, - "height": 32, - "text": "-", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_day", - "action": "edit_field", - "left": 122, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 60, - "height": 32, - "text": "Time:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 60, - "top": 36, - "width": 120, - "height": 32, - "name": "set time", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_hour", - "action": "edit_field", - "left": 0, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 32, - "top": 0, - "width": 12, - "height": 32, - "text": ":", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_minute", - "action": "edit_field", - "left": 44, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "left": 76, - "top": 0, - "width": 12, - "height": 32, - "text": ":", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_second", - "action": "edit_field", - "left": 88, - "top": 0, - "width": 32, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 214, - "height": 68, - "name": "NTP enabled", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "Date:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "date_time_date", - "action": "", - "left": 60, - "top": 0, - "width": 151, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 36, - "width": 60, - "height": 32, - "text": "Time:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "date_time_time", - "action": "", - "left": 60, - "top": 36, - "width": 151, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 81, - "width": 192, - "height": 32, - "name": "time zone", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 103, - "height": 32, - "text": "Zone:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_time_zone", - "action": "edit_field", - "left": 62, - "top": 0, - "width": 130, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 119, - "width": 192, - "height": 32, - "name": "set DST", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "DST:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "date_time_dst", - "action": "date_time_select_dst_rule", - "left": 62, - "top": 0, - "width": 130, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 225, - "top": 16, - "width": 234, - "height": 136, - "name": "NTP", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_installed", - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ntp_enabled", - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "name": "NTP disabled", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ntp_toggle", - "left": 82, - "top": 104, - "width": 152, - "height": 32, - "text": "Enable NTP", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 234, - "height": 136, - "name": "NTP enabled", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 0, - "width": 233, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 2, - "height": 81 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 66, - "top": 12, - "width": 109, - "height": 28, - "text": "NTP server:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "ntp_server", - "action": "ntp_edit_server", - "left": 10, - "top": 42, - "width": 213, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 232, - "top": 2, - "width": 2, - "height": 77 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 1, - "top": 79, - "width": 233, - "height": 2 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ntp_toggle", - "left": 82, - "top": 104, - "width": 152, - "height": 32, - "text": "Disable NTP", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Set date and time", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_encoder", - "description": "Encoder settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 10, - "width": 188, - "height": 32, - "text": "Confirmation mode:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_encoder_confirmation_mode", - "left": 203, - "top": 10, - "width": 65, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_encoder_toggle_confirmation_mode", - "left": 0, - "top": 0, - "width": 65, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_encoder_toggle_confirmation_mode", - "left": 0, - "top": 0, - "width": 65, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 49, - "width": 298, - "height": 28, - "text": "Acceleration sensitivity moving", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 318, - "top": 48, - "width": 137, - "height": 32, - "name": "Moving up", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 32, - "text": "up:", - "focusStyle": {} - }, - { - "type": "UpDown", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "data": "sys_encoder_moving_up_speed", - "action": "", - "left": 52, - "top": 0, - "width": 85, - "height": 32, - "buttonsStyle": { - "inheritFrom": "edit_S", - "padding": 0 - }, - "downButtonText": "\\u008F", - "upButtonText": "\\u0090" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 318, - "top": 91, - "width": 137, - "height": 32, - "name": "Moving down", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 32, - "text": "down:", - "focusStyle": {} - }, - { - "type": "UpDown", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "data": "sys_encoder_moving_down_speed", - "action": "", - "left": 52, - "top": 0, - "width": 85, - "height": 32, - "buttonsStyle": { - "inheritFrom": "edit_S", - "padding": 0 - }, - "downButtonText": "\\u008F", - "upButtonText": "\\u0090" - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Encoder settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_serial", - "description": "Serial (via USB) settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "serial_enabled", - "left": 12, - "top": 12, - "width": 460, - "height": 148, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 148, - "name": "Disabled", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "serial_toggle", - "left": 305, - "top": 110, - "width": 150, - "height": 32, - "text": "Enable Serial", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 148, - "name": "Enabled", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "serial_toggle", - "left": 305, - "top": 110, - "width": 150, - "height": 32, - "text": "Disable Serial", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 93, - "height": 32, - "text": "Baud:", - "focusStyle": {} - }, - { - "type": "UpDown", - "style": { - "inheritFrom": "edit_value_M_centered" - }, - "data": "serial_baud", - "action": "", - "left": 93, - "top": 0, - "width": 123, - "height": 28, - "buttonsStyle": { - "inheritFrom": "edit_S", - "padding": 0 - }, - "downButtonText": "\\u008F", - "upButtonText": "\\u0090" - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 34, - "width": 93, - "height": 32, - "text": "Parity:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "serial_parity", - "action": "serial_select_parity", - "left": 93, - "top": 34, - "width": 93, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 68, - "width": 93, - "height": 32, - "text": "Bits:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "data": "", - "action": "", - "left": 93, - "top": 68, - "width": 40, - "height": 32, - "text": "8", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 102, - "width": 93, - "height": 32, - "text": "Stop bits:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_M" - }, - "data": "", - "action": "", - "left": 93, - "top": 102, - "width": 40, - "height": 32, - "text": "1", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Serial settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_ethernet", - "description": "Ethernet settings", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_status", - "left": 10, - "top": 0, - "width": 460, - "height": 26, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "ethernet_toggle", - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "text": "\\u0082 Ethernet errror", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_info", - "color": "status_ok", - "activeBackgroundColor": "status_ok", - "blink": true - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "text": "Connecting ...", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_info", - "color": "status_ok", - "activeBackgroundColor": "status_ok" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "text": "\\u0080 Initialization skipped at start", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_warning", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "ethernet_toggle", - "left": 0, - "top": 0, - "width": 460, - "height": 26, - "text": "\\u0081 Ethernet not connected", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 10, - "top": 26, - "width": 460, - "height": 142, - "name": "Content", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_enabled", - "left": 0, - "top": 0, - "width": 460, - "height": 140, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 140, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ethernet_toggle", - "left": 274, - "top": 106, - "width": 185, - "height": 32, - "text": "Enable Ethernet", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 460, - "height": 140, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ethernet_toggle", - "left": 274, - "top": 106, - "width": 185, - "height": 32, - "text": "Disable Ethernet", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 131, - "height": 32, - "name": "DHCP", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 71, - "height": 32, - "text": "DHCP:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_dhcp", - "left": 71, - "top": 0, - "width": 60, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "", - "action": "ethernet_toggle_dhcp", - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "", - "action": "ethernet_toggle_dhcp", - "left": 0, - "top": 0, - "width": 60, - "height": 32, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 36, - "width": 265, - "height": 32, - "name": "MAC", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 71, - "height": 32, - "text": "MAC:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_left" - }, - "data": "ethernet_mac", - "action": "ethernet_edit_mac_address", - "left": 71, - "top": 0, - "width": 194, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 108, - "width": 160, - "height": 32, - "name": "SCPI port", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "text": "SCPI port:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "ethernet_scpi_port", - "action": "ethernet_edit_scpi_port", - "left": 100, - "top": 0, - "width": 60, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 72, - "width": 460, - "height": 36, - "name": "IP address", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 110, - "height": 32, - "text": "IP address:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_M" - }, - "data": "ethernet_ip_address", - "left": 110, - "top": 0, - "width": 164, - "height": 32, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ethernet_dhcp", - "left": 274, - "top": 0, - "width": 185, - "height": 36, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 185, - "height": 36, - "name": "Static address", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "ethernet_edit_static_address", - "left": 0, - "top": 0, - "width": 185, - "height": 32, - "text": "Edit static address", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 185, - "height": 36, - "name": "Dynamic address", - "widgets": [] - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Ethernet settings", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_ethernet_static", - "description": "Ethernet static address settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 12, - "width": 140, - "height": 32, - "text": "IP address:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "ethernet_ip_address", - "action": "ethernet_edit_ip_address", - "left": 165, - "top": 12, - "width": 170, - "height": 32, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 48, - "width": 140, - "height": 32, - "text": "DNS:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "ethernet_dns", - "action": "ethernet_edit_dns", - "left": 165, - "top": 48, - "width": 170, - "height": 32, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 84, - "width": 140, - "height": 32, - "text": "Gateway:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "ethernet_gateway", - "action": "ethernet_edit_gateway", - "left": 165, - "top": 84, - "width": 170, - "height": 32, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 15, - "top": 120, - "width": 155, - "height": 32, - "text": "Subnet mask:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "ethernet_subnet_mask", - "action": "ethernet_edit_subnet_mask", - "left": 165, - "top": 120, - "width": 170, - "height": 32, - "focusStyle": {} - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Ethernet static address", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_cal", - "description": "Calibration general information, active calibration settings (CAL:STAT), change password (CAL:PASS:NEW) and enter wizard.", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 7, - "width": 162, - "height": 30, - "text": "Calibration password:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "sys_settings_cal_edit_password", - "left": 184, - "top": 7, - "width": 80, - "height": 30, - "text": "Change", - "focusStyle": {} - }, - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 10, - "top": 48, - "width": 460, - "height": 120, - "itemWidget": { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_status", - "left": 0, - "top": 0, - "width": 230, - "height": 40, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 230, - "height": 40 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_status", - "action": "", - "left": 0, - "top": 0, - "width": 230, - "height": 40, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 230, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 42, - "height": 30, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_sys_settings_cal_ch", - "left": 42, - "top": 0, - "width": 85, - "height": 30, - "text": "Calibrate", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 230, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 42, - "height": 30, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_state", - "action": "", - "left": 42, - "top": 0, - "width": 64, - "height": 30, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "sys_settings_cal_toggle_enable", - "left": 0, - "top": 0, - "width": 64, - "height": 30, - "text": "Enable", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "sys_settings_cal_toggle_enable", - "left": 0, - "top": 0, - "width": 64, - "height": 30, - "text": "Disable", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_sys_settings_cal_ch", - "left": 116, - "top": 0, - "width": 94, - "height": 30, - "text": "Recalibrate", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 230, - "height": 40 - } - ] - } - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "text": "Callibration settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_cal_ch", - "description": "Channel callibration settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 5, - "width": 480, - "height": 163, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 5, - "top": 0, - "width": 120, - "height": 26, - "text": "Last calibrated:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_calibration_date", - "left": 125, - "top": 0, - "width": 134, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 5, - "top": 26, - "width": 66, - "height": 26, - "text": "Remark:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_calibration_remark", - "left": 71, - "top": 26, - "width": 400, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default_inverse" - }, - "data": "channel_calibration_status", - "left": 5, - "top": 52, - "width": 304, - "height": 111, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 0, - "width": 304, - "height": 111 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 304, - "height": 111, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 189, - "height": 30, - "text": "Calibration parameters:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_min", - "left": 16, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_mid", - "left": 106, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_u_max", - "left": 196, - "top": 30, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_min", - "left": 16, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_mid", - "left": 106, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i0_max", - "left": 196, - "top": 56, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_min", - "left": 16, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_mid", - "left": 106, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "cal_ch_i1_max", - "left": 196, - "top": 82, - "width": 90, - "height": 26, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "sys_settings_cal_ch_wiz_start", - "left": 322, - "top": 120, - "width": 150, - "height": 38, - "text": "Start calibration", - "focusStyle": {} - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 41, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 77, - "top": 0, - "width": 403, - "height": 32, - "text": "Callibration settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_cal_ch_wiz_step", - "description": "Channel calibration wizard steps", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_step_is_set_remark_step", - "left": 15, - "top": 25, - "width": 450, - "height": 76, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 450, - "height": 76, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_step_num", - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Voltage MIN point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Voltage MID point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Voltage MAX point", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_has_support_for_current_dual_range", - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current MIN point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-5A] MIN point", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_has_support_for_current_dual_range", - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current MID point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-5A] MID point", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_has_support_for_current_dual_range", - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current MAX point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-5A] MAX point", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-50mA] MIN point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-50mA] MID point", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left" - }, - "left": 0, - "top": 0, - "width": 270, - "height": 32, - "text": "Current [0-50mA] MAX point", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "data": "channel_calibration_step_level_value", - "action": "sys_settings_cal_ch_wiz_step_set_level_value", - "left": 270, - "top": 0, - "width": 110, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 47, - "width": 450, - "height": 29, - "text": "Enter output value measured with external instrument" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 450, - "height": 76, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 304, - "height": 28, - "text": "Calibration remark (max. 32 char.)", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default_inverse" - }, - "left": 0, - "top": 28, - "width": 450, - "height": 48 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_step_status", - "left": 15, - "top": 121, - "width": 450, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value" - }, - "data": "", - "left": 0, - "top": 0, - "width": 450, - "height": 40, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value" - }, - "data": "channel_calibration_step_value", - "left": 0, - "top": 0, - "width": 450, - "height": 40, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_calibration_step_status", - "left": 15, - "top": 174, - "width": 118, - "height": 40, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L", - "alignHorizontal": "center" - }, - "data": "", - "action": "sys_settings_cal_ch_wiz_step_set", - "left": 0, - "top": 0, - "width": 118, - "height": 40, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L", - "alignHorizontal": "center" - }, - "data": "", - "action": "sys_settings_cal_ch_wiz_step_set", - "left": 0, - "top": 0, - "width": 118, - "height": 40, - "text": "Change", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "channel1" - }, - "left": 1, - "top": 240, - "width": 479, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "sys_settings_cal_ch_wiz_stop_and_show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 42, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 78, - "top": 0, - "width": 305, - "height": 32, - "text": "Calibration", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "sys_settings_cal_ch_wiz_step_previous", - "left": 383, - "top": 0, - "width": 48, - "height": 32, - "text": "(", - "enabled": "channel_calibration_step_prev_enabled", - "disabledStyle": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "#c0c0c0", - "activeBackgroundColor": "#c0c0c0" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "sys_settings_cal_ch_wiz_step_next", - "left": 431, - "top": 0, - "width": 48, - "height": 32, - "text": ")", - "enabled": "channel_calibration_step_next_enabled", - "disabledStyle": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "#c0c0c0", - "activeBackgroundColor": "#c0c0c0" - } - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "sys_settings_cal_ch_wiz_finish", - "description": "Channel calibration wizard final step", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_M" - }, - "left": 0, - "top": 77, - "width": 480, - "height": 39, - "text": "Save calibration parameters?", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_M" - }, - "action": "sys_settings_cal_ch_wiz_save", - "left": 115, - "top": 141, - "width": 120, - "height": 40, - "text": "~ Save", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_M" - }, - "action": "sys_settings_cal_ch_wiz_stop_and_show_previous_page", - "left": 245, - "top": 141, - "width": 120, - "height": 40, - "text": " Discard", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "channel1" - }, - "left": 1, - "top": 240, - "width": 479, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "sys_settings_cal_ch_wiz_stop_and_show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "data": "channel_short_label", - "left": 42, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left" - }, - "left": 78, - "top": 0, - "width": 305, - "height": 32, - "text": "Calibration", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "sys_settings_cal_ch_wiz_step_previous", - "left": 383, - "top": 0, - "width": 48, - "height": 32, - "text": "(", - "enabled": "channel_calibration_step_prev_enabled", - "disabledStyle": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "#c0c0c0", - "activeBackgroundColor": "#c0c0c0" - } - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "sys_settings_screen_calibration", - "description": "Touchscreen calibration", - "style": "default", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left" - }, - "left": 88, - "top": 25, - "width": 304, - "height": 141, - "text": "Use a stylus or something similar to touch as close to the center of the highlighted crosshair as possible. Keep holding as still as possible until the highlight is removed. Repeat for all crosshairs in sequence." - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 88, - "top": 166, - "width": 35, - "height": 26, - "text": "\\u0081", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 123, - "top": 166, - "width": 269, - "height": 51, - "text": "Do not use your finger as a stylus or the result will be imprecise." - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button", - "font": "Heydings14" - }, - "action": "show_previous_page", - "left": 0, - "top": 240, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background" - }, - "left": 41, - "top": 240, - "width": 375, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left", - "alignHorizontal": "center" - }, - "action": "enter_touch_calibration", - "left": 416, - "top": 240, - "width": 64, - "height": 32, - "text": "Start", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_display", - "description": "Display settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 232, - "top": 14, - "width": 140, - "height": 28, - "text": "Brightness:", - "focusStyle": {} - }, - { - "type": "UpDown", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "sys_display_brightness", - "action": "", - "left": 372, - "top": 14, - "width": 82, - "height": 28, - "buttonsStyle": { - "inheritFrom": "edit_S", - "padding": 0 - }, - "downButtonText": "\\u008F", - "upButtonText": "\\u0090" - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 232, - "top": 55, - "width": 140, - "height": 28, - "text": "Lightness:", - "focusStyle": {} - }, - { - "type": "UpDown", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "data": "sys_display_background_luminosity_step", - "action": "", - "left": 372, - "top": 55, - "width": 82, - "height": 28, - "buttonsStyle": { - "inheritFrom": "edit_S", - "padding": 0 - }, - "downButtonText": "\\u008F", - "upButtonText": "\\u0090" - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 232, - "top": 84, - "width": 84, - "height": 28, - "text": "Backgnd", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 316, - "top": 84, - "width": 84, - "height": 28, - "text": "Status", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 400, - "top": 84, - "width": 68, - "height": 28, - "text": "Pop up", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "left": 232, - "top": 112, - "width": 58, - "height": 34, - "text": "@", - "ignoreLuminocity": true, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "left": 316, - "top": 112, - "width": 29, - "height": 34, - "text": "@", - "ignoreLuminocity": false, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "left": 345, - "top": 112, - "width": 29, - "height": 34, - "text": "@", - "ignoreLuminocity": true, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "error_alert_button" - }, - "left": 400, - "top": 112, - "width": 29, - "height": 34, - "text": "@", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "error_alert_button" - }, - "left": 429, - "top": 112, - "width": 29, - "height": 34, - "text": "@", - "ignoreLuminocity": true, - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 12, - "top": 14, - "width": 58, - "height": 28, - "text": "Theme:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "selected_theme", - "action": "select_theme", - "left": 71, - "top": 14, - "width": 141, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 12, - "top": 44, - "width": 123, - "height": 28, - "text": "Anim. duration:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "animations_duration", - "action": "edit_animations_duration", - "left": 135, - "top": 44, - "width": 77, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "show_sys_settings_screen_calibration", - "left": 12, - "top": 92, - "width": 200, - "height": 28, - "text": "Touchscreen calibration", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "turn_display_off", - "left": 12, - "top": 128, - "width": 200, - "height": 28, - "text": "Turn display off", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 225, - "top": 45, - "width": 242, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 225, - "top": 154, - "width": 242, - "height": 2 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 225, - "top": 47, - "width": 2, - "height": 109 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 465, - "top": 47, - "width": 2, - "height": 109 - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "text": "Display settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_sound", - "description": "Sound settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 168, - "name": "Content", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left", - "alignHorizontal": "left" - }, - "left": 8, - "top": 8, - "width": 122, - "height": 32, - "text": "Sound:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_sound_is_enabled", - "left": 130, - "top": 8, - "width": 74, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_sound_toggle", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_sound_toggle", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left", - "alignHorizontal": "left" - }, - "left": 8, - "top": 46, - "width": 122, - "height": 32, - "text": "Click sound:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_sound_is_click_enabled", - "left": 130, - "top": 46, - "width": 74, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_sound_toggle_click", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "OFF", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "action": "sys_settings_sound_toggle_click", - "left": 0, - "top": 0, - "width": 74, - "height": 32, - "text": "ON", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 480, - "height": 72, - "layout": "minimized_channels" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "text": "Sound control", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "272" - }, - { - "name": "sys_settings_tracking", - "description": "Channels tracking mode of operation settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 464, - "height": 142, - "name": "Tracking", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 464, - "height": 70, - "text": "Tracking enables output programming and protections of multiple channels simulaneously. Protection tripped on one channel will disable all channels grouped for tracking." - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 10, - "top": 86, - "width": 444, - "height": 35, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 35, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_status", - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 26, - "top": 0, - "width": 34, - "height": 30, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_allowed", - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 26, - "top": 0, - "width": 34, - "height": 30, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "toggle_channel_tracking", - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_tracking_is_enabled", - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "text": "\\u009F", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 26, - "top": 0, - "width": 29, - "height": 30, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 60, - "height": 30, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 30, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 26, - "top": 0, - "width": 34, - "height": 30, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 0, - "top": 30, - "width": 47, - "height": 5, - "invertColors": true - } - ] - }, - "listType": "horizontal", - "gap": 0 - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 154, - "width": 464, - "height": 2 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 163, - "width": 464, - "height": 71, - "name": "Coupling", - "widgets": [ - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 240, - "height": 71, - "text": "Coupling allows various power output combinations without need for additional wiring." - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_M_left", - "alignHorizontal": "left" - }, - "left": 260, - "top": 35, - "width": 74, - "height": 36, - "text": "Status:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "coupling_type", - "action": "show_sys_settings_coupling", - "left": 334, - "top": 35, - "width": 130, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "left": 0, - "top": 0, - "width": 130, - "height": 36, - "text": "Uncoupled", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "left": 0, - "top": 0, - "width": 130, - "height": 36, - "text": "Parallel", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "left": 0, - "top": 0, - "width": 130, - "height": 36, - "text": "Series", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "left": 0, - "top": 0, - "width": 130, - "height": 36, - "text": "Common Gnd", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_M_center" - }, - "left": 0, - "top": 0, - "width": 130, - "height": 36, - "text": "Split rails", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Channels tracking and coupling", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "sys_settings_coupling", - "description": "Channels coupling mode of operation settings", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 5, - "top": 5, - "width": 189, - "height": 32, - "text": "Power outputs coupling:", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "set_coupling_uncoupled", - "left": 5, - "top": 40, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_type_uncoupled", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "center", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008e", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left" - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Uncoupled", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_series_allowed", - "left": 5, - "top": 80, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "backgroundColor": "Background", - "activeColor": "Background", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 " - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Series", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "data": "", - "action": "set_coupling_series", - "left": 0, - "top": 0, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_type_series", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008e", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left" - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Series", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_parallel_allowed", - "left": 5, - "top": 120, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "center", - "backgroundColor": "Background", - "activeColor": "Background", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 " - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Parallel", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "set_coupling_parallel", - "left": 0, - "top": 0, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_type_parallel", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "center", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008e", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 " - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Parallel", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "set_coupling_split_rails", - "left": 5, - "top": 160, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_type_split_rails", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008e", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 " - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Split rails", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "set_coupling_common_gnd", - "left": 5, - "top": 200, - "width": 189, - "height": 36, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_coupling_type_common_gnd", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008d", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "padding": "0 0 0 6" - }, - "action": "", - "left": 0, - "top": 0, - "width": 38, - "height": 36, - "text": "\\u008e", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "option_toggle_L_center", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": "0 0 0 " - }, - "action": "", - "left": 38, - "top": 0, - "width": 150, - "height": 36, - "text": "Common GND", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "coupling_type", - "left": 200, - "top": 0, - "width": 278, - "height": 240, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "bitmap": "coupled_parallel" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "bitmap": "coupled_series" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "bitmap": "coupled_cgnd" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "name": "Split rails", - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 278, - "height": 240, - "bitmap": "coupled_split_rails" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "toggle_enable_tracking_mode_in_coupling", - "left": 17, - "top": 201, - "width": 194, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_coupling_enable_tracking_mode", - "left": 0, - "top": 0, - "width": 26, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 26, - "height": 32, - "text": "\\u009F", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "data": "", - "left": 26, - "top": 0, - "width": 168, - "height": 32, - "text": "Enable tracking mode", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 41, - "top": 0, - "width": 357, - "height": 32, - "text": "Set channels coupling mode", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "set_page_dirty", - "left": 398, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "invertColors": true - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 82, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "set", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "_", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "discard", - "left": 41, - "top": 0, - "width": 41, - "height": 32, - "text": "X", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "user_profiles", - "description": "User profiles information and settings", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 8, - "top": 8, - "width": 181, - "height": 28, - "text": "Autorecall on power-on:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profiles_auto_recall_status", - "left": 192, - "top": 8, - "width": 40, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profiles_toggle_auto_recall", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profiles_toggle_auto_recall", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "Yes", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profiles_auto_recall_status", - "left": 244, - "top": 8, - "width": 171, - "height": 28, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 171, - "height": 28, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 171, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 133, - "height": 28, - "text": "Power-on profile:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "profiles_auto_recall_location", - "left": 136, - "top": 0, - "width": 35, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Grid", - "style": { - "inheritFrom": "default" - }, - "data": "profiles_list", - "left": 8, - "top": 54, - "width": 472, - "height": 180, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "Background", - "activeBackgroundColor": "Background" - }, - "action": "show_user_profile_settings", - "left": 0, - "top": 0, - "width": 236, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "data": "profile_label", - "action": "", - "left": 0, - "top": 0, - "width": 36, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_left" - }, - "data": "profile_remark", - "left": 36, - "top": 0, - "width": 192, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - }, - "gridFlow": "column" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 0, - "width": 438, - "height": 32, - "text": "User profiles", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "user_profile_settings", - "description": "User profile information and settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 239, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profile_status", - "left": 8, - "top": 8, - "width": 384, - "height": 230, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 384, - "height": 230, - "text": "--Empty--", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 384, - "height": 230, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 195, - "height": 28, - "text": "Use as Power-up profile:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profiles_auto_recall_status", - "left": 195, - "top": 0, - "width": 40, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "No", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profile_is_auto_recall_location", - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profile_toggle_is_auto_recall_location", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 34, - "width": 67, - "height": 24, - "text": "Remark:", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "edit_value_active_S_left", - "alignVertical": "top" - }, - "data": "profile_remark", - "action": "profile_edit_remark", - "left": 67, - "top": 34, - "width": 315, - "height": 46, - "text": "" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 86, - "width": 292, - "height": 132, - "layout": "profile_basic_info" - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profile_save", - "left": 395, - "top": 114, - "width": 80, - "height": 36, - "text": "Save", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profile_recall", - "left": 395, - "top": 156, - "width": 80, - "height": 36, - "text": "Recall", - "enabled": "profile_status", - "disabledStyle": { - "inheritFrom": "bottom_button_textual_S_disabled", - "font": "Oswald14", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profile_delete", - "left": 395, - "top": 198, - "width": 80, - "height": 36, - "text": "Delete", - "enabled": "profile_status", - "disabledStyle": { - "inheritFrom": "bottom_button_textual_S_disabled", - "font": "Oswald14", - "padding": 0 - } - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button", - "font": "Heydings14" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 0, - "width": 94, - "height": 32, - "text": "User profile", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "data": "profile_label", - "left": 135, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 171, - "top": 0, - "width": 309, - "height": 32, - "text": "settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "user_profile_0_settings", - "description": "Default profile information and settings", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 304, - "height": 160, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 195, - "height": 28, - "text": "Use as Power-up profile:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profiles_auto_recall_status", - "left": 195, - "top": 0, - "width": 40, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "No", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profile_is_auto_recall_location", - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_active_S_center" - }, - "action": "profile_toggle_is_auto_recall_location", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "No", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 28, - "text": "Yes", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 28, - "width": 304, - "height": 132, - "layout": "profile_basic_info" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button", - "font": "Heydings14" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 0, - "width": 94, - "height": 32, - "text": "User profile", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "data": "profile_label", - "left": 135, - "top": 0, - "width": 36, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 171, - "top": 0, - "width": 309, - "height": 32, - "text": "settings", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "profile_basic_info", - "description": "", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 86, - "height": 22, - "text": "Basic info:", - "focusStyle": {} - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 86, - "top": 0, - "width": 206, - "height": 132, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 206, - "height": 22, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_short_label", - "left": 0, - "top": 0, - "width": 36, - "height": 22, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "profile_channel_output_state", - "left": 36, - "top": 0, - "width": 30, - "height": 22, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_off_label", - "left": 0, - "top": 0, - "width": 30, - "height": 22, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "", - "left": 0, - "top": 0, - "width": 30, - "height": 22, - "text": "On", - "focusStyle": {} - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "profile_channel_u_set", - "left": 66, - "top": 0, - "width": 68, - "height": 22, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "profile_channel_i_set", - "left": 138, - "top": 0, - "width": 68, - "height": 22, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - "listType": "vertical" - } - ], - "left": 0, - "top": 0, - "width": 292, - "height": 132 - }, - { - "name": "sys_info", - "description": "System information", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 8, - "top": 8, - "width": 472, - "height": 232, - "name": "", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 236, - "height": 28, - "name": "Total on time", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Total On time:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_on_time_total", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 28, - "width": 236, - "height": 28, - "name": "Last on time", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Last On time:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_on_time_last", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 56, - "width": 236, - "height": 28, - "name": "Temp. AUX", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Temp. AUX:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_temp_aux_status", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Invalid", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_temp_aux", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 84, - "width": 236, - "height": 28, - "name": "Fan speed", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Fan speed:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_fan_status", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Fault", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_info_fan_speed", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Unsupported", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Testing...", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_disabled_S_left" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 168, - "width": 236, - "height": 28, - "name": "Firmware", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Firmware:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_info_firmware_ver", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 140, - "width": 236, - "height": 28, - "name": "Serial No", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Serial No.:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_info_serial_no", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 112, - "width": 236, - "height": 28, - "name": "Battery", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "Battery:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_battery_status", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "event_error" - }, - "data": "battery", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "battery", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Not installed", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 236, - "top": 0, - "width": 236, - "height": 28, - "name": "CPU module", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "CPU module:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_info_cpu", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 236, - "top": 28, - "width": 114, - "height": 28, - "text": "SD card:", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "sys_info_sdcard_status", - "left": 350, - "top": 28, - "width": 122, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Unsupported", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Present", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Not present", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "No FAT", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "event_error" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Failed", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "event_warning" - }, - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Busy", - "focusStyle": {} - } - ] - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 236, - "top": 56, - "width": 236, - "height": 176, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 236, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "data": "channel_board_info_label", - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_status", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "value_S" - }, - "data": "", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "text": "Not installed", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "channel_board_info_revision", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "event_error" - }, - "data": "channel_board_info_revision", - "left": 0, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - "listType": "vertical" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 196, - "width": 236, - "height": 28, - "name": "SCPI version", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 114, - "height": 28, - "text": "SCPI Version:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "value_S" - }, - "data": "sys_info_scpi_ver", - "left": 114, - "top": 0, - "width": 122, - "height": 28, - "focusStyle": { - "inheritFrom": "default", - "padding": 0 - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 0, - "width": 438, - "height": 32, - "text": "System information", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "stand_by_menu", - "description": "Standby menu", - "style": "select_enum_item_popup_container", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "stand_by", - "left": 10, - "top": 10, - "width": 188, - "height": 32, - "text": "Standby", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "reset", - "left": 10, - "top": 46, - "width": 188, - "height": 32, - "text": "Soft reset (*RST)", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "hard_reset", - "left": 10, - "top": 82, - "width": 188, - "height": 32, - "text": "Hard reset", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "turn_display_off", - "left": 10, - "top": 124, - "width": 188, - "height": 32, - "text": "Display off", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "left": 10, - "top": 118, - "width": 188, - "height": 2 - } - ], - "closePageIfTouchedOutside": true, - "left": 134, - "top": 50, - "width": 212, - "height": 170 - }, - { - "name": "entering_standby", - "description": "Information about entering standby mode", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 90, - "width": 480, - "height": 40, - "text": "Entering standby...", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 120, - "top": 166, - "width": 240, - "height": 50, - "text": "Press and hold anywhere on the screen to wake up." - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "standby", - "description": "Standby mode page that is displayed when power is applied and last known PSU state was standby.", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 90, - "width": 480, - "height": 40, - "text": "Standby mode", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 120, - "top": 166, - "width": 240, - "height": 50, - "text": "Press and hold anywhere on the screen to wake up." - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "display_off", - "description": "Information that display is turning off", - "style": "display_off", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "display_off" - }, - "left": 0, - "top": 57, - "width": 480, - "height": 40, - "text": "Display is going OFF", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "display_off_S" - }, - "left": 120, - "top": 150, - "width": 240, - "height": 70, - "text": "Press and hold anywhere on the screen to turn ON." - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "minimized_channels", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_micro1_view", - "left": 0, - "top": 0, - "width": 160, - "height": 72, - "context": "slot1_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_micro2_view", - "left": 160, - "top": 0, - "width": 160, - "height": 72, - "context": "slot2_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_micro3_view", - "left": 320, - "top": 0, - "width": 160, - "height": 72, - "context": "slot3_channel_index" - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": "72" - }, - { - "name": "slot_def_vert", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default1_view", - "left": 0, - "top": 0, - "width": 160, - "height": 240, - "layout": "", - "context": "slot1_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default2_view", - "left": 160, - "top": 0, - "width": 160, - "height": 240, - "layout": "", - "context": "slot2_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default3_view", - "left": 320, - "top": 0, - "width": 160, - "height": 240, - "layout": "", - "context": "slot3_channel_index" - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 240 - }, - { - "name": "slot_def_vert_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 1, - "top": 0, - "width": 105, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 106, - "top": 0, - "width": 28, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 28, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "toggle_channels_max_view", - "left": 134, - "top": 0, - "width": 25, - "height": 32, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 32 - }, - { - "name": "slot_def_1ch_num_on", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "layout": "slot_def_vert_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 34, - "width": 160, - "height": 136, - "name": "mon section", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 67, - "name": "Voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_48_right" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 1, - "top": 0, - "width": 100, - "height": 67, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left", - "padding": "0 4" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 101, - "top": 0, - "width": 58, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 101, - "top": 34, - "width": 58, - "height": 33, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 69, - "width": 160, - "height": 67, - "name": "Current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_48_right" - }, - "data": "channel_i_mon_snapshot", - "action": "", - "left": 1, - "top": 0, - "width": 100, - "height": 67, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left", - "padding": "0 4" - }, - "data": "channel_i_mon_snapshot", - "action": "", - "left": 101, - "top": 0, - "width": 58, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_i_mon_snapshot", - "action": "", - "left": 101, - "top": 34, - "width": 58, - "height": 33, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "data": "channel_p_mon_snapshot", - "left": 1, - "top": 206, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 1, - "top": 172, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 172, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 206, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_1ch_vbar_on", - "description": "", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 32, - "layout": "slot_def_vert_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 1, - "top": 34, - "width": 158, - "height": 136, - "name": "mon section", - "widgets": [ - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_U_default" - }, - "data": "channel_u_mon", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 136, - "orientation": "bottom-top", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - }, - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_I_default" - }, - "data": "channel_i_mon", - "action": "", - "left": 80, - "top": 0, - "width": 78, - "height": 136, - "orientation": "bottom-top", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_i_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_i_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "data": "channel_p_mon_snapshot", - "left": 1, - "top": 206, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 1, - "top": 172, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 172, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 206, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_1ch_vert_off", - "description": "", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 32, - "layout": "slot_def_vert_title" - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_20", - "font": "Oswald38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 1, - "top": 34, - "width": 158, - "height": 136, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 1, - "top": 172, - "width": 158, - "height": 66, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 66, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "alignHorizontal": "center" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 80, - "top": 0, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 80, - "top": 34, - "width": 78, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_24" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 0, - "width": 158, - "height": 66, - "text": "\\u00A4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_1ch_vert_coupled_series", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_M", - "padding": "4" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "text": "Coupled in series with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_1ch_vert_coupled_parallel", - "style": "default", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_M", - "padding": "4" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "text": "Coupled in parallel with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_2ch_vert", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_def_2ch_view", - "left": 0, - "top": 0, - "width": 160, - "height": 120, - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_def_2ch_view", - "left": 0, - "top": 120, - "width": 160, - "height": 120, - "context": "slot_2ch_ch2_index" - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_2ch_vert_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 160, - "height": 32, - "layout": "slot_def_vert_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 1, - "top": 34, - "width": 78, - "height": 84, - "name": "mon section", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "opacity": 255 - }, - "data": "channel_i_mon_snapshot", - "action": "", - "left": 0, - "top": 29, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "opacity": 255 - }, - "data": "channel_p_mon_snapshot", - "action": "", - "left": 0, - "top": 58, - "width": 78, - "height": 26, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 81, - "top": 34, - "width": 78, - "height": 27, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_left_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 63, - "width": 78, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 81, - "top": 92, - "width": 78, - "height": 26, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 26, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 26, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 120 - }, - { - "name": "slot_def_2ch_vert_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 32, - "layout": "slot_def_vert_title" - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_20" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 1, - "top": 34, - "width": 78, - "height": 84, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 81, - "top": 34, - "width": 78, - "height": 84, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 84, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 29, - "width": 78, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 58, - "width": 78, - "height": 26, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 26, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 26, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 84, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 1, - "width": 78, - "height": 83, - "text": "\\u00A4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 120 - }, - { - "name": "slot_def_vert_error", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 1, - "top": 0, - "width": 158, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald24", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "text": "Error", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_vert_not_installed", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 1, - "top": 0, - "width": 158, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "left": 0, - "top": 32, - "width": 160, - "height": 208, - "text": "Not installed", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 160, - "height": 240 - }, - { - "name": "slot_def_horz", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default1_view", - "left": 0, - "top": 0, - "width": 480, - "height": 80, - "layout": "", - "context": "slot1_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default2_view", - "left": 0, - "top": 80, - "width": 480, - "height": 80, - "layout": "", - "context": "slot2_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_default3_view", - "left": 0, - "top": 160, - "width": 480, - "height": 80, - "layout": "", - "context": "slot3_channel_index" - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 240 - }, - { - "name": "slot_def_horz_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3 5" - }, - "data": "channel_short_title", - "action": "", - "left": 0, - "top": 1, - "width": 28, - "height": 39, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "top" - }, - "action": "toggle_channels_max_view", - "left": 28, - "top": 1, - "width": 24, - "height": 39, - "text": "e", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_status", - "left": 0, - "top": 40, - "width": 52, - "height": 39, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 52, - "height": 39, - "text": "9", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 52, - "height": 80 - }, - { - "name": "slot_def_1ch_hbar_on", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "layout": "slot_def_horz_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 54, - "top": 1, - "width": 346, - "height": 78, - "name": "mon section", - "widgets": [ - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_U_default" - }, - "data": "channel_u_mon", - "action": "", - "left": 0, - "top": 0, - "width": 346, - "height": 38, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - }, - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_I_default" - }, - "data": "channel_i_mon", - "action": "", - "left": 0, - "top": 40, - "width": 346, - "height": 38, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_i_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_i_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 402, - "top": 1, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 402, - "top": 41, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_1ch_yt_on", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "layout": "slot_def_horz_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 54, - "top": 1, - "width": 346, - "height": 78, - "name": "mon section", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "yt_graph" - }, - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_U_default" - }, - "data": "channel_display_value1", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_I_default" - }, - "data": "channel_display_value2", - "left": 0, - "top": 40, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "YTGraph", - "style": { - "inheritFrom": "yt_graph" - }, - "data": "channel_history_values", - "action": "channel_toggle_output", - "left": 76, - "top": 0, - "width": 270, - "height": 78, - "y1Style": { - "inheritFrom": "yt_graph_U_default" - }, - "y2Data": "channel_display_value2", - "y2Style": { - "inheritFrom": "yt_graph_I_default" - } - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 402, - "top": 1, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 402, - "top": 41, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_1ch_horz_off", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "layout": "slot_def_horz_title" - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 54, - "top": 1, - "width": 346, - "height": 78, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 402, - "top": 1, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 40, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_1ch_horz_coupled_series", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3 5" - }, - "data": "channel_short_title", - "action": "", - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_M" - }, - "left": 52, - "top": 0, - "width": 428, - "height": 80, - "text": "Coupled in series with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_1ch_horz_coupled_parallel", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3 5" - }, - "data": "channel_short_title", - "action": "", - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_M" - }, - "left": 52, - "top": 0, - "width": 428, - "height": 80, - "text": "Coupled in parallel with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_2ch_horz", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_def_2ch_view", - "left": 0, - "top": 0, - "width": 240, - "height": 80, - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_def_2ch_view", - "left": 240, - "top": 0, - "width": 240, - "height": 80, - "context": "slot_2ch_ch2_index" - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 80 - }, - { - "name": "slot_def_2ch_horz_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "layout": "slot_def_horz_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 54, - "top": 1, - "width": 106, - "height": 78, - "name": "mon section", - "widgets": [ - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_U_default", - "font": "Oswald14", - "color": "bar_graph_voltage", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_voltage" - }, - "data": "channel_display_value1", - "left": 0, - "top": 0, - "width": 106, - "height": 38, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - }, - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_I_default", - "font": "Oswald14", - "color": "bar_graph_current", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_current" - }, - "data": "channel_display_value2", - "left": 0, - "top": 40, - "width": 106, - "height": 38, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 162, - "top": 1, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 162, - "top": 41, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 240, - "height": 80 - }, - { - "name": "slot_def_2ch_horz_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 80, - "layout": "slot_def_horz_title" - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_20" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 54, - "top": 1, - "width": 106, - "height": 78, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 162, - "top": 1, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 40, - "width": 76, - "height": 38, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 76, - "height": 38, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 0, - "width": 76, - "height": 78, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 240, - "height": 80 - }, - { - "name": "slot_def_horz_error", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 78 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald24", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 52, - "top": 0, - "width": 428, - "height": 78, - "text": "Error", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 78 - }, - { - "name": "slot_def_horz_not_installed", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 52, - "height": 78 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "left": 52, - "top": 0, - "width": 428, - "height": 78, - "text": "Not installed", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 78 - }, - { - "name": "slot_max_1ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_long_title", - "left": 0, - "top": 0, - "width": 330, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "inst_selected" - }, - "data": "channel_protection_status", - "left": 330, - "top": 0, - "width": 50, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "D", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 50, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings_info", - "left": 380, - "top": 0, - "width": 50, - "height": 32, - "text": "?", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "toggle_channels_max_view", - "left": 430, - "top": 0, - "width": 50, - "height": 32, - "text": "E", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 32 - }, - { - "name": "slot_max_1ch_num_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 2, - "width": 430, - "height": 64, - "name": "mon section", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "", - "left": 0, - "top": 0, - "width": 142, - "height": 64, - "name": "Voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_38_right", - "font": "Oswald38" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 0, - "top": 0, - "width": 89, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_u_mon_snapshot", - "left": 89, - "top": 0, - "width": 53, - "height": 30, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left", - "alignVertical": "bottom", - "padding": "0 0 2 0" - }, - "data": "channel_u_mon_snapshot", - "left": 89, - "top": 30, - "width": 53, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 64, - "name": "Current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_38_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 0, - "width": 89, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_i_mon_snapshot", - "left": 89, - "top": 0, - "width": 53, - "height": 30, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left", - "alignVertical": "bottom", - "padding": "0 0 2 0" - }, - "data": "channel_i_mon_snapshot", - "left": 89, - "top": 30, - "width": 53, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 288, - "top": 0, - "width": 142, - "height": 64, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_38_right" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 89, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_p_mon_snapshot", - "left": 89, - "top": 0, - "width": 53, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left", - "alignVertical": "bottom", - "padding": "0 0 2 0", - "margin": "0" - }, - "data": "channel_p_mon_snapshot", - "left": 89, - "top": 32, - "width": 53, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 68, - "width": 430, - "height": 66, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 142, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 288, - "top": 0, - "width": 142, - "height": 66, - "name": "Set power", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Trip", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 432, - "top": 0, - "width": 48, - "height": 136, - "name": "Temperature", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "color": "protection_text", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "protection_text" - }, - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "otp_ch", - "action": "show_ch_settings_prot_otp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_1ch_num_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 2, - "top": 2, - "width": 426, - "height": 64, - "text": "", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 68, - "width": 430, - "height": 66, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 142, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 288, - "top": 0, - "width": 142, - "height": 66, - "name": "Set power", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Trip", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 432, - "top": 0, - "width": 48, - "height": 136, - "name": "Temperature", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "color": "protection_text", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "protection_text" - }, - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "otp_ch", - "action": "show_ch_settings_prot_otp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "", - "left": 2, - "top": 2, - "width": 476, - "height": 65, - "text": "", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_24" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 2, - "top": 69, - "width": 476, - "height": 65, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_1ch_hbar_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 144, - "top": 0, - "width": 236, - "height": 136, - "name": "mon section", - "widgets": [ - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_U_default", - "font": "Oswald14", - "color": "bar_graph_voltage", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_voltage" - }, - "data": "channel_u_mon", - "action": "", - "left": 0, - "top": 0, - "width": 236, - "height": 66, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - }, - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_I_default", - "font": "Oswald14", - "color": "bar_graph_current", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_current" - }, - "data": "channel_i_mon", - "action": "", - "left": 0, - "top": 68, - "width": 236, - "height": 66, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_i_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_i_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 144, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 68, - "width": 144, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 382, - "top": 0, - "width": 48, - "height": 136, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 2 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 432, - "top": 0, - "width": 48, - "height": 136, - "name": "Temperature", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "color": "protection_text", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "protection_text" - }, - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "otp_ch", - "action": "show_ch_settings_prot_otp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_1ch_hbar_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 144, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 68, - "width": 144, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 144, - "top": 2, - "width": 236, - "height": 132, - "text": "", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 382, - "top": 0, - "width": 98, - "height": 136, - "name": "Set power", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 0, - "width": 48, - "height": 136, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 2 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 50, - "top": 0, - "width": 48, - "height": 136, - "name": "Temperature", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_temp", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "color": "protection_text", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "protection_text" - }, - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "otp_ch", - "action": "show_ch_settings_prot_otp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OTP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_otp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_otp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_24" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 3, - "top": 3, - "width": 237, - "height": 130, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 243, - "top": 3, - "width": 234, - "height": 130, - "text": "", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_1ch_yt_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 0, - "top": 68, - "width": 66, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 102, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "YTGraph", - "style": { - "inheritFrom": "yt_graph" - }, - "data": "channel_history_values", - "action": "channel_toggle_output", - "left": 68, - "top": 0, - "width": 412, - "height": 134, - "y1Style": { - "inheritFrom": "yt_graph_U_default" - }, - "y2Data": "channel_display_value2", - "y2Style": { - "inheritFrom": "yt_graph_I_default" - } - }, - { - "type": "Container", - "style": { - "inheritFrom": "yt_graph", - "opacity": 192 - }, - "action": "channel_toggle_output", - "left": 70, - "top": 0, - "width": 66, - "height": 67, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_U_default", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background" - }, - "data": "channel_display_value1", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_I_default", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background" - }, - "data": "channel_display_value2", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ], - "overlay": "nondrag_overlay" - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_1ch_yt_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 32, - "layout": "slot_max_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 0, - "top": 68, - "width": 66, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 102, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 2, - "top": 2, - "width": 64, - "height": 132, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 66, - "top": 0, - "width": 414, - "height": 136, - "name": "YT-view off", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "", - "left": 2, - "top": 2, - "width": 410, - "height": 132, - "text": "", - "focusStyle": {} - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_2ch", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_max_2ch_view", - "left": 0, - "top": 0, - "width": 400, - "height": 168, - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_max_2ch_min_view", - "left": 400, - "top": 0, - "width": 80, - "height": 168, - "layout": "", - "context": "slot_2ch_ch2_index" - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_2ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_long_title", - "left": 0, - "top": 0, - "width": 267, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "inst_selected" - }, - "data": "channel_protection_status", - "left": 267, - "top": 0, - "width": 44, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "D", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 44, - "height": 32, - "text": "9", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "show_ch_settings_info", - "left": 311, - "top": 0, - "width": 44, - "height": 32, - "text": "?", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14" - }, - "action": "toggle_channels_max_view", - "left": 355, - "top": 0, - "width": 44, - "height": 32, - "text": "E", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 32 - }, - { - "name": "slot_max_2ch_num_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 239, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 134, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 2, - "width": 400, - "height": 64, - "name": "mon section", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "", - "left": 0, - "top": 0, - "width": 142, - "height": 64, - "name": "Voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_38_right" - }, - "data": "channel_u_mon_snapshot", - "action": "", - "left": 0, - "top": 0, - "width": 89, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_u_mon_snapshot", - "left": 89, - "top": 0, - "width": 53, - "height": 30, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_u_mon_snapshot", - "left": 89, - "top": 30, - "width": 53, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 64, - "name": "Current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_38_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 0, - "width": 89, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_i_mon_snapshot", - "left": 89, - "top": 0, - "width": 53, - "height": 30, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_i_mon_snapshot", - "left": 89, - "top": 30, - "width": 53, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 288, - "top": 0, - "width": 111, - "height": 64, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_24_right" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 63, - "height": 64, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_p_mon_snapshot", - "left": 63, - "top": 0, - "width": 48, - "height": 30, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_left" - }, - "data": "channel_p_mon_snapshot", - "left": 63, - "top": 30, - "width": 48, - "height": 34, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 68, - "width": 400, - "height": 66, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 142, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 288, - "top": 0, - "width": 112, - "height": 66, - "name": "Set power", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "text": "Lim./Tri.", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 55, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 55, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 55, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 57, - "top": 34, - "width": 54, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 66, - "top": 0, - "width": 45, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_num_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 239, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 134, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 400, - "height": 134, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 134, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 2, - "top": 2, - "width": 397, - "height": 64, - "text": "", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 68, - "width": 400, - "height": 66, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 142, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 144, - "top": 0, - "width": 142, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 288, - "top": 0, - "width": 112, - "height": 66, - "name": "Set power", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "text": "Lim./Tri.", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 55, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 55, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 55, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 57, - "top": 34, - "width": 54, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled", - "font": "Oswald14", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 54, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 66, - "top": 0, - "width": 45, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 45, - "height": 32, - "text": "OPP", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 134, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "", - "left": 2, - "top": 2, - "width": 397, - "height": 64, - "text": "", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_24" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 2, - "top": 69, - "width": 397, - "height": 65, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_hbar_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 144, - "top": 0, - "width": 205, - "height": 134, - "name": "mon section", - "widgets": [ - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_U_default", - "font": "Oswald14", - "color": "bar_graph_voltage", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_voltage" - }, - "data": "channel_u_mon", - "action": "", - "left": 0, - "top": 0, - "width": 205, - "height": 66, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_u_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_u_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - }, - { - "type": "BarGraph", - "style": { - "inheritFrom": "bar_graph_I_default", - "font": "Oswald14", - "color": "bar_graph_current", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_current" - }, - "data": "channel_i_mon", - "action": "", - "left": 0, - "top": 68, - "width": 205, - "height": 66, - "orientation": "left-right", - "textStyle": { - "inheritFrom": "bar_graph_text_vertical", - "font": "Oswald14", - "color": "bar_graph_text", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "bar_graph_text" - }, - "line1Data": "channel_i_set", - "line1Style": { - "inheritFrom": "bar_graph_set_line", - "font": "Oswald14" - }, - "line2Data": "channel_i_limit", - "line2Style": { - "inheritFrom": "bar_graph_limit_line" - } - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 144, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 68, - "width": 144, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 351, - "top": 0, - "width": 48, - "height": 136, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 2 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_hbar_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 144, - "height": 66, - "name": "Set voltage", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ovp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ovp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ovp", - "action": "show_ch_settings_prot_ovp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OVP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_protection_ovp_type", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "HW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "button_bgnd" - }, - "action": "ch_settings_prot_toggle_type", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "SW", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 68, - "width": 144, - "height": 66, - "name": "Set current", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "Set", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "padding": "0 5" - }, - "left": 48, - "top": 0, - "width": 46, - "height": 32, - "text": "Limit", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 48, - "top": 34, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_ocp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_ocp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "ocp", - "action": "show_ch_settings_prot_ocp", - "left": 96, - "top": 0, - "width": 46, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - "action": "", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 46, - "height": 32, - "text": "OCP", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 96, - "top": 34, - "width": 46, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 144, - "top": 2, - "width": 205, - "height": 132, - "text": "", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 351, - "top": 0, - "width": 48, - "height": 136, - "name": "Power", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 0, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_p_mon_snapshot", - "left": 0, - "top": 25, - "width": 48, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 2 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "opp", - "action": "show_ch_settings_prot_opp", - "left": 0, - "top": 49, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_off" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_on" - }, - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "ch_prot_tripped" - }, - "action": "show_ch_settings_prot_clear", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "text": "OPP", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 78, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_level", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_level", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 107, - "width": 48, - "height": 27, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_delay", - "action": "", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_delay", - "action": "edit", - "left": 0, - "top": 0, - "width": 48, - "height": 27, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_24" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 2, - "top": 2, - "width": 197, - "height": 132, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_24", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 201, - "top": 2, - "width": 198, - "height": 132, - "text": "", - "focusStyle": {} - } - ] - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_yt_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 0, - "top": 68, - "width": 66, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 102, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "YTGraph", - "style": { - "inheritFrom": "yt_graph" - }, - "data": "channel_history_values", - "action": "channel_toggle_output", - "left": 68, - "top": 0, - "width": 331, - "height": 134, - "y1Style": { - "inheritFrom": "yt_graph_U_default" - }, - "y2Data": "channel_display_value2", - "y2Style": { - "inheritFrom": "yt_graph_I_default" - } - }, - { - "type": "Container", - "style": { - "inheritFrom": "yt_graph", - "opacity": 192 - }, - "action": "channel_toggle_output", - "left": 70, - "top": 0, - "width": 66, - "height": 67, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_U_default", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background" - }, - "data": "channel_display_value1", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "yt_graph_I_default", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background" - }, - "data": "channel_display_value2", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ], - "overlay": "nondrag_overlay" - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_yt_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 400, - "height": 32, - "layout": "slot_max_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 32, - "width": 400, - "height": 136, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_u_mon_dac", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "data": "channel_ranges_currently_selected", - "left": 0, - "top": 68, - "width": 66, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 102, - "width": 66, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_disabled" - }, - "data": "channel_protection_opp_limit", - "action": "", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_enabled" - }, - "data": "channel_protection_opp_limit", - "action": "edit", - "left": 0, - "top": 0, - "width": 66, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 66, - "height": 134, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 2, - "top": 2, - "width": 64, - "height": 132, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "action": "channel_toggle_output", - "left": 66, - "top": 0, - "width": 333, - "height": 136, - "name": "YT-view off", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_38" - }, - "data": "channel_off_label", - "action": "", - "left": 2, - "top": 2, - "width": 331, - "height": 132, - "text": "", - "focusStyle": {} - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 400, - "height": 168 - }, - { - "name": "slot_max_2ch_min_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_short_title", - "left": 1, - "top": 0, - "width": 57, - "height": 32, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "top" - }, - "action": "toggle_channels_max_view", - "left": 58, - "top": 0, - "width": 22, - "height": 32, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 80, - "height": 32 - }, - { - "name": "slot_max_2ch_min_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "layout": "slot_max_2ch_min_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 1, - "top": 34, - "width": 79, - "height": 64, - "name": "mon section", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_center" - }, - "data": "channel_u_mon_snapshot", - "left": 0, - "top": 0, - "width": 79, - "height": 31, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_center" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 33, - "width": 79, - "height": 31, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 1, - "top": 100, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 1, - "top": 134, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 80, - "height": 168 - }, - { - "name": "slot_max_2ch_min_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "layout": "slot_max_2ch_min_title" - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_20" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 1, - "top": 33, - "width": 79, - "height": 65, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 1, - "top": 100, - "width": 79, - "height": 68, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 79, - "height": 68, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 34, - "width": 79, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "name": "Set current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 79, - "height": 68, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 0, - "width": 79, - "height": 68, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 80, - "height": 168 - }, - { - "name": "slot_max_error", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_max_header_bgnd", - "activeBackgroundColor": "inst_max_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 430, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "inst_selected", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "toggle_channels_max_view", - "left": 430, - "top": 0, - "width": 50, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald38", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "text": "Error", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_max_not_installed", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_max_header_bgnd", - "activeBackgroundColor": "inst_max_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 430, - "height": 32 - }, - { - "type": "Text", - "style": { - "inheritFrom": "inst_selected", - "font": "Heydings14", - "alignVertical": "center" - }, - "action": "toggle_channels_max_view", - "left": 430, - "top": 0, - "width": 50, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald38", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "left": 0, - "top": 32, - "width": 480, - "height": 136, - "text": "Not installed", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 168 - }, - { - "name": "slot_min_1ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 193, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "data": "", - "action": "toggle_channels_max_view", - "left": 193, - "top": 0, - "width": 45, - "height": 24, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 24 - }, - { - "name": "slot_min_1ch_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 238, - "height": 24, - "layout": "slot_min_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "data": "", - "action": "channel_toggle_output", - "left": 0, - "top": 25, - "width": 238, - "height": 46, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 0, - "width": 158, - "height": 46, - "name": "mon section", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 46, - "name": "Voltage", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_right" - }, - "data": "channel_u_mon_snapshot", - "left": 0, - "top": 0, - "width": 50, - "height": 46, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_left" - }, - "data": "channel_u_mon_snapshot", - "left": 50, - "top": 22, - "width": 28, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_center" - }, - "data": "channel_u_mon_snapshot", - "left": 50, - "top": 0, - "width": 28, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default_gui_tmpl" - }, - "left": 80, - "top": 0, - "width": 78, - "height": 46, - "name": "Current", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_20_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 0, - "width": 50, - "height": 46, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 1 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_left" - }, - "data": "channel_i_mon_snapshot", - "left": 50, - "top": 22, - "width": 28, - "height": 24, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 3 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_center" - }, - "data": "channel_i_mon_snapshot", - "left": 50, - "top": 0, - "width": 28, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - } - ] - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 160, - "top": 0, - "width": 78, - "height": 22, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 160, - "top": 24, - "width": 78, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_1ch_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 238, - "height": 24, - "layout": "slot_min_1ch_title" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 24, - "width": 238, - "height": 48, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 238, - "height": 48, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_20" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 0, - "top": 1, - "width": 157, - "height": 46, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 159, - "top": 1, - "width": 79, - "height": 22, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 159, - "top": 25, - "width": 79, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 79, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 238, - "height": 48, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 1, - "width": 238, - "height": 46, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_1ch_coupled_series", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 238, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 24, - "width": 238, - "height": 48, - "text": "Coupled in series with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_1ch_coupled_parallel", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 238, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 24, - "width": 238, - "height": 48, - "text": "Coupled in parallel with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_2ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 98, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "action": "toggle_channels_max_view", - "left": 98, - "top": 0, - "width": 20, - "height": 24, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 118, - "height": 24 - }, - { - "name": "slot_min_2ch", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_min_2ch_view", - "left": 0, - "top": 0, - "width": 118, - "height": 72, - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_min_2ch_view", - "left": 120, - "top": 0, - "width": 118, - "height": 72, - "context": "slot_2ch_ch2_index" - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_2ch_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 118, - "height": 24, - "layout": "slot_min_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 25, - "width": 58, - "height": 46, - "name": "mon section", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_u_mon_snapshot", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 24, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 60, - "top": 25, - "width": 58, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 60, - "top": 49, - "width": 58, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 118, - "height": 72 - }, - { - "name": "slot_min_2ch_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 118, - "height": 24, - "layout": "slot_min_2ch_title" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 24, - "width": 118, - "height": 48, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 118, - "height": 48, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_14" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 0, - "top": 1, - "width": 58, - "height": 46, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 60, - "top": 1, - "width": 58, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 60, - "top": 25, - "width": 58, - "height": 22, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 58, - "height": 22, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 118, - "height": 48, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 1, - "width": 118, - "height": 46, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 118, - "height": 72 - }, - { - "name": "slot_min_error", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 192, - "height": 24 - }, - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "data": "", - "action": "toggle_channels_max_view", - "left": 192, - "top": 0, - "width": 45, - "height": 24, - "text": "e", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 24, - "width": 238, - "height": 48, - "text": "Error", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_min_not_installed", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 192, - "height": 24 - }, - { - "type": "Text", - "style": { - "inheritFrom": "inst_minimized", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "data": "", - "action": "toggle_channels_max_view", - "left": 192, - "top": 0, - "width": 45, - "height": 24, - "text": "e", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "left": 0, - "top": 24, - "width": 238, - "height": 48, - "text": "Not installed", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 238, - "height": 72 - }, - { - "name": "slot_micro_1ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 134, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "action": "toggle_channels_max_view", - "left": 134, - "top": 0, - "width": 24, - "height": 24, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 24 - }, - { - "name": "slot_micro_1ch_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "layout": "slot_micro_1ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 26, - "width": 78, - "height": 44, - "name": "mon section", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_u_mon_snapshot", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 23, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 80, - "top": 26, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 80, - "top": 49, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_1ch_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "layout": "slot_micro_1ch_title" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 24, - "width": 158, - "height": 48, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 48, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_14" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 0, - "top": 2, - "width": 78, - "height": 44, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_rprog_status", - "left": 80, - "top": 2, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_u_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_u_mon_dac", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "edit_enabled", - "left": 80, - "top": 25, - "width": 78, - "height": 21, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_disabled" - }, - "data": "channel_i_edit", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "encoder_cursor_14_right_enabled" - }, - "data": "channel_i_edit", - "action": "edit", - "left": 0, - "top": 0, - "width": 78, - "height": 21, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_right_focused" - }, - "displayOption": 0 - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 48, - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 2, - "width": 158, - "height": 44, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_1ch_coupled_series", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 24, - "width": 158, - "height": 48, - "text": "Coupled in series with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_1ch_coupled_parallel", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_title", - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "MultilineText", - "style": { - "inheritFrom": "default_S" - }, - "left": 0, - "top": 24, - "width": 158, - "height": 48, - "text": "Coupled in parallel with Ch1", - "firstLineIndent": 0, - "hangingIndent": 0 - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_2ch", - "style": "default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_micro_2ch_view", - "left": 0, - "top": 0, - "width": 78, - "height": 72, - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "slot_micro_2ch_view", - "left": 80, - "top": 0, - "width": 78, - "height": 72, - "context": "slot_2ch_ch2_index" - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_2ch_title", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "alignHorizontal": "left", - "padding": "0 5" - }, - "data": "channel_short_title", - "left": 0, - "top": 0, - "width": 58, - "height": 24, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "channel1", - "font": "Heydings14", - "alignVertical": "bottom" - }, - "action": "toggle_channels_max_view", - "left": 58, - "top": 0, - "width": 20, - "height": 24, - "text": "e", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 78, - "height": 24 - }, - { - "name": "slot_micro_2ch_on", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 24, - "layout": "slot_micro_2ch_title" - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "channel_toggle_output", - "left": 0, - "top": 26, - "width": 78, - "height": 44, - "name": "mon section", - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_u_mon_snapshot", - "left": 0, - "top": 0, - "width": 54, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 5 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_left" - }, - "data": "channel_u_mon_snapshot", - "left": 54, - "top": 0, - "width": 24, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_right" - }, - "data": "channel_i_mon_snapshot", - "left": 0, - "top": 23, - "width": 54, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 5 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "mon_value_14_left" - }, - "data": "channel_i_mon_snapshot", - "left": 54, - "top": 23, - "width": 24, - "height": 21, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 4 - } - ] - } - ], - "left": 0, - "top": 0, - "width": 78, - "height": 72 - }, - { - "name": "slot_micro_2ch_off", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 78, - "height": 24, - "layout": "slot_micro_2ch_title" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "trigger_is_initiated", - "left": 0, - "top": 26, - "width": 78, - "height": 44, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "channel_off_button_14" - }, - "data": "channel_off_label", - "action": "channel_toggle_output", - "left": 0, - "top": 0, - "width": 78, - "height": 44, - "text": "", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "trigger_button_14" - }, - "data": "trigger_is_initiated", - "action": "trigger_generate_manual", - "left": 0, - "top": 0, - "width": 78, - "height": 44, - "text": "\\u00a4 TRG", - "enabled": "trigger_is_manual", - "disabledStyle": { - "inheritFrom": "trigger_button_14", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - } - } - ] - } - ], - "left": 0, - "top": 0, - "width": 78, - "height": 72 - }, - { - "name": "slot_micro_error", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 24, - "width": 158, - "height": 48, - "text": "Error", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "slot_micro_not_installed", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd" - }, - "left": 0, - "top": 0, - "width": 158, - "height": 24, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default_gui_tmpl", - "font": "Oswald20", - "color": "text_regular", - "activeBackgroundColor": "text_regular" - }, - "left": 0, - "top": 24, - "width": 158, - "height": 48, - "text": "Not installed", - "focusStyle": {} - } - ], - "left": 0, - "top": 0, - "width": 158, - "height": 72 - }, - { - "name": "dlog_view", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_view_state", - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "invertColors": true - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 41, - "top": 0, - "width": 438, - "height": 32, - "invertColors": true - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "text": "Loading...", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 41, - "top": 0, - "width": 438, - "height": 32, - "invertColors": true - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_warning", - "activeBackgroundColor": "status_warning" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "text": "Error", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "status_bgnd" - }, - "left": 41, - "top": 0, - "width": 438, - "height": 32, - "invertColors": true - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 272, - "widgets": [ - { - "type": "YTGraph", - "style": { - "inheritFrom": "yt_graph" - }, - "data": "recording", - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "y1Style": { - "inheritFrom": "default" - }, - "y2Data": "recording", - "y2Style": { - "inheritFrom": "default" - } - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_show_latest_recording", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_previous_page", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "E", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "H", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "is_show_live_recording", - "left": 40, - "top": 0, - "width": 440, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 440, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_time_offset", - "action": "edit", - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered", - "font": "RobotoCondensed-Regular", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_time_offset", - "left": 0, - "top": 0, - "width": 80, - "height": 14, - "text": "Time offset", - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "font": "RobotoCondensed-Regular" - } - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_centered", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_time_offset", - "action": "", - "left": 0, - "top": 14, - "width": 80, - "height": 18, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center" - }, - "displayOption": 0 - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered", - "font": "RobotoCondensed-Regular", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 80, - "top": 0, - "width": 80, - "height": 14, - "text": "Time Div", - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "font": "RobotoCondensed-Regular" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_time_div", - "left": 80, - "top": 14, - "width": 80, - "height": 18, - "text": "", - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "font": "RobotoCondensed-Regular" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered", - "font": "RobotoCondensed-Regular", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "", - "left": 160, - "top": 0, - "width": 80, - "height": 14, - "text": "Total duration", - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "font": "RobotoCondensed-Regular" - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_centered", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_time_duration", - "left": 160, - "top": 14, - "width": 80, - "height": 18, - "text": "", - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center", - "font": "RobotoCondensed-Regular" - } - }, - { - "type": "ScrollBar", - "style": { - "inheritFrom": "scrollbar_track" - }, - "data": "recording", - "left": 239, - "top": 0, - "width": 200, - "height": 32, - "thumbStyle": { - "inheritFrom": "scrollbar_thumb" - }, - "buttonsStyle": { - "inheritFrom": "scrollbar_button" - }, - "leftButtonText": "\\u0025", - "rightButtonText": "\\u0026" - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 440, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_icon_enabled", - "color": "#ff0000", - "activeBackgroundColor": "#ff0000" - }, - "action": "dlog_toggle", - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "text": "\\u0023", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_state", - "left": 80, - "top": 0, - "width": 360, - "height": 32, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 360, - "height": 32, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 360, - "height": 32, - "text": "Dlog trigger waiting", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "left": 0, - "top": 0, - "width": 360, - "height": 32, - "widgets": [ - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_left", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_current_time", - "left": 0, - "top": 0, - "width": 100, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_left", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "data": "dlog_file_length", - "left": 100, - "top": 0, - "width": 260, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - } - ] - } - ] - } - ] - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "overlay", - "opacity": 208 - }, - "data": "", - "action": "drag_overlay", - "left": 10, - "top": 9, - "width": 266, - "height": 55, - "name": "Values overlay", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "font": "Heydings14" - }, - "action": "dlog_view_show_overlay_options", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u0020", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 40, - "top": 0, - "width": 225, - "height": 32, - "name": "Labels", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "data": "", - "left": 0, - "top": 0, - "width": 75, - "height": 32, - "text": "Div", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "data": "", - "left": 75, - "top": 0, - "width": 75, - "height": 32, - "text": "Offset", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "data": "", - "left": 150, - "top": 0, - "width": 75, - "height": 32, - "text": "Cursor", - "focusStyle": {} - } - ] - }, - { - "type": "List", - "style": { - "inheritFrom": "default", - "activeColor": "text_regular", - "activeBackgroundColor": "overlay_drag_background" - }, - "data": "dlog_visible_values", - "left": 0, - "top": 32, - "width": 266, - "height": 23, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "overlay", - "activeBackgroundColor": "overlay_drag_background" - }, - "left": 0, - "top": 0, - "width": 266, - "height": 23, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "color": "bar_graph_voltage", - "activeColor": "bar_graph_voltage", - "activeBackgroundColor": "overlay_drag_background" - }, - "data": "dlog_visible_value_label", - "left": 0, - "top": 0, - "width": 40, - "height": 22, - "text": "", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_centered", - "activeColor": "text_regular", - "activeBackgroundColor": "Background" - }, - "data": "dlog_visible_value_div", - "action": "edit", - "left": 40, - "top": 0, - "width": 75, - "height": 22, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center" - }, - "displayOption": 0 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_centered", - "activeColor": "text_regular", - "activeBackgroundColor": "Background" - }, - "data": "dlog_visible_value_offset", - "action": "edit", - "left": 116, - "top": 0, - "width": 75, - "height": 22, - "focusStyle": { - "inheritFrom": "edit_value_focus_S_center" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay" - }, - "data": "dlog_visible_value_cursor", - "left": 190, - "top": 0, - "width": 75, - "height": 22, - "text": "", - "focusStyle": {} - } - ] - }, - "listType": "vertical", - "gap": 0 - } - ], - "overlay": "dlog_overlay", - "shadow": true - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "dlog_params", - "style": "default", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 10, - "top": 32, - "width": 59, - "height": 96, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 0, - "width": 59, - "height": 32, - "text": "Log U:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 32, - "width": 59, - "height": 32, - "text": "Log I:", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 0, - "top": 64, - "width": 59, - "height": 32, - "text": "Log P:", - "focusStyle": {} - } - ] - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "channels", - "left": 69, - "top": 0, - "width": 240, - "height": 128, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 128, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "data": "channel_short_title_without_tracking_icon", - "left": 0, - "top": 0, - "width": 40, - "height": 27, - "text": "", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "channel1" - }, - "left": 6, - "top": 27, - "width": 28, - "height": 4, - "invertColors": true - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "channel_status", - "left": 0, - "top": 32, - "width": 40, - "height": 96, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 96, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 32, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 64, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "", - "left": 0, - "top": 0, - "width": 40, - "height": 96, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_voltage_enabled", - "action": "dlog_voltage_toggle", - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u009F", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_current_enabled", - "action": "dlog_current_toggle", - "left": 0, - "top": 32, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u009F", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_power_enabled", - "action": "dlog_power_toggle", - "left": 0, - "top": 64, - "width": 40, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u009F", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 96, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 32, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - "left": 0, - "top": 64, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - } - ] - } - ] - } - ] - }, - "listType": "horizontal", - "gap": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 10, - "top": 128, - "width": 59, - "height": 32, - "text": "Period:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center", - "padding": "0 5" - }, - "data": "dlog_period", - "action": "dlog_edit_period", - "left": 69, - "top": 128, - "width": 100, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 178, - "top": 128, - "width": 76, - "height": 32, - "text": "Duration:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center", - "padding": "0 5" - }, - "data": "dlog_duration", - "action": "dlog_edit_duration", - "left": 255, - "top": 128, - "width": 100, - "height": 32, - "focusStyle": { - "inheritFrom": "default" - }, - "displayOption": 0 - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_value_S_left" - }, - "left": 11, - "top": 165, - "width": 58, - "height": 32, - "text": "Name:", - "focusStyle": {} - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_active_S_center", - "padding": "0 5" - }, - "data": "dlog_file_name", - "action": "dlog_edit_file_name", - "left": 69, - "top": 165, - "width": 286, - "height": 32, - "focusStyle": { - "inheritFrom": "encoder_cursor_14_focused", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Button", - "style": { - "inheritFrom": "non_interactive_button_S", - "font": "Oswald17" - }, - "data": "", - "action": "dlog_start_recording", - "left": 69, - "top": 202, - "width": 159, - "height": 36, - "text": "Start Recording", - "enabled": "dlog_start_enabled", - "disabledStyle": { - "inheritFrom": "non_interactive_button_S_disabled", - "font": "Oswald14", - "padding": 0 - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "non_interactive_button_S" - }, - "action": "cancel", - "left": 231, - "top": 202, - "width": 64, - "height": 35, - "text": "Cancel", - "focusStyle": {} - } - ], - "left": 48, - "top": 14, - "width": 364, - "height": 244 - }, - { - "name": "dlog_view_overlay_options", - "style": "default", - "widgets": [ - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_all_values", - "left": 10, - "top": 10, - "width": 80, - "height": 128, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_value_state", - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "dlog_value_toggle", - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u00a0", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left", - "color": "bar_graph_voltage", - "backgroundColor": "Background", - "activeColor": "bar_graph_voltage", - "activeBackgroundColor": "text_regular" - }, - "data": "dlog_value_label", - "left": 40, - "top": 0, - "width": 40, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "dlog_value_toggle", - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 40, - "height": 32, - "text": "\\u009F", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "overlay", - "alignHorizontal": "left", - "color": "bar_graph_voltage", - "backgroundColor": "Background", - "activeColor": "bar_graph_voltage", - "activeBackgroundColor": "text_regular" - }, - "data": "dlog_value_label", - "left": 40, - "top": 0, - "width": 40, - "height": 32, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 80, - "height": 32, - "widgets": [] - } - ] - } - ] - }, - "listType": "vertical", - "gap": 0 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "dlog_view_overlay_minimized", - "action": "dlog_view_toggle_overlay_minimized", - "left": 10, - "top": 148, - "width": 170, - "height": 32, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 170, - "height": 32, - "text": "\\u00a0 Minimize overlay", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "padding": "0 0 0 2" - }, - "left": 0, - "top": 0, - "width": 170, - "height": 32, - "text": "\\u009F Minimize legend", - "focusStyle": {} - } - ] - } - ], - "closePageIfTouchedOutside": true, - "left": 145, - "top": 26, - "width": 190, - "height": 188 - }, - { - "name": "file_manager", - "style": "default", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "file_manager_state", - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "invertColors": true - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "text": "Loading...", - "focusStyle": {} - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 480, - "height": 240, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "file_manager_is_root_directory", - "left": 0, - "top": 0, - "width": 440, - "height": 36, - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 440, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "color": "Action color", - "activeBackgroundColor": "Action color", - "padding": "0 0 0 4" - }, - "action": "file_manager_go_to_parent_directory", - "left": 0, - "top": 0, - "width": 36, - "height": 36, - "text": "\\u0060", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 4" - }, - "data": "file_manager_current_directory", - "action": "", - "left": 36, - "top": 0, - "width": 404, - "height": 36, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 0, - "width": 440, - "height": 36, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": "0 0 0 4" - }, - "action": "", - "left": 0, - "top": 0, - "width": 36, - "height": 36, - "text": "\\u0060", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": "0 0 0 4" - }, - "data": "file_manager_current_directory", - "action": "", - "left": 36, - "top": 0, - "width": 404, - "height": 36, - "text": "", - "focusStyle": {} - } - ] - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14" - }, - "action": "file_manager_sort_by", - "left": 439, - "top": 0, - "width": 41, - "height": 32, - "text": "\\u0085", - "focusStyle": {} - }, - { - "type": "List", - "style": { - "inheritFrom": "default" - }, - "data": "file_manager_files", - "left": 4, - "top": 36, - "width": 440, - "height": 204, - "itemWidget": { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "action": "file_manager_select_file", - "left": 0, - "top": 0, - "width": 440, - "height": 34, - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "file_manager_file_type", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "alignVertical": "top", - "padding": "3 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u0046", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignVertical": "top", - "padding": "4 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u00a1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "alignVertical": "top", - "padding": "4 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u0030", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "alignVertical": "top", - "padding": "4 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u0027", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "alignVertical": "top", - "padding": "4 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u005b", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Heydings14", - "alignVertical": "top", - "padding": "4 0 0 0" - }, - "data": "", - "left": 0, - "top": 0, - "width": 36, - "height": 34, - "text": "\\u006a", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left" - }, - "data": "file_manager_file_name", - "left": 36, - "top": 0, - "width": 234, - "height": 34, - "text": "", - "focusStyle": {} - }, - { - "type": "Select", - "style": { - "inheritFrom": "default" - }, - "data": "file_manager_is_directory", - "left": 270, - "top": 0, - "width": 80, - "height": 34, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right" - }, - "data": "file_manager_file_size", - "left": 0, - "top": 0, - "width": 80, - "height": 34, - "text": "", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14" - }, - "data": "", - "left": 0, - "top": 0, - "width": 80, - "height": 34, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "right" - }, - "data": "file_manager_file_date_time", - "left": 350, - "top": 0, - "width": 90, - "height": 34, - "text": "", - "focusStyle": {} - } - ] - }, - "listType": "vertical", - "gap": 0 - }, - { - "type": "ScrollBar", - "style": { - "inheritFrom": "default_inverse" - }, - "data": "file_manager_files", - "left": 448, - "top": 36, - "width": 32, - "height": 202, - "thumbStyle": { - "inheritFrom": "scrollbar_thumb" - }, - "buttonsStyle": { - "inheritFrom": "scrollbar_button" - }, - "leftButtonText": "\\u0083", - "rightButtonText": "\\u0084" - } - ] - } - ] - }, - { - "type": "Container", - "style": { - "inheritFrom": "default" - }, - "left": 0, - "top": 240, - "width": 480, - "height": 32, - "name": "Status line", - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text" - }, - "action": "show_main_page", - "left": 0, - "top": 0, - "width": 41, - "height": 32, - "text": "H", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "bottom_button_textual_S_left" - }, - "left": 41, - "top": 0, - "width": 439, - "height": 32, - "text": "File manager", - "focusStyle": {} - } - ] - } - ], - "left": 0, - "top": 0, - "width": 480, - "height": 272 - }, - { - "name": "file_menu", - "description": "Standby menu", - "style": "select_enum_item_popup_container", - "widgets": [ - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "file_manager_open_file", - "left": 10, - "top": 10, - "width": 120, - "height": 32, - "text": "Open", - "enabled": "file_manager_open_file_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "file_manager_upload_file", - "left": 10, - "top": 46, - "width": 120, - "height": 32, - "text": "Upload", - "enabled": "file_manager_upload_file_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "file_manager_rename_file", - "left": 10, - "top": 82, - "width": 120, - "height": 32, - "text": "Rename", - "enabled": "file_manager_rename_file_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item" - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "select_enum_item_popup_item" - }, - "action": "file_manager_delete_file", - "left": 10, - "top": 118, - "width": 120, - "height": 32, - "text": "Delete", - "enabled": "file_manager_delete_file_enabled", - "disabledStyle": { - "inheritFrom": "select_enum_item_popup_disabled_item" - } - } - ], - "closePageIfTouchedOutside": true, - "left": 154, - "top": 56, - "width": 140, - "height": 164 - }, - { - "name": "front_panel", - "style": "default", - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "front_panel_default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "action": "", - "left": 0, - "top": 0, - "width": 1396, - "height": 563, - "bitmap": "front_panel" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "front_panel_slot1_view", - "left": 875, - "top": 40, - "width": 168, - "height": 484, - "layout": "", - "context": "slot1_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "front_panel_slot2_view", - "left": 1043, - "top": 40, - "width": 168, - "height": 484, - "layout": "", - "context": "slot2_channel_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "data": "front_panel_slot3_view", - "left": 1211, - "top": 40, - "width": 168, - "height": 484, - "layout": "", - "context": "slot3_channel_index" - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "front_panel_select_slot1", - "left": 875, - "top": 530, - "width": 60, - "height": 28, - "text": "Select", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "front_panel_select_slot2", - "left": 1043, - "top": 530, - "width": 60, - "height": 28, - "text": "Select", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "front_panel_select_slot3", - "left": 1211, - "top": 530, - "width": 60, - "height": 28, - "text": "Select", - "focusStyle": {} - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#c0c0c0", - "backgroundColor": "#808080", - "activeColor": "#808080", - "activeBackgroundColor": "#c0c0c0" - }, - "action": "user_switch_clicked", - "left": 714, - "top": 473, - "width": 57, - "height": 57, - "invertColors": false - }, - { - "type": "AppView", - "style": { - "inheritFrom": "home", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "main_app_view", - "left": 275, - "top": 74, - "width": 480, - "height": 272 - } - ], - "usedIn": [ - "simulator" - ], - "left": 0, - "top": 0, - "width": "1396", - "height": "563" - }, - { - "name": "front_panel_empty_slot", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "invertColors": false - } - ], - "left": 0, - "top": 0, - "width": 168, - "height": 484 - }, - { - "name": "dcp405_front_panel", - "style": "", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "#f2f2f2", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#f2f2f2" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "bitmap": "DCP405" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "simulator_load_state", - "action": "simulator_load", - "left": 4, - "top": 44, - "width": 160, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 160, - "height": 28, - "text": "Load Off", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "simulator_load", - "action": "", - "left": 0, - "top": 0, - "width": 160, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_is_cc", - "left": 26, - "top": 102, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_is_cv", - "left": 50, - "top": 102, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#00ff00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#00ff00", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_rprog_status", - "left": 26, - "top": 135, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_rsense_status", - "left": 50, - "top": 135, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_active_coupled_led", - "left": 31, - "top": 328, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#00ff00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#00ff00", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - } - ] - } - ], - "usedIn": [ - "simulator" - ], - "left": 0, - "top": 0, - "width": 168, - "height": 484 - }, - { - "name": "dcp405b_front_panel", - "style": "", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "#f2f2f2", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#f2f2f2" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "bitmap": "DCP405B" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "simulator_load_state", - "action": "simulator_load", - "left": 4, - "top": 44, - "width": 160, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 160, - "height": 28, - "text": "Load Off", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "simulator_load", - "action": "", - "left": 0, - "top": 0, - "width": 160, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_is_cc", - "left": 26, - "top": 102, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_is_cv", - "left": 50, - "top": 102, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#00ff00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#00ff00", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_active_coupled_led", - "left": 31, - "top": 328, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#00ff00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#00ff00", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - } - ] - } - ], - "usedIn": [ - "simulator" - ], - "left": 0, - "top": 0, - "width": 168, - "height": 484 - }, - { - "name": "dcm220_front_panel", - "widgets": [ - { - "type": "Container", - "style": { - "inheritFrom": "default", - "color": "#f2f2f2", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#f2f2f2" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "widgets": [ - { - "type": "Bitmap", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "left": 0, - "top": 0, - "width": 168, - "height": 484, - "bitmap": "DCM220" - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "simulator_load_state", - "action": "simulator_load", - "left": 4, - "top": 44, - "width": 78, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 28, - "text": "Load Off", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "simulator_load", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "simulator_load_state2", - "action": "simulator_load", - "left": 86, - "top": 44, - "width": 78, - "height": 28, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 28, - "text": "Load Off", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "edit_S", - "font": "Oswald14", - "alignHorizontal": "center", - "color": "#9b9b00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#9b9b00", - "borderSize": 2, - "borderRadius": 4, - "borderColor": "#808080" - }, - "data": "simulator_load2", - "action": "", - "left": 0, - "top": 0, - "width": 78, - "height": 28, - "text": "", - "focusStyle": {} - } - ] - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 30, - "top": 157, - "width": 20, - "height": 20, - "layout": "dcm220_front_panel_led", - "context": "slot_2ch_ch1_index" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 30, - "top": 339, - "width": 20, - "height": 20, - "layout": "dcm220_front_panel_led", - "context": "slot_2ch_ch2_index" - } - ] - } - ], - "usedIn": [ - "simulator" - ], - "left": 0, - "top": 0, - "width": 168, - "height": 484 - }, - { - "name": "dcm220_front_panel_led", - "widgets": [ - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_output_state", - "left": 0, - "top": 0, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ffffff", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ffffff", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Select", - "style": { - "inheritFrom": "default", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff" - }, - "data": "channel_is_cc", - "left": 0, - "top": 0, - "width": 20, - "height": 20, - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#00ff00", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#00ff00", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#ff040b", - "backgroundColor": "#ffffff", - "activeColor": "#ffffff", - "activeBackgroundColor": "#ff040b", - "borderSize": 2, - "borderRadius": 8, - "borderColor": "#404040" - }, - "left": 0, - "top": 0, - "width": 20, - "height": 20 - } - ] - } - ] - } - ], - "left": 0, - "top": 0, - "width": 20, - "height": 20 - }, - { - "name": "front_panel_numeric_keypad", - "description": "Enter generic numeric value", - "style": "", - "widgets": [ - { - "type": "Rectangle", - "style": { - "inheritFrom": "default", - "color": "#62563e", - "activeBackgroundColor": "#62563e" - }, - "left": 0, - "top": 0, - "width": 250, - "height": 249 - }, - { - "type": "DisplayData", - "style": { - "inheritFrom": "edit_value_S_left", - "color": "#ffffff", - "backgroundColor": "#62563e", - "activeColor": "#62563e", - "activeBackgroundColor": "#ffffff" - }, - "data": "keypad_text", - "left": 5, - "top": 5, - "width": 240, - "height": 32, - "focusStyle": { - "inheritFrom": "edit_value_active_S_left", - "padding": 0 - }, - "displayOption": 0 - }, - { - "type": "Container", - "style": { - "inheritFrom": "default", - "backgroundColor": "#555555", - "activeColor": "#555555" - }, - "left": 5, - "top": 35, - "width": 240, - "height": 174, - "widgets": [ - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 0, - "top": 2, - "width": 60, - "height": 43, - "text": "7", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 60, - "top": 2, - "width": 60, - "height": 43, - "text": "8", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 120, - "top": 2, - "width": 60, - "height": 43, - "text": "9", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key_icons", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_back", - "left": 180, - "top": 2, - "width": 60, - "height": 43, - "text": "<", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 0, - "top": 45, - "width": 60, - "height": 43, - "text": "4", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 60, - "top": 45, - "width": 60, - "height": 43, - "text": "5", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 120, - "top": 45, - "width": 60, - "height": 43, - "text": "6", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "data": "edit_unit", - "action": "keypad_unit", - "left": 180, - "top": 45, - "width": 60, - "height": 43, - "enabled": "keypad_unit_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "color": "#d5cdbd", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#d5cdbd", - "borderColor": "#a08f6b", - "padding": 0 - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 0, - "top": 88, - "width": 60, - "height": 43, - "text": "1", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 60, - "top": 88, - "width": 60, - "height": 43, - "text": "2", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 120, - "top": 88, - "width": 60, - "height": 43, - "text": "3", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "data": "keypad_option1_text", - "action": "keypad_option1", - "left": 180, - "top": 88, - "width": 60, - "height": 43, - "text": "", - "enabled": "keypad_option1_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "color": "#d5cdbd", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#d5cdbd", - "borderColor": "#a08f6b", - "padding": 0 - } - }, - { - "type": "Text", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 0, - "top": 131, - "width": 60, - "height": 43, - "text": "0", - "focusStyle": {} - }, - { - "type": "Button", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_key", - "left": 60, - "top": 131, - "width": 60, - "height": 43, - "text": ".", - "enabled": "keypad_dot_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "color": "#d5cdbd", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#d5cdbd", - "borderColor": "#a08f6b", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "key_icons", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "action": "keypad_sign", - "left": 120, - "top": 131, - "width": 60, - "height": 43, - "text": "-", - "enabled": "keypad_sign_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "color": "#d5cdbd", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#d5cdbd", - "borderColor": "#a08f6b", - "padding": 0 - } - }, - { - "type": "Button", - "style": { - "inheritFrom": "key", - "color": "#555555", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#555555", - "borderColor": "#62563e" - }, - "data": "keypad_option2_text", - "action": "keypad_option2", - "left": 180, - "top": 131, - "width": 60, - "height": 43, - "text": "", - "enabled": "keypad_option2_enabled", - "disabledStyle": { - "inheritFrom": "key_disabled", - "color": "#d5cdbd", - "backgroundColor": "#d5cdbd", - "activeColor": "#d5cdbd", - "activeBackgroundColor": "#d5cdbd", - "borderColor": "#a08f6b", - "padding": 0 - } - } - ] - }, - { - "type": "Rectangle", - "style": { - "inheritFrom": "bottom_button_background", - "color": "#f2f0ec", - "activeBackgroundColor": "#f2f0ec" - }, - "left": 5, - "top": 209, - "width": 144, - "height": 36 - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "WebHostingHub24", - "color": "#555555", - "backgroundColor": "#f2f0ec", - "activeColor": "#f2f0ec", - "activeBackgroundColor": "#555555" - }, - "action": "keypad_cancel", - "left": 197, - "top": 209, - "width": 48, - "height": 36, - "text": "U", - "focusStyle": {} - }, - { - "type": "Text", - "style": { - "inheritFrom": "default", - "font": "WebHostingHub24", - "color": "#555555", - "backgroundColor": "#f2f0ec", - "activeColor": "#f2f0ec", - "activeBackgroundColor": "#555555" - }, - "action": "keypad_ok", - "left": 149, - "top": 209, - "width": 48, - "height": 36, - "text": "I", - "focusStyle": {} - } - ], - "usedIn": [ - "simulator" - ], - "left": "1015", - "top": "164", - "width": "250", - "height": "250" - }, - { - "name": "Storyboard", - "style": "bar_graph_I_default", - "widgets": [ - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 5003, - "top": 4982, - "width": 480, - "height": 240, - "layout": "main" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 5155, - "top": 3983, - "width": 480, - "height": 272, - "layout": "sys_settings_screen_calibration" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 4411, - "top": 3983, - "width": 480, - "height": 272, - "layout": "sys_settings_display" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 5783, - "top": 3455, - "width": 480, - "height": 272, - "layout": "touch_calibration" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 5783, - "top": 3983, - "width": 480, - "height": 272, - "layout": "touch_calibration" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 6422, - "top": 3455, - "width": 480, - "height": 272, - "layout": "touch_calibration_yes_no" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 6422, - "top": 3983, - "width": 480, - "height": 272, - "layout": "touch_calibration_yes_no_cancel" - }, - { - "type": "LayoutView", - "style": { - "inheritFrom": "default" - }, - "left": 5155, - "top": 3468, - "width": 480, - "height": 272, - "layout": "touch_calibration_intro" - } - ], - "usedIn": [], - "left": -10, - "top": -2, - "width": 10000, - "height": 10000 - } - ], - "styles": [ - { - "name": "bar_graph_I_default", - "description": "", - "inheritFrom": "", - "font": "Oswald14", - "color": "bar_graph_current", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_current", - "padding": 0 - }, - { - "name": "bar_graph_U_default", - "description": "", - "inheritFrom": "", - "font": "Oswald14", - "color": "bar_graph_voltage", - "backgroundColor": "bar_graph_background", - "activeColor": "bar_graph_background", - "activeBackgroundColor": "bar_graph_voltage", - "padding": 0 - }, - { - "name": "bar_graph_limit_line", - "inheritFrom": "default", - "color": "status_warning", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "status_warning", - "borderSize": 1, - "borderColor": "status_warning", - "padding": 0 - }, - { - "name": "bar_graph_set_line", - "inheritFrom": "default", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled", - "borderSize": 1, - "padding": 0 - }, - { - "name": "bar_graph_text_vertical", - "description": "", - "inheritFrom": "", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "top", - "color": "status_line_text", - "backgroundColor": "popup_background_regular", - "activeColor": "popup_background_regular", - "activeBackgroundColor": "status_line_text", - "padding": 0 - }, - { - "name": "bottom_button", - "font": "Heydings14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderSize": 0, - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "bottom_button_background", - "inheritFrom": "bottom_button", - "color": "status_line_background", - "activeBackgroundColor": "status_line_background", - "borderSize": 0, - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "bottom_button_disabled", - "inheritFrom": "bottom_button", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled", - "borderSize": 0, - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "bottom_button_textual_S_left", - "inheritFrom": "", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "padding": 0 - }, - { - "name": "bottom_button_textual_S_disabled", - "inheritFrom": "", - "font": "Heydings14", - "color": "text_disabled", - "backgroundColor": "text_disabled_background", - "activeColor": "text_disabled_background", - "activeBackgroundColor": "text_disabled", - "padding": 0 - }, - { - "name": "default", - "description": "", - "font": "Oswald24", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular", - "borderColor": "#D3D3D3", - "padding": "0" - }, - { - "name": "default_disabled", - "description": "", - "inheritFrom": "default", - "font": "Oswald24", - "padding": 0 - }, - { - "name": "default_disabled_S_left", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": 0 - }, - { - "name": "default_edit_inverse", - "description": "", - "inheritFrom": "default", - "font": "Oswald24" - }, - { - "name": "default_inverse", - "description": "", - "inheritFrom": "default", - "font": "Oswald24", - "color": "Background", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "Background", - "padding": 0 - }, - { - "name": "default_S", - "inheritFrom": "default", - "font": "Oswald14", - "padding": 0 - }, - { - "name": "default_S_left", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "padding": 0 - }, - { - "name": "edit_info_S", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_value", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_value", - "borderSize": 0, - "padding": 0 - }, - { - "name": "edit_S", - "inheritFrom": "default", - "font": "Oswald14", - "color": "Action color", - "activeBackgroundColor": "Action color", - "padding": 0 - }, - { - "name": "option_toggle_L", - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "left", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color" - }, - { - "name": "edit_value_active_S_left", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": "0", - "padding": "0" - }, - { - "name": "edit_value_active_S_center", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": "0", - "padding": "0" - }, - { - "name": "edit_value_focus_S_center", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_enable_background", - "backgroundColor": "Action color", - "activeColor": "Action color", - "activeBackgroundColor": "text_enable_background", - "borderSize": "0", - "borderColor": "#D3D3D3", - "padding": "0" - }, - { - "name": "edit_value_S_centered", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "borderSize": 0, - "padding": 0 - }, - { - "name": "edit_value_S_left", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "alignVertical": "center", - "borderSize": 0, - "padding": 0 - }, - { - "name": "error_alert", - "inheritFrom": "default_S", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning", - "padding": "20", - "margin": "20", - "alwaysBuild": true - }, - { - "name": "error_alert_button", - "inheritFrom": "error_alert", - "color": "text_selectable_background", - "activeBackgroundColor": "text_selectable_background", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "event_error", - "inheritFrom": "event_info", - "color": "status_warning", - "activeBackgroundColor": "status_warning", - "padding": 0 - }, - { - "name": "event_info", - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_ok", - "activeBackgroundColor": "status_ok", - "padding": 0 - }, - { - "name": "event_warning", - "inheritFrom": "event_info", - "color": "popup_background_warning", - "activeBackgroundColor": "popup_background_warning", - "padding": 0 - }, - { - "name": "yes_no", - "inheritFrom": "default_S", - "font": "Oswald17", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning", - "padding": 0 - }, - { - "name": "yes_no_message", - "inheritFrom": "yes_no", - "color": "text_regular", - "backgroundColor": "popup_background_warning", - "activeColor": "popup_background_warning", - "activeBackgroundColor": "text_regular", - "padding": 0 - }, - { - "name": "yes_no_button", - "inheritFrom": "yes_no", - "color": "text_enabled", - "activeBackgroundColor": "text_enabled", - "padding": 0 - }, - { - "name": "key", - "inheritFrom": "default_edit_inverse", - "font": "Oswald24", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - { - "name": "key_disabled", - "inheritFrom": "key", - "color": "text_regular", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_regular" - }, - { - "name": "key_icons", - "inheritFrom": "key", - "font": "WebHostingHub24", - "alignHorizontal": "center", - "alignVertical": "center", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - { - "name": "key_spec_icons", - "inheritFrom": "default", - "font": "WebHostingHub24", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "padding": 0 - }, - { - "name": "max_current_limit_cause", - "inheritFrom": "default_S", - "alignHorizontal": "left", - "color": "status_warning", - "activeBackgroundColor": "status_warning", - "padding": 0 - }, - { - "name": "menu_S", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_regular", - "activeBackgroundColor": "text_regular", - "borderSize": 0, - "padding": 0 - }, - { - "name": "mon_value", - "inheritFrom": "default" - }, - { - "name": "mon_value_UR", - "inheritFrom": "mon_value", - "backgroundColor": "status_warning", - "activeColor": "status_warning" - }, - { - "name": "mon_value_48_right", - "inheritFrom": "mon_value", - "font": "Oswald48", - "alignHorizontal": "right" - }, - { - "name": "mon_value_38_right", - "inheritFrom": "mon_value", - "font": "Oswald38", - "alignHorizontal": "right" - }, - { - "name": "mon_value_38_right_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald38", - "alignHorizontal": "right", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_24_right", - "inheritFrom": "mon_value", - "font": "Oswald24", - "alignHorizontal": "right" - }, - { - "name": "mon_value_24_right_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald24", - "alignHorizontal": "right", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_14_right", - "inheritFrom": "mon_value", - "font": "Oswald14", - "alignHorizontal": "right" - }, - { - "name": "mon_value_14_left", - "inheritFrom": "mon_value", - "font": "Oswald14", - "alignHorizontal": "left" - }, - { - "name": "mon_value_14_center", - "inheritFrom": "mon_value", - "font": "Oswald14" - }, - { - "name": "mon_value_14_center_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald14", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_14_left_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_14_right_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald14", - "alignHorizontal": "right", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_20_left", - "inheritFrom": "mon_value", - "font": "Oswald20", - "alignHorizontal": "left" - }, - { - "name": "mon_value_20_center", - "inheritFrom": "mon_value", - "font": "Oswald20" - }, - { - "name": "mon_value_20_right", - "inheritFrom": "mon_value", - "font": "Oswald20", - "alignHorizontal": "right" - }, - { - "name": "mon_value_20_right_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald20", - "alignHorizontal": "right", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_20_left_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald20", - "alignHorizontal": "left", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "mon_value_48_right_UR", - "inheritFrom": "mon_value_UR", - "font": "Oswald48", - "alignHorizontal": "right", - "color": "status_warning", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "non_interactive_button_S", - "font": "Oswald14", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": 0, - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "non_interactive_button_S_disabled", - "inheritFrom": "non_interactive_button_S", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": 0 - }, - { - "name": "tab_page", - "inheritFrom": "default", - "font": "WebHostingHub24", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_enabled", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "text_enabled", - "borderSize": 0, - "padding": 0 - }, - { - "name": "tab_page_selected", - "inheritFrom": "default", - "font": "WebHostingHub24", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_enabled", - "activeBackgroundColor": "text_enabled", - "borderSize": 0, - "padding": 0 - }, - { - "name": "value", - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "left", - "color": "text_value", - "activeBackgroundColor": "text_value", - "padding": 0 - }, - { - "name": "value_S", - "inheritFrom": "default", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "text_value", - "activeBackgroundColor": "text_value", - "padding": 0 - }, - { - "name": "slider_shade_1", - "inheritFrom": "default", - "color": "#ffff00", - "activeBackgroundColor": "#ffff00", - "padding": 0 - }, - { - "name": "slider_shade_2", - "inheritFrom": "default", - "color": "#ffff77", - "activeBackgroundColor": "#ffff77", - "padding": 0 - }, - { - "name": "slider_shade_3", - "inheritFrom": "default", - "color": "#ffff99", - "activeBackgroundColor": "#ffff99", - "padding": 0 - }, - { - "name": "slider_shade_4", - "inheritFrom": "default", - "color": "#ffffB3", - "activeBackgroundColor": "#ffffB3", - "padding": 0 - }, - { - "name": "slider_shade_5", - "inheritFrom": "default", - "color": "#ffffcc", - "activeBackgroundColor": "#ffffcc", - "padding": 0 - }, - { - "name": "slider_shade_6", - "inheritFrom": "default", - "color": "#ffffe5", - "activeBackgroundColor": "#ffffe5", - "padding": 0 - }, - { - "name": "yt_graph_U_default", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "bar_graph_voltage", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "bar_graph_voltage", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_U_default_label", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "bar_graph_voltage", - "activeBackgroundColor": "bar_graph_voltage", - "padding": 0 - }, - { - "name": "yt_graph_I_default", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "bar_graph_current", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "bar_graph_current", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_I_default_label", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "bar_graph_current", - "activeBackgroundColor": "bar_graph_current", - "padding": 0 - }, - { - "name": "yt_graph_P_default", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "bar_graph_power", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "bar_graph_power", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "yt_graph_cursor", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "yt_graph_cursor", - "borderColor": "yt_graph_grid" - }, - { - "name": "yt_graph_unregulated", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "status_warning", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "status_warning", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_Y1", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "yt_graph_y1", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "yt_graph_y1", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_Y2", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "yt_graph_y2", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "yt_graph_y2", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_Y3", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "yt_graph_y3", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "yt_graph_y3", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "yt_graph_Y4", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "color": "yt_graph_y4", - "backgroundColor": "yt_graph_background", - "activeColor": "yt_graph_background", - "activeBackgroundColor": "yt_graph_y4", - "padding": 0, - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_container", - "inheritFrom": "default_S", - "font": "Oswald17", - "backgroundColor": "popup_background_regular", - "activeColor": "popup_background_regular", - "padding": "12", - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_container_S", - "inheritFrom": "default_S", - "font": "Oswald14", - "backgroundColor": "popup_background_regular", - "activeColor": "popup_background_regular", - "padding": "12", - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_item", - "inheritFrom": "select_enum_item_popup_container", - "alignHorizontal": "left", - "color": "text_regular", - "backgroundColor": "popup_background_regular", - "activeColor": "popup_background_regular", - "activeBackgroundColor": "text_regular", - "padding": "6", - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_item_S", - "inheritFrom": "select_enum_item_popup_container", - "font": "Oswald14", - "alignHorizontal": "left", - "color": "text_regular", - "backgroundColor": "popup_background_regular", - "activeColor": "popup_background_regular", - "activeBackgroundColor": "text_regular", - "padding": "6", - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_disabled_item", - "inheritFrom": "select_enum_item_popup_item", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": "6", - "alwaysBuild": true - }, - { - "name": "select_enum_item_popup_disabled_item_S", - "inheritFrom": "select_enum_item_popup_item", - "font": "Oswald14", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": "6", - "alwaysBuild": true - }, - { - "name": "display_off", - "inheritFrom": "default", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular", - "padding": 0 - }, - { - "name": "display_off_S", - "inheritFrom": "display_off", - "font": "Oswald14", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular", - "padding": 0 - }, - { - "name": "list_graph_cursor", - "description": "", - "inheritFrom": "default", - "font": "Oswald14", - "backgroundColor": "text_disabled_background", - "activeColor": "text_disabled_background", - "borderSize": 0, - "borderColor": "#ffffff", - "padding": 0 - }, - { - "name": "text_message", - "inheritFrom": "default_S", - "backgroundColor": "popup_background_info", - "activeColor": "popup_background_info", - "padding": 0 - }, - { - "name": "async_operation", - "inheritFrom": "default_S", - "font": "Oswald17", - "backgroundColor": "popup_background_info", - "activeColor": "popup_background_info", - "padding": 0 - }, - { - "name": "async_operation_action", - "inheritFrom": "async_operation", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "padding": 0 - }, - { - "name": "front_panel_default", - "font": "Oswald14", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular", - "borderColor": "#ffffff", - "padding": 0 - }, - { - "name": "touch_calibration", - "inheritFrom": "default", - "font": "WebHostingHub24", - "color": "protection_text", - "backgroundColor": "text_disabled_background", - "activeColor": "text_disabled_background", - "activeBackgroundColor": "protection_text", - "padding": 0 - }, - { - "name": "touch_calibration_active", - "inheritFrom": "default", - "font": "WebHostingHub24", - "color": "status_ok", - "backgroundColor": "text_disabled_background", - "activeColor": "text_disabled_background", - "activeBackgroundColor": "status_ok", - "padding": 0 - }, - { - "name": "home", - "description": "", - "font": "Oswald24", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "home_icon", - "description": "", - "inheritFrom": "home", - "font": "Oswald14", - "padding": 0 - }, - { - "name": "home_icon_active", - "description": "", - "inheritFrom": "home_icon", - "padding": 0, - "opacity": 127 - }, - { - "name": "status_bgnd", - "inheritFrom": "default_gui_tmpl", - "font": "Oswald14", - "color": "status_line_text", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_line_text", - "borderColor": "#000000", - "padding": 0 - }, - { - "name": "default_gui_tmpl", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_enabled" - }, - { - "name": "button_bgnd", - "inheritFrom": "default_gui_tmpl", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background" - }, - { - "name": "inst_selected", - "inheritFrom": "default_gui_tmpl", - "color": "inst_max_header_text", - "backgroundColor": "inst_max_header_bgnd", - "activeColor": "inst_max_header_bgnd", - "activeBackgroundColor": "inst_max_header_text" - }, - { - "name": "inst_minimized", - "inheritFrom": "default_gui_tmpl", - "color": "inst_min_header_text", - "backgroundColor": "inst_min_header_bgnd", - "activeColor": "inst_min_header_bgnd", - "activeBackgroundColor": "inst_min_header_text" - }, - { - "name": "encoder_cursor_14_disabled", - "inheritFrom": "encoder_cursor_disabled" - }, - { - "name": "encoder_cursor_disabled", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_regular", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_regular", - "borderColor": "#000000" - }, - { - "name": "encoder_cursor_14_enabled", - "inheritFrom": "encoder_cursor_enabled" - }, - { - "name": "encoder_cursor_enabled", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled", - "borderColor": "#000000" - }, - { - "name": "encoder_cursor_14_focused", - "inheritFrom": "encoder_cursor_focused", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "encoder_cursor_focused", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background", - "borderColor": "#000000" - }, - { - "name": "encoder_cursor_14_left_enabled", - "inheritFrom": "encoder_cursor_enabled", - "alignHorizontal": "left" - }, - { - "name": "encoder_cursor_14_right_enabled", - "inheritFrom": "encoder_cursor_enabled", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_14_left_disabled", - "inheritFrom": "encoder_cursor_disabled", - "alignHorizontal": "left" - }, - { - "name": "encoder_cursor_14_right_disabled", - "inheritFrom": "encoder_cursor_disabled", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_14_left_focused", - "inheritFrom": "encoder_cursor_focused", - "alignHorizontal": "left", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "encoder_cursor_14_right_focused", - "inheritFrom": "encoder_cursor_focused", - "alignHorizontal": "right", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "encoder_cursor_38_right_enabled", - "inheritFrom": "encoder_cursor_enabled", - "font": "Oswald38", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_38_right_disabled", - "inheritFrom": "encoder_cursor_disabled", - "font": "Oswald38", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_38_right_focused", - "inheritFrom": "encoder_cursor_focused", - "font": "Oswald38", - "alignHorizontal": "right", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "encoder_cursor_20_right_enabled", - "inheritFrom": "encoder_cursor_enabled", - "font": "Oswald20", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_20_right_disabled", - "inheritFrom": "encoder_cursor_disabled", - "font": "Oswald20", - "alignHorizontal": "right" - }, - { - "name": "encoder_cursor_20_right_focused", - "inheritFrom": "encoder_cursor_focused", - "font": "Oswald20", - "alignHorizontal": "right", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "encoder_cursor_20_left_bottom_enabled", - "inheritFrom": "encoder_cursor_enabled", - "font": "Oswald20", - "alignHorizontal": "left", - "alignVertical": "bottom" - }, - { - "name": "encoder_cursor_20_left_bottom_disabled", - "inheritFrom": "encoder_cursor_disabled", - "font": "Oswald20", - "alignHorizontal": "left", - "alignVertical": "bottom" - }, - { - "name": "encoder_cursor_20_left_bottom_focused", - "inheritFrom": "encoder_cursor_focused", - "font": "Oswald20", - "alignHorizontal": "left", - "alignVertical": "bottom", - "color": "text_enable_background", - "backgroundColor": "text_selectable_background", - "activeColor": "text_selectable_background", - "activeBackgroundColor": "text_enable_background" - }, - { - "name": "ch_prot_off", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "text_enabled" - }, - { - "name": "info_alert", - "inheritFrom": "default_S", - "color": "text_regular", - "backgroundColor": "popup_background_info", - "activeColor": "popup_background_info", - "activeBackgroundColor": "text_regular", - "padding": "20", - "margin": "20", - "alwaysBuild": true - }, - { - "name": "ch_prot_on", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "text_enabled" - }, - { - "name": "ch_prot_tripped", - "inheritFrom": "default", - "font": "Oswald14", - "color": "text_enabled", - "backgroundColor": "status_warning", - "activeColor": "status_warning", - "activeBackgroundColor": "text_enabled" - }, - { - "name": "channel_off_button_20", - "inheritFrom": "channel_off_button", - "font": "Oswald20" - }, - { - "name": "channel_off_button", - "inheritFrom": "default", - "color": "status_warning", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "trigger_button_24", - "inheritFrom": "trigger_button", - "font": "Oswald24", - "padding": 0 - }, - { - "name": "trigger_button", - "inheritFrom": "default", - "font": "Oswald20", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color" - }, - { - "name": "trigger_button_14", - "inheritFrom": "trigger_button", - "font": "Oswald14" - }, - { - "name": "channel_off_button_38", - "inheritFrom": "channel_off_button", - "font": "Oswald38" - }, - { - "name": "channel_off_button_14", - "inheritFrom": "channel_off_button", - "font": "Oswald14" - }, - { - "name": "edit_value_active_M_left", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": "0", - "padding": "0" - }, - { - "name": "edit_value_M_left", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "alignVertical": "center", - "borderSize": 0, - "padding": 0 - }, - { - "name": "default_disabled_M_left", - "description": "", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "color": "text_disabled", - "activeBackgroundColor": "text_disabled", - "padding": 0 - }, - { - "name": "non_interactive_button_M", - "font": "Oswald17", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": 0, - "borderColor": "#D3D3D3", - "padding": 0 - }, - { - "name": "edit_value_M_centered", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular", - "borderSize": 0, - "padding": 0 - }, - { - "name": "edit_value_active_M_center", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color", - "borderSize": "0", - "padding": "0" - }, - { - "name": "option_toggle_L_center", - "inheritFrom": "default", - "font": "Oswald24", - "alignHorizontal": "center", - "alignVertical": "center", - "color": "Action color", - "backgroundColor": "text_enable_background", - "activeColor": "text_enable_background", - "activeBackgroundColor": "Action color" - }, - { - "name": "default_M_left", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "padding": 0 - }, - { - "name": "default_M", - "inheritFrom": "default", - "font": "Oswald17", - "padding": 0 - }, - { - "name": "value_M", - "inheritFrom": "default", - "font": "Oswald17", - "alignHorizontal": "left", - "color": "text_value", - "activeBackgroundColor": "text_value", - "padding": 0 - }, - { - "name": "icon_and_text_S", - "inheritFrom": "edit_value_active_S_center", - "alignHorizontal": "left", - "alignVertical": "top", - "padding": "3" - }, - { - "name": "icon_and_text_S_disabled", - "inheritFrom": "icon_and_text_S", - "color": "text_regular", - "backgroundColor": "Background", - "activeColor": "Background", - "activeBackgroundColor": "text_regular" - }, - { - "name": "status_icon_disabled", - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_line_text_disabled", - "activeBackgroundColor": "status_line_text_disabled" - }, - { - "name": "status_icon_enabled", - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center" - }, - { - "name": "status_icon_enabled_and_active", - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_line_text", - "backgroundColor": "status_ok", - "activeColor": "status_ok", - "activeBackgroundColor": "status_line_text" - }, - { - "name": "status_icon_enabled_and_error", - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "color": "status_warning", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_warning" - }, - { - "name": "status_icon_enabled_with_need_attention", - "inheritFrom": "status_bgnd", - "font": "Heydings14", - "alignVertical": "center", - "color": "status_ok", - "backgroundColor": "status_line_background", - "activeColor": "status_line_background", - "activeBackgroundColor": "status_ok" - }, - { - "name": "default_active", - "inheritFrom": "default", - "color": "Background", - "backgroundColor": "text_regular", - "activeColor": "text_regular", - "activeBackgroundColor": "Background" - }, - { - "name": "overlay", - "inheritFrom": "default", - "font": "Oswald14", - "color": "overlay_text", - "backgroundColor": "overlay_background", - "activeColor": "overlay_text", - "activeBackgroundColor": "overlay_drag_background", - "opacity": 240 - }, - { - "name": "channel1", - "inheritFrom": "default", - "font": "Oswald14", - "color": "#404040", - "backgroundColor": "channel1", - "activeColor": "channel1", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel2", - "inheritFrom": "channel1", - "color": "#404040", - "backgroundColor": "channel2", - "activeColor": "channel2", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel3", - "inheritFrom": "channel1", - "color": "#404040", - "backgroundColor": "channel3", - "activeColor": "channel3", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel4", - "inheritFrom": "channel1", - "color": "#404040", - "backgroundColor": "channel4", - "activeColor": "channel4", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel5", - "inheritFrom": "channel1", - "color": "#404040", - "backgroundColor": "channel5", - "activeColor": "channel5", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel6", - "inheritFrom": "channel1", - "color": "#404040", - "backgroundColor": "channel6", - "activeColor": "channel6", - "activeBackgroundColor": "#404040", - "alwaysBuild": true - }, - { - "name": "channel1_inverse", - "inheritFrom": "default", - "font": "Oswald14", - "color": "channel1", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel1", - "alwaysBuild": true - }, - { - "name": "channel2_inverse", - "inheritFrom": "channel1_inverse", - "color": "channel2", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel2", - "alwaysBuild": true - }, - { - "name": "channel3_inverse", - "inheritFrom": "channel1_inverse", - "color": "channel3", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel3", - "alwaysBuild": true - }, - { - "name": "channel4_inverse", - "inheritFrom": "channel1_inverse", - "color": "channel4", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel4", - "alwaysBuild": true - }, - { - "name": "channel5_inverse", - "inheritFrom": "channel1_inverse", - "color": "channel5", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel5", - "alwaysBuild": true - }, - { - "name": "channel6_inverse", - "inheritFrom": "channel1_inverse", - "color": "channel6", - "backgroundColor": "#404040", - "activeColor": "#404040", - "activeBackgroundColor": "channel6", - "alwaysBuild": true - }, - { - "name": "scrollbar_track", - "inheritFrom": "default", - "color": "scrollbar_track", - "activeBackgroundColor": "scrollbar_track" - }, - { - "name": "scrollbar_thumb", - "inheritFrom": "default", - "color": "scrollbar_thumb", - "activeBackgroundColor": "scrollbar_thumb" - }, - { - "name": "scrollbar_button", - "inheritFrom": "default", - "font": "Heydings14", - "color": "scrollbar_button", - "backgroundColor": "scrollbar_track", - "activeColor": "scrollbar_track", - "activeBackgroundColor": "scrollbar_button" - } - ], - "fonts": [ - { - "name": "Oswald14", - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14 - }, - "bpp": 8, - "height": 25, - "ascent": 20, - "descent": 5, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 5, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 0, - "y": 0, - "width": 4, - "height": 15, - "dx": 4, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 16, - 252, - 252, - 113, - 2, - 254, - 255, - 96, - 0, - 239, - 255, - 77, - 0, - 223, - 255, - 58, - 0, - 206, - 255, - 39, - 0, - 189, - 255, - 20, - 0, - 173, - 254, - 3, - 0, - 156, - 238, - 0, - 0, - 139, - 219, - 0, - 0, - 123, - 200, - 0, - 0, - 106, - 181, - 0, - 0, - 89, - 162, - 0, - 5, - 38, - 39, - 15, - 32, - 255, - 255, - 100, - 32, - 255, - 255, - 100 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 1, - "y": 9, - "width": 6, - "height": 6, - "dx": 7, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 213, - 252, - 79, - 170, - 252, - 126, - 216, - 255, - 30, - 172, - 255, - 77, - 216, - 236, - 1, - 172, - 255, - 26, - 216, - 187, - 0, - 172, - 232, - 1, - 216, - 137, - 0, - 172, - 182, - 0, - 4, - 2, - 0, - 3, - 3, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 31, - 252, - 250, - 8, - 106, - 252, - 178, - 0, - 0, - 69, - 255, - 222, - 0, - 147, - 255, - 142, - 0, - 0, - 107, - 255, - 183, - 0, - 186, - 255, - 103, - 0, - 0, - 145, - 255, - 144, - 0, - 225, - 255, - 64, - 66, - 252, - 255, - 255, - 254, - 252, - 255, - 255, - 252, - 58, - 208, - 254, - 255, - 217, - 220, - 255, - 251, - 206, - 0, - 5, - 254, - 255, - 28, - 80, - 255, - 208, - 0, - 0, - 28, - 255, - 252, - 3, - 107, - 255, - 179, - 0, - 73, - 253, - 255, - 255, - 252, - 254, - 255, - 255, - 243, - 62, - 229, - 255, - 242, - 208, - 244, - 255, - 227, - 199, - 0, - 132, - 255, - 156, - 0, - 212, - 255, - 76, - 0, - 0, - 166, - 255, - 121, - 1, - 246, - 255, - 42, - 0, - 0, - 200, - 255, - 87, - 24, - 255, - 255, - 10, - 0, - 0, - 234, - 255, - 52, - 58, - 255, - 230, - 0, - 0, - 12, - 255, - 255, - 17, - 92, - 255, - 197, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 0, - "y": -2, - "width": 9, - "height": 19, - "dx": 9, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 186, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 23, - 0, - 0, - 0, - 0, - 21, - 157, - 234, - 255, - 249, - 175, - 24, - 0, - 3, - 204, - 255, - 255, - 215, - 252, - 255, - 196, - 1, - 61, - 255, - 255, - 107, - 0, - 88, - 255, - 255, - 46, - 97, - 255, - 255, - 71, - 0, - 13, - 255, - 255, - 96, - 77, - 255, - 255, - 166, - 1, - 0, - 75, - 29, - 1, - 17, - 245, - 255, - 255, - 150, - 4, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 182, - 14, - 0, - 0, - 0, - 0, - 95, - 250, - 255, - 255, - 208, - 20, - 0, - 0, - 0, - 0, - 64, - 238, - 255, - 255, - 191, - 2, - 0, - 0, - 0, - 0, - 41, - 232, - 255, - 255, - 82, - 35, - 121, - 173, - 12, - 0, - 73, - 255, - 255, - 159, - 86, - 255, - 255, - 52, - 0, - 3, - 253, - 255, - 179, - 29, - 255, - 255, - 155, - 1, - 35, - 255, - 255, - 140, - 0, - 158, - 255, - 255, - 219, - 240, - 255, - 245, - 37, - 0, - 7, - 132, - 224, - 255, - 255, - 197, - 56, - 0, - 0, - 0, - 0, - 0, - 104, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 48, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 0, - "y": 0, - "width": 18, - "height": 15, - "dx": 18, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 31, - 177, - 241, - 246, - 198, - 61, - 0, - 0, - 0, - 175, - 252, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 240, - 232, - 255, - 242, - 17, - 0, - 7, - 245, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 41, - 8, - 237, - 255, - 82, - 0, - 69, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 3, - 0, - 204, - 255, - 115, - 0, - 143, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 0, - 0, - 201, - 255, - 120, - 0, - 217, - 245, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 7, - 0, - 210, - 255, - 110, - 36, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 255, - 78, - 32, - 249, - 255, - 66, - 110, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 217, - 5, - 184, - 255, - 29, - 24, - 168, - 238, - 248, - 211, - 101, - 0, - 0, - 8, - 126, - 195, - 201, - 150, - 27, - 11, - 248, - 210, - 0, - 176, - 255, - 246, - 222, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 136, - 5, - 247, - 255, - 74, - 1, - 197, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 62, - 22, - 255, - 255, - 41, - 0, - 162, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 225, - 240, - 4, - 22, - 255, - 255, - 42, - 0, - 163, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 169, - 0, - 4, - 245, - 255, - 79, - 1, - 200, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 95, - 0, - 0, - 168, - 255, - 243, - 216, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 23, - 0, - 0, - 19, - 163, - 239, - 252, - 215, - 96, - 0 - ], - "width": 18 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 0, - "y": 0, - "width": 11, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 46, - 189, - 245, - 232, - 152, - 20, - 0, - 0, - 0, - 0, - 17, - 235, - 255, - 234, - 243, - 255, - 198, - 1, - 0, - 0, - 0, - 94, - 255, - 247, - 16, - 56, - 255, - 255, - 32, - 0, - 0, - 0, - 114, - 255, - 231, - 0, - 57, - 255, - 255, - 28, - 0, - 0, - 0, - 63, - 255, - 255, - 23, - 129, - 255, - 210, - 1, - 0, - 0, - 0, - 2, - 211, - 255, - 118, - 234, - 254, - 66, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 253, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 251, - 255, - 173, - 0, - 0, - 59, - 60, - 13, - 0, - 20, - 228, - 255, - 255, - 246, - 34, - 10, - 255, - 255, - 43, - 0, - 144, - 255, - 206, - 157, - 255, - 183, - 56, - 255, - 248, - 8, - 1, - 227, - 255, - 109, - 20, - 237, - 255, - 196, - 255, - 178, - 0, - 9, - 255, - 255, - 73, - 0, - 100, - 255, - 255, - 255, - 62, - 0, - 1, - 240, - 255, - 118, - 0, - 64, - 255, - 255, - 254, - 123, - 19, - 0, - 139, - 255, - 253, - 211, - 254, - 255, - 219, - 255, - 255, - 68, - 0, - 5, - 135, - 231, - 252, - 213, - 105, - 4, - 138, - 245, - 68 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 1, - "y": 9, - "width": 3, - "height": 6, - "dx": 6, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 182, - 252, - 100, - 184, - 255, - 57, - 184, - 255, - 14, - 184, - 224, - 0, - 184, - 179, - 0, - 3, - 3, - 0 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 1, - "y": -3, - "width": 5, - "height": 18, - "dx": 6, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 2, - 114, - 220, - 114, - 0, - 125, - 255, - 255, - 99, - 11, - 243, - 255, - 121, - 0, - 78, - 255, - 255, - 19, - 0, - 128, - 255, - 231, - 0, - 0, - 156, - 255, - 204, - 0, - 0, - 173, - 255, - 192, - 0, - 0, - 182, - 255, - 186, - 0, - 0, - 184, - 255, - 184, - 0, - 0, - 184, - 255, - 184, - 0, - 0, - 182, - 255, - 185, - 0, - 0, - 174, - 255, - 193, - 0, - 0, - 157, - 255, - 206, - 0, - 0, - 128, - 255, - 230, - 0, - 0, - 78, - 255, - 255, - 20, - 0, - 11, - 243, - 255, - 117, - 0, - 0, - 127, - 255, - 254, - 97, - 0, - 2, - 118, - 223, - 115 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 0, - "y": -3, - "width": 5, - "height": 18, - "dx": 6, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 98, - 223, - 123, - 4, - 0, - 85, - 254, - 255, - 139, - 0, - 0, - 108, - 255, - 249, - 18, - 0, - 13, - 253, - 255, - 90, - 0, - 0, - 219, - 255, - 138, - 0, - 0, - 194, - 255, - 165, - 0, - 0, - 182, - 255, - 182, - 0, - 0, - 177, - 255, - 191, - 0, - 0, - 174, - 255, - 195, - 0, - 0, - 174, - 255, - 196, - 0, - 0, - 177, - 255, - 192, - 0, - 0, - 183, - 255, - 182, - 0, - 0, - 195, - 255, - 165, - 0, - 0, - 218, - 255, - 138, - 0, - 13, - 253, - 255, - 91, - 0, - 109, - 255, - 248, - 18, - 83, - 253, - 255, - 138, - 0, - 100, - 227, - 125, - 4, - 0 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 0, - "y": 8, - "width": 8, - "height": 7, - "dx": 8, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 0, - 0, - 0, - 192, - 252, - 20, - 0, - 0, - 0, - 95, - 31, - 169, - 250, - 10, - 111, - 7, - 10, - 244, - 249, - 226, - 248, - 227, - 255, - 81, - 0, - 39, - 144, - 255, - 255, - 198, - 75, - 4, - 0, - 0, - 153, - 252, - 217, - 220, - 14, - 0, - 0, - 52, - 255, - 158, - 79, - 255, - 138, - 0, - 0, - 0, - 65, - 34, - 1, - 95, - 5, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 3, - "width": 8, - "height": 9, - "dx": 8, - "glyphBitmap": { - "height": 9, - "pixelArray": [ - 0, - 0, - 0, - 205, - 252, - 4, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 4, - 0, - 0, - 104, - 200, - 200, - 246, - 255, - 201, - 200, - 157, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 3, - 4, - 4, - 209, - 255, - 8, - 4, - 4, - 0, - 0, - 0, - 208, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 1, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 0, - "y": -3, - "width": 4, - "height": 6, - "dx": 4, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 9, - 36, - 36, - 11, - 64, - 255, - 255, - 76, - 64, - 255, - 255, - 76, - 0, - 9, - 245, - 61, - 8, - 184, - 216, - 6, - 1, - 111, - 18, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 1, - "y": 4, - "width": 5, - "height": 3, - "dx": 7, - "glyphBitmap": { - "height": 3, - "pixelArray": [ - 188, - 200, - 200, - 200, - 132, - 240, - 255, - 255, - 255, - 168, - 4, - 4, - 4, - 4, - 3 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 0, - "y": 0, - "width": 4, - "height": 3, - "dx": 4, - "glyphBitmap": { - "height": 3, - "pixelArray": [ - 27, - 212, - 212, - 83, - 32, - 255, - 255, - 100, - 32, - 255, - 255, - 100 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 0, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 30, - 252, - 177, - 0, - 0, - 0, - 0, - 103, - 255, - 105, - 0, - 0, - 0, - 0, - 178, - 255, - 31, - 0, - 0, - 0, - 8, - 245, - 212, - 0, - 0, - 0, - 0, - 71, - 255, - 138, - 0, - 0, - 0, - 0, - 145, - 255, - 63, - 0, - 0, - 0, - 1, - 220, - 240, - 5, - 0, - 0, - 0, - 38, - 255, - 170, - 0, - 0, - 0, - 0, - 113, - 255, - 96, - 0, - 0, - 0, - 0, - 187, - 255, - 23, - 0, - 0, - 0, - 13, - 250, - 203, - 0, - 0, - 0, - 0, - 80, - 255, - 128, - 0, - 0, - 0, - 0, - 155, - 255, - 54, - 0, - 0, - 0, - 1, - 229, - 234, - 2, - 0, - 0, - 0, - 47, - 255, - 161, - 0, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 91, - 204, - 247, - 239, - 181, - 46, - 0, - 0, - 97, - 255, - 255, - 229, - 241, - 255, - 242, - 32, - 1, - 222, - 255, - 204, - 4, - 33, - 252, - 255, - 144, - 21, - 255, - 255, - 140, - 0, - 0, - 217, - 255, - 200, - 36, - 255, - 255, - 132, - 0, - 0, - 209, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 208, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 208, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 208, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 208, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 208, - 255, - 216, - 36, - 255, - 255, - 132, - 0, - 0, - 209, - 255, - 216, - 21, - 255, - 255, - 143, - 0, - 0, - 220, - 255, - 201, - 1, - 221, - 255, - 210, - 4, - 37, - 254, - 255, - 144, - 0, - 95, - 255, - 255, - 225, - 241, - 255, - 241, - 31, - 0, - 0, - 91, - 207, - 250, - 242, - 182, - 46, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 1, - "y": 0, - "width": 6, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 31, - 189, - 252, - 189, - 34, - 160, - 250, - 255, - 255, - 192, - 92, - 255, - 255, - 255, - 255, - 192, - 52, - 99, - 33, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192, - 0, - 0, - 0, - 224, - 255, - 192 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 80, - 200, - 245, - 243, - 195, - 71, - 0, - 0, - 76, - 255, - 255, - 236, - 238, - 255, - 254, - 64, - 0, - 197, - 255, - 229, - 14, - 15, - 237, - 255, - 179, - 1, - 248, - 255, - 162, - 0, - 0, - 190, - 255, - 224, - 7, - 248, - 248, - 140, - 0, - 0, - 207, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 1, - 183, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 185, - 1, - 0, - 0, - 0, - 20, - 235, - 255, - 241, - 29, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 182, - 1, - 0, - 0, - 0, - 10, - 221, - 255, - 240, - 27, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 24, - 252, - 255, - 254, - 201, - 200, - 200, - 200, - 100, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 4, - 116, - 213, - 248, - 239, - 183, - 54, - 0, - 0, - 145, - 255, - 255, - 223, - 244, - 255, - 248, - 46, - 16, - 251, - 255, - 174, - 1, - 28, - 251, - 255, - 157, - 55, - 255, - 255, - 113, - 0, - 0, - 215, - 255, - 199, - 30, - 128, - 128, - 52, - 0, - 0, - 226, - 255, - 181, - 0, - 0, - 0, - 0, - 3, - 85, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 255, - 255, - 249, - 114, - 1, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 185, - 9, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 180, - 54, - 228, - 228, - 95, - 0, - 0, - 210, - 255, - 202, - 45, - 255, - 255, - 131, - 0, - 0, - 229, - 255, - 183, - 7, - 242, - 255, - 221, - 64, - 106, - 255, - 255, - 126, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 239, - 24, - 0, - 2, - 114, - 215, - 252, - 241, - 182, - 45, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 162, - 252, - 252, - 174, - 0, - 0, - 0, - 0, - 0, - 27, - 251, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 12, - 239, - 241, - 213, - 255, - 176, - 0, - 0, - 0, - 0, - 107, - 255, - 156, - 204, - 255, - 176, - 0, - 0, - 0, - 3, - 219, - 255, - 62, - 204, - 255, - 176, - 0, - 0, - 0, - 79, - 255, - 223, - 2, - 204, - 255, - 176, - 0, - 0, - 0, - 193, - 255, - 130, - 0, - 204, - 255, - 176, - 0, - 0, - 49, - 255, - 255, - 37, - 0, - 204, - 255, - 176, - 0, - 0, - 84, - 255, - 255, - 252, - 252, - 255, - 255, - 255, - 252, - 71, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 16, - 48, - 48, - 48, - 48, - 214, - 255, - 191, - 48, - 14, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 176, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 188, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 0, - 194, - 255, - 234, - 208, - 208, - 208, - 208, - 52, - 0, - 197, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 178, - 217, - 248, - 211, - 85, - 0, - 0, - 211, - 255, - 255, - 230, - 240, - 255, - 254, - 54, - 0, - 215, - 255, - 189, - 4, - 21, - 243, - 255, - 154, - 0, - 34, - 40, - 18, - 0, - 0, - 196, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 214, - 8, - 112, - 112, - 57, - 0, - 0, - 181, - 255, - 208, - 9, - 255, - 255, - 140, - 0, - 0, - 194, - 255, - 182, - 0, - 223, - 255, - 203, - 3, - 16, - 243, - 255, - 123, - 0, - 117, - 255, - 255, - 223, - 233, - 255, - 239, - 23, - 0, - 3, - 123, - 220, - 252, - 243, - 185, - 47, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 60, - 191, - 243, - 245, - 201, - 98, - 1, - 0, - 47, - 249, - 255, - 236, - 232, - 255, - 255, - 97, - 0, - 166, - 255, - 231, - 13, - 4, - 219, - 255, - 197, - 0, - 230, - 255, - 176, - 0, - 0, - 93, - 132, - 115, - 3, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 167, - 140, - 195, - 174, - 66, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 62, - 8, - 255, - 255, - 230, - 42, - 42, - 246, - 255, - 174, - 8, - 255, - 255, - 157, - 0, - 0, - 187, - 255, - 229, - 8, - 255, - 255, - 156, - 0, - 0, - 169, - 255, - 249, - 5, - 255, - 255, - 157, - 0, - 0, - 166, - 255, - 242, - 0, - 236, - 255, - 176, - 0, - 0, - 185, - 255, - 209, - 0, - 168, - 255, - 237, - 17, - 16, - 241, - 255, - 142, - 0, - 45, - 248, - 255, - 234, - 231, - 255, - 243, - 33, - 0, - 0, - 59, - 194, - 247, - 245, - 191, - 52, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 0, - "y": 0, - "width": 8, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 63, - 252, - 252, - 252, - 252, - 252, - 252, - 103, - 52, - 208, - 208, - 208, - 219, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 147, - 255, - 239, - 2, - 0, - 0, - 0, - 0, - 205, - 255, - 183, - 0, - 0, - 0, - 0, - 12, - 252, - 255, - 126, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 124, - 255, - 254, - 14, - 0, - 0, - 0, - 0, - 182, - 255, - 211, - 0, - 0, - 0, - 0, - 2, - 239, - 255, - 154, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 159, - 255, - 238, - 2, - 0, - 0, - 0, - 0, - 217, - 255, - 182, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 125, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 1, - 108, - 212, - 248, - 237, - 174, - 36, - 0, - 0, - 114, - 255, - 255, - 226, - 249, - 255, - 228, - 13, - 0, - 225, - 255, - 193, - 2, - 70, - 255, - 255, - 91, - 5, - 255, - 255, - 133, - 0, - 10, - 255, - 255, - 125, - 1, - 240, - 255, - 147, - 0, - 23, - 255, - 255, - 106, - 0, - 156, - 255, - 224, - 21, - 115, - 255, - 251, - 31, - 0, - 16, - 209, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 66, - 247, - 255, - 227, - 248, - 255, - 177, - 4, - 2, - 222, - 255, - 184, - 3, - 57, - 255, - 255, - 95, - 40, - 255, - 255, - 100, - 0, - 0, - 228, - 255, - 170, - 63, - 255, - 255, - 78, - 0, - 0, - 206, - 255, - 194, - 46, - 255, - 255, - 90, - 0, - 0, - 220, - 255, - 177, - 6, - 242, - 255, - 167, - 1, - 42, - 255, - 255, - 124, - 0, - 126, - 255, - 255, - 216, - 243, - 255, - 236, - 23, - 0, - 2, - 114, - 215, - 252, - 240, - 179, - 42, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 89, - 204, - 247, - 235, - 169, - 29, - 0, - 0, - 94, - 255, - 255, - 227, - 246, - 255, - 225, - 14, - 1, - 220, - 255, - 198, - 2, - 45, - 255, - 255, - 114, - 27, - 255, - 255, - 130, - 0, - 0, - 227, - 255, - 182, - 49, - 255, - 255, - 117, - 0, - 0, - 217, - 255, - 209, - 42, - 255, - 255, - 128, - 0, - 0, - 216, - 255, - 212, - 8, - 246, - 255, - 203, - 13, - 57, - 245, - 255, - 212, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 4, - 116, - 193, - 199, - 122, - 218, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 212, - 3, - 32, - 32, - 15, - 0, - 0, - 224, - 255, - 205, - 13, - 255, - 255, - 132, - 0, - 3, - 249, - 255, - 176, - 0, - 225, - 255, - 205, - 30, - 103, - 255, - 255, - 113, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 230, - 16, - 0, - 1, - 112, - 215, - 252, - 241, - 179, - 38, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 1, - "y": 1, - "width": 3, - "height": 10, - "dx": 4, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 30, - 36, - 25, - 212, - 255, - 172, - 212, - 255, - 172, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 36, - 25, - 212, - 255, - 172, - 212, - 255, - 172, - 4, - 4, - 3 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 1, - "y": -2, - "width": 3, - "height": 13, - "dx": 5, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 213, - 252, - 170, - 216, - 255, - 172, - 186, - 220, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 36, - 26, - 216, - 255, - 184, - 216, - 255, - 184, - 4, - 153, - 170, - 120, - 251, - 77, - 43, - 39, - 0 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 0, - "y": 1, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 1, - 6, - 0, - 0, - 0, - 0, - 19, - 171, - 60, - 0, - 0, - 0, - 72, - 230, - 255, - 60, - 0, - 11, - 150, - 255, - 255, - 187, - 19, - 44, - 218, - 255, - 248, - 112, - 2, - 0, - 108, - 255, - 217, - 45, - 0, - 0, - 0, - 108, - 255, - 247, - 108, - 1, - 0, - 0, - 18, - 166, - 255, - 255, - 182, - 24, - 0, - 0, - 0, - 87, - 238, - 255, - 234, - 35, - 0, - 0, - 0, - 26, - 182, - 255, - 60, - 0, - 0, - 0, - 0, - 1, - 103, - 50 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 1, - "y": 4, - "width": 7, - "height": 6, - "dx": 8, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 225, - 252, - 252, - 252, - 252, - 252, - 12, - 186, - 208, - 208, - 208, - 208, - 208, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 200, - 200, - 200, - 200, - 200, - 10, - 228, - 255, - 255, - 255, - 255, - 255, - 12, - 4, - 4, - 4, - 4, - 4, - 4, - 1 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 1, - "y": 1, - "width": 6, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 6, - 0, - 0, - 0, - 0, - 0, - 199, - 52, - 0, - 0, - 0, - 0, - 240, - 251, - 126, - 5, - 0, - 0, - 132, - 254, - 255, - 202, - 39, - 0, - 0, - 61, - 224, - 255, - 246, - 98, - 0, - 0, - 15, - 169, - 255, - 192, - 0, - 0, - 57, - 221, - 255, - 192, - 4, - 128, - 252, - 255, - 215, - 53, - 192, - 255, - 254, - 142, - 9, - 0, - 240, - 223, - 63, - 0, - 0, - 0, - 141, - 13, - 0, - 0, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 20, - 153, - 229, - 250, - 230, - 161, - 30, - 0, - 1, - 197, - 255, - 255, - 217, - 253, - 255, - 227, - 16, - 26, - 255, - 255, - 119, - 0, - 70, - 255, - 255, - 103, - 23, - 255, - 255, - 95, - 0, - 5, - 255, - 255, - 141, - 1, - 95, - 48, - 6, - 0, - 42, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 254, - 41, - 0, - 0, - 0, - 0, - 66, - 253, - 255, - 152, - 0, - 0, - 0, - 0, - 52, - 240, - 255, - 195, - 8, - 0, - 0, - 0, - 33, - 242, - 255, - 186, - 13, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 46, - 208, - 208, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 212, - 212, - 50, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 60, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 1, - "y": -3, - "width": 17, - "height": 18, - "dx": 18, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 0, - 0, - 6, - 87, - 167, - 214, - 246, - 248, - 217, - 160, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 214, - 255, - 255, - 248, - 214, - 217, - 250, - 255, - 255, - 146, - 3, - 0, - 0, - 0, - 0, - 80, - 251, - 255, - 193, - 66, - 6, - 0, - 0, - 8, - 91, - 228, - 255, - 134, - 0, - 0, - 0, - 31, - 245, - 255, - 139, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 234, - 254, - 45, - 0, - 0, - 174, - 255, - 182, - 1, - 0, - 47, - 187, - 245, - 153, - 237, - 252, - 18, - 102, - 255, - 148, - 0, - 35, - 255, - 254, - 42, - 0, - 47, - 244, - 255, - 243, - 231, - 255, - 236, - 0, - 14, - 252, - 218, - 0, - 112, - 255, - 190, - 0, - 1, - 202, - 255, - 192, - 15, - 108, - 255, - 199, - 0, - 0, - 221, - 251, - 1, - 163, - 255, - 125, - 0, - 62, - 255, - 252, - 33, - 0, - 145, - 255, - 161, - 0, - 0, - 209, - 255, - 6, - 206, - 255, - 82, - 0, - 138, - 255, - 195, - 0, - 0, - 181, - 255, - 124, - 0, - 0, - 225, - 247, - 1, - 226, - 255, - 59, - 0, - 180, - 255, - 155, - 0, - 0, - 218, - 255, - 86, - 0, - 19, - 255, - 207, - 0, - 230, - 255, - 58, - 0, - 189, - 255, - 164, - 0, - 13, - 251, - 255, - 50, - 0, - 113, - 255, - 135, - 0, - 207, - 255, - 80, - 0, - 156, - 255, - 240, - 93, - 174, - 255, - 255, - 32, - 50, - 241, - 247, - 30, - 0, - 169, - 255, - 137, - 0, - 60, - 254, - 255, - 255, - 243, - 229, - 255, - 229, - 255, - 255, - 106, - 0, - 0, - 92, - 255, - 231, - 11, - 0, - 90, - 205, - 210, - 79, - 73, - 226, - 253, - 207, - 83, - 0, - 0, - 0, - 8, - 221, - 255, - 158, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 249, - 255, - 195, - 69, - 3, - 0, - 0, - 0, - 9, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 222, - 255, - 255, - 248, - 215, - 208, - 227, - 254, - 248, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 96, - 180, - 224, - 252, - 251, - 226, - 189, - 142, - 16, - 0, - 0, - 0, - 0 - ], - "width": 17 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 157, - 252, - 252, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 13, - 254, - 255, - 255, - 236, - 1, - 0, - 0, - 0, - 0, - 63, - 255, - 253, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 116, - 255, - 210, - 235, - 255, - 86, - 0, - 0, - 0, - 0, - 170, - 255, - 168, - 193, - 255, - 139, - 0, - 0, - 0, - 0, - 223, - 255, - 127, - 152, - 255, - 192, - 0, - 0, - 0, - 21, - 255, - 255, - 85, - 110, - 255, - 244, - 3, - 0, - 0, - 74, - 255, - 255, - 43, - 68, - 255, - 255, - 43, - 0, - 0, - 127, - 255, - 252, - 6, - 26, - 255, - 255, - 96, - 0, - 0, - 181, - 255, - 255, - 252, - 253, - 255, - 255, - 149, - 0, - 1, - 234, - 255, - 239, - 212, - 212, - 243, - 255, - 202, - 0, - 31, - 255, - 255, - 126, - 0, - 0, - 148, - 255, - 249, - 6, - 85, - 255, - 255, - 75, - 0, - 0, - 99, - 255, - 255, - 52, - 138, - 255, - 255, - 25, - 0, - 0, - 49, - 255, - 255, - 105 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 246, - 216, - 142, - 20, - 0, - 216, - 255, - 254, - 209, - 229, - 255, - 255, - 207, - 5, - 216, - 255, - 244, - 0, - 0, - 97, - 255, - 255, - 68, - 216, - 255, - 244, - 0, - 0, - 11, - 255, - 255, - 105, - 216, - 255, - 244, - 0, - 0, - 27, - 255, - 255, - 87, - 216, - 255, - 244, - 0, - 18, - 147, - 255, - 240, - 21, - 216, - 255, - 255, - 253, - 255, - 255, - 207, - 52, - 0, - 216, - 255, - 254, - 209, - 231, - 255, - 255, - 163, - 8, - 216, - 255, - 244, - 0, - 2, - 104, - 255, - 255, - 119, - 216, - 255, - 244, - 0, - 0, - 3, - 238, - 255, - 194, - 216, - 255, - 244, - 0, - 0, - 0, - 208, - 255, - 222, - 216, - 255, - 244, - 0, - 0, - 1, - 230, - 255, - 207, - 216, - 255, - 244, - 0, - 0, - 72, - 255, - 255, - 150, - 216, - 255, - 254, - 201, - 217, - 255, - 255, - 242, - 33, - 216, - 255, - 255, - 255, - 255, - 236, - 172, - 42, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 70, - 188, - 238, - 249, - 221, - 144, - 16, - 0, - 0, - 72, - 255, - 255, - 243, - 215, - 255, - 255, - 194, - 1, - 0, - 195, - 255, - 243, - 23, - 0, - 123, - 255, - 255, - 57, - 4, - 251, - 255, - 197, - 0, - 0, - 75, - 255, - 255, - 102, - 20, - 255, - 255, - 188, - 0, - 0, - 69, - 255, - 255, - 112, - 24, - 255, - 255, - 188, - 0, - 0, - 29, - 108, - 108, - 48, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 188, - 0, - 0, - 41, - 152, - 152, - 67, - 21, - 255, - 255, - 189, - 0, - 0, - 69, - 255, - 255, - 111, - 4, - 251, - 255, - 203, - 0, - 0, - 75, - 255, - 255, - 98, - 0, - 194, - 255, - 247, - 23, - 0, - 127, - 255, - 255, - 48, - 0, - 69, - 254, - 255, - 242, - 209, - 255, - 255, - 189, - 1, - 0, - 0, - 68, - 193, - 242, - 252, - 229, - 150, - 17, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 244, - 212, - 135, - 15, - 0, - 216, - 255, - 254, - 209, - 228, - 255, - 255, - 205, - 4, - 216, - 255, - 244, - 0, - 1, - 149, - 255, - 255, - 82, - 216, - 255, - 244, - 0, - 0, - 74, - 255, - 255, - 134, - 216, - 255, - 244, - 0, - 0, - 65, - 255, - 255, - 155, - 216, - 255, - 244, - 0, - 0, - 64, - 255, - 255, - 156, - 216, - 255, - 244, - 0, - 0, - 64, - 255, - 255, - 156, - 216, - 255, - 244, - 0, - 0, - 64, - 255, - 255, - 156, - 216, - 255, - 244, - 0, - 0, - 64, - 255, - 255, - 156, - 216, - 255, - 244, - 0, - 0, - 64, - 255, - 255, - 156, - 216, - 255, - 244, - 0, - 0, - 66, - 255, - 255, - 153, - 216, - 255, - 244, - 0, - 0, - 79, - 255, - 255, - 129, - 216, - 255, - 244, - 0, - 1, - 154, - 255, - 255, - 71, - 216, - 255, - 254, - 201, - 224, - 255, - 255, - 195, - 2, - 216, - 255, - 255, - 255, - 248, - 216, - 137, - 13, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 1, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 252, - 252, - 150, - 216, - 255, - 254, - 208, - 208, - 208, - 124, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 254, - 200, - 200, - 166, - 0, - 216, - 255, - 255, - 255, - 255, - 212, - 0, - 216, - 255, - 245, - 4, - 4, - 4, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 254, - 200, - 200, - 200, - 129, - 216, - 255, - 255, - 255, - 255, - 255, - 164 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 1, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 252, - 252, - 119, - 216, - 255, - 254, - 208, - 208, - 208, - 98, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 254, - 200, - 200, - 154, - 0, - 216, - 255, - 255, - 255, - 255, - 196, - 0, - 216, - 255, - 245, - 4, - 4, - 4, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 67, - 190, - 238, - 250, - 226, - 158, - 29, - 0, - 0, - 66, - 254, - 255, - 244, - 216, - 254, - 255, - 222, - 10, - 0, - 188, - 255, - 244, - 25, - 0, - 98, - 255, - 255, - 87, - 2, - 246, - 255, - 198, - 0, - 0, - 41, - 255, - 255, - 131, - 18, - 255, - 255, - 188, - 0, - 0, - 27, - 188, - 188, - 103, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 188, - 0, - 138, - 252, - 252, - 252, - 158, - 24, - 255, - 255, - 188, - 0, - 114, - 208, - 251, - 255, - 160, - 24, - 255, - 255, - 188, - 0, - 0, - 0, - 228, - 255, - 160, - 19, - 255, - 255, - 189, - 0, - 0, - 0, - 231, - 255, - 160, - 2, - 247, - 255, - 207, - 0, - 0, - 5, - 250, - 255, - 160, - 0, - 186, - 255, - 250, - 30, - 0, - 88, - 255, - 255, - 160, - 0, - 69, - 255, - 255, - 245, - 209, - 253, - 235, - 255, - 160, - 0, - 0, - 77, - 200, - 248, - 243, - 165, - 78, - 255, - 160 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 209, - 252, - 249, - 0, - 0, - 0, - 225, - 252, - 229, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 255, - 200, - 200, - 200, - 250, - 255, - 232, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 212, - 255, - 253, - 4, - 4, - 4, - 229, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232, - 212, - 255, - 252, - 0, - 0, - 0, - 228, - 255, - 232 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 1, - "y": 0, - "width": 3, - "height": 15, - "dx": 5, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 193, - 252, - 252, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255, - 196, - 255, - 255 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": 0, - "width": 6, - "height": 15, - "dx": 6, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 193, - 252, - 252, - 8, - 0, - 0, - 196, - 255, - 255, - 7, - 0, - 0, - 196, - 255, - 255, - 7, - 0, - 0, - 196, - 255, - 255, - 6, - 0, - 0, - 196, - 255, - 255, - 6, - 0, - 0, - 196, - 255, - 255, - 6, - 0, - 0, - 196, - 255, - 255, - 5, - 0, - 0, - 196, - 255, - 255, - 5, - 0, - 0, - 196, - 255, - 255, - 5, - 0, - 0, - 196, - 255, - 255, - 4, - 0, - 0, - 196, - 255, - 255, - 4, - 0, - 0, - 203, - 255, - 255, - 2, - 1, - 46, - 249, - 255, - 237, - 0, - 204, - 255, - 255, - 255, - 164, - 0, - 212, - 255, - 237, - 167, - 20, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 241, - 0, - 0, - 62, - 252, - 252, - 111, - 216, - 255, - 244, - 0, - 0, - 181, - 255, - 243, - 15, - 216, - 255, - 244, - 0, - 45, - 255, - 255, - 145, - 0, - 216, - 255, - 244, - 0, - 162, - 255, - 254, - 35, - 0, - 216, - 255, - 244, - 30, - 251, - 255, - 176, - 0, - 0, - 216, - 255, - 244, - 143, - 255, - 255, - 64, - 0, - 0, - 216, - 255, - 250, - 244, - 255, - 215, - 1, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 244, - 13, - 0, - 0, - 216, - 255, - 255, - 132, - 255, - 255, - 100, - 0, - 0, - 216, - 255, - 244, - 4, - 231, - 255, - 201, - 0, - 0, - 216, - 255, - 244, - 0, - 138, - 255, - 255, - 46, - 0, - 216, - 255, - 244, - 0, - 43, - 255, - 255, - 147, - 0, - 216, - 255, - 244, - 0, - 0, - 202, - 255, - 239, - 9, - 216, - 255, - 244, - 0, - 0, - 105, - 255, - 255, - 93, - 216, - 255, - 244, - 0, - 0, - 17, - 248, - 255, - 194 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 1, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 241, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 232, - 232, - 232, - 149, - 216, - 255, - 255, - 255, - 255, - 255, - 164 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 1, - "y": 0, - "width": 11, - "height": 15, - "dx": 13, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 160, - 252, - 252, - 89, - 0, - 0, - 0, - 87, - 252, - 252, - 148, - 167, - 255, - 255, - 143, - 0, - 0, - 0, - 143, - 255, - 255, - 155, - 171, - 255, - 255, - 197, - 0, - 0, - 0, - 199, - 255, - 255, - 159, - 176, - 255, - 255, - 247, - 5, - 0, - 7, - 249, - 255, - 255, - 164, - 180, - 255, - 254, - 255, - 49, - 0, - 54, - 255, - 254, - 255, - 168, - 184, - 255, - 208, - 255, - 103, - 0, - 110, - 255, - 210, - 255, - 173, - 188, - 255, - 148, - 255, - 156, - 0, - 166, - 255, - 150, - 255, - 177, - 193, - 255, - 102, - 243, - 210, - 0, - 221, - 237, - 109, - 255, - 182, - 197, - 255, - 95, - 189, - 253, - 33, - 255, - 183, - 103, - 255, - 186, - 201, - 255, - 91, - 134, - 255, - 138, - 255, - 128, - 99, - 255, - 191, - 205, - 255, - 87, - 78, - 255, - 238, - 255, - 72, - 94, - 255, - 195, - 210, - 255, - 83, - 23, - 255, - 255, - 255, - 18, - 89, - 255, - 200, - 214, - 255, - 78, - 0, - 223, - 255, - 218, - 0, - 85, - 255, - 204, - 218, - 255, - 74, - 0, - 168, - 255, - 163, - 0, - 80, - 255, - 209, - 222, - 255, - 70, - 0, - 112, - 255, - 108, - 0, - 75, - 255, - 214 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 75, - 0, - 0, - 40, - 252, - 252, - 44, - 216, - 255, - 188, - 0, - 0, - 40, - 255, - 255, - 44, - 216, - 255, - 255, - 46, - 0, - 40, - 255, - 255, - 44, - 216, - 255, - 255, - 158, - 0, - 40, - 255, - 255, - 44, - 216, - 255, - 255, - 249, - 24, - 40, - 255, - 255, - 44, - 216, - 255, - 255, - 255, - 129, - 40, - 255, - 255, - 44, - 216, - 255, - 215, - 255, - 234, - 48, - 255, - 255, - 44, - 216, - 255, - 139, - 224, - 255, - 139, - 255, - 255, - 44, - 216, - 255, - 136, - 117, - 255, - 240, - 255, - 255, - 44, - 216, - 255, - 136, - 18, - 246, - 255, - 255, - 255, - 44, - 216, - 255, - 136, - 0, - 154, - 255, - 255, - 255, - 44, - 216, - 255, - 136, - 0, - 45, - 255, - 255, - 255, - 44, - 216, - 255, - 136, - 0, - 0, - 191, - 255, - 255, - 44, - 216, - 255, - 136, - 0, - 0, - 81, - 255, - 255, - 44, - 216, - 255, - 136, - 0, - 0, - 4, - 224, - 255, - 44 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 68, - 189, - 237, - 250, - 225, - 154, - 25, - 0, - 0, - 72, - 254, - 255, - 243, - 216, - 254, - 255, - 222, - 11, - 0, - 200, - 255, - 244, - 23, - 0, - 99, - 255, - 255, - 106, - 4, - 253, - 255, - 199, - 0, - 0, - 29, - 255, - 255, - 169, - 22, - 255, - 255, - 192, - 0, - 0, - 21, - 255, - 255, - 194, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 22, - 255, - 255, - 192, - 0, - 0, - 21, - 255, - 255, - 193, - 3, - 250, - 255, - 199, - 0, - 0, - 28, - 255, - 255, - 169, - 0, - 192, - 255, - 244, - 22, - 0, - 96, - 255, - 255, - 110, - 0, - 70, - 255, - 255, - 239, - 208, - 253, - 255, - 223, - 12, - 0, - 0, - 71, - 190, - 241, - 254, - 229, - 161, - 26, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 252, - 231, - 160, - 25, - 0, - 216, - 255, - 254, - 209, - 222, - 255, - 255, - 212, - 6, - 216, - 255, - 244, - 0, - 0, - 106, - 255, - 255, - 77, - 216, - 255, - 244, - 0, - 0, - 39, - 255, - 255, - 122, - 216, - 255, - 244, - 0, - 0, - 41, - 255, - 255, - 127, - 216, - 255, - 244, - 0, - 0, - 112, - 255, - 255, - 85, - 216, - 255, - 254, - 201, - 220, - 255, - 255, - 221, - 10, - 216, - 255, - 255, - 255, - 255, - 233, - 160, - 28, - 0, - 216, - 255, - 245, - 4, - 3, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 0, - "y": -3, - "width": 10, - "height": 18, - "dx": 11, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 68, - 189, - 237, - 250, - 225, - 154, - 25, - 0, - 0, - 72, - 254, - 255, - 243, - 216, - 254, - 255, - 222, - 11, - 0, - 200, - 255, - 244, - 23, - 0, - 99, - 255, - 255, - 105, - 4, - 253, - 255, - 199, - 0, - 0, - 29, - 255, - 255, - 168, - 22, - 255, - 255, - 192, - 0, - 0, - 21, - 255, - 255, - 194, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 24, - 255, - 255, - 192, - 0, - 0, - 20, - 255, - 255, - 196, - 22, - 255, - 255, - 192, - 0, - 0, - 21, - 255, - 255, - 193, - 3, - 250, - 255, - 199, - 0, - 0, - 28, - 255, - 255, - 166, - 0, - 192, - 255, - 244, - 22, - 0, - 96, - 255, - 255, - 106, - 0, - 70, - 255, - 255, - 239, - 208, - 253, - 255, - 221, - 11, - 0, - 0, - 71, - 190, - 241, - 255, - 255, - 229, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 229, - 255, - 136, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 239, - 245, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 133, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 252, - 252, - 243, - 214, - 142, - 22, - 0, - 216, - 255, - 254, - 209, - 231, - 255, - 255, - 217, - 11, - 216, - 255, - 244, - 0, - 1, - 123, - 255, - 255, - 94, - 216, - 255, - 244, - 0, - 0, - 33, - 255, - 255, - 138, - 216, - 255, - 244, - 0, - 0, - 34, - 255, - 255, - 135, - 216, - 255, - 244, - 0, - 1, - 130, - 255, - 255, - 90, - 216, - 255, - 254, - 202, - 231, - 255, - 255, - 217, - 12, - 216, - 255, - 255, - 255, - 255, - 255, - 220, - 19, - 0, - 216, - 255, - 245, - 4, - 173, - 255, - 247, - 9, - 0, - 216, - 255, - 244, - 0, - 106, - 255, - 255, - 72, - 0, - 216, - 255, - 244, - 0, - 39, - 255, - 255, - 145, - 0, - 216, - 255, - 244, - 0, - 1, - 228, - 255, - 218, - 0, - 216, - 255, - 244, - 0, - 0, - 161, - 255, - 255, - 35, - 216, - 255, - 244, - 0, - 0, - 94, - 255, - 255, - 107, - 216, - 255, - 244, - 0, - 0, - 27, - 255, - 255, - 180 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 0, - "y": 0, - "width": 9, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 4, - 118, - 214, - 249, - 235, - 167, - 29, - 0, - 0, - 149, - 255, - 255, - 219, - 245, - 255, - 218, - 7, - 17, - 252, - 255, - 147, - 0, - 46, - 255, - 255, - 86, - 53, - 255, - 255, - 112, - 0, - 0, - 222, - 255, - 139, - 36, - 255, - 255, - 206, - 9, - 0, - 65, - 38, - 2, - 1, - 222, - 255, - 255, - 192, - 18, - 0, - 0, - 0, - 0, - 64, - 251, - 255, - 255, - 217, - 36, - 0, - 0, - 0, - 0, - 73, - 242, - 255, - 255, - 235, - 45, - 0, - 0, - 0, - 0, - 45, - 224, - 255, - 255, - 226, - 17, - 0, - 0, - 0, - 0, - 24, - 210, - 255, - 255, - 132, - 18, - 111, - 164, - 45, - 0, - 38, - 255, - 255, - 204, - 38, - 255, - 255, - 96, - 0, - 0, - 215, - 255, - 220, - 2, - 229, - 255, - 194, - 6, - 11, - 237, - 255, - 178, - 0, - 99, - 255, - 255, - 227, - 232, - 255, - 252, - 59, - 0, - 0, - 89, - 201, - 247, - 247, - 194, - 63, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 8, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 241, - 192, - 208, - 225, - 255, - 255, - 230, - 208, - 199, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 116, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 245, - 252, - 189, - 0, - 0, - 12, - 252, - 252, - 170, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 248, - 255, - 192, - 0, - 0, - 12, - 255, - 255, - 172, - 244, - 255, - 193, - 0, - 0, - 14, - 255, - 255, - 166, - 222, - 255, - 207, - 0, - 0, - 29, - 255, - 255, - 143, - 165, - 255, - 252, - 35, - 0, - 106, - 255, - 255, - 85, - 51, - 251, - 255, - 244, - 209, - 254, - 255, - 217, - 7, - 0, - 63, - 189, - 240, - 254, - 231, - 161, - 28, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 10, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 117, - 252, - 248, - 9, - 0, - 0, - 59, - 252, - 252, - 73, - 66, - 255, - 255, - 53, - 0, - 0, - 107, - 255, - 255, - 21, - 15, - 255, - 255, - 102, - 0, - 0, - 154, - 255, - 223, - 0, - 0, - 216, - 255, - 152, - 0, - 0, - 201, - 255, - 170, - 0, - 0, - 163, - 255, - 201, - 0, - 3, - 246, - 255, - 116, - 0, - 0, - 110, - 255, - 247, - 4, - 39, - 255, - 255, - 63, - 0, - 0, - 56, - 255, - 255, - 43, - 86, - 255, - 254, - 13, - 0, - 0, - 8, - 251, - 255, - 93, - 133, - 255, - 212, - 0, - 0, - 0, - 0, - 206, - 255, - 142, - 180, - 255, - 159, - 0, - 0, - 0, - 0, - 153, - 255, - 191, - 227, - 255, - 105, - 0, - 0, - 0, - 0, - 100, - 255, - 246, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 249, - 6, - 0, - 0, - 0, - 0, - 4, - 246, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 95, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 0, - "y": 0, - "width": 14, - "height": 15, - "dx": 14, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 77, - 252, - 252, - 13, - 0, - 53, - 252, - 215, - 0, - 0, - 92, - 252, - 237, - 1, - 41, - 255, - 255, - 45, - 0, - 97, - 255, - 253, - 9, - 0, - 126, - 255, - 204, - 0, - 7, - 253, - 255, - 78, - 0, - 141, - 255, - 255, - 49, - 0, - 160, - 255, - 166, - 0, - 0, - 222, - 255, - 111, - 0, - 184, - 255, - 255, - 94, - 0, - 193, - 255, - 129, - 0, - 0, - 184, - 255, - 144, - 0, - 228, - 255, - 255, - 138, - 0, - 227, - 255, - 91, - 0, - 0, - 146, - 255, - 177, - 16, - 255, - 216, - 255, - 182, - 7, - 254, - 255, - 53, - 0, - 0, - 109, - 255, - 210, - 58, - 255, - 151, - 232, - 226, - 38, - 255, - 255, - 16, - 0, - 0, - 71, - 255, - 244, - 102, - 255, - 107, - 187, - 255, - 86, - 255, - 234, - 0, - 0, - 0, - 33, - 255, - 255, - 166, - 255, - 63, - 143, - 255, - 163, - 255, - 196, - 0, - 0, - 0, - 3, - 249, - 255, - 239, - 255, - 20, - 98, - 255, - 237, - 255, - 159, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 231, - 0, - 54, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 186, - 0, - 11, - 254, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 142, - 0, - 0, - 220, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 98, - 0, - 0, - 176, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 54, - 0, - 0, - 131, - 255, - 227, - 0, - 0, - 0 - ], - "width": 14 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 129, - 252, - 250, - 32, - 0, - 0, - 144, - 252, - 221, - 2, - 28, - 252, - 255, - 138, - 0, - 5, - 234, - 255, - 126, - 0, - 0, - 171, - 255, - 238, - 10, - 76, - 255, - 253, - 29, - 0, - 0, - 62, - 255, - 255, - 100, - 169, - 255, - 181, - 0, - 0, - 0, - 1, - 209, - 255, - 216, - 247, - 255, - 80, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 232, - 5, - 0, - 0, - 0, - 0, - 10, - 238, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 3, - 226, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 234, - 7, - 0, - 0, - 0, - 22, - 250, - 255, - 153, - 255, - 255, - 94, - 0, - 0, - 0, - 115, - 255, - 239, - 9, - 211, - 255, - 204, - 1, - 0, - 1, - 215, - 255, - 150, - 0, - 101, - 255, - 255, - 57, - 0, - 59, - 255, - 255, - 53, - 0, - 10, - 237, - 255, - 167, - 0, - 159, - 255, - 212, - 1, - 0, - 0, - 136, - 255, - 251, - 27 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 10, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 168, - 252, - 236, - 5, - 0, - 0, - 160, - 252, - 231, - 4, - 85, - 255, - 255, - 68, - 0, - 4, - 237, - 255, - 153, - 0, - 10, - 245, - 255, - 148, - 0, - 62, - 255, - 255, - 67, - 0, - 0, - 168, - 255, - 228, - 2, - 140, - 255, - 235, - 4, - 0, - 0, - 82, - 255, - 255, - 54, - 219, - 255, - 152, - 0, - 0, - 0, - 9, - 243, - 255, - 174, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 235, - 4, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 8, - 241, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 254, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 252, - 0, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 0, - "y": 0, - "width": 8, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 32, - 252, - 252, - 252, - 252, - 252, - 252, - 154, - 26, - 208, - 208, - 208, - 222, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 46, - 0, - 0, - 0, - 1, - 218, - 255, - 210, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 143, - 255, - 254, - 29, - 0, - 0, - 0, - 3, - 231, - 255, - 191, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 159, - 255, - 249, - 16, - 0, - 0, - 0, - 9, - 242, - 255, - 172, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 175, - 255, - 239, - 7, - 0, - 0, - 0, - 17, - 249, - 255, - 154, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 222, - 200, - 200, - 200, - 125, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 160 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 1, - "y": -3, - "width": 5, - "height": 18, - "dx": 7, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 229, - 252, - 252, - 252, - 170, - 233, - 255, - 122, - 36, - 25, - 233, - 255, - 100, - 0, - 0, - 233, - 255, - 100, - 0, - 0, - 234, - 255, - 100, - 0, - 0, - 234, - 255, - 100, - 0, - 0, - 234, - 255, - 100, - 0, - 0, - 234, - 255, - 100, - 0, - 0, - 234, - 255, - 100, - 0, - 0, - 235, - 255, - 100, - 0, - 0, - 235, - 255, - 100, - 0, - 0, - 235, - 255, - 100, - 0, - 0, - 235, - 255, - 100, - 0, - 0, - 236, - 255, - 100, - 0, - 0, - 236, - 255, - 100, - 0, - 0, - 236, - 255, - 100, - 0, - 0, - 236, - 255, - 120, - 32, - 21, - 236, - 255, - 255, - 255, - 168 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 0, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 47, - 252, - 158, - 0, - 0, - 0, - 0, - 1, - 230, - 233, - 2, - 0, - 0, - 0, - 0, - 156, - 255, - 53, - 0, - 0, - 0, - 0, - 81, - 255, - 127, - 0, - 0, - 0, - 0, - 13, - 250, - 202, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 23, - 0, - 0, - 0, - 0, - 114, - 255, - 95, - 0, - 0, - 0, - 0, - 39, - 255, - 169, - 0, - 0, - 0, - 0, - 1, - 221, - 240, - 5, - 0, - 0, - 0, - 0, - 146, - 255, - 62, - 0, - 0, - 0, - 0, - 72, - 255, - 137, - 0, - 0, - 0, - 0, - 8, - 246, - 211, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 30, - 0, - 0, - 0, - 0, - 104, - 255, - 104, - 0, - 0, - 0, - 0, - 30, - 255, - 179 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 0, - "y": -3, - "width": 5, - "height": 18, - "dx": 6, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 146, - 252, - 252, - 252, - 249, - 21, - 36, - 105, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 0, - 0, - 80, - 255, - 252, - 19, - 32, - 102, - 255, - 252, - 148, - 255, - 255, - 255, - 252 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 0, - "y": 8, - "width": 9, - "height": 7, - "dx": 9, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 0, - 0, - 10, - 234, - 252, - 200, - 1, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 2, - 215, - 255, - 171, - 255, - 172, - 0, - 0, - 0, - 71, - 255, - 224, - 20, - 250, - 253, - 32, - 0, - 0, - 183, - 255, - 131, - 0, - 175, - 255, - 141, - 0, - 41, - 255, - 255, - 38, - 0, - 81, - 255, - 241, - 13, - 2, - 4, - 4, - 0, - 0, - 1, - 4, - 4, - 1 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -3, - "width": 7, - "height": 2, - "dx": 7, - "glyphBitmap": { - "height": 2, - "pixelArray": [ - 204, - 204, - 204, - 204, - 204, - 204, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 196 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 198, - 40, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 255, - 255, - 255, - 255, - 254, - 135, - 100, - 100, - 114, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 148, - 120, - 1, - 91, - 106, - 12, - 83, - 148, - 148, - 148, - 148, - 148, - 148, - 214, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 6, - 241, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 252, - 223, - 8, - 3, - 3, - 1, - 167, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 204, - 204, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 160, - 148, - 148, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 132, - 132, - 132, - 132, - 132, - 132, - 76, - 24, - 123, - 113, - 3, - 110, - 132, - 197, - 255, - 255, - 255, - 255, - 201, - 140, - 140, - 140, - 140, - 140, - 140, - 78, - 22, - 115, - 105, - 2, - 113, - 140, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 107, - 92, - 92, - 129, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 4, - 4, - 4, - 16, - 238, - 255, - 154, - 5, - 61, - 255, - 255, - 91, - 4, - 124, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 225, - 255, - 128, - 0, - 33, - 255, - 255, - 64, - 0, - 97, - 255, - 255, - 255, - 255, - 177, - 92, - 92, - 92, - 103, - 249, - 255, - 197, - 93, - 137, - 255, - 255, - 156, - 92, - 178, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61449 - } - }, - { - "encoding": 97, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 9, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 9, - 140, - 224, - 248, - 218, - 109, - 0, - 0, - 152, - 255, - 252, - 227, - 255, - 255, - 73, - 5, - 245, - 255, - 130, - 4, - 239, - 255, - 154, - 19, - 176, - 176, - 69, - 0, - 217, - 255, - 175, - 0, - 0, - 0, - 36, - 141, - 247, - 255, - 176, - 0, - 10, - 148, - 253, - 226, - 239, - 255, - 176, - 0, - 177, - 255, - 212, - 19, - 216, - 255, - 176, - 32, - 255, - 255, - 84, - 0, - 216, - 255, - 176, - 60, - 255, - 255, - 86, - 11, - 231, - 255, - 179, - 13, - 244, - 255, - 242, - 230, - 232, - 255, - 190, - 0, - 80, - 225, - 242, - 129, - 141, - 255, - 214 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 1, - "y": 0, - "width": 8, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 249, - 252, - 158, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 175, - 156, - 242, - 220, - 60, - 0, - 252, - 255, - 255, - 225, - 252, - 255, - 221, - 1, - 252, - 255, - 176, - 1, - 127, - 255, - 255, - 41, - 252, - 255, - 160, - 0, - 86, - 255, - 255, - 67, - 252, - 255, - 160, - 0, - 84, - 255, - 255, - 68, - 252, - 255, - 160, - 0, - 84, - 255, - 255, - 68, - 252, - 255, - 160, - 0, - 84, - 255, - 255, - 68, - 252, - 255, - 160, - 0, - 87, - 255, - 255, - 64, - 252, - 255, - 163, - 0, - 121, - 255, - 255, - 34, - 252, - 255, - 255, - 212, - 247, - 255, - 213, - 1, - 252, - 255, - 181, - 163, - 248, - 215, - 52, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 8, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 18, - 159, - 234, - 248, - 213, - 107, - 0, - 0, - 176, - 255, - 252, - 225, - 255, - 255, - 66, - 14, - 253, - 255, - 131, - 3, - 229, - 255, - 141, - 50, - 255, - 255, - 102, - 0, - 205, - 255, - 160, - 56, - 255, - 255, - 100, - 0, - 32, - 40, - 25, - 56, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 100, - 0, - 74, - 92, - 58, - 50, - 255, - 255, - 101, - 0, - 205, - 255, - 159, - 15, - 254, - 255, - 131, - 2, - 229, - 255, - 138, - 0, - 180, - 255, - 252, - 225, - 255, - 255, - 61, - 0, - 21, - 165, - 239, - 252, - 214, - 101, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 0, - "y": 0, - "width": 8, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 150, - 252, - 252, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 0, - 38, - 202, - 247, - 180, - 184, - 255, - 255, - 0, - 192, - 255, - 255, - 223, - 255, - 255, - 255, - 15, - 254, - 255, - 152, - 0, - 163, - 255, - 255, - 43, - 255, - 255, - 110, - 0, - 152, - 255, - 255, - 48, - 255, - 255, - 108, - 0, - 152, - 255, - 255, - 48, - 255, - 255, - 108, - 0, - 152, - 255, - 255, - 48, - 255, - 255, - 108, - 0, - 152, - 255, - 255, - 44, - 255, - 255, - 110, - 0, - 152, - 255, - 255, - 18, - 255, - 255, - 146, - 0, - 154, - 255, - 255, - 0, - 209, - 255, - 253, - 211, - 253, - 255, - 255, - 0, - 51, - 209, - 251, - 183, - 183, - 255, - 255 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 8, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 17, - 155, - 233, - 249, - 211, - 86, - 0, - 0, - 173, - 255, - 251, - 224, - 255, - 254, - 47, - 13, - 253, - 255, - 124, - 1, - 219, - 255, - 135, - 49, - 255, - 255, - 97, - 0, - 197, - 255, - 170, - 56, - 255, - 255, - 254, - 252, - 255, - 255, - 180, - 56, - 255, - 255, - 226, - 208, - 208, - 208, - 147, - 56, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 97, - 0, - 148, - 192, - 135, - 14, - 253, - 255, - 126, - 3, - 224, - 255, - 156, - 0, - 179, - 255, - 253, - 234, - 255, - 255, - 73, - 0, - 21, - 164, - 238, - 252, - 214, - 104, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 6, - "height": 15, - "dx": 6, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 1, - 132, - 232, - 249, - 155, - 0, - 62, - 255, - 255, - 237, - 145, - 0, - 111, - 255, - 255, - 54, - 0, - 0, - 120, - 255, - 255, - 33, - 0, - 166, - 254, - 255, - 255, - 253, - 166, - 137, - 231, - 255, - 255, - 214, - 137, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0, - 0, - 120, - 255, - 255, - 32, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 0, - "y": -3, - "width": 10, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 0, - 0, - 12, - 149, - 234, - 246, - 189, - 40, - 169, - 187, - 0, - 0, - 159, - 255, - 250, - 225, - 255, - 250, - 230, - 129, - 2, - 7, - 246, - 255, - 101, - 2, - 215, - 255, - 90, - 0, - 0, - 37, - 255, - 255, - 65, - 0, - 181, - 255, - 146, - 0, - 0, - 36, - 255, - 255, - 65, - 0, - 184, - 255, - 155, - 0, - 0, - 5, - 244, - 255, - 126, - 15, - 227, - 255, - 114, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 241, - 28, - 0, - 0, - 0, - 132, - 242, - 182, - 204, - 165, - 47, - 0, - 0, - 0, - 40, - 255, - 223, - 86, - 56, - 32, - 3, - 0, - 0, - 0, - 15, - 214, - 255, - 255, - 255, - 255, - 236, - 118, - 0, - 0, - 3, - 149, - 253, - 120, - 127, - 159, - 248, - 255, - 42, - 0, - 98, - 255, - 207, - 1, - 0, - 1, - 196, - 255, - 79, - 0, - 134, - 255, - 255, - 231, - 207, - 225, - 255, - 252, - 28, - 0, - 19, - 156, - 226, - 251, - 255, - 246, - 202, - 83, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 1, - "y": 0, - "width": 8, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 241, - 252, - 158, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 164, - 115, - 219, - 245, - 126, - 0, - 244, - 255, - 253, - 232, - 247, - 255, - 252, - 15, - 244, - 255, - 189, - 6, - 126, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40, - 244, - 255, - 160, - 0, - 112, - 255, - 255, - 40 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 1, - "y": 0, - "width": 3, - "height": 15, - "dx": 5, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 233, - 252, - 174, - 192, - 208, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 252, - 170, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172, - 236, - 255, - 172 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -3, - "width": 5, - "height": 18, - "dx": 5, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 189, - 252, - 217, - 0, - 0, - 156, - 208, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 252, - 213, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 192, - 255, - 216, - 0, - 0, - 193, - 255, - 216, - 0, - 9, - 223, - 255, - 209, - 67, - 249, - 255, - 255, - 140, - 58, - 245, - 244, - 163, - 15 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 1, - "y": 0, - "width": 9, - "height": 15, - "dx": 9, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 249, - 252, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 152, - 0, - 16, - 229, - 252, - 210, - 6, - 252, - 255, - 152, - 0, - 152, - 255, - 255, - 63, - 0, - 252, - 255, - 152, - 59, - 255, - 255, - 161, - 0, - 0, - 252, - 255, - 158, - 213, - 255, - 238, - 22, - 0, - 0, - 252, - 255, - 244, - 255, - 255, - 151, - 0, - 0, - 0, - 252, - 255, - 255, - 234, - 255, - 230, - 4, - 0, - 0, - 252, - 255, - 204, - 65, - 255, - 255, - 79, - 0, - 0, - 252, - 255, - 152, - 2, - 223, - 255, - 182, - 0, - 0, - 252, - 255, - 152, - 0, - 132, - 255, - 254, - 31, - 0, - 252, - 255, - 152, - 0, - 40, - 255, - 255, - 130, - 0, - 252, - 255, - 152, - 0, - 0, - 203, - 255, - 229, - 4 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 1, - "y": 0, - "width": 3, - "height": 15, - "dx": 5, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 213, - 252, - 189, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192, - 216, - 255, - 192 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 1, - "y": 0, - "width": 12, - "height": 11, - "dx": 14, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 252, - 252, - 131, - 154, - 237, - 235, - 85, - 57, - 194, - 247, - 196, - 24, - 255, - 255, - 254, - 229, - 247, - 255, - 241, - 247, - 222, - 255, - 255, - 135, - 255, - 255, - 153, - 3, - 113, - 255, - 255, - 59, - 1, - 213, - 255, - 178, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180, - 255, - 255, - 116, - 0, - 96, - 255, - 255, - 24, - 0, - 196, - 255, - 180 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 1, - "y": 0, - "width": 8, - "height": 11, - "dx": 9, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 252, - 252, - 157, - 123, - 224, - 241, - 105, - 0, - 255, - 255, - 255, - 228, - 251, - 255, - 240, - 3, - 255, - 255, - 178, - 3, - 150, - 255, - 255, - 19, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20, - 255, - 255, - 152, - 0, - 136, - 255, - 255, - 20 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 9, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 16, - 154, - 233, - 249, - 211, - 95, - 0, - 0, - 175, - 255, - 251, - 226, - 255, - 255, - 76, - 18, - 254, - 255, - 127, - 3, - 223, - 255, - 171, - 52, - 255, - 255, - 94, - 0, - 193, - 255, - 208, - 56, - 255, - 255, - 92, - 0, - 192, - 255, - 212, - 56, - 255, - 255, - 92, - 0, - 192, - 255, - 212, - 56, - 255, - 255, - 92, - 0, - 192, - 255, - 212, - 53, - 255, - 255, - 93, - 0, - 194, - 255, - 208, - 19, - 254, - 255, - 121, - 2, - 222, - 255, - 172, - 0, - 179, - 255, - 248, - 217, - 255, - 255, - 80, - 0, - 19, - 160, - 238, - 253, - 216, - 102, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 1, - "y": -3, - "width": 8, - "height": 14, - "dx": 9, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 252, - 252, - 172, - 159, - 242, - 218, - 57, - 0, - 255, - 255, - 255, - 224, - 253, - 255, - 215, - 1, - 255, - 255, - 168, - 1, - 134, - 255, - 255, - 33, - 255, - 255, - 152, - 0, - 90, - 255, - 255, - 59, - 255, - 255, - 152, - 0, - 88, - 255, - 255, - 60, - 255, - 255, - 152, - 0, - 88, - 255, - 255, - 60, - 255, - 255, - 152, - 0, - 88, - 255, - 255, - 60, - 255, - 255, - 152, - 0, - 92, - 255, - 255, - 56, - 255, - 255, - 155, - 0, - 131, - 255, - 255, - 26, - 255, - 255, - 254, - 212, - 250, - 255, - 205, - 0, - 255, - 255, - 176, - 167, - 249, - 212, - 47, - 0, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 0, - "y": -3, - "width": 9, - "height": 14, - "dx": 9, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 35, - 199, - 246, - 179, - 177, - 252, - 252, - 8, - 0, - 189, - 255, - 255, - 222, - 255, - 255, - 255, - 8, - 15, - 255, - 255, - 152, - 0, - 159, - 255, - 255, - 8, - 43, - 255, - 255, - 110, - 0, - 148, - 255, - 255, - 8, - 48, - 255, - 255, - 108, - 0, - 148, - 255, - 255, - 8, - 48, - 255, - 255, - 108, - 0, - 148, - 255, - 255, - 8, - 48, - 255, - 255, - 108, - 0, - 148, - 255, - 255, - 8, - 44, - 255, - 255, - 110, - 0, - 148, - 255, - 255, - 8, - 18, - 255, - 255, - 147, - 0, - 150, - 255, - 255, - 8, - 0, - 209, - 255, - 254, - 212, - 253, - 255, - 255, - 8, - 0, - 50, - 208, - 251, - 184, - 180, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 8 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 1, - "y": 0, - "width": 6, - "height": 12, - "dx": 7, - "glyphBitmap": { - "height": 12, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 3, - 245, - 252, - 159, - 127, - 236, - 84, - 248, - 255, - 245, - 251, - 217, - 83, - 248, - 255, - 238, - 40, - 0, - 2, - 248, - 255, - 161, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0, - 248, - 255, - 160, - 0, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 8, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 49, - 184, - 246, - 225, - 120, - 1, - 0, - 9, - 234, - 255, - 234, - 244, - 255, - 104, - 0, - 73, - 255, - 255, - 22, - 42, - 254, - 204, - 0, - 56, - 255, - 255, - 130, - 0, - 70, - 9, - 0, - 1, - 191, - 255, - 255, - 142, - 2, - 0, - 0, - 0, - 19, - 200, - 255, - 255, - 169, - 5, - 0, - 0, - 0, - 9, - 166, - 255, - 255, - 147, - 0, - 3, - 65, - 58, - 1, - 164, - 255, - 252, - 12, - 116, - 255, - 202, - 5, - 72, - 255, - 255, - 24, - 18, - 237, - 255, - 226, - 240, - 255, - 205, - 1, - 0, - 51, - 187, - 248, - 238, - 165, - 29, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 6, - "height": 14, - "dx": 6, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 142, - 252, - 252, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 162, - 255, - 255, - 255, - 253, - 182, - 134, - 235, - 255, - 255, - 211, - 150, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 144, - 255, - 255, - 12, - 0, - 0, - 134, - 255, - 255, - 61, - 12, - 0, - 78, - 255, - 255, - 255, - 212, - 0, - 2, - 151, - 243, - 252, - 194 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 9, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 20, - 252, - 252, - 126, - 0, - 162, - 252, - 241, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 128, - 0, - 164, - 255, - 244, - 20, - 255, - 255, - 144, - 4, - 185, - 255, - 244, - 4, - 243, - 255, - 253, - 237, - 251, - 255, - 244, - 0, - 115, - 245, - 222, - 108, - 166, - 255, - 244 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 8, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 169, - 252, - 214, - 0, - 33, - 252, - 252, - 91, - 122, - 255, - 250, - 3, - 67, - 255, - 255, - 42, - 72, - 255, - 255, - 31, - 101, - 255, - 246, - 3, - 22, - 255, - 255, - 66, - 135, - 255, - 199, - 0, - 0, - 227, - 255, - 101, - 169, - 255, - 150, - 0, - 0, - 177, - 255, - 136, - 203, - 255, - 100, - 0, - 0, - 127, - 255, - 170, - 237, - 255, - 51, - 0, - 0, - 77, - 255, - 220, - 255, - 251, - 7, - 0, - 0, - 26, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 109, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 0, - "y": 0, - "width": 11, - "height": 11, - "dx": 11, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 116, - 252, - 170, - 0, - 88, - 252, - 181, - 0, - 77, - 252, - 186, - 78, - 255, - 206, - 0, - 131, - 255, - 221, - 0, - 115, - 255, - 148, - 39, - 255, - 241, - 1, - 173, - 255, - 253, - 7, - 152, - 255, - 107, - 5, - 251, - 255, - 18, - 214, - 255, - 255, - 43, - 188, - 255, - 67, - 0, - 216, - 255, - 58, - 251, - 229, - 255, - 82, - 225, - 255, - 26, - 0, - 177, - 255, - 128, - 255, - 138, - 255, - 128, - 254, - 242, - 1, - 0, - 138, - 255, - 204, - 255, - 64, - 238, - 201, - 255, - 202, - 0, - 0, - 98, - 255, - 255, - 255, - 16, - 192, - 254, - 255, - 161, - 0, - 0, - 59, - 255, - 255, - 223, - 0, - 147, - 255, - 255, - 121, - 0, - 0, - 20, - 255, - 255, - 175, - 0, - 101, - 255, - 255, - 80, - 0, - 0, - 0, - 236, - 255, - 128, - 0, - 55, - 255, - 255, - 40, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 8, - "height": 11, - "dx": 8, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 138, - 252, - 238, - 13, - 1, - 210, - 252, - 101, - 32, - 253, - 255, - 109, - 54, - 255, - 240, - 12, - 0, - 170, - 255, - 219, - 153, - 255, - 142, - 0, - 0, - 56, - 255, - 255, - 253, - 254, - 36, - 0, - 0, - 0, - 198, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 97, - 0, - 0, - 0, - 12, - 241, - 255, - 255, - 180, - 0, - 0, - 0, - 101, - 255, - 248, - 255, - 255, - 44, - 0, - 1, - 206, - 255, - 112, - 233, - 255, - 160, - 0, - 55, - 255, - 247, - 16, - 122, - 255, - 251, - 28, - 160, - 255, - 165, - 0, - 17, - 243, - 255, - 141 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -3, - "width": 8, - "height": 14, - "dx": 8, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 191, - 252, - 189, - 0, - 0, - 218, - 252, - 161, - 131, - 255, - 239, - 1, - 9, - 254, - 255, - 107, - 67, - 255, - 255, - 31, - 48, - 255, - 255, - 50, - 9, - 249, - 255, - 80, - 90, - 255, - 245, - 4, - 0, - 193, - 255, - 128, - 131, - 255, - 191, - 0, - 0, - 127, - 255, - 176, - 173, - 255, - 134, - 0, - 0, - 61, - 255, - 224, - 215, - 255, - 76, - 0, - 0, - 6, - 245, - 255, - 253, - 255, - 20, - 0, - 0, - 0, - 186, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 45, - 0, - 0, - 0, - 212, - 252, - 255, - 201, - 1, - 0, - 0, - 0, - 242, - 225, - 158, - 25, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 0, - "y": 0, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 20, - 252, - 252, - 252, - 252, - 252, - 134, - 17, - 208, - 208, - 220, - 255, - 255, - 119, - 0, - 0, - 0, - 126, - 255, - 253, - 28, - 0, - 0, - 5, - 229, - 255, - 176, - 0, - 0, - 0, - 82, - 255, - 255, - 73, - 0, - 0, - 0, - 189, - 255, - 223, - 3, - 0, - 0, - 41, - 255, - 255, - 121, - 0, - 0, - 0, - 145, - 255, - 251, - 24, - 0, - 0, - 11, - 241, - 255, - 170, - 0, - 0, - 0, - 86, - 255, - 255, - 224, - 200, - 200, - 100, - 96, - 255, - 255, - 255, - 255, - 255, - 128 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 0, - "y": -3, - "width": 6, - "height": 18, - "dx": 6, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 76, - 211, - 249, - 233, - 0, - 0, - 226, - 255, - 255, - 198, - 0, - 2, - 255, - 255, - 163, - 0, - 0, - 4, - 255, - 255, - 144, - 0, - 0, - 4, - 255, - 255, - 144, - 0, - 0, - 6, - 255, - 255, - 143, - 0, - 0, - 32, - 255, - 255, - 119, - 0, - 35, - 228, - 255, - 233, - 35, - 0, - 44, - 255, - 255, - 176, - 5, - 0, - 1, - 72, - 255, - 255, - 84, - 0, - 0, - 12, - 255, - 255, - 129, - 0, - 0, - 5, - 255, - 255, - 144, - 0, - 0, - 4, - 255, - 255, - 144, - 0, - 0, - 4, - 255, - 255, - 144, - 0, - 0, - 3, - 255, - 255, - 145, - 0, - 0, - 1, - 249, - 255, - 172, - 0, - 0, - 0, - 205, - 255, - 255, - 196, - 0, - 0, - 55, - 206, - 252, - 236 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 1, - "y": -3, - "width": 3, - "height": 18, - "dx": 5, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 182, - 252, - 134, - 185, - 255, - 136, - 185, - 255, - 136, - 185, - 255, - 136, - 186, - 255, - 136, - 186, - 255, - 136, - 186, - 255, - 136, - 186, - 255, - 136, - 186, - 255, - 136, - 187, - 255, - 136, - 187, - 255, - 136, - 187, - 255, - 136, - 187, - 255, - 136, - 188, - 255, - 136, - 188, - 255, - 136, - 188, - 255, - 136, - 188, - 255, - 136, - 188, - 255, - 136 - ], - "width": 3 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 0, - "y": -3, - "width": 6, - "height": 18, - "dx": 7, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 48, - 252, - 244, - 190, - 35, - 0, - 39, - 225, - 255, - 255, - 156, - 0, - 0, - 2, - 229, - 255, - 190, - 0, - 0, - 0, - 209, - 255, - 196, - 0, - 0, - 0, - 208, - 255, - 196, - 0, - 0, - 0, - 208, - 255, - 197, - 0, - 0, - 0, - 184, - 255, - 218, - 1, - 0, - 0, - 85, - 250, - 255, - 198, - 0, - 0, - 31, - 217, - 255, - 236, - 0, - 0, - 150, - 255, - 238, - 23, - 0, - 0, - 194, - 255, - 201, - 0, - 0, - 0, - 208, - 255, - 196, - 0, - 0, - 0, - 208, - 255, - 196, - 0, - 0, - 0, - 209, - 255, - 196, - 0, - 0, - 0, - 211, - 255, - 194, - 0, - 0, - 4, - 235, - 255, - 180, - 0, - 39, - 224, - 255, - 255, - 136, - 0, - 48, - 255, - 246, - 179, - 19, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 14, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 0, - "y": 6, - "width": 9, - "height": 4, - "dx": 9, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 0, - 63, - 216, - 223, - 108, - 6, - 23, - 95, - 0, - 28, - 249, - 239, - 242, - 255, - 233, - 239, - 246, - 21, - 0, - 104, - 15, - 14, - 128, - 235, - 222, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 14, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 198, - 40, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 230, - 255, - 255, - 255, - 255, - 255, - 229, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 58, - 20, - 208, - 255, - 255, - 255, - 206, - 18, - 58, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 17, - 0, - 19, - 208, - 255, - 206, - 18, - 0, - 17, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 16, - 0, - 19, - 161, - 18, - 0, - 17, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 15, - 0, - 0, - 0, - 16, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 17, - 0, - 0, - 0, - 18, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 18, - 0, - 17, - 156, - 16, - 0, - 18, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 18, - 0, - 17, - 204, - 255, - 203, - 16, - 0, - 18, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 53, - 17, - 204, - 255, - 255, - 255, - 202, - 16, - 53, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 225, - 255, - 255, - 255, - 255, - 255, - 224, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62835 - } - }, - { - "encoding": 128, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 28, - 124, - 186, - 234, - 249, - 234, - 186, - 124, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 134, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 133, - 7, - 0, - 0, - 0, - 0, - 0, - 24, - 207, - 255, - 255, - 255, - 255, - 248, - 137, - 122, - 234, - 255, - 255, - 255, - 205, - 22, - 0, - 0, - 0, - 8, - 208, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 205, - 7, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 30, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 51, - 35, - 187, - 255, - 255, - 255, - 255, - 255, - 251, - 30, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 188, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 1, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 253, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 6, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 239, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 191, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 129, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 185, - 255, - 245, - 190, - 255, - 255, - 255, - 255, - 255, - 128, - 32, - 252, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 189, - 225, - 57, - 150, - 255, - 255, - 255, - 255, - 252, - 32, - 0, - 141, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 7, - 3, - 118, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 10, - 213, - 255, - 255, - 255, - 88, - 0, - 0, - 14, - 161, - 255, - 255, - 255, - 255, - 255, - 212, - 9, - 0, - 0, - 0, - 29, - 214, - 255, - 255, - 241, - 122, - 127, - 229, - 255, - 255, - 255, - 255, - 255, - 212, - 27, - 0, - 0, - 0, - 0, - 0, - 10, - 142, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 142, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 130, - 190, - 238, - 253, - 238, - 191, - 130, - 34, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62229 - } - }, - { - "encoding": 129, - "x": 0, - "y": 0, - "width": 19, - "height": 18, - "dx": 19, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 175, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 185, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 221, - 255, - 255, - 255, - 221, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 246, - 255, - 157, - 15, - 156, - 255, - 246, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 81, - 0, - 81, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 80, - 0, - 80, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 214, - 255, - 255, - 255, - 80, - 0, - 80, - 255, - 255, - 255, - 213, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 81, - 0, - 82, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 25, - 242, - 255, - 255, - 255, - 255, - 171, - 37, - 173, - 255, - 255, - 255, - 255, - 242, - 24, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 29, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 3, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 3, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 105, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62230 - } - }, - { - "encoding": 130, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 29, - 126, - 196, - 236, - 251, - 236, - 196, - 126, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 142, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 142, - 8, - 0, - 0, - 0, - 0, - 0, - 22, - 205, - 255, - 255, - 249, - 187, - 124, - 104, - 124, - 186, - 249, - 255, - 255, - 205, - 21, - 0, - 0, - 0, - 9, - 207, - 255, - 255, - 162, - 24, - 0, - 27, - 70, - 12, - 0, - 24, - 162, - 255, - 255, - 206, - 9, - 0, - 0, - 147, - 255, - 255, - 130, - 1, - 0, - 93, - 252, - 255, - 235, - 43, - 0, - 1, - 130, - 255, - 255, - 143, - 0, - 32, - 253, - 255, - 161, - 1, - 0, - 0, - 228, - 255, - 255, - 255, - 163, - 0, - 0, - 1, - 161, - 255, - 251, - 30, - 130, - 255, - 247, - 23, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 24, - 248, - 255, - 128, - 199, - 255, - 183, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 184, - 255, - 198, - 239, - 255, - 121, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 121, - 255, - 238, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 229, - 1, - 0, - 0, - 0, - 0, - 101, - 255, - 254, - 240, - 255, - 119, - 0, - 0, - 0, - 0, - 1, - 230, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 240, - 201, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 134, - 247, - 78, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 200, - 132, - 255, - 246, - 21, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 21, - 247, - 255, - 131, - 35, - 253, - 255, - 155, - 0, - 0, - 0, - 0, - 128, - 240, - 74, - 0, - 0, - 0, - 0, - 155, - 255, - 253, - 33, - 0, - 152, - 255, - 255, - 123, - 0, - 0, - 0, - 186, - 255, - 122, - 0, - 0, - 0, - 123, - 255, - 255, - 148, - 0, - 0, - 11, - 211, - 255, - 255, - 154, - 20, - 0, - 25, - 87, - 7, - 0, - 20, - 154, - 255, - 255, - 210, - 10, - 0, - 0, - 0, - 25, - 212, - 255, - 255, - 246, - 180, - 116, - 96, - 116, - 179, - 245, - 255, - 255, - 211, - 25, - 0, - 0, - 0, - 0, - 0, - 12, - 153, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 153, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 132, - 201, - 239, - 254, - 239, - 201, - 132, - 35, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61530 - } - }, - { - "encoding": 131, - "x": 0, - "y": -1, - "width": 20, - "height": 21, - "dx": 19, - "glyphBitmap": { - "height": 21, - "pixelArray": [ - 0, - 20, - 90, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 33, - 0, - 0, - 0, - 0, - 184, - 244, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 235, - 230, - 0, - 0, - 0, - 0, - 208, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 0, - 0, - 0, - 174, - 255, - 244, - 74, - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 130, - 40, - 255, - 0, - 0, - 0, - 234, - 255, - 255, - 122, - 0, - 30, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 13, - 40, - 255, - 0, - 0, - 0, - 38, - 225, - 144, - 7, - 0, - 24, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 10, - 40, - 255, - 0, - 0, - 0, - 10, - 216, - 114, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 40, - 255, - 0, - 0, - 0, - 212, - 255, - 255, - 101, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 40, - 255, - 0, - 0, - 0, - 213, - 255, - 255, - 102, - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 130, - 40, - 255, - 0, - 0, - 0, - 10, - 216, - 114, - 0, - 0, - 30, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 13, - 40, - 255, - 0, - 0, - 0, - 7, - 215, - 109, - 0, - 0, - 24, - 36, - 36, - 36, - 36, - 36, - 30, - 0, - 0, - 0, - 21, - 132, - 0, - 0, - 0, - 207, - 255, - 255, - 97, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 251, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 105, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 3, - 28, - 162, - 235, - 245, - 195, - 72, - 0, - 0, - 22, - 226, - 136, - 1, - 0, - 138, - 160, - 160, - 160, - 97, - 0, - 32, - 233, - 255, - 200, - 103, - 255, - 255, - 97, - 0, - 212, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 160, - 40, - 255, - 255, - 245, - 18, - 212, - 255, - 255, - 101, - 0, - 226, - 252, - 252, - 252, - 161, - 2, - 247, - 255, - 255, - 160, - 1, - 4, - 14, - 232, - 80, - 9, - 216, - 113, - 0, - 0, - 30, - 44, - 44, - 44, - 19, - 4, - 252, - 255, - 255, - 211, - 86, - 84, - 94, - 246, - 87, - 0, - 206, - 151, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 35, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 31, - 0, - 116, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 60, - 251, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 65, - 214, - 255, - 255, - 241, - 124, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 30, - 41, - 6, - 0, - 0, - 0 - ], - "width": 20 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62060 - } - }, - { - "encoding": 132, - "x": 0, - "y": -1, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 44, - 199, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 247, - 62, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 86, - 20, - 156, - 255, - 255, - 222, - 105, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 60, - 19, - 208, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 207, - 255, - 251, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 206, - 255, - 255, - 133, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 205, - 255, - 255, - 140, - 1, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 204, - 255, - 255, - 141, - 1, - 140, - 255, - 255, - 96, - 0, - 10, - 182, - 176, - 16, - 0, - 0, - 0, - 16, - 202, - 255, - 255, - 141, - 1, - 140, - 255, - 255, - 255, - 96, - 0, - 51, - 255, - 255, - 202, - 16, - 0, - 15, - 201, - 255, - 255, - 142, - 1, - 83, - 255, - 255, - 255, - 255, - 96, - 0, - 1, - 158, - 255, - 255, - 203, - 31, - 200, - 255, - 255, - 142, - 1, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 2, - 156, - 255, - 255, - 250, - 255, - 255, - 143, - 1, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 2, - 154, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 2, - 147, - 254, - 140, - 1, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 219, - 101, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 101, - 220, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62224 - } - }, - { - "encoding": 133, - "x": 0, - "y": 3, - "width": 20, - "height": 13, - "dx": 19, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 0, - 0, - 24, - 2, - 24, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 0, - 0, - 0, - 0, - 0, - 8, - 206, - 118, - 3, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 252, - 60, - 23, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 229, - 21, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 99, - 255, - 255, - 0, - 0, - 0, - 36, - 242, - 255, - 255, - 255, - 255, - 185, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 61, - 100, - 159, - 255, - 255, - 100, - 100, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 92, - 154, - 255, - 255, - 92, - 92, - 23, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 246, - 255, - 255, - 255, - 255, - 186, - 2, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 230, - 22, - 0, - 0, - 0, - 96, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 150, - 0, - 159, - 255, - 253, - 63, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 10, - 211, - 123, - 0, - 0, - 0, - 0, - 0, - 38, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 89, - 1, - 28, - 2, - 0, - 0, - 0 - ], - "width": 20 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62598 - } - }, - { - "encoding": 134, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "pixelArray": [ - 90, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 235, - 90, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 1, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 2, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 6, - 0, - 92, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 16, - 0, - 63, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 241, - 255, - 255, - 251, - 49, - 0, - 32, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 2, - 52, - 237, - 255, - 134, - 0, - 2, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 44, - 202, - 8, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 3, - 0, - 8, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 95, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 95 - ], - "width": 16 - }, - "source": { - "filePath": "fonts\\heydings_icons.ttf", - "size": 14, - "encoding": 79 - } - }, - { - "encoding": 135, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 28, - 124, - 186, - 234, - 249, - 234, - 186, - 124, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 134, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 133, - 7, - 0, - 0, - 0, - 0, - 0, - 24, - 207, - 255, - 255, - 255, - 209, - 123, - 102, - 123, - 209, - 255, - 255, - 255, - 205, - 22, - 0, - 0, - 0, - 8, - 208, - 255, - 255, - 166, - 174, - 208, - 1, - 0, - 1, - 209, - 174, - 168, - 255, - 255, - 205, - 7, - 0, - 0, - 135, - 255, - 255, - 122, - 0, - 47, - 255, - 55, - 0, - 56, - 255, - 46, - 1, - 124, - 255, - 255, - 134, - 0, - 30, - 251, - 255, - 168, - 1, - 0, - 0, - 69, - 9, - 0, - 9, - 68, - 0, - 0, - 1, - 169, - 255, - 251, - 30, - 127, - 255, - 255, - 172, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 171, - 255, - 255, - 126, - 189, - 255, - 209, - 212, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 9, - 187, - 66, - 255, - 212, - 209, - 255, - 188, - 238, - 255, - 119, - 1, - 56, - 8, - 0, - 0, - 0, - 0, - 0, - 131, - 192, - 9, - 60, - 1, - 120, - 255, - 237, - 253, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 250, - 96, - 0, - 0, - 0, - 99, - 255, - 253, - 239, - 255, - 118, - 1, - 47, - 6, - 0, - 0, - 0, - 1, - 188, - 244, - 12, - 7, - 52, - 1, - 119, - 255, - 238, - 191, - 255, - 205, - 205, - 255, - 59, - 0, - 0, - 0, - 89, - 255, - 160, - 0, - 66, - 255, - 207, - 205, - 255, - 190, - 129, - 255, - 255, - 175, - 51, - 0, - 0, - 0, - 15, - 231, - 255, - 64, - 0, - 0, - 49, - 174, - 255, - 255, - 128, - 32, - 252, - 255, - 160, - 4, - 74, - 143, - 196, - 231, - 255, - 255, - 196, - 142, - 68, - 4, - 161, - 255, - 252, - 32, - 0, - 141, - 255, - 255, - 231, - 255, - 255, - 255, - 199, - 81, - 201, - 255, - 255, - 255, - 230, - 255, - 255, - 140, - 0, - 0, - 10, - 213, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 212, - 9, - 0, - 0, - 0, - 29, - 214, - 255, - 255, - 255, - 255, - 211, - 105, - 212, - 255, - 255, - 255, - 255, - 212, - 27, - 0, - 0, - 0, - 0, - 0, - 10, - 142, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 142, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 130, - 190, - 238, - 253, - 238, - 191, - 130, - 34, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61446 - } - }, - { - "encoding": 136, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 198, - 40, - 201, - 131, - 76, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 51, - 152, - 200, - 255, - 71, - 13, - 242, - 255, - 255, - 246, - 171, - 115, - 95, - 113, - 168, - 246, - 255, - 255, - 45, - 0, - 87, - 255, - 255, - 250, - 240, - 255, - 255, - 155, - 27, - 5, - 0, - 0, - 0, - 3, - 28, - 155, - 255, - 253, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 73, - 228, - 31, - 0, - 0, - 0, - 109, - 209, - 24, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 75, - 252, - 255, - 52, - 0, - 0, - 1, - 223, - 255, - 189, - 1, - 154, - 255, - 255, - 255, - 255, - 255, - 243, - 31, - 235, - 255, - 255, - 108, - 0, - 0, - 47, - 255, - 255, - 255, - 66, - 18, - 245, - 255, - 255, - 255, - 255, - 166, - 3, - 108, - 225, - 255, - 224, - 160, - 223, - 210, - 221, - 95, - 44, - 14, - 0, - 166, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 2, - 51, - 213, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 211, - 29, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 173, - 5, - 26, - 48, - 106, - 223, - 215, - 230, - 167, - 221, - 254, - 168, - 22, - 0, - 167, - 255, - 255, - 255, - 255, - 242, - 23, - 209, - 255, - 255, - 255, - 33, - 0, - 0, - 93, - 255, - 254, - 58, - 16, - 244, - 255, - 255, - 255, - 255, - 255, - 145, - 25, - 195, - 255, - 171, - 0, - 0, - 0, - 41, - 254, - 109, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 1, - 80, - 21, - 0, - 0, - 0, - 13, - 52, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 121, - 52, - 254, - 255, - 144, - 15, - 0, - 0, - 0, - 0, - 0, - 14, - 144, - 255, - 114, - 15, - 151, - 255, - 255, - 48, - 0, - 231, - 255, - 255, - 241, - 171, - 108, - 88, - 107, - 162, - 241, - 255, - 255, - 11, - 0, - 51, - 255, - 205, - 146, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 47, - 174, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61450 - } - }, - { - "encoding": 137, - "x": 3, - "y": 0, - "width": 13, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 76, - 206, - 249, - 214, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 254, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 222, - 112, - 208, - 255, - 233, - 2, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 105, - 0, - 73, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 64, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 64, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 64, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 64, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 96, - 0, - 64, - 255, - 255, - 98, - 0, - 0, - 0, - 45, - 244, - 255, - 253, - 77, - 0, - 50, - 248, - 255, - 252, - 68, - 0, - 0, - 196, - 255, - 240, - 61, - 0, - 0, - 0, - 43, - 225, - 255, - 224, - 5, - 33, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 64, - 85, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 3, - 241, - 255, - 116, - 89, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 235, - 255, - 121, - 40, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 71, - 1, - 216, - 255, - 222, - 27, - 0, - 0, - 0, - 16, - 204, - 255, - 238, - 10, - 0, - 72, - 254, - 255, - 237, - 137, - 96, - 130, - 229, - 255, - 255, - 101, - 0, - 0, - 0, - 93, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 44, - 156, - 224, - 252, - 230, - 165, - 57, - 0, - 0, - 0 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61965 - } - }, - { - "encoding": 138, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 38, - 199, - 244, - 155, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 255, - 255, - 182, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 193, - 115, - 231, - 255, - 183, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 232, - 255, - 181, - 8, - 0, - 39, - 230, - 255, - 184, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 192, - 8, - 0, - 0, - 0, - 39, - 230, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 110, - 0, - 0, - 0, - 1, - 3, - 39, - 230, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 227, - 35, - 0, - 1, - 186, - 239, - 63, - 39, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 5, - 242, - 255, - 245, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 61, - 0, - 65, - 157, - 115, - 7, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 60, - 39, - 230, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 8, - 124, - 167, - 70, - 0, - 70, - 247, - 255, - 243, - 59, - 38, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 247, - 255, - 239, - 6, - 37, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 34, - 70, - 245, - 205, - 2, - 0, - 37, - 229, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 226, - 34, - 10, - 3, - 0, - 0, - 0, - 111, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 225, - 33, - 0, - 0, - 0, - 5, - 185, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 187, - 255, - 225, - 33, - 0, - 5, - 172, - 255, - 234, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 107, - 184, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 161, - 248, - 203, - 42, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61474 - } - }, - { - "encoding": 139, - "x": 0, - "y": -3, - "width": 18, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 58, - 79, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 185, - 255, - 255, - 241, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 196, - 250, - 255, - 84, - 27, - 218, - 253, - 238, - 137, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 210, - 110, - 241, - 1, - 0, - 157, - 157, - 142, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 253, - 96, - 0, - 160, - 0, - 0, - 154, - 6, - 1, - 236, - 193, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 88, - 0, - 152, - 0, - 0, - 152, - 0, - 0, - 228, - 255, - 251, - 121, - 0, - 0, - 0, - 0, - 0, - 255, - 88, - 0, - 152, - 0, - 0, - 152, - 0, - 0, - 213, - 68, - 129, - 253, - 30, - 0, - 0, - 0, - 0, - 255, - 88, - 0, - 152, - 0, - 0, - 152, - 0, - 0, - 154, - 0, - 15, - 255, - 75, - 0, - 1, - 25, - 7, - 255, - 88, - 0, - 152, - 0, - 0, - 152, - 0, - 0, - 152, - 0, - 12, - 255, - 76, - 32, - 202, - 255, - 243, - 255, - 88, - 0, - 152, - 0, - 0, - 152, - 0, - 0, - 152, - 0, - 12, - 255, - 76, - 181, - 216, - 76, - 153, - 255, - 88, - 0, - 36, - 0, - 0, - 36, - 0, - 0, - 36, - 0, - 12, - 255, - 76, - 250, - 104, - 0, - 2, - 190, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 76, - 215, - 174, - 1, - 0, - 29, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 76, - 83, - 255, - 96, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 61, - 0, - 154, - 244, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 17, - 0, - 10, - 213, - 206, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 224, - 0, - 0, - 0, - 45, - 247, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 177, - 0, - 0, - 0, - 0, - 105, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 129, - 0, - 0, - 0, - 0, - 1, - 173, - 238, - 112, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 136, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 12, - 159, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 121, - 0, - 0 - ], - "width": 18 - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 62038 - } - }, - { - "encoding": 140, - "x": 1, - "y": 0, - "width": 17, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 59, - 163, - 226, - 249, - 226, - 163, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 230, - 136, - 104, - 136, - 229, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 23, - 248, - 255, - 192, - 14, - 0, - 0, - 0, - 14, - 192, - 255, - 248, - 23, - 0, - 0, - 0, - 0, - 97, - 255, - 253, - 29, - 0, - 0, - 0, - 0, - 0, - 29, - 253, - 255, - 96, - 0, - 0, - 0, - 0, - 140, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 140, - 0, - 0, - 0, - 0, - 144, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 144, - 0, - 0, - 0, - 0, - 144, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 144, - 0, - 0, - 155, - 252, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 252, - 156, - 240, - 255, - 255, - 255, - 255, - 255, - 242, - 111, - 51, - 111, - 242, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 204, - 29, - 0, - 29, - 204, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 237, - 8, - 0, - 9, - 238, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 240, - 240, - 255, - 255, - 255, - 255, - 255, - 75, - 36, - 36, - 36, - 75, - 255, - 255, - 255, - 255, - 255, - 240, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161 - ], - "width": 17 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61630 - } - }, - { - "encoding": 141, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 28, - 124, - 186, - 234, - 249, - 234, - 186, - 124, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 134, - 250, - 191, - 115, - 65, - 47, - 65, - 115, - 191, - 250, - 133, - 7, - 0, - 0, - 0, - 0, - 0, - 24, - 207, - 214, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 214, - 205, - 22, - 0, - 0, - 0, - 8, - 208, - 179, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 179, - 205, - 7, - 0, - 0, - 135, - 213, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 213, - 134, - 0, - 30, - 250, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 250, - 30, - 127, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 126, - 189, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 188, - 238, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 237, - 253, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 253, - 239, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 238, - 191, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 190, - 129, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 128, - 32, - 251, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 251, - 32, - 0, - 141, - 210, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 209, - 140, - 0, - 0, - 10, - 213, - 173, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 173, - 212, - 9, - 0, - 0, - 0, - 29, - 214, - 209, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 209, - 212, - 27, - 0, - 0, - 0, - 0, - 0, - 10, - 142, - 251, - 184, - 108, - 58, - 40, - 58, - 108, - 184, - 251, - 142, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 130, - 190, - 238, - 253, - 238, - 191, - 130, - 34, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62763 - } - }, - { - "encoding": 142, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 28, - 124, - 186, - 234, - 249, - 234, - 186, - 124, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 134, - 250, - 191, - 115, - 65, - 47, - 65, - 115, - 191, - 250, - 133, - 7, - 0, - 0, - 0, - 0, - 0, - 24, - 207, - 214, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 214, - 205, - 22, - 0, - 0, - 0, - 8, - 208, - 179, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 179, - 205, - 7, - 0, - 0, - 135, - 213, - 9, - 0, - 0, - 0, - 38, - 105, - 119, - 78, - 7, - 0, - 0, - 0, - 9, - 213, - 134, - 0, - 30, - 250, - 56, - 0, - 0, - 6, - 150, - 255, - 255, - 255, - 255, - 225, - 58, - 0, - 0, - 0, - 56, - 250, - 30, - 127, - 189, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 36, - 0, - 0, - 0, - 189, - 126, - 189, - 113, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 112, - 188, - 238, - 63, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 62, - 237, - 253, - 43, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 0, - 0, - 0, - 44, - 253, - 239, - 61, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 60, - 238, - 191, - 110, - 0, - 0, - 9, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 109, - 190, - 129, - 184, - 0, - 0, - 0, - 63, - 246, - 255, - 255, - 255, - 255, - 255, - 177, - 3, - 0, - 0, - 0, - 184, - 128, - 32, - 251, - 51, - 0, - 0, - 0, - 41, - 172, - 240, - 254, - 214, - 110, - 3, - 0, - 0, - 0, - 51, - 250, - 32, - 0, - 141, - 210, - 7, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 7, - 209, - 140, - 0, - 0, - 10, - 213, - 173, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 173, - 212, - 9, - 0, - 0, - 0, - 29, - 214, - 209, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 209, - 212, - 27, - 0, - 0, - 0, - 0, - 0, - 10, - 142, - 251, - 184, - 108, - 58, - 40, - 58, - 108, - 184, - 251, - 142, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 130, - 190, - 238, - 253, - 238, - 191, - 130, - 34, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62822 - } - }, - { - "encoding": 143, - "x": 3, - "y": 0, - "width": 13, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 195, - 229, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 210, - 255, - 255, - 244, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 212, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 24, - 214, - 255, - 255, - 255, - 255, - 192, - 9, - 0, - 0, - 0, - 0, - 26, - 216, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 31, - 222, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 19, - 223, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 243, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 230, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 229, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 227, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 225, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 222, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 186, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 215, - 255, - 255, - 246, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 200, - 234, - 67, - 0 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62601 - } - }, - { - "encoding": 144, - "x": 3, - "y": 0, - "width": 13, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 62, - 230, - 196, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 245, - 255, - 255, - 211, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 213, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 193, - 255, - 255, - 255, - 255, - 215, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 217, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 219, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 221, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 222, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 224, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 244, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 231, - 24, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 230, - 39, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 227, - 37, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 225, - 34, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 223, - 32, - 0, - 0, - 0, - 0, - 8, - 187, - 255, - 255, - 255, - 255, - 220, - 30, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 218, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 246, - 255, - 255, - 215, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 234, - 201, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62600 - } - }, - { - "encoding": 145, - "x": 0, - "y": 4, - "width": 19, - "height": 11, - "dx": 19, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 0, - 0, - 18, - 55, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 55, - 18, - 0, - 0, - 0, - 0, - 21, - 167, - 253, - 255, - 255, - 177, - 34, - 0, - 0, - 0, - 33, - 176, - 254, - 255, - 253, - 167, - 21, - 0, - 14, - 216, - 255, - 255, - 255, - 255, - 255, - 241, - 76, - 0, - 76, - 241, - 255, - 255, - 255, - 255, - 255, - 216, - 14, - 138, - 255, - 255, - 132, - 46, - 94, - 234, - 255, - 254, - 160, - 254, - 255, - 234, - 93, - 46, - 132, - 255, - 255, - 138, - 225, - 255, - 162, - 0, - 0, - 0, - 39, - 238, - 255, - 255, - 255, - 237, - 40, - 0, - 0, - 0, - 162, - 255, - 224, - 253, - 255, - 102, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 102, - 255, - 253, - 226, - 255, - 159, - 0, - 0, - 0, - 35, - 234, - 255, - 255, - 255, - 233, - 34, - 0, - 0, - 0, - 158, - 255, - 226, - 142, - 255, - 254, - 125, - 38, - 83, - 230, - 255, - 255, - 168, - 255, - 255, - 230, - 84, - 38, - 124, - 254, - 255, - 142, - 16, - 220, - 255, - 255, - 255, - 255, - 255, - 243, - 82, - 0, - 82, - 244, - 255, - 255, - 255, - 255, - 255, - 220, - 16, - 0, - 25, - 175, - 255, - 255, - 255, - 183, - 38, - 0, - 0, - 0, - 38, - 183, - 255, - 255, - 255, - 175, - 25, - 0, - 0, - 0, - 0, - 24, - 63, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 63, - 24, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 8734 - } - }, - { - "encoding": 146, - "x": 0, - "y": 6, - "width": 19, - "height": 6, - "dx": 19, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 111, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 109, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 8722 - } - }, - { - "encoding": 147, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 229, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 182, - 23, - 0, - 255, - 255, - 96, - 0, - 114, - 179, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 152, - 0, - 255, - 255, - 96, - 0, - 35, - 201, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 252, - 38, - 255, - 255, - 96, - 0, - 0, - 10, - 5, - 0, - 0, - 0, - 0, - 0, - 103, - 197, - 80, - 10, - 225, - 255, - 170, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 157, - 171, - 7, - 0, - 0, - 205, - 255, - 255, - 183, - 123, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 148, - 255, - 38, - 0, - 0, - 53, - 220, - 255, - 255, - 250, - 255, - 217, - 220, - 250, - 51, - 0, - 0, - 0, - 0, - 53, - 108, - 0, - 0, - 0, - 0, - 11, - 147, - 255, - 249, - 96, - 1, - 6, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 92, - 92, - 92, - 158, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 92, - 68, - 1, - 231, - 255, - 255, - 255, - 243, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 70, - 181, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 236, - 40, - 0, - 4, - 4, - 38, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 2, - 0, - 0, - 17, - 142, - 250, - 251, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 198, - 63, - 0, - 0, - 0, - 183, - 255, - 255, - 225, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 225, - 255, - 254, - 38, - 0, - 0, - 135, - 246, - 132, - 13, - 205, - 120, - 3, - 0, - 0, - 0, - 8, - 102, - 66, - 56, - 201, - 213, - 16, - 0, - 0, - 0, - 1, - 0, - 106, - 255, - 254, - 41, - 156, - 145, - 61, - 175, - 255, - 217, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 160, - 0, - 255, - 255, - 96, - 50, - 254, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 200, - 29, - 0, - 255, - 255, - 96, - 0, - 127, - 196, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 234, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62265 - } - }, - { - "encoding": 148, - "x": 3, - "y": 0, - "width": 14, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 7, - 170, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 211, - 255, - 239, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 208, - 255, - 216, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 233, - 252, - 252, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 255, - 255, - 255, - 144, - 3, - 108, - 142, - 36, - 0, - 0, - 255, - 40, - 0, - 0, - 255, - 255, - 255, - 144, - 105, - 255, - 255, - 215, - 0, - 0, - 255, - 40, - 0, - 0, - 126, - 238, - 185, - 61, - 121, - 255, - 255, - 236, - 0, - 0, - 255, - 40, - 0, - 0, - 33, - 250, - 45, - 0, - 12, - 179, - 243, - 75, - 0, - 0, - 255, - 71, - 39, - 90, - 220, - 147, - 0, - 0, - 0, - 68, - 238, - 7, - 0, - 0, - 255, - 255, - 255, - 218, - 107, - 1, - 0, - 0, - 0, - 3, - 208, - 154, - 19, - 0, - 255, - 44, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 194, - 255, - 252, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 31, - 44, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 247, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 228, - 157, - 4, - 0, - 0, - 0, - 0, - 0 - ], - "width": 14 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61709 - } - }, - { - "encoding": 149, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 251, - 252, - 252, - 252, - 184, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 195, - 226, - 238, - 196, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 224, - 30, - 44, - 44, - 44, - 97, - 243, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 203, - 137, - 44, - 44, - 30, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 49, - 180, - 205, - 252, - 188, - 158, - 10, - 0, - 0, - 1, - 134, - 188, - 239, - 218, - 186, - 76, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 91, - 249, - 255, - 255, - 255, - 229, - 29, - 0, - 0, - 5, - 206, - 255, - 255, - 255, - 254, - 132, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61606 - } - }, - { - "encoding": 150, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 26, - 161, - 235, - 245, - 191, - 64, - 0, - 0, - 0, - 0, - 0, - 64, - 191, - 245, - 235, - 161, - 26, - 0, - 27, - 229, - 255, - 255, - 255, - 255, - 253, - 82, - 0, - 0, - 0, - 82, - 254, - 255, - 255, - 255, - 255, - 229, - 27, - 163, - 255, - 252, - 143, - 118, - 228, - 255, - 235, - 8, - 0, - 8, - 235, - 255, - 228, - 118, - 142, - 252, - 255, - 163, - 238, - 255, - 140, - 0, - 0, - 60, - 255, - 255, - 62, - 0, - 62, - 255, - 255, - 60, - 0, - 0, - 140, - 255, - 238, - 249, - 255, - 114, - 0, - 0, - 17, - 255, - 255, - 80, - 0, - 80, - 255, - 255, - 17, - 0, - 0, - 114, - 255, - 249, - 197, - 255, - 224, - 55, - 13, - 50, - 255, - 255, - 89, - 12, - 89, - 255, - 255, - 49, - 13, - 55, - 224, - 255, - 196, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 69, - 0, - 88, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 88, - 0, - 0, - 0, - 11, - 67, - 84, - 95, - 255, - 255, - 138, - 84, - 138, - 255, - 255, - 95, - 84, - 67, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 80, - 0, - 80, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 59, - 76, - 88, - 255, - 255, - 133, - 76, - 133, - 255, - 255, - 88, - 76, - 59, - 7, - 0, - 0, - 0, - 82, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 82, - 0, - 65, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 65, - 194, - 255, - 227, - 63, - 21, - 58, - 255, - 255, - 94, - 20, - 94, - 255, - 255, - 57, - 21, - 62, - 227, - 255, - 193, - 249, - 255, - 115, - 0, - 0, - 17, - 255, - 255, - 80, - 0, - 80, - 255, - 255, - 17, - 0, - 0, - 115, - 255, - 248, - 239, - 255, - 137, - 0, - 0, - 57, - 255, - 255, - 63, - 0, - 63, - 255, - 255, - 57, - 0, - 0, - 137, - 255, - 239, - 166, - 255, - 250, - 135, - 110, - 224, - 255, - 237, - 9, - 0, - 10, - 237, - 255, - 224, - 111, - 135, - 250, - 255, - 166, - 30, - 233, - 255, - 255, - 255, - 255, - 254, - 88, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 232, - 30, - 0, - 30, - 166, - 239, - 249, - 196, - 69, - 0, - 0, - 0, - 0, - 0, - 69, - 196, - 249, - 239, - 166, - 29, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62266 - } - }, - { - "encoding": 151, - "x": -1, - "y": 0, - "width": 20, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 25, - 1, - 0, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 254, - 67, - 29, - 251, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 9, - 230, - 252, - 251, - 253, - 30, - 25, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 254, - 228, - 221, - 79, - 66, - 200, - 233, - 252, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 69, - 254, - 75, - 0, - 0, - 35, - 255, - 107, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 254, - 61, - 0, - 0, - 22, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 250, - 254, - 195, - 31, - 19, - 166, - 254, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 73, - 32, - 231, - 255, - 255, - 253, - 53, - 63, - 10, - 46, - 108, - 39, - 250, - 0, - 117, - 45, - 0, - 0, - 0, - 0, - 0, - 22, - 251, - 112, - 77, - 255, - 65, - 4, - 57, - 60, - 247, - 190, - 255, - 177, - 254, - 54, - 57, - 3, - 0, - 0, - 0, - 3, - 75, - 6, - 0, - 73, - 11, - 60, - 250, - 218, - 255, - 255, - 255, - 255, - 255, - 217, - 249, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 56, - 220, - 255, - 255, - 208, - 154, - 207, - 255, - 255, - 220, - 55, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 251, - 255, - 255, - 109, - 1, - 0, - 1, - 109, - 255, - 255, - 251, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 186, - 255, - 205, - 1, - 0, - 0, - 0, - 1, - 205, - 255, - 187, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 184, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 184, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 252, - 255, - 255, - 98, - 0, - 0, - 0, - 98, - 255, - 255, - 252, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 61, - 221, - 255, - 255, - 199, - 147, - 199, - 255, - 255, - 221, - 60, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 250, - 224, - 255, - 255, - 255, - 255, - 255, - 223, - 249, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 64, - 60, - 248, - 195, - 255, - 184, - 254, - 54, - 63, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 114, - 40, - 255, - 0, - 124, - 46, - 0, - 0, - 0 - ], - "width": 20 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62216 - } - }, - { - "encoding": 152, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 174, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 100, - 100, - 100, - 100, - 100, - 100, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 176, - 254, - 255, - 203, - 228, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 1, - 176, - 196, - 65, - 111, - 236, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 33, - 12, - 12, - 12, - 12, - 129, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 106, - 84, - 84, - 84, - 84, - 171, - 255, - 255, - 255, - 255, - 177, - 92, - 92, - 92, - 92, - 92, - 92, - 141, - 255, - 115, - 92, - 92, - 92, - 92, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 4, - 4, - 51, - 255, - 69, - 4, - 4, - 43, - 255, - 65, - 4, - 4, - 4, - 132, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 255, - 255, - 255, - 252, - 252, - 255, - 255, - 255, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 100, - 100, - 131, - 255, - 141, - 100, - 100, - 100, - 100, - 106, - 240, - 174, - 100, - 181, - 255, - 255, - 255, - 255, - 176, - 92, - 92, - 124, - 255, - 134, - 92, - 92, - 92, - 92, - 98, - 239, - 168, - 92, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62038 - } - }, - { - "encoding": 153, - "x": 0, - "y": 0, - "width": 18, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 1, - 69, - 34, - 0, - 24, - 75, - 2, - 1, - 69, - 34, - 0, - 36, - 68, - 1, - 0, - 0, - 0, - 0, - 72, - 255, - 231, - 0, - 193, - 255, - 96, - 72, - 255, - 231, - 0, - 232, - 255, - 71, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 216, - 255, - 120, - 96, - 255, - 255, - 0, - 255, - 255, - 96, - 0, - 0, - 30, - 181, - 250, - 255, - 255, - 252, - 255, - 255, - 254, - 254, - 255, - 255, - 252, - 255, - 255, - 250, - 181, - 30, - 191, - 157, - 47, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 47, - 159, - 191, - 254, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 254, - 255, - 40, - 0, - 0, - 0, - 0, - 5, - 12, - 1, - 1, - 11, - 7, - 0, - 7, - 11, - 0, - 40, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 201, - 255, - 105, - 80, - 255, - 239, - 0, - 240, - 255, - 79, - 40, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 215, - 255, - 119, - 95, - 255, - 254, - 0, - 255, - 255, - 94, - 40, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 53, - 84, - 21, - 14, - 83, - 65, - 0, - 65, - 83, - 13, - 40, - 255, - 255, - 40, - 16, - 91, - 71, - 0, - 58, - 92, - 24, - 16, - 91, - 71, - 0, - 72, - 91, - 15, - 40, - 255, - 255, - 40, - 95, - 255, - 255, - 0, - 215, - 255, - 119, - 95, - 255, - 255, - 0, - 255, - 255, - 95, - 40, - 255, - 255, - 40, - 78, - 255, - 237, - 0, - 198, - 255, - 102, - 78, - 255, - 237, - 0, - 238, - 255, - 77, - 40, - 255, - 255, - 40, - 0, - 4, - 2, - 0, - 2, - 4, - 0, - 0, - 4, - 2, - 0, - 2, - 4, - 0, - 40, - 255, - 255, - 40, - 74, - 251, - 230, - 0, - 192, - 252, - 97, - 74, - 251, - 230, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 40, - 95, - 255, - 255, - 0, - 215, - 255, - 119, - 95, - 255, - 255, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 40, - 19, - 99, - 80, - 0, - 65, - 100, - 28, - 19, - 99, - 80, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 254, - 200, - 149, - 39, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 39, - 151, - 200, - 44, - 201, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 201, - 43 - ], - "width": 18 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62672 - } - }, - { - "encoding": 154, - "x": 0, - "y": -1, - "width": 19, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 64, - 148, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 39, - 242, - 87, - 0, - 171, - 252, - 252, - 252, - 189, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 61, - 106, - 0, - 100, - 235, - 12, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 70, - 248, - 40, - 2, - 217, - 103, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 168, - 154, - 0, - 128, - 175, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 79, - 220, - 0, - 74, - 227, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 41, - 255, - 2, - 45, - 252, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 53, - 245, - 1, - 52, - 246, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 111, - 196, - 0, - 97, - 204, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 10, - 220, - 107, - 0, - 163, - 148, - 244, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 114, - 210, - 6, - 26, - 248, - 56, - 69, - 136, - 136, - 136, - 102, - 0, - 228, - 255, - 255, - 255, - 255, - 240, - 0, - 8, - 29, - 1, - 178, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 227, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 92, - 238, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 226, - 255, - 255, - 240, - 0, - 0, - 0, - 10, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 224, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 223, - 233, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61666 - } - }, - { - "encoding": 155, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 174, - 229, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 211, - 0, - 0, - 139, - 155, - 25, - 255, - 255, - 185, - 36, - 0, - 0, - 0, - 0, - 20, - 55, - 0, - 0, - 255, - 255, - 0, - 0, - 160, - 255, - 186, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 180, - 252, - 160, - 0, - 1, - 210, - 142, - 150, - 154, - 137, - 207, - 192, - 255, - 255, - 225, - 255, - 192, - 0, - 0, - 224, - 255, - 174, - 114, - 213, - 0, - 0, - 255, - 255, - 96, - 1, - 55, - 255, - 255, - 96, - 53, - 123, - 74, - 67, - 140, - 78, - 103, - 255, - 255, - 0, - 19, - 202, - 199, - 96, - 1, - 0, - 255, - 255, - 97, - 0, - 64, - 255, - 255, - 32, - 0, - 96, - 233, - 140, - 207, - 255, - 0, - 0, - 160, - 209, - 66, - 255, - 255, - 228, - 109, - 85, - 255, - 255, - 45, - 83, - 116, - 6, - 0, - 255, - 255, - 0, - 0, - 160, - 255, - 192, - 255, - 255, - 255, - 255, - 193, - 23, - 30, - 225, - 255, - 160, - 0, - 25, - 146, - 78, - 214, - 218, - 121, - 143, - 182, - 255, - 255, - 185, - 236, - 192, - 0, - 0, - 224, - 252, - 165, - 178, - 253, - 0, - 0, - 255, - 255, - 96, - 0, - 18, - 255, - 255, - 96, - 9, - 92, - 138, - 131, - 92, - 18, - 96, - 255, - 255, - 20, - 83, - 138, - 135, - 112, - 26, - 0, - 255, - 255, - 112, - 0, - 64, - 255, - 255, - 32, - 0, - 92, - 175, - 76, - 252, - 255, - 0, - 0, - 160, - 249, - 114, - 255, - 255, - 253, - 173, - 118, - 215, - 222, - 93, - 147, - 137, - 0, - 0, - 255, - 255, - 0, - 0, - 160, - 255, - 192, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 224, - 255, - 160, - 0, - 0, - 74, - 12, - 0, - 0, - 19, - 97, - 155, - 255, - 255, - 149, - 208, - 192, - 0, - 0, - 224, - 206, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 96, - 1, - 25, - 0, - 0, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 234, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62350 - } - }, - { - "encoding": 156, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 119, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 159, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 193, - 20, - 0, - 0, - 39, - 91, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 246, - 255, - 255, - 255, - 220, - 40, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 255, - 255, - 173, - 13, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 241, - 255, - 255, - 255, - 134, - 2, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 250, - 95, - 0, - 0, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 237, - 62, - 16, - 165, - 109, - 253, - 255, - 93, - 0, - 29, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 35, - 0, - 92, - 255, - 252, - 120, - 172, - 18, - 54, - 231, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 86, - 247, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 1, - 124, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 168, - 255, - 255, - 156, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 234, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 48, - 227, - 255, - 255, - 255, - 247, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 99, - 47, - 0, - 0, - 25, - 202, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 171, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 131, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61831 - } - }, - { - "encoding": 157, - "x": -1, - "y": 0, - "width": 21, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 36, - 158, - 72, - 33, - 7, - 0, - 6, - 32, - 71, - 155, - 225, - 120, - 57, - 25, - 3, - 1, - 10, - 36, - 78, - 167, - 19, - 25, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 14, - 18, - 255, - 255, - 239, - 255, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 13, - 255, - 255, - 35, - 45, - 81, - 97, - 92, - 63, - 13, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 5, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 246, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 0, - 0, - 224, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 186, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 131, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 70, - 255, - 214, - 1, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 9, - 241, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 5, - 0, - 0, - 0, - 143, - 255, - 197, - 3, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 17, - 232, - 255, - 127, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 14, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 132, - 2, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 182, - 26, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 138, - 255, - 255, - 243, - 120, - 230, - 255, - 255, - 255, - 255, - 139, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 239, - 255, - 255, - 255, - 255, - 255, - 241, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 177, - 255, - 255, - 255, - 185, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 70, - 178, - 80, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 21 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61486 - } - }, - { - "encoding": 158, - "x": 4, - "y": -1, - "width": 11, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 138, - 172, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 254, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 241, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 254, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 241, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 254, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 254, - 99, - 92, - 92, - 92, - 92, - 92, - 15, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 24, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 1, - 4, - 4, - 4, - 4, - 4, - 109, - 255, - 200, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 235, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 193, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 247, - 255, - 62, - 0, - 0, - 0, - 0, - 1, - 57, - 60, - 172, - 255, - 215, - 60, - 57, - 1, - 0, - 0, - 0, - 88, - 253, - 255, - 255, - 255, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 87, - 252, - 255, - 252, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 248, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 0, - 0, - 0, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62732 - } - }, - { - "encoding": 159, - "x": 0, - "y": -2, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 44, - 199, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 199, - 42, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 255, - 255, - 222, - 105, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 105, - 222, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 31, - 26, - 0, - 0, - 0, - 0, - 0, - 26, - 30, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 32, - 250, - 246, - 66, - 0, - 0, - 0, - 64, - 245, - 250, - 34, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 30, - 248, - 255, - 246, - 65, - 0, - 64, - 245, - 255, - 248, - 33, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 72, - 248, - 255, - 246, - 117, - 245, - 255, - 249, - 72, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 72, - 248, - 255, - 255, - 255, - 249, - 74, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 66, - 246, - 255, - 255, - 255, - 247, - 68, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 65, - 246, - 255, - 249, - 132, - 249, - 255, - 247, - 67, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 26, - 245, - 255, - 249, - 76, - 0, - 74, - 249, - 255, - 246, - 29, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 30, - 250, - 249, - 76, - 0, - 0, - 0, - 73, - 248, - 251, - 33, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 34, - 34, - 0, - 0, - 0, - 0, - 0, - 30, - 33, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 219, - 101, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 101, - 219, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62225 - } - }, - { - "encoding": 160, - "x": 0, - "y": -2, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "width": 19, - "height": 19, - "pixelArray": [ - 44, - 199, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 199, - 42, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 255, - 255, - 222, - 105, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 105, - 222, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 219, - 101, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 101, - 219, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62225 - } - }, - { - "encoding": 161, - "x": 0, - "y": 0, - "width": 20, - "height": 19, - "dx": 19, - "glyphBitmap": { - "width": 20, - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 36, - 36, - 36, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 0, - 0, - 0, - 174, - 252, - 252, - 253, - 251, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 134, - 44, - 44, - 31, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 35, - 36, - 36, - 208, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 209, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 243, - 252, - 252, - 254, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 44, - 44, - 44, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 36, - 36, - 71, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62623 - } - }, - { - "encoding": 162, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 38, - 199, - 244, - 155, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 255, - 255, - 182, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 193, - 115, - 231, - 255, - 183, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 232, - 255, - 181, - 8, - 0, - 39, - 230, - 255, - 184, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 192, - 8, - 0, - 0, - 0, - 39, - 230, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 110, - 0, - 0, - 0, - 1, - 3, - 39, - 230, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 227, - 35, - 0, - 1, - 186, - 239, - 63, - 39, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 5, - 242, - 255, - 245, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 61, - 0, - 65, - 157, - 115, - 7, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 60, - 39, - 230, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 8, - 124, - 167, - 70, - 0, - 70, - 247, - 255, - 243, - 59, - 38, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 247, - 255, - 239, - 6, - 37, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 34, - 70, - 245, - 205, - 2, - 0, - 37, - 229, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 226, - 34, - 10, - 3, - 0, - 0, - 0, - 111, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 225, - 33, - 0, - 0, - 0, - 5, - 185, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 187, - 255, - 225, - 33, - 0, - 5, - 172, - 255, - 234, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 107, - 184, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 161, - 248, - 203, - 42, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61474 - } - }, - { - "encoding": 163, - "x": 0, - "y": -2, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 3, - 53, - 115, - 162, - 197, - 219, - 236, - 249, - 252, - 249, - 236, - 219, - 197, - 162, - 115, - 52, - 3, - 0, - 88, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 87, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 44, - 173, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 172, - 43, - 101, - 20, - 6, - 59, - 106, - 140, - 162, - 179, - 192, - 195, - 192, - 179, - 162, - 140, - 106, - 59, - 6, - 20, - 101, - 255, - 254, - 200, - 146, - 107, - 79, - 60, - 41, - 30, - 26, - 30, - 41, - 60, - 79, - 107, - 147, - 200, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 2, - 69, - 145, - 205, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 205, - 144, - 67, - 1, - 214, - 132, - 60, - 10, - 3, - 27, - 47, - 63, - 76, - 79, - 76, - 63, - 47, - 27, - 3, - 10, - 60, - 132, - 214, - 255, - 255, - 255, - 253, - 223, - 195, - 176, - 157, - 146, - 142, - 146, - 157, - 176, - 195, - 223, - 253, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 99, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 98, - 33, - 6, - 61, - 123, - 170, - 204, - 226, - 243, - 255, - 255, - 255, - 243, - 226, - 204, - 170, - 123, - 61, - 5, - 33, - 252, - 184, - 97, - 34, - 1, - 0, - 0, - 0, - 1, - 3, - 1, - 0, - 0, - 0, - 1, - 34, - 98, - 184, - 252, - 255, - 255, - 255, - 255, - 242, - 206, - 183, - 160, - 146, - 142, - 146, - 161, - 183, - 206, - 242, - 255, - 255, - 255, - 255, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 79, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 79, - 0, - 2, - 51, - 116, - 165, - 200, - 222, - 239, - 252, - 255, - 252, - 239, - 222, - 200, - 165, - 116, - 50, - 2, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61451 - } - }, - { - "encoding": 164, - "x": 0, - "y": -2, - "width": 12, - "height": 18, - "dx": 11, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 125, - 246, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 249, - 150, - 0, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 255, - 239, - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 212, - 255, - 36, - 229, - 254, - 43, - 0, - 0, - 0, - 0, - 0, - 23, - 243, - 250, - 13, - 121, - 255, - 201, - 4, - 0, - 0, - 0, - 1, - 170, - 255, - 150, - 0, - 6, - 205, - 255, - 122, - 0, - 0, - 0, - 96, - 255, - 229, - 17, - 0, - 0, - 35, - 216, - 249, - 37, - 0, - 18, - 236, - 253, - 63, - 0, - 0, - 0, - 0, - 120, - 251, - 155, - 0, - 132, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 227, - 0, - 200, - 239, - 16, - 0, - 0, - 0, - 0, - 0, - 4, - 217, - 231, - 0, - 197, - 254, - 9, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 162, - 0, - 126, - 255, - 137, - 0, - 0, - 0, - 0, - 35, - 243, - 252, - 42, - 0, - 22, - 240, - 232, - 45, - 0, - 0, - 4, - 200, - 255, - 132, - 0, - 5, - 0, - 100, - 255, - 224, - 14, - 0, - 114, - 255, - 207, - 5, - 91, - 234, - 115, - 2, - 183, - 255, - 147, - 0, - 226, - 255, - 48, - 148, - 255, - 255, - 255, - 174, - 33, - 246, - 247, - 10, - 255, - 238, - 107, - 255, - 255, - 255, - 255, - 255, - 129, - 210, - 255, - 36, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 127, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 154, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 14, - "encoding": 59393 - } - }, - { - "encoding": 165, - "x": 0, - "y": -3, - "width": 9, - "height": 19, - "dx": 8, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 62, - 252, - 252, - 104, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 61, - 68, - 121, - 255, - 255, - 151, - 68, - 67, - 4, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 10, - 11, - 198, - 255, - 255, - 255, - 255, - 224, - 27, - 0, - 0, - 18, - 211, - 255, - 255, - 235, - 39, - 0, - 0, - 0, - 0, - 26, - 222, - 244, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 59, - 0, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 14, - "encoding": 61813 - } - }, - { - "encoding": 166, - "x": 0, - "y": -3, - "width": 9, - "height": 19, - "dx": 8, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 41, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 225, - 237, - 39, - 0, - 0, - 0, - 0, - 10, - 203, - 255, - 255, - 221, - 22, - 0, - 0, - 3, - 174, - 255, - 255, - 255, - 255, - 201, - 10, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 3, - 123, - 132, - 167, - 255, - 255, - 187, - 132, - 131, - 12, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 106, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 14, - "encoding": 61814 - } - } - ] - }, - { - "name": "Oswald17", - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17 - }, - "bpp": 8, - "height": 31, - "ascent": 25, - "descent": 6, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 6, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 1, - "y": 0, - "width": 4, - "height": 19, - "dx": 6, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 209, - 252, - 252, - 94, - 196, - 255, - 255, - 75, - 179, - 255, - 255, - 56, - 161, - 255, - 255, - 37, - 144, - 255, - 255, - 18, - 127, - 255, - 253, - 2, - 110, - 255, - 235, - 0, - 93, - 255, - 216, - 0, - 76, - 255, - 197, - 0, - 59, - 255, - 178, - 0, - 42, - 255, - 159, - 0, - 25, - 255, - 139, - 0, - 8, - 255, - 120, - 0, - 0, - 247, - 101, - 0, - 0, - 230, - 82, - 0, - 0, - 4, - 2, - 0, - 225, - 252, - 252, - 75, - 228, - 255, - 255, - 76, - 228, - 255, - 255, - 76 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 1, - "y": 11, - "width": 8, - "height": 8, - "dx": 9, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 138, - 252, - 252, - 54, - 134, - 252, - 252, - 61, - 140, - 255, - 255, - 12, - 136, - 255, - 255, - 17, - 140, - 255, - 221, - 0, - 136, - 255, - 228, - 0, - 140, - 255, - 176, - 0, - 136, - 255, - 183, - 0, - 140, - 255, - 132, - 0, - 136, - 255, - 137, - 0, - 140, - 255, - 87, - 0, - 136, - 255, - 92, - 0, - 140, - 255, - 43, - 0, - 136, - 255, - 47, - 0, - 3, - 4, - 1, - 0, - 3, - 4, - 1, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 86, - 252, - 252, - 91, - 0, - 166, - 252, - 249, - 8, - 0, - 0, - 0, - 126, - 255, - 255, - 52, - 0, - 208, - 255, - 220, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 13, - 2, - 247, - 255, - 180, - 0, - 0, - 0, - 0, - 202, - 255, - 228, - 0, - 32, - 255, - 255, - 140, - 0, - 0, - 0, - 1, - 241, - 255, - 188, - 0, - 72, - 255, - 255, - 100, - 0, - 17, - 252, - 253, - 255, - 255, - 255, - 252, - 254, - 255, - 255, - 254, - 93, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 7, - 80, - 156, - 255, - 255, - 126, - 80, - 211, - 255, - 244, - 80, - 28, - 0, - 0, - 132, - 255, - 255, - 41, - 0, - 216, - 255, - 213, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 12, - 1, - 245, - 255, - 183, - 0, - 0, - 26, - 252, - 255, - 255, - 255, - 252, - 253, - 255, - 255, - 255, - 252, - 82, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 10, - 89, - 255, - 255, - 190, - 80, - 149, - 255, - 255, - 133, - 80, - 25, - 0, - 41, - 255, - 255, - 131, - 0, - 129, - 255, - 255, - 48, - 0, - 0, - 0, - 74, - 255, - 255, - 97, - 0, - 162, - 255, - 255, - 15, - 0, - 0, - 0, - 108, - 255, - 255, - 63, - 0, - 196, - 255, - 237, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 29, - 0, - 229, - 255, - 203, - 0, - 0, - 0, - 0, - 175, - 255, - 249, - 3, - 9, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 208, - 255, - 217, - 0, - 40, - 255, - 255, - 137, - 0, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 0, - "y": -2, - "width": 11, - "height": 24, - "dx": 12, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 76, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 169, - 232, - 254, - 255, - 223, - 122, - 3, - 0, - 0, - 57, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 1, - 207, - 255, - 255, - 198, - 90, - 125, - 254, - 255, - 254, - 37, - 28, - 255, - 255, - 255, - 44, - 0, - 0, - 172, - 255, - 255, - 114, - 54, - 255, - 255, - 255, - 34, - 0, - 0, - 116, - 255, - 255, - 150, - 36, - 255, - 255, - 255, - 118, - 0, - 0, - 42, - 74, - 27, - 1, - 2, - 236, - 255, - 255, - 251, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 253, - 111, - 1, - 0, - 0, - 0, - 0, - 2, - 173, - 255, - 255, - 255, - 255, - 149, - 4, - 0, - 0, - 0, - 0, - 5, - 158, - 255, - 255, - 255, - 255, - 172, - 5, - 0, - 0, - 0, - 0, - 1, - 120, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 250, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 10, - 0, - 0, - 81, - 255, - 255, - 255, - 179, - 33, - 166, - 219, - 222, - 0, - 0, - 0, - 170, - 255, - 255, - 236, - 41, - 255, - 255, - 254, - 13, - 0, - 0, - 106, - 255, - 255, - 253, - 4, - 241, - 255, - 255, - 87, - 0, - 0, - 119, - 255, - 255, - 225, - 0, - 150, - 255, - 255, - 234, - 101, - 97, - 231, - 255, - 255, - 141, - 0, - 21, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 17, - 0, - 0, - 18, - 142, - 221, - 253, - 255, - 238, - 150, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 207, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 204, - 0, - 0, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 0, - "y": 0, - "width": 23, - "height": 19, - "dx": 23, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 82, - 196, - 242, - 249, - 219, - 136, - 12, - 0, - 0, - 0, - 3, - 234, - 252, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 58, - 255, - 254, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 129, - 94, - 227, - 255, - 255, - 42, - 0, - 0, - 132, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 220, - 0, - 0, - 125, - 255, - 255, - 93, - 0, - 0, - 206, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 201, - 0, - 0, - 106, - 255, - 255, - 111, - 0, - 26, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 201, - 0, - 0, - 105, - 255, - 255, - 112, - 0, - 98, - 255, - 233, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 252, - 255, - 214, - 0, - 0, - 118, - 255, - 255, - 99, - 0, - 172, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 254, - 53, - 14, - 199, - 255, - 255, - 56, - 5, - 242, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 3, - 64, - 255, - 252, - 17, - 1, - 98, - 204, - 245, - 245, - 206, - 104, - 1, - 0, - 0, - 4, - 148, - 252, - 255, - 255, - 255, - 210, - 41, - 0, - 138, - 255, - 194, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 21, - 68, - 76, - 43, - 1, - 0, - 0, - 212, - 255, - 120, - 1, - 226, - 255, - 250, - 112, - 109, - 248, - 255, - 238, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 46, - 28, - 255, - 255, - 184, - 0, - 0, - 175, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 228, - 1, - 52, - 255, - 255, - 162, - 0, - 0, - 151, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 154, - 0, - 56, - 255, - 255, - 160, - 0, - 0, - 149, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 245, - 255, - 80, - 0, - 52, - 255, - 255, - 164, - 0, - 0, - 152, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 250, - 13, - 0, - 25, - 255, - 255, - 193, - 0, - 0, - 182, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 188, - 0, - 0, - 0, - 218, - 255, - 254, - 109, - 106, - 251, - 255, - 231, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 114, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 89, - 203, - 248, - 249, - 207, - 99, - 1, - 0 - ], - "width": 23 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 14, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 52, - 182, - 240, - 245, - 202, - 98, - 1, - 0, - 0, - 0, - 0, - 56, - 249, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 156, - 101, - 239, - 255, - 255, - 33, - 0, - 0, - 6, - 252, - 255, - 247, - 6, - 0, - 157, - 255, - 255, - 80, - 0, - 0, - 9, - 255, - 255, - 240, - 0, - 0, - 182, - 255, - 255, - 61, - 0, - 0, - 0, - 215, - 255, - 255, - 29, - 9, - 242, - 255, - 239, - 9, - 0, - 0, - 0, - 124, - 255, - 255, - 106, - 104, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 15, - 234, - 255, - 206, - 230, - 255, - 187, - 4, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 206, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 254, - 31, - 0, - 0, - 41, - 48, - 45, - 0, - 67, - 253, - 255, - 255, - 255, - 140, - 0, - 0, - 233, - 255, - 227, - 11, - 229, - 255, - 245, - 199, - 255, - 252, - 47, - 18, - 255, - 255, - 193, - 98, - 255, - 255, - 145, - 42, - 251, - 255, - 199, - 72, - 255, - 255, - 131, - 166, - 255, - 255, - 68, - 0, - 136, - 255, - 255, - 224, - 255, - 255, - 45, - 200, - 255, - 255, - 36, - 0, - 11, - 224, - 255, - 255, - 255, - 182, - 0, - 186, - 255, - 255, - 66, - 0, - 0, - 133, - 255, - 255, - 255, - 141, - 4, - 120, - 255, - 255, - 203, - 82, - 139, - 253, - 255, - 255, - 255, - 255, - 233, - 12, - 217, - 255, - 255, - 255, - 255, - 255, - 238, - 123, - 250, - 255, - 248, - 0, - 20, - 150, - 230, - 253, - 228, - 161, - 32, - 0, - 59, - 208, - 246 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 1, - "y": 11, - "width": 4, - "height": 8, - "dx": 8, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 95, - 252, - 252, - 83, - 96, - 255, - 255, - 44, - 96, - 255, - 253, - 7, - 96, - 255, - 218, - 0, - 96, - 255, - 178, - 0, - 96, - 255, - 137, - 0, - 96, - 255, - 97, - 0, - 2, - 4, - 2, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 1, - "y": -4, - "width": 6, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 0, - 0, - 1, - 90, - 199, - 214, - 0, - 0, - 137, - 255, - 255, - 224, - 0, - 46, - 254, - 255, - 243, - 95, - 0, - 146, - 255, - 255, - 121, - 0, - 0, - 222, - 255, - 255, - 36, - 0, - 16, - 255, - 255, - 246, - 1, - 0, - 48, - 255, - 255, - 217, - 0, - 0, - 71, - 255, - 255, - 199, - 0, - 0, - 86, - 255, - 255, - 189, - 0, - 0, - 94, - 255, - 255, - 182, - 0, - 0, - 96, - 255, - 255, - 180, - 0, - 0, - 96, - 255, - 255, - 180, - 0, - 0, - 96, - 255, - 255, - 180, - 0, - 0, - 94, - 255, - 255, - 181, - 0, - 0, - 86, - 255, - 255, - 188, - 0, - 0, - 72, - 255, - 255, - 199, - 0, - 0, - 50, - 255, - 255, - 217, - 0, - 0, - 18, - 255, - 255, - 245, - 1, - 0, - 0, - 224, - 255, - 255, - 34, - 0, - 0, - 147, - 255, - 255, - 118, - 0, - 0, - 48, - 255, - 255, - 242, - 93, - 0, - 0, - 141, - 255, - 255, - 224, - 0, - 0, - 1, - 93, - 203, - 217 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 0, - "y": -4, - "width": 7, - "height": 23, - "dx": 7, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 59, - 234, - 170, - 42, - 0, - 0, - 0, - 60, - 255, - 255, - 247, - 57, - 0, - 0, - 20, - 156, - 255, - 255, - 210, - 1, - 0, - 0, - 2, - 210, - 255, - 255, - 57, - 0, - 0, - 0, - 131, - 255, - 255, - 132, - 0, - 0, - 0, - 83, - 255, - 255, - 182, - 0, - 0, - 0, - 53, - 255, - 255, - 214, - 0, - 0, - 0, - 35, - 255, - 255, - 235, - 0, - 0, - 0, - 26, - 255, - 255, - 249, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 3, - 0, - 0, - 17, - 255, - 255, - 255, - 7, - 0, - 0, - 16, - 255, - 255, - 255, - 8, - 0, - 0, - 16, - 255, - 255, - 255, - 7, - 0, - 0, - 18, - 255, - 255, - 255, - 3, - 0, - 0, - 26, - 255, - 255, - 249, - 0, - 0, - 0, - 37, - 255, - 255, - 235, - 0, - 0, - 0, - 55, - 255, - 255, - 213, - 0, - 0, - 0, - 82, - 255, - 255, - 181, - 0, - 0, - 0, - 131, - 255, - 255, - 131, - 0, - 0, - 2, - 212, - 255, - 255, - 55, - 0, - 19, - 154, - 255, - 255, - 208, - 1, - 0, - 60, - 255, - 255, - 247, - 56, - 0, - 0, - 60, - 238, - 174, - 44, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 1, - "y": 10, - "width": 9, - "height": 9, - "dx": 10, - "glyphBitmap": { - "height": 9, - "pixelArray": [ - 0, - 0, - 0, - 232, - 252, - 110, - 0, - 0, - 0, - 18, - 11, - 0, - 209, - 255, - 85, - 0, - 28, - 0, - 127, - 232, - 107, - 188, - 255, - 96, - 171, - 245, - 14, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 68, - 1, - 56, - 178, - 255, - 255, - 243, - 113, - 21, - 0, - 0, - 5, - 202, - 255, - 234, - 255, - 80, - 0, - 0, - 0, - 134, - 255, - 205, - 79, - 255, - 238, - 29, - 0, - 1, - 141, - 252, - 81, - 1, - 209, - 215, - 55, - 0, - 0, - 0, - 39, - 2, - 0, - 35, - 5, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 4, - "width": 10, - "height": 11, - "dx": 10, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 0, - 0, - 0, - 249, - 252, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 95, - 252, - 252, - 252, - 255, - 255, - 254, - 252, - 252, - 209, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 30, - 80, - 80, - 80, - 254, - 255, - 138, - 80, - 80, - 67, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 2, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 0, - "y": -4, - "width": 5, - "height": 7, - "dx": 5, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 12, - 252, - 252, - 252, - 44, - 12, - 255, - 255, - 255, - 44, - 12, - 255, - 255, - 255, - 44, - 0, - 0, - 106, - 255, - 29, - 0, - 34, - 218, - 213, - 0, - 0, - 196, - 223, - 49, - 0, - 0, - 33, - 7, - 0, - 0 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 1, - "y": 5, - "width": 7, - "height": 4, - "dx": 8, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 48, - 72, - 72, - 72, - 72, - 72, - 11, - 168, - 255, - 255, - 255, - 255, - 255, - 36, - 168, - 255, - 255, - 255, - 255, - 255, - 36, - 3, - 4, - 4, - 4, - 4, - 4, - 1 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 1, - "y": 0, - "width": 4, - "height": 3, - "dx": 5, - "glyphBitmap": { - "height": 3, - "pixelArray": [ - 225, - 252, - 252, - 75, - 228, - 255, - 255, - 76, - 228, - 255, - 255, - 76 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 0, - "y": 0, - "width": 9, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 252, - 126, - 0, - 0, - 0, - 0, - 0, - 22, - 254, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 234, - 2, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 4, - 238, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 253, - 17, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 228, - 1, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 6, - 243, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 250, - 13, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 221, - 1, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 9, - 247, - 255, - 73, - 0, - 0, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 2, - 102, - 199, - 242, - 248, - 213, - 132, - 13, - 0, - 0, - 1, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 16, - 0, - 78, - 255, - 255, - 253, - 125, - 99, - 232, - 255, - 255, - 142, - 0, - 172, - 255, - 255, - 169, - 0, - 0, - 102, - 255, - 255, - 236, - 2, - 219, - 255, - 255, - 121, - 0, - 0, - 58, - 255, - 255, - 255, - 30, - 236, - 255, - 255, - 113, - 0, - 0, - 49, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 112, - 0, - 0, - 48, - 255, - 255, - 255, - 48, - 236, - 255, - 255, - 113, - 0, - 0, - 49, - 255, - 255, - 255, - 48, - 220, - 255, - 255, - 124, - 0, - 0, - 60, - 255, - 255, - 255, - 31, - 172, - 255, - 255, - 177, - 0, - 0, - 114, - 255, - 255, - 237, - 3, - 75, - 255, - 255, - 255, - 124, - 98, - 235, - 255, - 255, - 141, - 0, - 1, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 15, - 0, - 0, - 2, - 99, - 200, - 245, - 251, - 216, - 132, - 12, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 2, - "y": 0, - "width": 7, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 2, - 132, - 252, - 252, - 134, - 1, - 71, - 207, - 255, - 255, - 255, - 136, - 203, - 255, - 255, - 255, - 255, - 255, - 136, - 236, - 255, - 255, - 254, - 255, - 255, - 136, - 142, - 91, - 26, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136, - 0, - 0, - 0, - 204, - 255, - 255, - 136 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 1, - 93, - 194, - 239, - 250, - 223, - 155, - 32, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 44, - 0, - 49, - 255, - 255, - 255, - 154, - 93, - 211, - 255, - 255, - 190, - 0, - 141, - 255, - 255, - 207, - 1, - 0, - 63, - 255, - 255, - 255, - 21, - 183, - 255, - 255, - 147, - 0, - 0, - 20, - 255, - 255, - 255, - 57, - 199, - 255, - 255, - 129, - 0, - 0, - 37, - 255, - 255, - 255, - 58, - 57, - 72, - 72, - 36, - 0, - 0, - 109, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 7, - 222, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 44, - 251, - 255, - 255, - 191, - 1, - 0, - 0, - 0, - 0, - 3, - 199, - 255, - 255, - 244, - 34, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 28, - 242, - 255, - 255, - 189, - 2, - 0, - 0, - 0, - 0, - 1, - 177, - 255, - 255, - 243, - 32, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 16, - 230, - 255, - 255, - 187, - 1, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 103, - 72, - 72, - 72, - 72, - 54, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 11, - 123, - 208, - 245, - 247, - 214, - 137, - 19, - 0, - 0, - 0, - 13, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 27, - 0, - 0, - 135, - 255, - 255, - 241, - 107, - 103, - 228, - 255, - 255, - 165, - 0, - 0, - 222, - 255, - 255, - 129, - 0, - 0, - 100, - 255, - 255, - 247, - 3, - 4, - 255, - 255, - 255, - 84, - 0, - 0, - 55, - 255, - 255, - 255, - 28, - 7, - 200, - 200, - 200, - 60, - 0, - 0, - 59, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 120, - 240, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 233, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 169, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 55, - 225, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 222, - 0, - 2, - 40, - 40, - 40, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 18, - 8, - 255, - 255, - 255, - 79, - 0, - 0, - 50, - 255, - 255, - 255, - 30, - 1, - 247, - 255, - 255, - 106, - 0, - 0, - 68, - 255, - 255, - 255, - 10, - 0, - 205, - 255, - 255, - 182, - 3, - 0, - 146, - 255, - 255, - 219, - 0, - 0, - 116, - 255, - 255, - 255, - 223, - 211, - 255, - 255, - 255, - 128, - 0, - 0, - 9, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 14, - 0, - 0, - 0, - 10, - 126, - 211, - 248, - 251, - 216, - 135, - 14, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 108, - 252, - 252, - 252, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 221, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 249, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 170, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 219, - 113, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 35, - 254, - 255, - 125, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 33, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 18, - 245, - 255, - 193, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 122, - 255, - 255, - 98, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 7, - 231, - 255, - 247, - 14, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 36, - 255, - 255, - 242, - 188, - 188, - 218, - 255, - 255, - 236, - 188, - 136, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 1, - 4, - 4, - 4, - 4, - 4, - 115, - 255, - 255, - 182, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 180, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 101, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 111, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 114, - 255, - 255, - 112, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 118, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 135, - 196, - 246, - 238, - 179, - 44, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 35, - 0, - 134, - 255, - 255, - 252, - 128, - 97, - 224, - 255, - 255, - 157, - 0, - 138, - 255, - 255, - 141, - 0, - 0, - 81, - 255, - 255, - 239, - 2, - 11, - 20, - 20, - 7, - 0, - 0, - 30, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 44, - 161, - 192, - 192, - 85, - 0, - 0, - 14, - 255, - 255, - 255, - 32, - 199, - 255, - 255, - 125, - 0, - 0, - 27, - 255, - 255, - 251, - 7, - 163, - 255, - 255, - 174, - 0, - 0, - 78, - 255, - 255, - 201, - 0, - 82, - 255, - 255, - 254, - 119, - 86, - 216, - 255, - 255, - 111, - 0, - 3, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 7, - 0, - 0, - 9, - 133, - 213, - 248, - 251, - 216, - 133, - 11, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 66, - 184, - 237, - 250, - 227, - 168, - 50, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 68, - 0, - 21, - 245, - 255, - 255, - 159, - 89, - 193, - 255, - 255, - 214, - 1, - 104, - 255, - 255, - 219, - 1, - 0, - 41, - 255, - 255, - 255, - 26, - 160, - 255, - 255, - 171, - 0, - 0, - 6, - 176, - 176, - 176, - 35, - 189, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 157, - 156, - 235, - 247, - 203, - 85, - 0, - 0, - 200, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 200, - 255, - 255, - 255, - 140, - 91, - 206, - 255, - 255, - 225, - 2, - 200, - 255, - 255, - 166, - 0, - 0, - 53, - 255, - 255, - 255, - 43, - 200, - 255, - 255, - 144, - 0, - 0, - 7, - 255, - 255, - 255, - 78, - 200, - 255, - 255, - 144, - 0, - 0, - 0, - 251, - 255, - 255, - 91, - 194, - 255, - 255, - 145, - 0, - 0, - 0, - 251, - 255, - 255, - 80, - 168, - 255, - 255, - 163, - 0, - 0, - 13, - 255, - 255, - 255, - 49, - 108, - 255, - 255, - 219, - 3, - 0, - 65, - 255, - 255, - 241, - 5, - 19, - 243, - 255, - 255, - 155, - 84, - 210, - 255, - 255, - 145, - 0, - 0, - 90, - 254, - 255, - 255, - 255, - 255, - 255, - 220, - 20, - 0, - 0, - 0, - 62, - 186, - 239, - 253, - 221, - 150, - 22, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 0, - "y": 0, - "width": 10, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 12, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 4, - 80, - 80, - 80, - 80, - 84, - 253, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 246, - 5, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 8, - 250, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 244, - 4, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 1, - 233, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 161, - 0, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 7, - 117, - 207, - 245, - 246, - 207, - 117, - 7, - 0, - 0, - 0, - 3, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 2, - 0, - 0, - 89, - 255, - 255, - 248, - 116, - 117, - 250, - 255, - 255, - 82, - 0, - 0, - 165, - 255, - 255, - 156, - 0, - 0, - 162, - 255, - 255, - 159, - 0, - 0, - 194, - 255, - 255, - 112, - 0, - 0, - 117, - 255, - 255, - 189, - 0, - 0, - 180, - 255, - 255, - 121, - 0, - 0, - 125, - 255, - 255, - 176, - 0, - 0, - 121, - 255, - 255, - 173, - 0, - 0, - 176, - 255, - 255, - 119, - 0, - 0, - 20, - 235, - 255, - 253, - 116, - 114, - 254, - 255, - 236, - 19, - 0, - 0, - 0, - 55, - 248, - 255, - 255, - 255, - 255, - 248, - 55, - 0, - 0, - 0, - 4, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 3, - 0, - 0, - 107, - 255, - 255, - 221, - 40, - 39, - 222, - 255, - 255, - 102, - 0, - 0, - 208, - 255, - 255, - 104, - 0, - 0, - 107, - 255, - 255, - 206, - 0, - 6, - 253, - 255, - 255, - 55, - 0, - 0, - 59, - 255, - 255, - 252, - 5, - 14, - 255, - 255, - 255, - 42, - 0, - 0, - 46, - 255, - 255, - 255, - 15, - 2, - 249, - 255, - 255, - 56, - 0, - 0, - 59, - 255, - 255, - 250, - 2, - 0, - 206, - 255, - 255, - 114, - 0, - 0, - 115, - 255, - 255, - 209, - 0, - 0, - 117, - 255, - 255, - 238, - 102, - 100, - 239, - 255, - 255, - 123, - 0, - 0, - 9, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 11, - 0, - 0, - 0, - 9, - 125, - 211, - 249, - 249, - 213, - 129, - 11, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 1, - 101, - 199, - 243, - 246, - 204, - 112, - 4, - 0, - 0, - 1, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 3, - 0, - 67, - 255, - 255, - 251, - 118, - 108, - 241, - 255, - 255, - 97, - 0, - 168, - 255, - 255, - 160, - 0, - 0, - 124, - 255, - 255, - 201, - 0, - 220, - 255, - 255, - 109, - 0, - 0, - 69, - 255, - 255, - 253, - 5, - 247, - 255, - 255, - 97, - 0, - 0, - 57, - 255, - 255, - 255, - 30, - 248, - 255, - 255, - 99, - 0, - 0, - 56, - 255, - 255, - 255, - 36, - 227, - 255, - 255, - 124, - 0, - 0, - 57, - 255, - 255, - 255, - 36, - 172, - 255, - 255, - 217, - 27, - 16, - 170, - 255, - 255, - 255, - 36, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 109, - 246, - 255, - 255, - 254, - 174, - 255, - 255, - 255, - 36, - 0, - 0, - 15, - 65, - 74, - 28, - 56, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 35, - 31, - 36, - 36, - 15, - 0, - 0, - 67, - 255, - 255, - 255, - 25, - 210, - 255, - 255, - 111, - 0, - 0, - 98, - 255, - 255, - 249, - 4, - 176, - 255, - 255, - 163, - 0, - 0, - 165, - 255, - 255, - 196, - 0, - 98, - 255, - 255, - 255, - 180, - 174, - 255, - 255, - 255, - 102, - 0, - 5, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 4, - 0, - 0, - 10, - 124, - 211, - 248, - 250, - 214, - 126, - 9, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 1, - "y": 1, - "width": 4, - "height": 12, - "dx": 6, - "glyphBitmap": { - "height": 12, - "pixelArray": [ - 130, - 252, - 252, - 162, - 132, - 255, - 255, - 164, - 132, - 255, - 255, - 164, - 3, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 252, - 252, - 162, - 132, - 255, - 255, - 164, - 132, - 255, - 255, - 164, - 3, - 4, - 4, - 3 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 1, - "y": -2, - "width": 4, - "height": 16, - "dx": 6, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 138, - 252, - 252, - 158, - 140, - 255, - 255, - 160, - 140, - 255, - 255, - 160, - 3, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 252, - 252, - 174, - 136, - 255, - 255, - 176, - 136, - 255, - 255, - 176, - 3, - 4, - 227, - 171, - 0, - 83, - 255, - 125, - 70, - 255, - 241, - 33, - 14, - 112, - 30, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 0, - "y": 1, - "width": 8, - "height": 14, - "dx": 9, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 197, - 0, - 0, - 0, - 0, - 10, - 146, - 255, - 224, - 0, - 0, - 0, - 51, - 215, - 255, - 255, - 219, - 0, - 4, - 124, - 251, - 255, - 255, - 200, - 36, - 24, - 198, - 255, - 255, - 252, - 127, - 4, - 0, - 68, - 255, - 255, - 220, - 57, - 0, - 0, - 0, - 68, - 255, - 255, - 153, - 8, - 0, - 0, - 0, - 50, - 251, - 255, - 255, - 209, - 43, - 0, - 0, - 0, - 50, - 214, - 255, - 255, - 247, - 108, - 1, - 0, - 0, - 9, - 143, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 67, - 227, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 16, - 164, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 1, - "y": 5, - "width": 8, - "height": 8, - "dx": 10, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 44, - 72, - 72, - 72, - 72, - 72, - 72, - 66, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 44, - 72, - 72, - 72, - 72, - 72, - 72, - 66, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 1, - "y": 1, - "width": 8, - "height": 14, - "dx": 9, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 107, - 1, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 185, - 27, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 238, - 87, - 0, - 0, - 0, - 16, - 164, - 255, - 255, - 255, - 166, - 17, - 0, - 0, - 0, - 88, - 239, - 255, - 255, - 228, - 57, - 0, - 0, - 0, - 29, - 189, - 255, - 255, - 132, - 0, - 0, - 0, - 1, - 104, - 254, - 255, - 132, - 0, - 0, - 20, - 175, - 255, - 255, - 255, - 108, - 0, - 69, - 230, - 255, - 255, - 238, - 87, - 0, - 113, - 255, - 255, - 255, - 184, - 27, - 0, - 0, - 168, - 255, - 245, - 105, - 1, - 0, - 0, - 0, - 168, - 200, - 37, - 0, - 0, - 0, - 0, - 0, - 62, - 4, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 1, - "y": 0, - "width": 10, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 34, - 157, - 224, - 250, - 239, - 195, - 99, - 3, - 0, - 44, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 1, - 176, - 255, - 255, - 211, - 94, - 133, - 253, - 255, - 255, - 86, - 229, - 255, - 255, - 70, - 0, - 0, - 155, - 255, - 255, - 171, - 222, - 255, - 255, - 60, - 0, - 0, - 111, - 255, - 255, - 205, - 154, - 169, - 118, - 30, - 0, - 0, - 138, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 1, - 207, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 20, - 227, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 7, - 191, - 255, - 255, - 213, - 12, - 0, - 0, - 0, - 9, - 181, - 255, - 255, - 223, - 30, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 214, - 29, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 60, - 60, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 252, - 252, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 160, - 0, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 1, - "y": -4, - "width": 21, - "height": 23, - "dx": 22, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 75, - 149, - 194, - 235, - 250, - 245, - 212, - 165, - 81, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 163, - 255, - 255, - 255, - 215, - 147, - 100, - 83, - 97, - 137, - 214, - 255, - 255, - 245, - 56, - 0, - 0, - 0, - 0, - 3, - 177, - 255, - 255, - 229, - 76, - 1, - 0, - 0, - 0, - 0, - 0, - 2, - 91, - 243, - 255, - 230, - 19, - 0, - 0, - 0, - 107, - 255, - 255, - 204, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 253, - 255, - 141, - 0, - 0, - 24, - 241, - 255, - 236, - 25, - 0, - 0, - 24, - 153, - 229, - 233, - 95, - 246, - 252, - 135, - 0, - 151, - 255, - 237, - 6, - 0, - 131, - 255, - 255, - 110, - 0, - 0, - 42, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 50, - 255, - 255, - 61, - 1, - 224, - 255, - 236, - 7, - 0, - 7, - 214, - 255, - 255, - 206, - 98, - 187, - 255, - 255, - 62, - 0, - 1, - 241, - 255, - 104, - 33, - 255, - 255, - 154, - 0, - 0, - 108, - 255, - 255, - 203, - 8, - 0, - 173, - 255, - 255, - 24, - 0, - 0, - 214, - 255, - 125, - 81, - 255, - 255, - 95, - 0, - 0, - 213, - 255, - 255, - 54, - 0, - 0, - 209, - 255, - 242, - 1, - 0, - 0, - 207, - 255, - 127, - 126, - 255, - 255, - 51, - 0, - 31, - 255, - 255, - 216, - 0, - 0, - 1, - 245, - 255, - 204, - 0, - 0, - 0, - 224, - 255, - 106, - 149, - 255, - 255, - 23, - 0, - 75, - 255, - 255, - 167, - 0, - 0, - 25, - 255, - 255, - 167, - 0, - 0, - 14, - 255, - 255, - 62, - 158, - 255, - 255, - 14, - 0, - 91, - 255, - 255, - 147, - 0, - 0, - 61, - 255, - 255, - 129, - 0, - 0, - 81, - 255, - 240, - 8, - 148, - 255, - 255, - 28, - 0, - 72, - 255, - 255, - 180, - 0, - 0, - 124, - 255, - 255, - 93, - 0, - 2, - 199, - 255, - 145, - 0, - 120, - 255, - 255, - 57, - 0, - 21, - 252, - 255, - 251, - 104, - 106, - 245, - 255, - 255, - 79, - 1, - 128, - 255, - 231, - 21, - 0, - 78, - 255, - 255, - 123, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 165, - 251, - 255, - 216, - 216, - 255, - 239, - 58, - 0, - 0, - 10, - 246, - 255, - 221, - 6, - 0, - 4, - 129, - 220, - 236, - 154, - 8, - 91, - 219, - 255, - 229, - 157, - 29, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 237, - 255, - 255, - 128, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 245, - 255, - 255, - 218, - 122, - 57, - 19, - 3, - 9, - 38, - 75, - 125, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 91, - 185, - 250, - 255, - 255, - 255, - 255, - 255, - 245, - 200, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 37, - 68, - 74, - 62, - 28, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 21 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 13, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 180, - 252, - 252, - 252, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 236, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 245, - 255, - 252, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 166, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 3, - 243, - 255, - 234, - 100, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 189, - 56, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 145, - 13, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 100, - 0, - 223, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 55, - 0, - 179, - 255, - 255, - 69, - 0, - 0, - 0, - 6, - 249, - 255, - 255, - 13, - 0, - 135, - 255, - 255, - 122, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 252, - 252, - 254, - 255, - 255, - 175, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 158, - 255, - 255, - 172, - 80, - 80, - 82, - 253, - 255, - 255, - 25, - 0, - 0, - 211, - 255, - 255, - 96, - 0, - 0, - 0, - 218, - 255, - 255, - 78, - 0, - 11, - 253, - 255, - 255, - 53, - 0, - 0, - 0, - 175, - 255, - 255, - 131, - 0, - 61, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 133, - 255, - 255, - 184, - 0, - 114, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 237, - 1 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 250, - 233, - 194, - 107, - 8, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 10, - 0, - 140, - 255, - 255, - 255, - 81, - 91, - 139, - 245, - 255, - 255, - 126, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 106, - 255, - 255, - 198, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 51, - 255, - 255, - 229, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 59, - 255, - 255, - 219, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 124, - 255, - 255, - 161, - 0, - 140, - 255, - 255, - 255, - 72, - 80, - 133, - 246, - 255, - 247, - 47, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 43, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 27, - 0, - 140, - 255, - 255, - 255, - 4, - 12, - 68, - 216, - 255, - 255, - 202, - 1, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 52, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 5, - 249, - 255, - 255, - 106, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 122, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 9, - 251, - 255, - 255, - 105, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 58, - 140, - 255, - 255, - 255, - 72, - 77, - 120, - 234, - 255, - 255, - 215, - 2, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 56, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 251, - 219, - 149, - 30, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 72, - 178, - 228, - 250, - 240, - 200, - 116, - 7, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 6, - 45, - 255, - 255, - 255, - 172, - 86, - 114, - 247, - 255, - 255, - 103, - 137, - 255, - 255, - 236, - 5, - 0, - 0, - 158, - 255, - 255, - 188, - 190, - 255, - 255, - 194, - 0, - 0, - 0, - 131, - 255, - 255, - 225, - 213, - 255, - 255, - 185, - 0, - 0, - 0, - 125, - 255, - 255, - 236, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 107, - 220, - 220, - 203, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 16, - 32, - 32, - 30, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 124, - 255, - 255, - 236, - 214, - 255, - 255, - 185, - 0, - 0, - 0, - 125, - 255, - 255, - 234, - 191, - 255, - 255, - 199, - 0, - 0, - 0, - 131, - 255, - 255, - 220, - 138, - 255, - 255, - 241, - 6, - 0, - 0, - 169, - 255, - 255, - 178, - 45, - 254, - 255, - 255, - 175, - 80, - 116, - 251, - 255, - 255, - 92, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 4, - 0, - 0, - 72, - 184, - 232, - 254, - 244, - 207, - 117, - 8, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 249, - 227, - 189, - 106, - 5, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 11, - 0, - 140, - 255, - 255, - 255, - 80, - 88, - 152, - 255, - 255, - 255, - 129, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 179, - 255, - 255, - 224, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 8, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 29, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 32, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 26, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 134, - 255, - 255, - 253, - 4, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 185, - 255, - 255, - 210, - 0, - 140, - 255, - 255, - 255, - 72, - 82, - 153, - 255, - 255, - 255, - 111, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 6, - 0, - 140, - 255, - 255, - 255, - 255, - 254, - 231, - 193, - 104, - 4, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 1, - "y": 0, - "width": 9, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 150, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 140, - 255, - 255, - 255, - 80, - 80, - 80, - 80, - 48, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 72, - 72, - 72, - 45, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 140, - 255, - 255, - 255, - 4, - 4, - 4, - 3, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 72, - 72, - 72, - 72, - 47, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 1, - "y": 0, - "width": 9, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 111, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 80, - 80, - 80, - 80, - 35, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 72, - 72, - 72, - 40, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 140, - 255, - 255, - 255, - 4, - 4, - 4, - 3, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 72, - 179, - 228, - 250, - 241, - 206, - 131, - 17, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 20, - 0, - 35, - 253, - 255, - 255, - 179, - 88, - 114, - 239, - 255, - 255, - 143, - 0, - 130, - 255, - 255, - 238, - 7, - 0, - 0, - 125, - 255, - 255, - 225, - 0, - 183, - 255, - 255, - 196, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 8, - 209, - 255, - 255, - 185, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 16, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 6, - 16, - 16, - 16, - 1, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 184, - 0, - 32, - 252, - 252, - 252, - 252, - 252, - 44, - 220, - 255, - 255, - 184, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 44, - 220, - 255, - 255, - 184, - 0, - 10, - 80, - 83, - 255, - 255, - 255, - 44, - 220, - 255, - 255, - 184, - 0, - 0, - 0, - 5, - 255, - 255, - 255, - 44, - 210, - 255, - 255, - 186, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 44, - 183, - 255, - 255, - 205, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 44, - 128, - 255, - 255, - 247, - 12, - 0, - 0, - 101, - 255, - 255, - 255, - 44, - 37, - 254, - 255, - 255, - 184, - 83, - 105, - 238, - 255, - 255, - 255, - 44, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 255, - 255, - 44, - 0, - 1, - 86, - 192, - 241, - 253, - 213, - 99, - 51, - 255, - 255, - 44 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 14, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 130, - 252, - 252, - 252, - 8, - 0, - 0, - 4, - 252, - 252, - 252, - 130, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 78, - 72, - 72, - 75, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 12, - 4, - 4, - 8, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132, - 132, - 255, - 255, - 255, - 8, - 0, - 0, - 4, - 255, - 255, - 255, - 132 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 1, - "y": 0, - "width": 5, - "height": 19, - "dx": 7, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 111, - 252, - 252, - 252, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12, - 112, - 255, - 255, - 255, - 12 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": 0, - "width": 7, - "height": 19, - "dx": 8, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 48, - 252, - 252, - 252, - 91, - 0, - 0, - 48, - 255, - 255, - 255, - 91, - 0, - 0, - 48, - 255, - 255, - 255, - 91, - 0, - 0, - 48, - 255, - 255, - 255, - 91, - 0, - 0, - 48, - 255, - 255, - 255, - 90, - 0, - 0, - 48, - 255, - 255, - 255, - 90, - 0, - 0, - 48, - 255, - 255, - 255, - 90, - 0, - 0, - 48, - 255, - 255, - 255, - 90, - 0, - 0, - 48, - 255, - 255, - 255, - 89, - 0, - 0, - 48, - 255, - 255, - 255, - 89, - 0, - 0, - 48, - 255, - 255, - 255, - 89, - 0, - 0, - 48, - 255, - 255, - 255, - 88, - 0, - 0, - 48, - 255, - 255, - 255, - 88, - 0, - 0, - 48, - 255, - 255, - 255, - 88, - 0, - 0, - 53, - 255, - 255, - 255, - 86, - 0, - 0, - 104, - 255, - 255, - 255, - 69, - 94, - 155, - 242, - 255, - 255, - 255, - 25, - 200, - 255, - 255, - 255, - 255, - 168, - 0, - 200, - 255, - 250, - 221, - 139, - 11, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 0, - 0, - 0, - 104, - 252, - 252, - 236, - 11, - 140, - 255, - 255, - 255, - 0, - 0, - 3, - 219, - 255, - 255, - 140, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 81, - 255, - 255, - 254, - 33, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 197, - 255, - 255, - 176, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 58, - 255, - 255, - 255, - 66, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 173, - 255, - 255, - 212, - 1, - 0, - 0, - 140, - 255, - 255, - 255, - 36, - 254, - 255, - 255, - 102, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 150, - 255, - 255, - 238, - 11, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 246, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 179, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 14, - 207, - 255, - 255, - 152, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 109, - 255, - 255, - 242, - 12, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 19, - 249, - 255, - 255, - 99, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 171, - 255, - 255, - 201, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 73, - 255, - 255, - 255, - 48, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 3, - 229, - 255, - 255, - 149, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 135, - 255, - 255, - 241, - 11, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 97 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 1, - "y": 0, - "width": 9, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 108, - 108, - 108, - 108, - 70, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 1, - "y": 0, - "width": 14, - "height": 19, - "dx": 16, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 70, - 252, - 252, - 252, - 121, - 0, - 0, - 0, - 0, - 12, - 249, - 252, - 252, - 160, - 75, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 166, - 79, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 171, - 83, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 175, - 88, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 180, - 92, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 184, - 96, - 255, - 255, - 231, - 255, - 188, - 0, - 0, - 82, - 255, - 244, - 246, - 255, - 188, - 100, - 255, - 255, - 171, - 255, - 240, - 2, - 0, - 138, - 255, - 191, - 238, - 255, - 193, - 104, - 255, - 255, - 110, - 255, - 255, - 39, - 0, - 193, - 255, - 136, - 234, - 255, - 197, - 109, - 255, - 255, - 74, - 233, - 255, - 92, - 4, - 245, - 255, - 80, - 229, - 255, - 202, - 113, - 255, - 255, - 69, - 177, - 255, - 146, - 47, - 255, - 255, - 25, - 224, - 255, - 206, - 117, - 255, - 255, - 64, - 121, - 255, - 200, - 102, - 255, - 225, - 0, - 220, - 255, - 211, - 121, - 255, - 255, - 60, - 65, - 255, - 248, - 162, - 255, - 169, - 0, - 215, - 255, - 215, - 125, - 255, - 255, - 56, - 13, - 253, - 255, - 246, - 255, - 114, - 0, - 210, - 255, - 219, - 130, - 255, - 255, - 51, - 0, - 209, - 255, - 255, - 255, - 58, - 0, - 206, - 255, - 224, - 134, - 255, - 255, - 47, - 0, - 153, - 255, - 255, - 250, - 9, - 0, - 201, - 255, - 228, - 138, - 255, - 255, - 43, - 0, - 97, - 255, - 255, - 203, - 0, - 0, - 196, - 255, - 233, - 142, - 255, - 255, - 38, - 0, - 41, - 255, - 255, - 147, - 0, - 0, - 192, - 255, - 237, - 146, - 255, - 255, - 34, - 0, - 2, - 239, - 255, - 92, - 0, - 0, - 187, - 255, - 242 - ], - "width": 14 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 249, - 31, - 0, - 0, - 0, - 87, - 252, - 252, - 146, - 140, - 255, - 255, - 138, - 0, - 0, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 239, - 12, - 0, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 255, - 106, - 0, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 255, - 217, - 2, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 255, - 255, - 74, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 255, - 255, - 186, - 0, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 255, - 255, - 255, - 43, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 188, - 255, - 255, - 154, - 88, - 255, - 255, - 148, - 140, - 255, - 255, - 118, - 216, - 255, - 247, - 108, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 106, - 255, - 255, - 210, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 12, - 240, - 255, - 255, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 141, - 255, - 255, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 33, - 253, - 255, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 0, - 175, - 255, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 0, - 64, - 255, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 0, - 1, - 209, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 0, - 0, - 99, - 255, - 255, - 148, - 140, - 255, - 255, - 116, - 0, - 0, - 0, - 9, - 236, - 255, - 148 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 71, - 178, - 227, - 250, - 242, - 205, - 128, - 14, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 24, - 0, - 45, - 255, - 255, - 255, - 175, - 88, - 113, - 242, - 255, - 255, - 160, - 0, - 145, - 255, - 255, - 237, - 6, - 0, - 0, - 121, - 255, - 255, - 248, - 11, - 192, - 255, - 255, - 195, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 57, - 216, - 255, - 255, - 188, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 83, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 215, - 255, - 255, - 188, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 82, - 188, - 255, - 255, - 194, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 57, - 134, - 255, - 255, - 236, - 5, - 0, - 0, - 121, - 255, - 255, - 250, - 13, - 41, - 254, - 255, - 255, - 170, - 80, - 107, - 239, - 255, - 255, - 160, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 23, - 0, - 0, - 0, - 74, - 179, - 230, - 254, - 246, - 210, - 135, - 15, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 252, - 247, - 212, - 132, - 14, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 13, - 0, - 140, - 255, - 255, - 255, - 80, - 85, - 127, - 246, - 255, - 255, - 127, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 132, - 255, - 255, - 209, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 88, - 255, - 255, - 248, - 1, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 2, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 120, - 255, - 255, - 232, - 0, - 140, - 255, - 255, - 255, - 0, - 4, - 57, - 221, - 255, - 255, - 170, - 0, - 140, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 249, - 47, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 61, - 0, - 0, - 140, - 255, - 255, - 255, - 80, - 80, - 70, - 33, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 1, - "y": -4, - "width": 12, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 0, - 0, - 71, - 178, - 227, - 250, - 242, - 204, - 126, - 13, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 23, - 0, - 45, - 255, - 255, - 255, - 175, - 88, - 113, - 242, - 255, - 255, - 158, - 0, - 145, - 255, - 255, - 237, - 6, - 0, - 0, - 121, - 255, - 255, - 247, - 10, - 192, - 255, - 255, - 195, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 56, - 216, - 255, - 255, - 188, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 83, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 220, - 255, - 255, - 188, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 88, - 215, - 255, - 255, - 188, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 82, - 188, - 255, - 255, - 194, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 51, - 134, - 255, - 255, - 236, - 5, - 0, - 0, - 121, - 255, - 255, - 249, - 8, - 41, - 254, - 255, - 255, - 170, - 80, - 107, - 239, - 255, - 255, - 153, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 24, - 0, - 0, - 0, - 74, - 179, - 230, - 254, - 255, - 255, - 230, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 156, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 173, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 173, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 99, - 2, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 248, - 228, - 188, - 107, - 9, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 17, - 0, - 140, - 255, - 255, - 255, - 80, - 88, - 146, - 251, - 255, - 255, - 152, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 144, - 255, - 255, - 232, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 13, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 16, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 118, - 255, - 255, - 238, - 1, - 140, - 255, - 255, - 255, - 0, - 10, - 75, - 234, - 255, - 255, - 180, - 0, - 140, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 243, - 52, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 46, - 0, - 0, - 140, - 255, - 255, - 255, - 80, - 141, - 255, - 255, - 246, - 8, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 31, - 255, - 255, - 255, - 71, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 219, - 255, - 255, - 145, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 150, - 255, - 255, - 218, - 0, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 82, - 255, - 255, - 255, - 37, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 16, - 253, - 255, - 255, - 110, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 200, - 255, - 255, - 183, - 0, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 132, - 255, - 255, - 248, - 10, - 140, - 255, - 255, - 255, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 75 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 14, - 129, - 211, - 246, - 245, - 206, - 114, - 6, - 0, - 0, - 0, - 18, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 2, - 0, - 0, - 146, - 255, - 255, - 226, - 100, - 104, - 238, - 255, - 255, - 80, - 0, - 0, - 228, - 255, - 255, - 100, - 0, - 0, - 116, - 255, - 255, - 166, - 0, - 2, - 255, - 255, - 255, - 90, - 0, - 0, - 60, - 255, - 255, - 206, - 0, - 0, - 243, - 255, - 255, - 176, - 1, - 0, - 18, - 86, - 39, - 3, - 0, - 0, - 190, - 255, - 255, - 255, - 138, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 166, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 199, - 23, - 0, - 0, - 0, - 0, - 0, - 1, - 121, - 255, - 255, - 255, - 255, - 220, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 247, - 255, - 255, - 255, - 210, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 234, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 9, - 2, - 0, - 43, - 242, - 255, - 255, - 234, - 2, - 2, - 153, - 206, - 251, - 24, - 0, - 0, - 122, - 255, - 255, - 255, - 36, - 0, - 237, - 255, - 255, - 65, - 0, - 0, - 53, - 255, - 255, - 255, - 53, - 0, - 183, - 255, - 255, - 143, - 0, - 0, - 62, - 255, - 255, - 255, - 22, - 0, - 83, - 255, - 255, - 252, - 123, - 85, - 202, - 255, - 255, - 189, - 0, - 0, - 1, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 39, - 0, - 0, - 0, - 2, - 94, - 194, - 241, - 254, - 225, - 150, - 26, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 11, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 12, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 73, - 80, - 80, - 193, - 255, - 255, - 237, - 80, - 80, - 80, - 4, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 228, - 0, - 0, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 1, - "y": 0, - "width": 12, - "height": 19, - "dx": 14, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 178, - 252, - 252, - 186, - 0, - 0, - 0, - 52, - 252, - 252, - 252, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 56, - 180, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 55, - 172, - 255, - 255, - 191, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 48, - 149, - 255, - 255, - 208, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 25, - 99, - 255, - 255, - 250, - 17, - 0, - 0, - 130, - 255, - 255, - 232, - 1, - 20, - 247, - 255, - 255, - 192, - 83, - 114, - 245, - 255, - 255, - 144, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 17, - 0, - 0, - 0, - 66, - 179, - 231, - 254, - 246, - 212, - 134, - 17, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 89, - 252, - 252, - 197, - 0, - 0, - 0, - 0, - 110, - 252, - 252, - 195, - 38, - 255, - 255, - 246, - 3, - 0, - 0, - 0, - 157, - 255, - 255, - 144, - 2, - 240, - 255, - 255, - 42, - 0, - 0, - 0, - 204, - 255, - 255, - 91, - 0, - 188, - 255, - 255, - 92, - 0, - 0, - 4, - 247, - 255, - 255, - 37, - 0, - 135, - 255, - 255, - 141, - 0, - 0, - 40, - 255, - 255, - 239, - 1, - 0, - 82, - 255, - 255, - 190, - 0, - 0, - 86, - 255, - 255, - 186, - 0, - 0, - 29, - 255, - 255, - 239, - 1, - 0, - 133, - 255, - 255, - 133, - 0, - 0, - 1, - 232, - 255, - 255, - 33, - 0, - 179, - 255, - 255, - 79, - 0, - 0, - 0, - 178, - 255, - 255, - 82, - 0, - 225, - 255, - 255, - 26, - 0, - 0, - 0, - 125, - 255, - 255, - 131, - 16, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 181, - 62, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 230, - 108, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 177, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 251, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 254, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 251, - 8, - 0, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 0, - "y": 0, - "width": 17, - "height": 19, - "dx": 17, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 38, - 252, - 252, - 209, - 0, - 0, - 0, - 163, - 252, - 226, - 0, - 0, - 0, - 135, - 252, - 252, - 93, - 6, - 252, - 255, - 245, - 1, - 0, - 0, - 209, - 255, - 255, - 18, - 0, - 0, - 170, - 255, - 255, - 56, - 0, - 220, - 255, - 255, - 22, - 0, - 4, - 249, - 255, - 255, - 61, - 0, - 0, - 203, - 255, - 255, - 19, - 0, - 182, - 255, - 255, - 55, - 0, - 39, - 255, - 255, - 255, - 105, - 0, - 0, - 236, - 255, - 238, - 0, - 0, - 145, - 255, - 255, - 88, - 0, - 82, - 255, - 255, - 255, - 149, - 0, - 13, - 255, - 255, - 201, - 0, - 0, - 107, - 255, - 255, - 121, - 0, - 125, - 255, - 255, - 255, - 193, - 0, - 46, - 255, - 255, - 163, - 0, - 0, - 70, - 255, - 255, - 154, - 0, - 168, - 255, - 246, - 255, - 237, - 1, - 79, - 255, - 255, - 126, - 0, - 0, - 32, - 255, - 255, - 187, - 0, - 212, - 255, - 169, - 255, - 255, - 25, - 112, - 255, - 255, - 89, - 0, - 0, - 3, - 249, - 255, - 220, - 5, - 250, - 255, - 86, - 251, - 255, - 69, - 145, - 255, - 255, - 51, - 0, - 0, - 0, - 213, - 255, - 251, - 45, - 255, - 255, - 35, - 212, - 255, - 113, - 178, - 255, - 255, - 14, - 0, - 0, - 0, - 176, - 255, - 255, - 115, - 255, - 244, - 2, - 167, - 255, - 157, - 211, - 255, - 233, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 191, - 255, - 201, - 0, - 122, - 255, - 202, - 244, - 255, - 196, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 252, - 255, - 156, - 0, - 77, - 255, - 251, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 111, - 0, - 32, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 66, - 0, - 1, - 242, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 1, - 244, - 255, - 255, - 255, - 21, - 0, - 0, - 198, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 232, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 187, - 0, - 0, - 0, - 108, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 142, - 0, - 0, - 0, - 63, - 255, - 255, - 191, - 0, - 0, - 0 - ], - "width": 17 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 110, - 252, - 252, - 219, - 2, - 0, - 0, - 0, - 206, - 252, - 252, - 70, - 17, - 246, - 255, - 255, - 73, - 0, - 0, - 45, - 255, - 255, - 226, - 3, - 0, - 154, - 255, - 255, - 178, - 0, - 0, - 136, - 255, - 255, - 129, - 0, - 0, - 47, - 255, - 255, - 254, - 32, - 2, - 226, - 255, - 254, - 32, - 0, - 0, - 0, - 196, - 255, - 255, - 134, - 62, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 233, - 160, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 6, - 232, - 255, - 255, - 255, - 255, - 237, - 8, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 246, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 250, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 249, - 255, - 255, - 233, - 7, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 118, - 236, - 255, - 255, - 94, - 0, - 0, - 0, - 11, - 241, - 255, - 249, - 19, - 133, - 255, - 255, - 205, - 1, - 0, - 0, - 96, - 255, - 255, - 170, - 0, - 27, - 251, - 255, - 255, - 60, - 0, - 0, - 197, - 255, - 255, - 72, - 0, - 0, - 167, - 255, - 255, - 171, - 0, - 43, - 255, - 255, - 228, - 3, - 0, - 0, - 56, - 255, - 255, - 252, - 30, - 142, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 137 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 12, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 156, - 252, - 252, - 173, - 0, - 0, - 0, - 2, - 229, - 252, - 252, - 85, - 74, - 255, - 255, - 246, - 10, - 0, - 0, - 54, - 255, - 255, - 247, - 12, - 6, - 239, - 255, - 255, - 78, - 0, - 0, - 130, - 255, - 255, - 173, - 0, - 0, - 159, - 255, - 255, - 158, - 0, - 0, - 206, - 255, - 255, - 89, - 0, - 0, - 74, - 255, - 255, - 235, - 3, - 27, - 255, - 255, - 248, - 13, - 0, - 0, - 6, - 239, - 255, - 255, - 61, - 102, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 141, - 179, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 225, - 246, - 255, - 248, - 14, - 0, - 0, - 0, - 0, - 6, - 239, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 249, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 239, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 144, - 0, - 0, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 0, - "y": 0, - "width": 10, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 158, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 72, - 80, - 80, - 80, - 102, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 239, - 8, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 225, - 2, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 3, - 231, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 254, - 26, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 9, - 242, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 246, - 14, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 16, - 250, - 255, - 255, - 136, - 72, - 72, - 72, - 72, - 47, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 1, - "y": -4, - "width": 7, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 155, - 252, - 252, - 252, - 252, - 252, - 40, - 157, - 255, - 255, - 107, - 44, - 44, - 7, - 157, - 255, - 255, - 75, - 0, - 0, - 0, - 157, - 255, - 255, - 75, - 0, - 0, - 0, - 157, - 255, - 255, - 75, - 0, - 0, - 0, - 158, - 255, - 255, - 75, - 0, - 0, - 0, - 158, - 255, - 255, - 75, - 0, - 0, - 0, - 158, - 255, - 255, - 74, - 0, - 0, - 0, - 158, - 255, - 255, - 74, - 0, - 0, - 0, - 158, - 255, - 255, - 74, - 0, - 0, - 0, - 158, - 255, - 255, - 74, - 0, - 0, - 0, - 159, - 255, - 255, - 74, - 0, - 0, - 0, - 159, - 255, - 255, - 73, - 0, - 0, - 0, - 159, - 255, - 255, - 73, - 0, - 0, - 0, - 159, - 255, - 255, - 73, - 0, - 0, - 0, - 159, - 255, - 255, - 73, - 0, - 0, - 0, - 159, - 255, - 255, - 73, - 0, - 0, - 0, - 160, - 255, - 255, - 72, - 0, - 0, - 0, - 160, - 255, - 255, - 72, - 0, - 0, - 0, - 160, - 255, - 255, - 72, - 0, - 0, - 0, - 160, - 255, - 255, - 72, - 0, - 0, - 0, - 160, - 255, - 255, - 101, - 40, - 40, - 7, - 160, - 255, - 255, - 255, - 255, - 255, - 40 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 0, - "y": 0, - "width": 9, - "height": 19, - "dx": 10, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 9, - 243, - 252, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 221, - 1, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 249, - 12, - 0, - 0, - 0, - 0, - 0, - 7, - 243, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 227, - 1, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 252, - 17, - 0, - 0, - 0, - 0, - 0, - 4, - 239, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 233, - 2, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 127 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 0, - "y": -4, - "width": 7, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 119, - 252, - 252, - 252, - 252, - 252, - 79, - 21, - 44, - 44, - 174, - 255, - 255, - 80, - 0, - 0, - 0, - 156, - 255, - 255, - 80, - 0, - 0, - 0, - 156, - 255, - 255, - 80, - 0, - 0, - 0, - 156, - 255, - 255, - 80, - 0, - 0, - 0, - 156, - 255, - 255, - 80, - 0, - 0, - 0, - 156, - 255, - 255, - 80, - 0, - 0, - 0, - 155, - 255, - 255, - 80, - 0, - 0, - 0, - 155, - 255, - 255, - 80, - 0, - 0, - 0, - 155, - 255, - 255, - 80, - 0, - 0, - 0, - 155, - 255, - 255, - 80, - 0, - 0, - 0, - 155, - 255, - 255, - 80, - 0, - 0, - 0, - 154, - 255, - 255, - 80, - 0, - 0, - 0, - 154, - 255, - 255, - 80, - 0, - 0, - 0, - 154, - 255, - 255, - 80, - 0, - 0, - 0, - 154, - 255, - 255, - 80, - 0, - 0, - 0, - 154, - 255, - 255, - 80, - 0, - 0, - 0, - 153, - 255, - 255, - 80, - 0, - 0, - 0, - 153, - 255, - 255, - 80, - 0, - 0, - 0, - 153, - 255, - 255, - 80, - 0, - 0, - 0, - 153, - 255, - 255, - 80, - 19, - 40, - 40, - 169, - 255, - 255, - 80, - 120, - 255, - 255, - 255, - 255, - 255, - 80 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 0, - "y": 10, - "width": 11, - "height": 9, - "dx": 11, - "glyphBitmap": { - "height": 9, - "pixelArray": [ - 0, - 0, - 0, - 28, - 249, - 252, - 252, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 6, - 231, - 255, - 250, - 255, - 252, - 27, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 119, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 192, - 255, - 239, - 7, - 205, - 255, - 231, - 6, - 0, - 0, - 43, - 255, - 255, - 157, - 0, - 115, - 255, - 255, - 87, - 0, - 0, - 148, - 255, - 255, - 67, - 0, - 28, - 254, - 255, - 194, - 0, - 13, - 242, - 255, - 231, - 3, - 0, - 0, - 191, - 255, - 255, - 45, - 1, - 4, - 4, - 3, - 0, - 0, - 0, - 3, - 4, - 4, - 2 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -4, - "width": 9, - "height": 3, - "dx": 9, - "glyphBitmap": { - "height": 3, - "pixelArray": [ - 76, - 76, - 76, - 76, - 76, - 76, - 76, - 76, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 1, - "y": 13, - "width": 5, - "height": 6, - "dx": 7, - "glyphBitmap": { - "height": 6, - "pixelArray": [ - 129, - 252, - 252, - 169, - 0, - 12, - 229, - 255, - 240, - 4, - 0, - 91, - 255, - 255, - 61, - 0, - 1, - 197, - 255, - 134, - 0, - 0, - 52, - 254, - 206, - 0, - 0, - 0, - 4, - 4 - ], - "width": 5 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 0, - "y": 0, - "width": 10, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 0, - 28, - 152, - 224, - 250, - 235, - 171, - 37, - 0, - 0, - 21, - 229, - 255, - 255, - 255, - 255, - 255, - 233, - 18, - 0, - 133, - 255, - 255, - 202, - 92, - 221, - 255, - 255, - 118, - 0, - 200, - 255, - 255, - 87, - 0, - 137, - 255, - 255, - 170, - 0, - 155, - 176, - 176, - 48, - 0, - 125, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 3, - 72, - 200, - 255, - 255, - 184, - 0, - 0, - 1, - 87, - 219, - 255, - 255, - 255, - 255, - 184, - 0, - 5, - 168, - 255, - 255, - 178, - 145, - 255, - 255, - 184, - 0, - 135, - 255, - 255, - 178, - 2, - 124, - 255, - 255, - 184, - 0, - 231, - 255, - 255, - 50, - 0, - 124, - 255, - 255, - 184, - 12, - 255, - 255, - 255, - 33, - 0, - 126, - 255, - 255, - 185, - 3, - 241, - 255, - 255, - 163, - 98, - 236, - 255, - 255, - 193, - 0, - 145, - 255, - 255, - 255, - 255, - 173, - 255, - 255, - 208, - 0, - 10, - 155, - 244, - 236, - 136, - 23, - 255, - 255, - 235 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 1, - "y": 0, - "width": 10, - "height": 19, - "dx": 11, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 178, - 252, - 252, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 150, - 106, - 218, - 247, - 184, - 28, - 0, - 180, - 255, - 255, - 245, - 255, - 255, - 255, - 255, - 194, - 0, - 180, - 255, - 255, - 231, - 109, - 141, - 255, - 255, - 255, - 39, - 180, - 255, - 255, - 148, - 0, - 2, - 240, - 255, - 255, - 91, - 180, - 255, - 255, - 148, - 0, - 0, - 218, - 255, - 255, - 111, - 180, - 255, - 255, - 148, - 0, - 0, - 216, - 255, - 255, - 112, - 180, - 255, - 255, - 148, - 0, - 0, - 216, - 255, - 255, - 112, - 180, - 255, - 255, - 148, - 0, - 0, - 216, - 255, - 255, - 112, - 180, - 255, - 255, - 148, - 0, - 0, - 216, - 255, - 255, - 112, - 180, - 255, - 255, - 148, - 0, - 0, - 218, - 255, - 255, - 107, - 180, - 255, - 255, - 148, - 0, - 1, - 238, - 255, - 255, - 85, - 180, - 255, - 255, - 210, - 92, - 125, - 255, - 255, - 255, - 30, - 180, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 180, - 0, - 180, - 255, - 255, - 152, - 121, - 230, - 247, - 177, - 20, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 1, - "y": 0, - "width": 9, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 44, - 173, - 233, - 251, - 230, - 165, - 35, - 0, - 36, - 244, - 255, - 255, - 255, - 255, - 255, - 232, - 17, - 154, - 255, - 255, - 200, - 90, - 215, - 255, - 255, - 106, - 222, - 255, - 255, - 92, - 0, - 122, - 255, - 255, - 153, - 251, - 255, - 255, - 73, - 0, - 109, - 255, - 255, - 164, - 255, - 255, - 255, - 72, - 0, - 31, - 72, - 72, - 47, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 72, - 0, - 58, - 136, - 136, - 88, - 251, - 255, - 255, - 73, - 0, - 109, - 255, - 255, - 164, - 222, - 255, - 255, - 93, - 0, - 122, - 255, - 255, - 151, - 155, - 255, - 255, - 204, - 95, - 217, - 255, - 255, - 101, - 38, - 245, - 255, - 255, - 255, - 255, - 255, - 227, - 13, - 0, - 47, - 177, - 237, - 254, - 232, - 163, - 32, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 1, - "y": 0, - "width": 10, - "height": 19, - "dx": 11, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 44, - 252, - 252, - 252, - 28, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 28, - 0, - 93, - 219, - 247, - 187, - 94, - 255, - 255, - 255, - 28, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 163, - 255, - 255, - 220, - 92, - 169, - 255, - 255, - 255, - 28, - 220, - 255, - 255, - 109, - 0, - 44, - 255, - 255, - 255, - 28, - 246, - 255, - 255, - 81, - 0, - 44, - 255, - 255, - 255, - 28, - 252, - 255, - 255, - 80, - 0, - 44, - 255, - 255, - 255, - 28, - 252, - 255, - 255, - 80, - 0, - 44, - 255, - 255, - 255, - 28, - 252, - 255, - 255, - 80, - 0, - 44, - 255, - 255, - 255, - 28, - 252, - 255, - 255, - 80, - 0, - 44, - 255, - 255, - 255, - 28, - 248, - 255, - 255, - 82, - 0, - 44, - 255, - 255, - 255, - 28, - 227, - 255, - 255, - 105, - 0, - 44, - 255, - 255, - 255, - 28, - 179, - 255, - 255, - 217, - 83, - 143, - 255, - 255, - 255, - 28, - 83, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 28, - 1, - 109, - 225, - 251, - 194, - 93, - 255, - 255, - 255, - 28 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 1, - "y": 0, - "width": 9, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 41, - 170, - 232, - 250, - 227, - 159, - 24, - 0, - 34, - 242, - 255, - 255, - 255, - 255, - 255, - 219, - 9, - 152, - 255, - 255, - 194, - 90, - 210, - 255, - 255, - 93, - 220, - 255, - 255, - 82, - 0, - 109, - 255, - 255, - 154, - 250, - 255, - 255, - 65, - 0, - 97, - 255, - 255, - 180, - 255, - 255, - 255, - 223, - 212, - 229, - 255, - 255, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 255, - 255, - 255, - 67, - 4, - 4, - 4, - 4, - 3, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 251, - 255, - 255, - 65, - 0, - 92, - 244, - 244, - 179, - 222, - 255, - 255, - 85, - 0, - 115, - 255, - 255, - 170, - 156, - 255, - 255, - 207, - 106, - 222, - 255, - 255, - 112, - 40, - 246, - 255, - 255, - 255, - 255, - 255, - 225, - 13, - 0, - 47, - 176, - 235, - 254, - 231, - 159, - 27, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 8, - "height": 19, - "dx": 7, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 18, - 158, - 233, - 249, - 234, - 35, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 40, - 0, - 1, - 240, - 255, - 255, - 178, - 90, - 18, - 0, - 11, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 142, - 253, - 255, - 255, - 255, - 253, - 252, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 45, - 91, - 255, - 255, - 255, - 116, - 80, - 13, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 52, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 0, - "y": -4, - "width": 12, - "height": 19, - "dx": 11, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 0, - 0, - 0, - 30, - 163, - 232, - 249, - 213, - 95, - 6, - 153, - 240, - 10, - 0, - 23, - 231, - 255, - 255, - 255, - 255, - 255, - 206, - 255, - 244, - 61, - 0, - 136, - 255, - 255, - 184, - 90, - 213, - 255, - 255, - 121, - 12, - 0, - 0, - 206, - 255, - 255, - 54, - 0, - 106, - 255, - 255, - 100, - 0, - 0, - 0, - 238, - 255, - 255, - 29, - 0, - 81, - 255, - 255, - 149, - 0, - 0, - 0, - 241, - 255, - 255, - 26, - 0, - 80, - 255, - 255, - 162, - 0, - 0, - 0, - 211, - 255, - 255, - 49, - 0, - 105, - 255, - 255, - 138, - 0, - 0, - 0, - 141, - 255, - 255, - 179, - 82, - 209, - 255, - 255, - 79, - 0, - 0, - 0, - 14, - 210, - 255, - 255, - 255, - 255, - 255, - 204, - 3, - 0, - 0, - 0, - 35, - 222, - 236, - 229, - 255, - 233, - 153, - 19, - 0, - 0, - 0, - 0, - 206, - 255, - 132, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 226, - 194, - 170, - 139, - 75, - 3, - 0, - 0, - 0, - 96, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 6, - 0, - 0, - 80, - 243, - 236, - 97, - 115, - 141, - 208, - 255, - 255, - 86, - 0, - 36, - 249, - 255, - 135, - 0, - 0, - 0, - 21, - 255, - 255, - 128, - 0, - 110, - 255, - 255, - 216, - 108, - 81, - 85, - 161, - 255, - 255, - 106, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 24, - 0, - 0, - 80, - 180, - 232, - 253, - 255, - 251, - 225, - 167, - 46, - 0, - 0 - ], - "width": 12 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 1, - "y": 0, - "width": 10, - "height": 19, - "dx": 11, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 174, - 252, - 252, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 148, - 52, - 175, - 239, - 235, - 98, - 0, - 176, - 255, - 255, - 223, - 253, - 255, - 255, - 255, - 249, - 18, - 176, - 255, - 255, - 249, - 133, - 121, - 255, - 255, - 255, - 67, - 176, - 255, - 255, - 151, - 0, - 2, - 251, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76, - 176, - 255, - 255, - 148, - 0, - 0, - 248, - 255, - 255, - 76 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 1, - "y": 0, - "width": 4, - "height": 19, - "dx": 6, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 162, - 252, - 252, - 166, - 164, - 255, - 255, - 168, - 52, - 80, - 80, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 252, - 252, - 162, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164, - 164, - 255, - 255, - 164 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -4, - "width": 6, - "height": 23, - "dx": 6, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 0, - 0, - 107, - 252, - 252, - 221, - 0, - 0, - 108, - 255, - 255, - 224, - 0, - 0, - 34, - 80, - 80, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 252, - 252, - 217, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 108, - 255, - 255, - 220, - 0, - 0, - 124, - 255, - 255, - 218, - 47, - 132, - 236, - 255, - 255, - 184, - 88, - 255, - 255, - 255, - 255, - 80, - 72, - 239, - 253, - 214, - 95, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 1, - "y": 0, - "width": 11, - "height": 19, - "dx": 12, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 178, - 252, - 252, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 74, - 252, - 252, - 252, - 67, - 180, - 255, - 255, - 140, - 0, - 10, - 223, - 255, - 255, - 170, - 0, - 180, - 255, - 255, - 140, - 0, - 135, - 255, - 255, - 243, - 27, - 0, - 180, - 255, - 255, - 140, - 44, - 251, - 255, - 255, - 115, - 0, - 0, - 180, - 255, - 255, - 142, - 196, - 255, - 255, - 212, - 5, - 0, - 0, - 180, - 255, - 255, - 227, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 149, - 255, - 255, - 232, - 5, - 0, - 0, - 180, - 255, - 255, - 177, - 2, - 227, - 255, - 255, - 82, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 137, - 255, - 255, - 184, - 0, - 0, - 180, - 255, - 255, - 140, - 0, - 46, - 255, - 255, - 254, - 33, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 210, - 255, - 255, - 132, - 0, - 180, - 255, - 255, - 140, - 0, - 0, - 118, - 255, - 255, - 230, - 5, - 180, - 255, - 255, - 140, - 0, - 0, - 29, - 254, - 255, - 255, - 81 - ], - "width": 11 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 1, - "y": 0, - "width": 4, - "height": 19, - "dx": 6, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 134, - 252, - 252, - 189, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192, - 136, - 255, - 255, - 192 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 1, - "y": 0, - "width": 16, - "height": 14, - "dx": 17, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 189, - 252, - 252, - 96, - 101, - 207, - 248, - 212, - 55, - 7, - 125, - 218, - 248, - 185, - 30, - 0, - 192, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 221, - 196, - 255, - 255, - 255, - 255, - 176, - 0, - 192, - 255, - 255, - 237, - 121, - 115, - 255, - 255, - 255, - 219, - 105, - 148, - 255, - 255, - 246, - 2, - 192, - 255, - 255, - 100, - 0, - 0, - 234, - 255, - 255, - 58, - 0, - 26, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12, - 192, - 255, - 255, - 96, - 0, - 0, - 228, - 255, - 255, - 56, - 0, - 20, - 255, - 255, - 255, - 12 - ], - "width": 16 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 1, - "y": 0, - "width": 10, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 189, - 252, - 252, - 134, - 64, - 183, - 242, - 227, - 81, - 0, - 192, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 235, - 3, - 192, - 255, - 255, - 242, - 121, - 139, - 255, - 255, - 255, - 41, - 192, - 255, - 255, - 137, - 0, - 24, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52, - 192, - 255, - 255, - 136, - 0, - 20, - 255, - 255, - 255, - 52 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 1, - "y": 0, - "width": 9, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 40, - 170, - 232, - 250, - 226, - 155, - 26, - 0, - 36, - 241, - 255, - 255, - 255, - 255, - 255, - 227, - 18, - 158, - 255, - 255, - 199, - 91, - 217, - 255, - 255, - 128, - 227, - 255, - 255, - 84, - 0, - 114, - 255, - 255, - 198, - 254, - 255, - 255, - 65, - 0, - 94, - 255, - 255, - 226, - 255, - 255, - 255, - 64, - 0, - 92, - 255, - 255, - 228, - 255, - 255, - 255, - 64, - 0, - 92, - 255, - 255, - 228, - 255, - 255, - 255, - 64, - 0, - 92, - 255, - 255, - 228, - 255, - 255, - 255, - 64, - 0, - 92, - 255, - 255, - 228, - 254, - 255, - 255, - 65, - 0, - 93, - 255, - 255, - 226, - 228, - 255, - 255, - 80, - 0, - 114, - 255, - 255, - 199, - 162, - 255, - 255, - 194, - 82, - 212, - 255, - 255, - 131, - 39, - 244, - 255, - 255, - 255, - 255, - 255, - 230, - 20, - 0, - 43, - 174, - 236, - 254, - 230, - 160, - 29, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 1, - "y": -4, - "width": 10, - "height": 18, - "dx": 11, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 189, - 252, - 252, - 140, - 121, - 222, - 247, - 180, - 24, - 0, - 192, - 255, - 255, - 250, - 255, - 255, - 255, - 255, - 186, - 0, - 192, - 255, - 255, - 228, - 107, - 147, - 255, - 255, - 255, - 32, - 192, - 255, - 255, - 136, - 0, - 5, - 246, - 255, - 255, - 83, - 192, - 255, - 255, - 136, - 0, - 0, - 222, - 255, - 255, - 103, - 192, - 255, - 255, - 136, - 0, - 0, - 220, - 255, - 255, - 104, - 192, - 255, - 255, - 136, - 0, - 0, - 220, - 255, - 255, - 104, - 192, - 255, - 255, - 136, - 0, - 0, - 220, - 255, - 255, - 104, - 192, - 255, - 255, - 136, - 0, - 0, - 220, - 255, - 255, - 104, - 192, - 255, - 255, - 136, - 0, - 0, - 223, - 255, - 255, - 99, - 192, - 255, - 255, - 136, - 0, - 3, - 245, - 255, - 255, - 77, - 192, - 255, - 255, - 204, - 90, - 133, - 255, - 255, - 254, - 23, - 192, - 255, - 255, - 250, - 255, - 255, - 255, - 255, - 172, - 0, - 192, - 255, - 255, - 141, - 124, - 232, - 246, - 173, - 16, - 0, - 192, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 1, - "y": -4, - "width": 10, - "height": 18, - "dx": 11, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 91, - 220, - 248, - 192, - 87, - 252, - 252, - 252, - 36, - 55, - 254, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 36, - 162, - 255, - 255, - 222, - 92, - 166, - 255, - 255, - 255, - 36, - 220, - 255, - 255, - 110, - 0, - 36, - 255, - 255, - 255, - 36, - 243, - 255, - 255, - 81, - 0, - 36, - 255, - 255, - 255, - 36, - 248, - 255, - 255, - 80, - 0, - 36, - 255, - 255, - 255, - 36, - 248, - 255, - 255, - 80, - 0, - 36, - 255, - 255, - 255, - 36, - 248, - 255, - 255, - 80, - 0, - 36, - 255, - 255, - 255, - 36, - 248, - 255, - 255, - 80, - 0, - 36, - 255, - 255, - 255, - 36, - 244, - 255, - 255, - 82, - 0, - 36, - 255, - 255, - 255, - 36, - 224, - 255, - 255, - 105, - 0, - 36, - 255, - 255, - 255, - 36, - 176, - 255, - 255, - 219, - 84, - 140, - 255, - 255, - 255, - 36, - 82, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 36, - 1, - 109, - 224, - 251, - 196, - 87, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 36 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 1, - "y": 0, - "width": 7, - "height": 15, - "dx": 8, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 178, - 252, - 252, - 146, - 38, - 190, - 251, - 180, - 255, - 255, - 170, - 226, - 255, - 255, - 180, - 255, - 255, - 255, - 255, - 249, - 253, - 180, - 255, - 255, - 254, - 106, - 5, - 11, - 180, - 255, - 255, - 164, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0, - 180, - 255, - 255, - 148, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 0, - "y": 0, - "width": 9, - "height": 14, - "dx": 10, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 1, - 95, - 206, - 247, - 234, - 154, - 18, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 204, - 4, - 5, - 241, - 255, - 253, - 114, - 137, - 255, - 255, - 93, - 33, - 255, - 255, - 221, - 1, - 0, - 188, - 255, - 144, - 9, - 248, - 255, - 255, - 116, - 0, - 58, - 46, - 0, - 0, - 146, - 255, - 255, - 255, - 129, - 1, - 0, - 0, - 0, - 9, - 195, - 255, - 255, - 255, - 157, - 5, - 0, - 0, - 0, - 10, - 172, - 255, - 255, - 255, - 176, - 3, - 0, - 0, - 0, - 2, - 133, - 255, - 255, - 255, - 119, - 0, - 9, - 83, - 9, - 0, - 127, - 255, - 255, - 225, - 74, - 241, - 255, - 94, - 0, - 5, - 250, - 255, - 252, - 29, - 250, - 255, - 235, - 100, - 131, - 255, - 255, - 213, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 1, - 101, - 208, - 250, - 244, - 193, - 74, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 8, - "height": 18, - "dx": 8, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 48, - 252, - 252, - 252, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 138, - 253, - 255, - 255, - 255, - 253, - 252, - 56, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 44, - 113, - 255, - 255, - 255, - 100, - 80, - 18, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 13, - 253, - 255, - 255, - 210, - 148, - 58, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 23, - 176, - 242, - 252, - 239, - 81 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 1, - "y": 0, - "width": 10, - "height": 14, - "dx": 11, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 213, - 252, - 252, - 111, - 0, - 56, - 252, - 252, - 252, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 12, - 216, - 255, - 255, - 117, - 0, - 56, - 255, - 255, - 255, - 12, - 206, - 255, - 255, - 210, - 112, - 203, - 255, - 255, - 255, - 12, - 148, - 255, - 255, - 255, - 255, - 218, - 255, - 255, - 255, - 12, - 28, - 200, - 251, - 211, - 104, - 58, - 255, - 255, - 255, - 12 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 10, - "height": 14, - "dx": 10, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 150, - 252, - 252, - 147, - 0, - 0, - 206, - 252, - 252, - 79, - 103, - 255, - 255, - 183, - 0, - 1, - 243, - 255, - 255, - 31, - 54, - 255, - 255, - 217, - 0, - 21, - 255, - 255, - 238, - 1, - 9, - 252, - 255, - 250, - 3, - 55, - 255, - 255, - 190, - 0, - 0, - 211, - 255, - 255, - 30, - 90, - 255, - 255, - 141, - 0, - 0, - 161, - 255, - 255, - 65, - 124, - 255, - 255, - 92, - 0, - 0, - 112, - 255, - 255, - 99, - 158, - 255, - 255, - 43, - 0, - 0, - 62, - 255, - 255, - 134, - 192, - 255, - 247, - 4, - 0, - 0, - 14, - 255, - 255, - 168, - 226, - 255, - 201, - 0, - 0, - 0, - 0, - 219, - 255, - 210, - 254, - 255, - 152, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 212, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 0, - "y": 0, - "width": 14, - "height": 14, - "dx": 14, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 84, - 252, - 252, - 95, - 0, - 25, - 252, - 252, - 114, - 0, - 6, - 249, - 252, - 150, - 47, - 255, - 255, - 129, - 0, - 66, - 255, - 255, - 154, - 0, - 38, - 255, - 255, - 112, - 10, - 255, - 255, - 162, - 0, - 108, - 255, - 255, - 193, - 0, - 73, - 255, - 255, - 71, - 0, - 224, - 255, - 196, - 0, - 150, - 255, - 255, - 232, - 0, - 109, - 255, - 255, - 31, - 0, - 185, - 255, - 229, - 0, - 191, - 255, - 255, - 255, - 15, - 145, - 255, - 245, - 2, - 0, - 146, - 255, - 255, - 8, - 233, - 255, - 238, - 255, - 54, - 180, - 255, - 206, - 0, - 0, - 107, - 255, - 255, - 58, - 255, - 242, - 167, - 255, - 94, - 216, - 255, - 166, - 0, - 0, - 68, - 255, - 255, - 132, - 255, - 195, - 120, - 255, - 135, - 249, - 255, - 126, - 0, - 0, - 28, - 255, - 255, - 207, - 255, - 148, - 75, - 255, - 203, - 255, - 255, - 85, - 0, - 0, - 1, - 244, - 255, - 255, - 255, - 101, - 29, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 53, - 1, - 240, - 255, - 255, - 253, - 8, - 0, - 0, - 0, - 167, - 255, - 255, - 253, - 9, - 0, - 194, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 215, - 0, - 0, - 149, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 168, - 0, - 0, - 103, - 255, - 255, - 140, - 0, - 0 - ], - "width": 14 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 10, - "height": 14, - "dx": 10, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 123, - 252, - 252, - 180, - 0, - 0, - 107, - 252, - 252, - 101, - 22, - 248, - 255, - 255, - 39, - 0, - 204, - 255, - 240, - 12, - 0, - 156, - 255, - 255, - 149, - 45, - 255, - 255, - 144, - 0, - 0, - 44, - 255, - 255, - 245, - 158, - 255, - 255, - 38, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 1, - 229, - 255, - 255, - 222, - 3, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 215, - 2, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 8, - 237, - 255, - 253, - 255, - 255, - 194, - 0, - 0, - 0, - 92, - 255, - 255, - 125, - 244, - 255, - 255, - 57, - 0, - 0, - 196, - 255, - 249, - 19, - 143, - 255, - 255, - 174, - 0, - 45, - 255, - 255, - 171, - 0, - 30, - 252, - 255, - 254, - 38, - 148, - 255, - 255, - 76, - 0, - 0, - 163, - 255, - 255, - 153 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -4, - "width": 10, - "height": 18, - "dx": 10, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 183, - 252, - 252, - 114, - 0, - 0, - 123, - 252, - 252, - 174, - 124, - 255, - 255, - 162, - 0, - 0, - 166, - 255, - 255, - 120, - 61, - 255, - 255, - 209, - 0, - 0, - 207, - 255, - 255, - 63, - 7, - 247, - 255, - 251, - 7, - 2, - 246, - 255, - 252, - 11, - 0, - 189, - 255, - 255, - 48, - 33, - 255, - 255, - 206, - 0, - 0, - 125, - 255, - 255, - 96, - 74, - 255, - 255, - 150, - 0, - 0, - 61, - 255, - 255, - 143, - 115, - 255, - 255, - 93, - 0, - 0, - 7, - 247, - 255, - 190, - 156, - 255, - 255, - 36, - 0, - 0, - 0, - 189, - 255, - 238, - 197, - 255, - 235, - 1, - 0, - 0, - 0, - 125, - 255, - 255, - 250, - 255, - 179, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 8, - 249, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 253, - 13, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 64, - 116, - 212, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 197, - 4, - 0, - 0, - 0, - 0, - 172, - 245, - 198, - 125, - 12, - 0, - 0, - 0, - 0 - ], - "width": 10 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 0, - "y": 0, - "width": 9, - "height": 14, - "dx": 9, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 213, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 68, - 80, - 80, - 141, - 255, - 255, - 240, - 11, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 32, - 254, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 7, - 233, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 237, - 8, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 13, - 243, - 255, - 255, - 145, - 72, - 72, - 72, - 16, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56 - ], - "width": 9 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 1, - "y": -4, - "width": 7, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 0, - 0, - 90, - 203, - 245, - 252, - 123, - 0, - 42, - 254, - 255, - 255, - 255, - 124, - 0, - 104, - 255, - 255, - 251, - 112, - 40, - 0, - 122, - 255, - 255, - 205, - 0, - 0, - 0, - 124, - 255, - 255, - 193, - 0, - 0, - 0, - 124, - 255, - 255, - 192, - 0, - 0, - 0, - 125, - 255, - 255, - 192, - 0, - 0, - 0, - 128, - 255, - 255, - 191, - 0, - 0, - 0, - 147, - 255, - 255, - 169, - 0, - 0, - 80, - 225, - 255, - 255, - 111, - 0, - 0, - 244, - 255, - 255, - 162, - 9, - 0, - 0, - 244, - 255, - 255, - 203, - 15, - 0, - 0, - 18, - 206, - 255, - 255, - 114, - 0, - 0, - 0, - 144, - 255, - 255, - 164, - 0, - 0, - 0, - 128, - 255, - 255, - 189, - 0, - 0, - 0, - 125, - 255, - 255, - 192, - 0, - 0, - 0, - 124, - 255, - 255, - 192, - 0, - 0, - 0, - 124, - 255, - 255, - 192, - 0, - 0, - 0, - 124, - 255, - 255, - 194, - 0, - 0, - 0, - 119, - 255, - 255, - 209, - 0, - 0, - 0, - 93, - 255, - 255, - 253, - 112, - 38, - 0, - 29, - 249, - 255, - 255, - 255, - 124, - 0, - 0, - 76, - 200, - 248, - 255, - 124 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 1, - "y": -4, - "width": 4, - "height": 23, - "dx": 6, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 95, - 252, - 252, - 118, - 97, - 255, - 255, - 119, - 98, - 255, - 255, - 119, - 98, - 255, - 255, - 119, - 98, - 255, - 255, - 119, - 99, - 255, - 255, - 119, - 99, - 255, - 255, - 118, - 99, - 255, - 255, - 118, - 100, - 255, - 255, - 118, - 100, - 255, - 255, - 118, - 100, - 255, - 255, - 118, - 101, - 255, - 255, - 118, - 101, - 255, - 255, - 117, - 101, - 255, - 255, - 117, - 102, - 255, - 255, - 117, - 102, - 255, - 255, - 117, - 102, - 255, - 255, - 117, - 103, - 255, - 255, - 117, - 103, - 255, - 255, - 116, - 103, - 255, - 255, - 116, - 104, - 255, - 255, - 116, - 104, - 255, - 255, - 116, - 104, - 255, - 255, - 116 - ], - "width": 4 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 1, - "y": -4, - "width": 7, - "height": 23, - "dx": 9, - "glyphBitmap": { - "height": 23, - "pixelArray": [ - 245, - 251, - 230, - 165, - 25, - 0, - 0, - 248, - 255, - 255, - 255, - 175, - 0, - 0, - 83, - 187, - 255, - 255, - 237, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 2, - 0, - 0, - 61, - 255, - 255, - 255, - 4, - 0, - 0, - 60, - 255, - 255, - 255, - 4, - 0, - 0, - 60, - 255, - 255, - 255, - 4, - 0, - 0, - 59, - 255, - 255, - 255, - 6, - 0, - 0, - 38, - 255, - 255, - 255, - 23, - 0, - 0, - 3, - 236, - 255, - 255, - 146, - 36, - 0, - 0, - 67, - 227, - 255, - 255, - 124, - 0, - 0, - 92, - 251, - 255, - 255, - 124, - 0, - 3, - 238, - 255, - 255, - 98, - 4, - 0, - 33, - 255, - 255, - 255, - 19, - 0, - 0, - 57, - 255, - 255, - 255, - 6, - 0, - 0, - 60, - 255, - 255, - 255, - 4, - 0, - 0, - 60, - 255, - 255, - 255, - 4, - 0, - 0, - 61, - 255, - 255, - 255, - 4, - 0, - 0, - 62, - 255, - 255, - 255, - 3, - 0, - 0, - 77, - 255, - 255, - 251, - 0, - 0, - 80, - 190, - 255, - 255, - 227, - 0, - 0, - 248, - 255, - 255, - 255, - 157, - 0, - 0, - 248, - 255, - 231, - 157, - 16, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 1, - "y": 0, - "width": 21, - "height": 21, - "dx": 24, - "glyphBitmap": { - "height": 21, - "pixelArray": [ - 41, - 197, - 250, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 196, - 39, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 56, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 38, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 40, - 0, - 0, - 43, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 42, - 0, - 0, - 47, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 53, - 0, - 0, - 35, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 80, - 0, - 0, - 24, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 177, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 7, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 3, - 151, - 255, - 255, - 213, - 8, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 124, - 254, - 55, - 0, - 0, - 66, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 49, - 0, - 0, - 0, - 56, - 0, - 0, - 2, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 75, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 92, - 0, - 0, - 0, - 3, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 84, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 54, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 59, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 47, - 203, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 202, - 45 - ], - "width": 21 - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 17, - "encoding": 79 - } - }, - { - "encoding": 127, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 7, - 137, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 234, - 138, - 7, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 36, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 35, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 115, - 255, - 255, - 113, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 116, - 115, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 109, - 109, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 109, - 255, - 255, - 107, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 30, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 29, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 9, - 142, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 143, - 9 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62835 - } - }, - { - "encoding": 128, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 114, - 170, - 222, - 246, - 246, - 222, - 170, - 113, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 162, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 160, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 16, - 50, - 208, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 24, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 24, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 3, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 29, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 76, - 111, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 28, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 174, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 16, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 1, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 32, - 254, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 94, - 255, - 255, - 217, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 32, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 63, - 248, - 174, - 19, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 27, - 240, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 1, - 1, - 114, - 253, - 255, - 255, - 255, - 255, - 255, - 240, - 27, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 233, - 9, - 0, - 0, - 0, - 17, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 173, - 22, - 18, - 107, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 169, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 167, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 119, - 174, - 225, - 250, - 250, - 225, - 174, - 118, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62229 - } - }, - { - "encoding": 129, - "x": 0, - "y": 0, - "width": 24, - "height": 22, - "dx": 24, - "glyphBitmap": { - "height": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 211, - 208, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 247, - 255, - 255, - 247, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 216, - 35, - 34, - 216, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 245, - 255, - 255, - 131, - 0, - 0, - 131, - 255, - 255, - 246, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 128, - 0, - 0, - 128, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 215, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 216, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 243, - 255, - 255, - 255, - 255, - 255, - 213, - 29, - 29, - 215, - 255, - 255, - 255, - 255, - 255, - 244, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 5, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 5, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 24, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 37, - 37, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 25, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 140, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 140, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62230 - } - }, - { - "encoding": 130, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 117, - 183, - 224, - 248, - 248, - 224, - 184, - 118, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 167, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 169, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 188, - 97, - 39, - 10, - 10, - 39, - 97, - 188, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 217, - 57, - 0, - 0, - 22, - 106, - 106, - 22, - 0, - 0, - 58, - 217, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 33, - 244, - 255, - 255, - 193, - 14, - 0, - 0, - 60, - 244, - 255, - 255, - 244, - 60, - 0, - 0, - 14, - 192, - 255, - 255, - 245, - 34, - 0, - 0, - 171, - 255, - 255, - 217, - 14, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 13, - 216, - 255, - 255, - 170, - 0, - 32, - 254, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 253, - 31, - 121, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 120, - 187, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 187, - 228, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 227, - 252, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 9, - 249, - 255, - 255, - 249, - 9, - 0, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 252, - 253, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 255, - 255, - 252, - 228, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 227, - 188, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 226, - 228, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 188, - 122, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 122, - 33, - 254, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 254, - 33, - 0, - 173, - 255, - 255, - 214, - 12, - 0, - 0, - 0, - 0, - 37, - 219, - 220, - 37, - 0, - 0, - 0, - 0, - 12, - 213, - 255, - 255, - 172, - 0, - 0, - 35, - 245, - 255, - 255, - 189, - 12, - 0, - 0, - 0, - 120, - 255, - 255, - 119, - 0, - 0, - 0, - 11, - 187, - 255, - 255, - 246, - 35, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 213, - 51, - 0, - 0, - 39, - 227, - 225, - 37, - 0, - 0, - 51, - 213, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 180, - 89, - 32, - 4, - 4, - 32, - 89, - 180, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 174, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 176, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 122, - 188, - 227, - 252, - 252, - 227, - 188, - 123, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 61530 - } - }, - { - "encoding": 131, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 37, - 219, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 248, - 131, - 0, - 0, - 0, - 0, - 124, - 255, - 164, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 134, - 225, - 252, - 0, - 0, - 0, - 0, - 128, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 0, - 0, - 0, - 134, - 250, - 255, - 220, - 37, - 0, - 218, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 218, - 0, - 128, - 255, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 120, - 0, - 100, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 100, - 0, - 128, - 255, - 0, - 0, - 0, - 140, - 253, - 255, - 227, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 0, - 0, - 0, - 0, - 129, - 255, - 1, - 0, - 0, - 218, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 218, - 0, - 128, - 255, - 0, - 0, - 0, - 35, - 186, - 255, - 92, - 2, - 0, - 100, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 100, - 0, - 128, - 255, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 97, - 0, - 218, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 218, - 0, - 128, - 255, - 0, - 0, - 0, - 40, - 190, - 255, - 100, - 3, - 0, - 100, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 100, - 0, - 128, - 255, - 0, - 0, - 0, - 0, - 128, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 0, - 0, - 0, - 134, - 250, - 255, - 220, - 37, - 0, - 218, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 218, - 0, - 0, - 0, - 0, - 2, - 4, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 119, - 0, - 100, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 100, - 0, - 11, - 83, - 120, - 107, - 46, - 0, - 0, - 0, - 140, - 253, - 255, - 227, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 238, - 255, - 255, - 255, - 255, - 178, - 21, - 0, - 0, - 129, - 255, - 1, - 0, - 0, - 218, - 252, - 252, - 252, - 252, - 218, - 0, - 0, - 90, - 255, - 255, - 255, - 39, - 162, - 255, - 255, - 209, - 8, - 35, - 186, - 255, - 92, - 2, - 0, - 100, - 132, - 132, - 132, - 132, - 100, - 0, - 12, - 239, - 255, - 255, - 255, - 0, - 128, - 255, - 255, - 255, - 122, - 223, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 0, - 128, - 255, - 255, - 255, - 213, - 224, - 255, - 255, - 255, - 96, - 0, - 218, - 252, - 252, - 252, - 252, - 218, - 0, - 124, - 255, - 255, - 255, - 255, - 2, - 2, - 4, - 6, - 164, - 252, - 40, - 190, - 255, - 100, - 3, - 0, - 100, - 132, - 132, - 132, - 132, - 100, - 0, - 111, - 255, - 255, - 255, - 255, - 157, - 124, - 124, - 126, - 221, - 239, - 0, - 128, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 96, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 126, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 58, - 0, - 3, - 99, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 66, - 24, - 213, - 255, - 255, - 255, - 255, - 255, - 254, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 124, - 214, - 252, - 238, - 178, - 58, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62060 - } - }, - { - "encoding": 132, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 6, - 133, - 230, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 248, - 205, - 11, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 37, - 6, - 85, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 35, - 5, - 175, - 237, - 255, - 255, - 255, - 126, - 9, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 5, - 174, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 172, - 255, - 255, - 251, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 171, - 255, - 255, - 255, - 145, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 170, - 255, - 255, - 255, - 158, - 2, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 169, - 255, - 255, - 255, - 158, - 2, - 31, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 159, - 2, - 31, - 222, - 255, - 255, - 255, - 0, - 0, - 0, - 127, - 243, - 160, - 6, - 0, - 0, - 0, - 0, - 4, - 167, - 255, - 255, - 255, - 159, - 3, - 31, - 222, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 248, - 255, - 255, - 175, - 6, - 0, - 0, - 4, - 165, - 255, - 255, - 255, - 160, - 3, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 175, - 6, - 3, - 165, - 255, - 255, - 255, - 160, - 3, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 6, - 174, - 255, - 255, - 255, - 175, - 163, - 255, - 255, - 255, - 160, - 3, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 5, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 3, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 5, - 173, - 255, - 255, - 255, - 255, - 161, - 3, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 173, - 255, - 255, - 161, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 99, - 95, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 119, - 255, - 255, - 255, - 239, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 239, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 9, - 142, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 143, - 9 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62224 - } - }, - { - "encoding": 133, - "x": 0, - "y": 3, - "width": 24, - "height": 16, - "dx": 24, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 0, - 0, - 0, - 10, - 167, - 10, - 11, - 212, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 157, - 0, - 45, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 94, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 41, - 245, - 255, - 255, - 255, - 245, - 41, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 255, - 255, - 255, - 0, - 0, - 0, - 10, - 212, - 255, - 255, - 255, - 255, - 255, - 212, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 4, - 4, - 4, - 255, - 255, - 255, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 252, - 252, - 255, - 255, - 255, - 252, - 252, - 159, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 216, - 255, - 255, - 255, - 255, - 255, - 216, - 12, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 247, - 255, - 255, - 255, - 247, - 45, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 94, - 0, - 99, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 41, - 1, - 163, - 255, - 163, - 1, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 10, - 12, - 175, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 1, - 0, - 0, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62598 - } - }, - { - "encoding": 134, - "x": 0, - "y": 0, - "width": 8, - "height": 16, - "dx": 9, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 47, - 219, - 204, - 204, - 204, - 204, - 219, - 40, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 234, - 200, - 200, - 200, - 200, - 235, - 44 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 127 - } - }, - { - "encoding": 135, - "x": 0, - "y": 0, - "width": 8, - "height": 16, - "dx": 9, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 47, - 219, - 204, - 204, - 204, - 204, - 219, - 40, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 234, - 200, - 200, - 200, - 200, - 235, - 44 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 127 - } - }, - { - "encoding": 136, - "x": 0, - "y": 0, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 7, - 137, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 234, - 138, - 7, - 140, - 254, - 157, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 146, - 185, - 255, - 139, - 238, - 167, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 1, - 182, - 237, - 255, - 138, - 0, - 11, - 255, - 255, - 255, - 255, - 188, - 97, - 39, - 10, - 10, - 39, - 97, - 188, - 255, - 255, - 255, - 14, - 0, - 0, - 142, - 255, - 255, - 219, - 22, - 112, - 255, - 255, - 217, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 217, - 255, - 146, - 11, - 50, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 14, - 0, - 36, - 1, - 0, - 0, - 0, - 0, - 3, - 34, - 0, - 14, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 14, - 27, - 172, - 255, - 9, - 0, - 0, - 0, - 0, - 118, - 251, - 116, - 1, - 13, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 43, - 234, - 255, - 255, - 37, - 0, - 0, - 0, - 13, - 242, - 255, - 255, - 114, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 9, - 225, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 248, - 30, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 76, - 205, - 255, - 255, - 234, - 143, - 234, - 235, - 225, - 236, - 113, - 42, - 13, - 2, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 40, - 111, - 227, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 255, - 255, - 237, - 0, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 255, - 239, - 0, - 0, - 0, - 0, - 0, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 227, - 93, - 12, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 2, - 19, - 52, - 129, - 239, - 228, - 241, - 241, - 152, - 240, - 255, - 239, - 110, - 2, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 9, - 234, - 255, - 255, - 255, - 255, - 111, - 1, - 1, - 0, - 133, - 255, - 255, - 255, - 45, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 95, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 56, - 255, - 255, - 179, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 12, - 141, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 24, - 255, - 234, - 31, - 12, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 12, - 100, - 242, - 67, - 0, - 0, - 0, - 0, - 5, - 219, - 45, - 11, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 51, - 13, - 0, - 0, - 0, - 0, - 0, - 1, - 9, - 51, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 22, - 90, - 255, - 255, - 255, - 255, - 180, - 89, - 32, - 4, - 4, - 32, - 89, - 180, - 255, - 255, - 255, - 117, - 14, - 42, - 213, - 255, - 239, - 146, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 153, - 239, - 143, - 247, - 143, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 135, - 164, - 254, - 143, - 9, - 142, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 143, - 9 - ], - "width": 24 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 61450 - } - }, - { - "encoding": 137, - "x": 4, - "y": 0, - "width": 15, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 7, - 125, - 220, - 250, - 219, - 123, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 193, - 255, - 255, - 255, - 255, - 255, - 191, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 123, - 14, - 126, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 5, - 0, - 5, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 29, - 231, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 232, - 30, - 0, - 3, - 202, - 255, - 255, - 251, - 130, - 0, - 0, - 0, - 129, - 251, - 255, - 255, - 203, - 3, - 89, - 255, - 255, - 247, - 61, - 0, - 0, - 0, - 0, - 0, - 60, - 247, - 255, - 255, - 89, - 174, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 173, - 233, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 232, - 254, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 253, - 237, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 236, - 186, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 184, - 97, - 255, - 255, - 245, - 50, - 0, - 0, - 0, - 0, - 0, - 53, - 246, - 255, - 255, - 94, - 6, - 212, - 255, - 255, - 245, - 119, - 28, - 1, - 30, - 121, - 246, - 255, - 255, - 209, - 5, - 0, - 38, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 37, - 0, - 0, - 0, - 38, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 38, - 0, - 0, - 0, - 0, - 0, - 6, - 97, - 186, - 237, - 254, - 237, - 187, - 98, - 6, - 0, - 0, - 0 - ], - "width": 15 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 61965 - } - }, - { - "encoding": 138, - "x": 0, - "y": 0, - "width": 8, - "height": 16, - "dx": 9, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 47, - 219, - 204, - 204, - 204, - 204, - 219, - 40, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 234, - 200, - 200, - 200, - 200, - 235, - 44 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 127 - } - }, - { - "encoding": 139, - "x": 0, - "y": 0, - "width": 8, - "height": 16, - "dx": 9, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 47, - 219, - 204, - 204, - 204, - 204, - 219, - 40, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 234, - 200, - 200, - 200, - 200, - 235, - 44 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 127 - } - }, - { - "encoding": 140, - "x": 0, - "y": 0, - "width": 8, - "height": 16, - "dx": 9, - "glyphBitmap": { - "height": 16, - "pixelArray": [ - 47, - 219, - 204, - 204, - 204, - 204, - 219, - 40, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 152, - 0, - 0, - 0, - 0, - 160, - 44, - 52, - 234, - 200, - 200, - 200, - 200, - 235, - 44 - ], - "width": 8 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 17, - "encoding": 127 - } - }, - { - "encoding": 141, - "x": 0, - "y": -1, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 114, - 170, - 222, - 246, - 246, - 222, - 170, - 113, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 162, - 252, - 255, - 220, - 169, - 138, - 138, - 168, - 219, - 255, - 252, - 160, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 237, - 248, - 140, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 140, - 247, - 237, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 199, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 198, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 169, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 166, - 255, - 88, - 0, - 0, - 0, - 24, - 237, - 199, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 197, - 237, - 24, - 0, - 0, - 162, - 247, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 247, - 162, - 0, - 29, - 252, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 252, - 28, - 116, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 115, - 173, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 172, - 225, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 224, - 250, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 249, - 251, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 250, - 226, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 226, - 175, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 174, - 119, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 118, - 32, - 254, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 254, - 32, - 0, - 167, - 246, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 246, - 167, - 0, - 0, - 27, - 240, - 197, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 194, - 240, - 27, - 0, - 0, - 0, - 93, - 255, - 166, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 164, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 196, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 194, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 240, - 246, - 134, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 133, - 245, - 240, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 169, - 254, - 254, - 213, - 161, - 131, - 131, - 161, - 212, - 254, - 254, - 167, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 119, - 174, - 225, - 250, - 250, - 225, - 174, - 118, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62763 - } - }, - { - "encoding": 142, - "x": 0, - "y": -1, - "width": 24, - "height": 24, - "dx": 24, - "glyphBitmap": { - "height": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 114, - 170, - 222, - 246, - 246, - 222, - 170, - 113, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 162, - 252, - 255, - 220, - 169, - 138, - 138, - 168, - 219, - 255, - 252, - 160, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 237, - 248, - 140, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 140, - 247, - 237, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 199, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 198, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 169, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 166, - 255, - 88, - 0, - 0, - 0, - 24, - 237, - 199, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 197, - 237, - 24, - 0, - 0, - 162, - 247, - 39, - 0, - 0, - 0, - 0, - 6, - 109, - 200, - 244, - 244, - 200, - 109, - 6, - 0, - 0, - 0, - 0, - 38, - 247, - 162, - 0, - 29, - 252, - 139, - 0, - 0, - 0, - 0, - 28, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 26, - 0, - 0, - 0, - 0, - 138, - 252, - 28, - 116, - 255, - 32, - 0, - 0, - 0, - 7, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 6, - 0, - 0, - 0, - 33, - 255, - 115, - 173, - 216, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 217, - 172, - 225, - 165, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 166, - 224, - 250, - 134, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 135, - 249, - 251, - 134, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 134, - 250, - 226, - 163, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 163, - 226, - 175, - 214, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 215, - 174, - 119, - 254, - 29, - 0, - 0, - 0, - 9, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 8, - 0, - 0, - 0, - 29, - 255, - 118, - 32, - 254, - 134, - 0, - 0, - 0, - 0, - 33, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 31, - 0, - 0, - 0, - 0, - 133, - 254, - 32, - 0, - 167, - 246, - 36, - 0, - 0, - 0, - 0, - 9, - 118, - 208, - 251, - 251, - 208, - 118, - 9, - 0, - 0, - 0, - 0, - 35, - 245, - 167, - 0, - 0, - 27, - 240, - 196, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 194, - 240, - 27, - 0, - 0, - 0, - 93, - 255, - 166, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 164, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 196, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 194, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 240, - 246, - 134, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 133, - 245, - 240, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 169, - 254, - 254, - 213, - 161, - 131, - 131, - 161, - 212, - 254, - 254, - 167, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 119, - 174, - 225, - 250, - 250, - 225, - 174, - 118, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 24 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 17, - "encoding": 62822 - } - } - ] - }, - { - "name": "Oswald20", - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20 - }, - "bpp": 8, - "height": 37, - "ascent": 30, - "descent": 7, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 7, - "glyphBitmap": { - "height": 0, - "width": 0, - "pixelArray": [] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 1, - "y": 0, - "width": 5, - "height": 23, - "dx": 6, - "glyphBitmap": { - "height": 23, - "width": 5, - "pixelArray": [ - 162, - 252, - 252, - 252, - 27, - 148, - 255, - 255, - 255, - 8, - 132, - 255, - 255, - 245, - 0, - 115, - 255, - 255, - 227, - 0, - 99, - 255, - 255, - 208, - 0, - 83, - 255, - 255, - 189, - 0, - 66, - 255, - 255, - 171, - 0, - 50, - 255, - 255, - 152, - 0, - 33, - 255, - 255, - 133, - 0, - 17, - 255, - 255, - 115, - 0, - 2, - 254, - 255, - 96, - 0, - 0, - 240, - 255, - 77, - 0, - 0, - 223, - 255, - 59, - 0, - 0, - 207, - 255, - 40, - 0, - 0, - 191, - 255, - 21, - 0, - 0, - 174, - 255, - 4, - 0, - 0, - 158, - 240, - 0, - 0, - 0, - 141, - 221, - 0, - 0, - 0, - 3, - 4, - 0, - 0, - 178, - 252, - 252, - 252, - 0, - 180, - 255, - 255, - 255, - 0, - 180, - 255, - 255, - 255, - 0, - 180, - 255, - 255, - 255, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 1, - "y": 14, - "width": 9, - "height": 9, - "dx": 10, - "glyphBitmap": { - "height": 9, - "width": 9, - "pixelArray": [ - 75, - 252, - 252, - 234, - 1, - 158, - 252, - 252, - 155, - 76, - 255, - 255, - 192, - 0, - 160, - 255, - 255, - 111, - 76, - 255, - 255, - 147, - 0, - 160, - 255, - 255, - 65, - 76, - 255, - 255, - 101, - 0, - 160, - 255, - 255, - 20, - 76, - 255, - 255, - 56, - 0, - 160, - 255, - 229, - 0, - 76, - 255, - 255, - 12, - 0, - 160, - 255, - 183, - 0, - 76, - 255, - 221, - 0, - 0, - 160, - 255, - 137, - 0, - 76, - 255, - 175, - 0, - 0, - 160, - 255, - 91, - 0, - 2, - 4, - 3, - 0, - 0, - 3, - 4, - 2, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 181, - 252, - 252, - 108, - 0, - 66, - 252, - 252, - 218, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 71, - 0, - 105, - 255, - 255, - 182, - 0, - 0, - 0, - 7, - 253, - 255, - 255, - 33, - 0, - 143, - 255, - 255, - 144, - 0, - 0, - 0, - 41, - 255, - 255, - 249, - 3, - 0, - 181, - 255, - 255, - 105, - 0, - 0, - 0, - 79, - 255, - 255, - 213, - 0, - 0, - 219, - 255, - 255, - 66, - 0, - 0, - 0, - 117, - 255, - 255, - 175, - 0, - 6, - 252, - 255, - 255, - 28, - 0, - 230, - 252, - 255, - 255, - 255, - 255, - 252, - 253, - 255, - 255, - 255, - 253, - 66, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 187, - 200, - 255, - 255, - 255, - 210, - 200, - 229, - 255, - 255, - 236, - 200, - 48, - 0, - 8, - 255, - 255, - 255, - 28, - 0, - 147, - 255, - 255, - 144, - 0, - 0, - 0, - 32, - 255, - 255, - 253, - 4, - 0, - 172, - 255, - 255, - 116, - 0, - 0, - 0, - 58, - 255, - 255, - 228, - 0, - 0, - 198, - 255, - 255, - 88, - 0, - 0, - 184, - 211, - 255, - 255, - 245, - 192, - 192, - 246, - 255, - 255, - 210, - 192, - 41, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 4, - 190, - 255, - 255, - 102, - 4, - 80, - 255, - 255, - 213, - 4, - 4, - 1, - 0, - 221, - 255, - 255, - 67, - 0, - 110, - 255, - 255, - 179, - 0, - 0, - 0, - 3, - 251, - 255, - 255, - 34, - 0, - 143, - 255, - 255, - 147, - 0, - 0, - 0, - 30, - 255, - 255, - 253, - 5, - 0, - 176, - 255, - 255, - 114, - 0, - 0, - 0, - 63, - 255, - 255, - 224, - 0, - 0, - 209, - 255, - 255, - 82, - 0, - 0, - 0, - 95, - 255, - 255, - 191, - 0, - 1, - 242, - 255, - 255, - 49, - 0, - 0, - 0, - 128, - 255, - 255, - 158, - 0, - 19, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 160, - 255, - 255, - 125, - 0, - 52, - 255, - 255, - 240, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 0, - "y": -3, - "width": 13, - "height": 29, - "dx": 14, - "glyphBitmap": { - "height": 29, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 133, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 86, - 188, - 238, - 255, - 255, - 236, - 157, - 24, - 0, - 0, - 0, - 1, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 24, - 0, - 0, - 93, - 255, - 255, - 255, - 253, - 207, - 234, - 255, - 255, - 255, - 156, - 0, - 0, - 202, - 255, - 255, - 254, - 53, - 0, - 9, - 201, - 255, - 255, - 248, - 12, - 6, - 252, - 255, - 255, - 208, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 64, - 22, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 94, - 10, - 255, - 255, - 255, - 254, - 35, - 0, - 0, - 17, - 122, - 72, - 23, - 0, - 0, - 216, - 255, - 255, - 255, - 203, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 197, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 224, - 255, - 255, - 255, - 255, - 216, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 240, - 255, - 255, - 255, - 255, - 232, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 230, - 255, - 255, - 255, - 255, - 242, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 215, - 255, - 255, - 255, - 255, - 237, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 196, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 186, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 4, - 47, - 43, - 0, - 0, - 14, - 222, - 255, - 255, - 255, - 152, - 20, - 192, - 245, - 255, - 136, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 198, - 10, - 254, - 255, - 255, - 179, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 214, - 0, - 220, - 255, - 255, - 236, - 8, - 0, - 0, - 41, - 255, - 255, - 255, - 193, - 0, - 144, - 255, - 255, - 255, - 132, - 1, - 0, - 129, - 255, - 255, - 255, - 133, - 0, - 32, - 248, - 255, - 255, - 255, - 218, - 213, - 255, - 255, - 255, - 245, - 29, - 0, - 0, - 87, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 86, - 0, - 0, - 0, - 0, - 47, - 162, - 224, - 253, - 255, - 249, - 180, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 242, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 120, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 1, - "y": 0, - "width": 25, - "height": 23, - "dx": 27, - "glyphBitmap": { - "height": 23, - "width": 25, - "pixelArray": [ - 0, - 10, - 126, - 210, - 245, - 247, - 215, - 140, - 18, - 0, - 0, - 0, - 0, - 0, - 189, - 252, - 237, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 15, - 0, - 0, - 0, - 13, - 251, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 225, - 221, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 78, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 189, - 2, - 1, - 167, - 255, - 255, - 200, - 0, - 0, - 0, - 149, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 121, - 0, - 0, - 96, - 255, - 255, - 239, - 0, - 0, - 0, - 220, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 109, - 0, - 0, - 81, - 255, - 255, - 255, - 0, - 0, - 35, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 108, - 0, - 0, - 81, - 255, - 255, - 255, - 0, - 0, - 106, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 112, - 0, - 0, - 84, - 255, - 255, - 252, - 0, - 0, - 178, - 255, - 248, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 137, - 0, - 0, - 112, - 255, - 255, - 228, - 0, - 6, - 243, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 224, - 27, - 21, - 208, - 255, - 255, - 178, - 0, - 64, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 135, - 255, - 255, - 44, - 0, - 10, - 128, - 211, - 246, - 247, - 214, - 136, - 15, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 1, - 0, - 206, - 255, - 228, - 1, - 5, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 12, - 0, - 0, - 62, - 153, - 192, - 194, - 159, - 77, - 1, - 0, - 23, - 255, - 255, - 157, - 0, - 94, - 255, - 255, - 255, - 225, - 223, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 86, - 0, - 174, - 255, - 255, - 188, - 3, - 2, - 177, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 253, - 18, - 0, - 214, - 255, - 255, - 115, - 0, - 0, - 106, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 234, - 255, - 199, - 0, - 0, - 234, - 255, - 255, - 101, - 0, - 0, - 90, - 255, - 255, - 251, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 128, - 0, - 0, - 236, - 255, - 255, - 100, - 0, - 0, - 88, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 56, - 0, - 0, - 233, - 255, - 255, - 103, - 0, - 0, - 91, - 255, - 255, - 250, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 238, - 3, - 0, - 0, - 212, - 255, - 255, - 121, - 0, - 0, - 110, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 251, - 255, - 170, - 0, - 0, - 0, - 166, - 255, - 255, - 195, - 2, - 2, - 187, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 98, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 219, - 219, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 28, - 0, - 0, - 0, - 2, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 6, - 120, - 210, - 249, - 250, - 214, - 130, - 11, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 1, - "y": 0, - "width": 15, - "height": 23, - "dx": 17, - "glyphBitmap": { - "height": 23, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 73, - 188, - 241, - 246, - 209, - 120, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 14, - 0, - 0, - 0, - 0, - 0, - 41, - 252, - 255, - 255, - 242, - 219, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 247, - 30, - 1, - 155, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 195, - 0, - 0, - 93, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 191, - 0, - 0, - 127, - 255, - 255, - 244, - 2, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 230, - 1, - 0, - 187, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 40, - 26, - 252, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 2, - 214, - 255, - 255, - 120, - 140, - 255, - 255, - 198, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 223, - 246, - 255, - 239, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 205, - 255, - 255, - 255, - 250, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 169, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 38, - 216, - 216, - 216, - 11, - 0, - 61, - 254, - 255, - 255, - 255, - 255, - 245, - 29, - 0, - 71, - 255, - 255, - 246, - 2, - 1, - 205, - 255, - 255, - 198, - 189, - 255, - 255, - 167, - 0, - 115, - 255, - 255, - 211, - 0, - 48, - 255, - 255, - 255, - 74, - 49, - 254, - 255, - 255, - 62, - 165, - 255, - 255, - 150, - 0, - 112, - 255, - 255, - 247, - 5, - 0, - 155, - 255, - 255, - 209, - 232, - 255, - 255, - 73, - 0, - 150, - 255, - 255, - 215, - 0, - 0, - 23, - 242, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 147, - 255, - 255, - 227, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 102, - 255, - 255, - 255, - 61, - 0, - 6, - 126, - 255, - 255, - 255, - 255, - 169, - 28, - 0, - 19, - 241, - 255, - 255, - 250, - 198, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 86, - 253, - 255, - 255, - 255, - 255, - 255, - 252, - 107, - 112, - 255, - 255, - 255, - 32, - 0, - 0, - 54, - 175, - 236, - 253, - 226, - 168, - 54, - 0, - 0, - 76, - 211, - 254, - 32 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 1, - "y": 14, - "width": 5, - "height": 9, - "dx": 9, - "glyphBitmap": { - "height": 9, - "width": 5, - "pixelArray": [ - 28, - 252, - 252, - 252, - 16, - 28, - 255, - 255, - 230, - 0, - 28, - 255, - 255, - 189, - 0, - 28, - 255, - 255, - 147, - 0, - 28, - 255, - 255, - 106, - 0, - 28, - 255, - 255, - 64, - 0, - 28, - 255, - 255, - 23, - 0, - 28, - 255, - 237, - 1, - 0, - 1, - 4, - 4, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 1, - "y": -6, - "width": 8, - "height": 29, - "dx": 9, - "glyphBitmap": { - "height": 29, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 1, - 87, - 193, - 242, - 8, - 0, - 0, - 2, - 159, - 255, - 255, - 255, - 8, - 0, - 0, - 96, - 255, - 255, - 255, - 231, - 7, - 0, - 1, - 218, - 255, - 255, - 199, - 8, - 0, - 0, - 52, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 124, - 255, - 255, - 249, - 7, - 0, - 0, - 0, - 174, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 235, - 255, - 255, - 161, - 0, - 0, - 0, - 1, - 253, - 255, - 255, - 145, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 2, - 253, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 251, - 8, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 1, - 218, - 255, - 255, - 199, - 7, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 228, - 7, - 0, - 0, - 2, - 162, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 1, - 91, - 196, - 246, - 8 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 0, - "y": -6, - "width": 8, - "height": 29, - "dx": 8, - "glyphBitmap": { - "height": 29, - "width": 8, - "pixelArray": [ - 28, - 240, - 187, - 74, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 23, - 235, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 14, - 216, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 1, - 236, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 152, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 186, - 0, - 0, - 0, - 1, - 238, - 255, - 255, - 150, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 28, - 0, - 0, - 15, - 218, - 255, - 255, - 193, - 0, - 0, - 22, - 233, - 255, - 255, - 255, - 72, - 0, - 0, - 28, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 28, - 243, - 190, - 77, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 1, - "y": 12, - "width": 11, - "height": 11, - "dx": 12, - "glyphBitmap": { - "height": 11, - "width": 11, - "pixelArray": [ - 0, - 0, - 0, - 63, - 252, - 252, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 18, - 184, - 48, - 15, - 255, - 255, - 82, - 23, - 152, - 76, - 0, - 103, - 255, - 254, - 158, - 252, - 255, - 165, - 242, - 255, - 172, - 0, - 109, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 170, - 1, - 0, - 9, - 93, - 228, - 255, - 255, - 253, - 125, - 27, - 0, - 0, - 0, - 0, - 46, - 249, - 255, - 251, - 255, - 105, - 0, - 0, - 0, - 0, - 7, - 209, - 255, - 202, - 139, - 255, - 246, - 40, - 0, - 0, - 0, - 121, - 255, - 255, - 83, - 26, - 249, - 255, - 195, - 1, - 0, - 0, - 11, - 136, - 212, - 3, - 0, - 154, - 179, - 33, - 0, - 0, - 0, - 0, - 0, - 8, - 0, - 0, - 8, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 5, - "width": 12, - "height": 13, - "dx": 12, - "glyphBitmap": { - "height": 13, - "width": 12, - "pixelArray": [ - 0, - 0, - 0, - 0, - 79, - 252, - 252, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 54, - 192, - 192, - 192, - 212, - 255, - 255, - 217, - 192, - 192, - 192, - 87, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 2, - 4, - 4, - 4, - 83, - 255, - 255, - 103, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 2, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 1, - "y": -4, - "width": 4, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "width": 4, - "pixelArray": [ - 225, - 252, - 252, - 221, - 228, - 255, - 255, - 224, - 228, - 255, - 255, - 224, - 228, - 255, - 255, - 223, - 0, - 3, - 240, - 206, - 0, - 88, - 255, - 149, - 114, - 253, - 242, - 36, - 105, - 180, - 44, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 1, - "y": 7, - "width": 8, - "height": 4, - "dx": 10, - "glyphBitmap": { - "height": 4, - "width": 8, - "pixelArray": [ - 81, - 192, - 192, - 192, - 192, - 192, - 192, - 63, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 2 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 1, - "y": 0, - "width": 4, - "height": 4, - "dx": 6, - "glyphBitmap": { - "height": 4, - "width": 4, - "pixelArray": [ - 182, - 252, - 252, - 252, - 184, - 255, - 255, - 255, - 184, - 255, - 255, - 255, - 184, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 1, - "y": 0, - "width": 10, - "height": 23, - "dx": 11, - "glyphBitmap": { - "height": 23, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 252, - 234, - 3, - 0, - 0, - 0, - 0, - 0, - 11, - 249, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 246, - 8, - 0, - 0, - 0, - 0, - 0, - 5, - 242, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 0, - 2, - 233, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 235, - 2, - 0, - 0, - 0, - 0, - 0, - 13, - 251, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 13, - 122, - 204, - 243, - 249, - 217, - 151, - 37, - 0, - 0, - 0, - 0, - 30, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 75, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 23, - 0, - 56, - 255, - 255, - 255, - 221, - 43, - 18, - 168, - 255, - 255, - 255, - 133, - 0, - 131, - 255, - 255, - 255, - 103, - 0, - 0, - 27, - 255, - 255, - 255, - 210, - 0, - 170, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 238, - 255, - 255, - 248, - 2, - 187, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 11, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 188, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 12, - 187, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 11, - 171, - 255, - 255, - 255, - 64, - 0, - 0, - 1, - 241, - 255, - 255, - 249, - 2, - 130, - 255, - 255, - 255, - 115, - 0, - 0, - 36, - 255, - 255, - 255, - 210, - 0, - 53, - 255, - 255, - 255, - 229, - 45, - 17, - 178, - 255, - 255, - 255, - 133, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 22, - 0, - 0, - 25, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 74, - 0, - 0, - 0, - 0, - 10, - 120, - 205, - 246, - 252, - 220, - 152, - 36, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 2, - "y": 0, - "width": 8, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 1, - 127, - 252, - 252, - 241, - 0, - 0, - 39, - 183, - 255, - 255, - 255, - 244, - 50, - 172, - 254, - 255, - 255, - 255, - 255, - 244, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 148, - 255, - 255, - 220, - 251, - 255, - 255, - 244, - 91, - 102, - 33, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 244 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 8, - 114, - 196, - 239, - 250, - 227, - 172, - 65, - 0, - 0, - 0, - 0, - 18, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 242, - 210, - 255, - 255, - 255, - 255, - 71, - 0, - 28, - 253, - 255, - 255, - 228, - 22, - 0, - 75, - 255, - 255, - 255, - 184, - 0, - 95, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 227, - 255, - 255, - 248, - 2, - 131, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 25, - 147, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 27, - 88, - 152, - 152, - 152, - 38, - 0, - 0, - 12, - 249, - 255, - 255, - 253, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 226, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 235, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 252, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 197, - 255, - 255, - 255, - 187, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 245, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 236, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 202, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 251, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 207, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 216, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 242, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 246, - 192, - 192, - 192, - 192, - 192, - 192, - 102, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 0, - 0, - 33, - 145, - 214, - 246, - 248, - 219, - 157, - 47, - 0, - 0, - 0, - 80, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 107, - 0, - 29, - 244, - 255, - 255, - 255, - 224, - 218, - 255, - 255, - 255, - 253, - 50, - 131, - 255, - 255, - 255, - 147, - 1, - 0, - 110, - 255, - 255, - 255, - 160, - 191, - 255, - 255, - 255, - 41, - 0, - 0, - 11, - 253, - 255, - 255, - 219, - 218, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 228, - 255, - 255, - 245, - 165, - 192, - 192, - 192, - 3, - 0, - 0, - 1, - 238, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 2, - 39, - 186, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 28, - 254, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 129, - 1, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 1, - 7, - 58, - 222, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 216, - 52, - 60, - 60, - 60, - 1, - 0, - 0, - 0, - 232, - 255, - 255, - 243, - 220, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 226, - 255, - 255, - 244, - 207, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 237, - 255, - 255, - 220, - 172, - 255, - 255, - 255, - 61, - 0, - 0, - 16, - 255, - 255, - 255, - 179, - 105, - 255, - 255, - 255, - 158, - 1, - 0, - 115, - 255, - 255, - 255, - 105, - 13, - 234, - 255, - 255, - 255, - 219, - 210, - 255, - 255, - 255, - 233, - 11, - 0, - 69, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 66, - 0, - 0, - 0, - 34, - 147, - 216, - 249, - 252, - 218, - 151, - 35, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 115, - 252, - 252, - 252, - 252, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 221, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 32, - 254, - 255, - 244, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 167, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 7, - 234, - 255, - 241, - 96, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 162, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 76, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 48, - 255, - 255, - 240, - 7, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 153, - 255, - 255, - 159, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 15, - 245, - 255, - 255, - 73, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 109, - 255, - 255, - 238, - 6, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 215, - 255, - 255, - 156, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 255, - 255, - 255, - 218, - 192, - 192, - 214, - 255, - 255, - 255, - 213, - 192, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 4, - 4, - 4, - 4, - 4, - 4, - 91, - 255, - 255, - 255, - 87, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 84, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 34, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 44, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 49, - 255, - 255, - 255, - 49, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 53, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 32, - 133, - 183, - 183, - 137, - 41, - 0, - 0, - 0, - 63, - 255, - 255, - 254, - 241, - 255, - 255, - 255, - 255, - 250, - 84, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 24, - 0, - 71, - 255, - 255, - 255, - 220, - 50, - 18, - 156, - 255, - 255, - 255, - 120, - 0, - 74, - 255, - 255, - 255, - 73, - 0, - 0, - 12, - 249, - 255, - 255, - 194, - 0, - 14, - 44, - 44, - 44, - 3, - 0, - 0, - 0, - 210, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 5, - 159, - 252, - 252, - 252, - 46, - 0, - 0, - 0, - 191, - 255, - 255, - 244, - 0, - 145, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 203, - 255, - 255, - 216, - 0, - 115, - 255, - 255, - 255, - 100, - 0, - 0, - 4, - 240, - 255, - 255, - 165, - 0, - 53, - 255, - 255, - 255, - 199, - 7, - 0, - 93, - 255, - 255, - 255, - 93, - 0, - 1, - 206, - 255, - 255, - 255, - 230, - 204, - 255, - 255, - 255, - 227, - 9, - 0, - 0, - 50, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 63, - 0, - 0, - 0, - 0, - 32, - 153, - 214, - 249, - 252, - 219, - 155, - 32, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 1, - 91, - 189, - 236, - 251, - 231, - 186, - 94, - 3, - 0, - 0, - 0, - 3, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 5, - 0, - 0, - 109, - 255, - 255, - 255, - 243, - 206, - 251, - 255, - 255, - 255, - 115, - 0, - 3, - 230, - 255, - 255, - 233, - 25, - 0, - 38, - 249, - 255, - 255, - 213, - 0, - 54, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 201, - 255, - 255, - 254, - 7, - 107, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 93, - 132, - 132, - 132, - 10, - 133, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 81, - 90, - 168, - 189, - 159, - 76, - 1, - 0, - 0, - 148, - 255, - 255, - 255, - 208, - 255, - 255, - 255, - 255, - 255, - 154, - 1, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 148, - 255, - 255, - 255, - 234, - 65, - 13, - 124, - 255, - 255, - 255, - 196, - 0, - 148, - 255, - 255, - 255, - 99, - 0, - 0, - 2, - 230, - 255, - 255, - 252, - 10, - 148, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 40, - 148, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 61, - 148, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 61, - 139, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 43, - 112, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 16, - 61, - 255, - 255, - 255, - 147, - 0, - 0, - 1, - 229, - 255, - 255, - 219, - 0, - 3, - 229, - 255, - 255, - 237, - 26, - 0, - 80, - 255, - 255, - 255, - 131, - 0, - 0, - 102, - 255, - 255, - 255, - 241, - 202, - 252, - 255, - 255, - 244, - 27, - 0, - 0, - 1, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 80, - 0, - 0, - 0, - 0, - 1, - 85, - 192, - 239, - 253, - 226, - 166, - 50, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 1, - "y": 0, - "width": 10, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 10, - "pixelArray": [ - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 229, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 179, - 200, - 200, - 200, - 200, - 200, - 253, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 245, - 4, - 0, - 0, - 0, - 0, - 2, - 239, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 11, - 253, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 254, - 14, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 245, - 4, - 0, - 0, - 0, - 0, - 6, - 248, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 0, - 0, - 26, - 143, - 214, - 246, - 247, - 214, - 143, - 26, - 0, - 0, - 0, - 53, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 50, - 0, - 5, - 217, - 255, - 255, - 255, - 228, - 227, - 255, - 255, - 255, - 212, - 3, - 70, - 255, - 255, - 255, - 172, - 4, - 5, - 178, - 255, - 255, - 255, - 62, - 122, - 255, - 255, - 255, - 73, - 0, - 0, - 82, - 255, - 255, - 255, - 113, - 142, - 255, - 255, - 255, - 43, - 0, - 0, - 51, - 255, - 255, - 255, - 134, - 125, - 255, - 255, - 255, - 56, - 0, - 0, - 64, - 255, - 255, - 255, - 118, - 71, - 255, - 255, - 255, - 105, - 0, - 0, - 111, - 255, - 255, - 255, - 67, - 4, - 220, - 255, - 255, - 220, - 35, - 34, - 222, - 255, - 255, - 219, - 4, - 0, - 57, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 58, - 0, - 0, - 1, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 40, - 254, - 255, - 255, - 201, - 32, - 30, - 199, - 255, - 255, - 253, - 35, - 143, - 255, - 255, - 255, - 62, - 0, - 0, - 61, - 255, - 255, - 255, - 140, - 197, - 255, - 255, - 252, - 7, - 0, - 0, - 7, - 252, - 255, - 255, - 195, - 227, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 227, - 229, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 229, - 206, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 207, - 167, - 255, - 255, - 255, - 25, - 0, - 0, - 26, - 255, - 255, - 255, - 170, - 96, - 255, - 255, - 255, - 145, - 1, - 1, - 146, - 255, - 255, - 255, - 100, - 8, - 226, - 255, - 255, - 255, - 217, - 216, - 255, - 255, - 255, - 229, - 9, - 0, - 53, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 57, - 0, - 0, - 0, - 28, - 142, - 214, - 250, - 251, - 215, - 145, - 30, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 0, - 0, - 12, - 124, - 201, - 244, - 247, - 207, - 135, - 20, - 0, - 0, - 0, - 25, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 39, - 0, - 0, - 181, - 255, - 255, - 255, - 230, - 223, - 255, - 255, - 255, - 209, - 3, - 47, - 255, - 255, - 255, - 188, - 5, - 3, - 157, - 255, - 255, - 255, - 82, - 130, - 255, - 255, - 255, - 81, - 0, - 0, - 38, - 255, - 255, - 255, - 170, - 177, - 255, - 255, - 255, - 38, - 0, - 0, - 2, - 248, - 255, - 255, - 219, - 204, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 237, - 255, - 255, - 247, - 211, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 199, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 166, - 255, - 255, - 255, - 76, - 0, - 0, - 2, - 241, - 255, - 255, - 255, - 104, - 255, - 255, - 255, - 198, - 24, - 14, - 148, - 255, - 255, - 255, - 255, - 18, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 83, - 250, - 255, - 255, - 255, - 255, - 232, - 246, - 255, - 255, - 255, - 0, - 0, - 42, - 146, - 190, - 193, - 143, - 30, - 236, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 240, - 157, - 248, - 248, - 248, - 32, - 0, - 0, - 17, - 255, - 255, - 255, - 213, - 137, - 255, - 255, - 255, - 64, - 0, - 0, - 55, - 255, - 255, - 255, - 162, - 83, - 255, - 255, - 255, - 149, - 1, - 1, - 157, - 255, - 255, - 255, - 85, - 9, - 228, - 255, - 255, - 255, - 218, - 214, - 255, - 255, - 255, - 216, - 6, - 0, - 63, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 52, - 0, - 0, - 0, - 33, - 149, - 218, - 249, - 251, - 218, - 150, - 27, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 1, - "y": 1, - "width": 5, - "height": 14, - "dx": 7, - "glyphBitmap": { - "height": 14, - "width": 5, - "pixelArray": [ - 71, - 252, - 252, - 252, - 107, - 72, - 255, - 255, - 255, - 108, - 72, - 255, - 255, - 255, - 108, - 72, - 255, - 255, - 255, - 108, - 2, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 252, - 252, - 252, - 107, - 72, - 255, - 255, - 255, - 108, - 72, - 255, - 255, - 255, - 108, - 72, - 255, - 255, - 255, - 108, - 2, - 4, - 4, - 4, - 2 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 1, - "y": -2, - "width": 5, - "height": 19, - "dx": 7, - "glyphBitmap": { - "height": 19, - "width": 5, - "pixelArray": [ - 75, - 252, - 252, - 252, - 103, - 76, - 255, - 255, - 255, - 104, - 76, - 255, - 255, - 255, - 104, - 76, - 255, - 255, - 255, - 104, - 2, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 252, - 252, - 252, - 119, - 76, - 255, - 255, - 255, - 120, - 76, - 255, - 255, - 255, - 120, - 76, - 255, - 255, - 255, - 120, - 2, - 4, - 92, - 255, - 111, - 0, - 1, - 177, - 255, - 70, - 9, - 210, - 255, - 230, - 9, - 0, - 212, - 200, - 50, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 0, - "y": 1, - "width": 10, - "height": 17, - "dx": 11, - "glyphBitmap": { - "height": 17, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 195, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 239, - 255, - 48, - 0, - 0, - 0, - 0, - 10, - 153, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 46, - 214, - 255, - 255, - 255, - 225, - 25, - 0, - 1, - 109, - 248, - 255, - 255, - 255, - 174, - 17, - 0, - 12, - 178, - 255, - 255, - 255, - 249, - 107, - 1, - 0, - 0, - 40, - 255, - 255, - 255, - 217, - 48, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 234, - 21, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 211, - 41, - 0, - 0, - 0, - 0, - 15, - 194, - 255, - 255, - 255, - 245, - 95, - 0, - 0, - 0, - 0, - 4, - 126, - 253, - 255, - 255, - 255, - 161, - 12, - 0, - 0, - 0, - 0, - 59, - 224, - 255, - 255, - 255, - 216, - 22, - 0, - 0, - 0, - 0, - 16, - 168, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 1, - 96, - 244, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 204, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 12 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 1, - "y": 7, - "width": 10, - "height": 9, - "dx": 12, - "glyphBitmap": { - "height": 9, - "width": 10, - "pixelArray": [ - 95, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 99, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 75, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 200, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 75, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 1, - "y": 1, - "width": 9, - "height": 17, - "dx": 11, - "glyphBitmap": { - "height": 17, - "width": 9, - "pixelArray": [ - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 154, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 214, - 47, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 249, - 110, - 1, - 0, - 0, - 0, - 64, - 245, - 255, - 255, - 255, - 180, - 21, - 0, - 0, - 0, - 41, - 210, - 255, - 255, - 255, - 231, - 69, - 0, - 0, - 0, - 9, - 150, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 83, - 240, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 59, - 254, - 255, - 240, - 0, - 0, - 0, - 0, - 74, - 236, - 255, - 255, - 240, - 0, - 0, - 6, - 139, - 255, - 255, - 255, - 255, - 152, - 0, - 33, - 201, - 255, - 255, - 255, - 239, - 85, - 0, - 58, - 240, - 255, - 255, - 255, - 194, - 30, - 0, - 0, - 108, - 255, - 255, - 252, - 125, - 3, - 0, - 0, - 0, - 108, - 255, - 223, - 58, - 0, - 0, - 0, - 0, - 0, - 108, - 166, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 0, - 0, - 71, - 176, - 229, - 251, - 239, - 200, - 120, - 13, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 38, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 3, - 158, - 255, - 255, - 255, - 123, - 14, - 53, - 218, - 255, - 255, - 255, - 71, - 186, - 255, - 255, - 242, - 2, - 0, - 0, - 86, - 255, - 255, - 255, - 131, - 174, - 255, - 255, - 240, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 158, - 137, - 241, - 190, - 139, - 7, - 0, - 0, - 65, - 255, - 255, - 255, - 145, - 10, - 2, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 222, - 255, - 255, - 252, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 249, - 255, - 255, - 233, - 23, - 0, - 0, - 0, - 0, - 0, - 31, - 229, - 255, - 255, - 251, - 65, - 0, - 0, - 0, - 0, - 0, - 31, - 221, - 255, - 255, - 254, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 252, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 240, - 240, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 252, - 252, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 1, - "y": -5, - "width": 25, - "height": 28, - "dx": 26, - "glyphBitmap": { - "height": 28, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 85, - 155, - 204, - 233, - 250, - 247, - 219, - 177, - 111, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 126, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 123, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 220, - 255, - 255, - 255, - 255, - 255, - 221, - 204, - 212, - 246, - 255, - 255, - 255, - 255, - 195, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 246, - 255, - 255, - 255, - 180, - 77, - 17, - 0, - 0, - 0, - 2, - 50, - 153, - 253, - 255, - 255, - 180, - 2, - 0, - 0, - 0, - 0, - 0, - 42, - 244, - 255, - 255, - 240, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 234, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 4, - 207, - 255, - 255, - 232, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 252, - 255, - 235, - 10, - 0, - 0, - 0, - 102, - 255, - 255, - 253, - 60, - 0, - 0, - 0, - 35, - 159, - 229, - 239, - 107, - 164, - 252, - 252, - 76, - 0, - 147, - 255, - 255, - 86, - 0, - 0, - 3, - 220, - 255, - 255, - 158, - 0, - 0, - 0, - 69, - 242, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 40, - 0, - 39, - 255, - 255, - 168, - 0, - 0, - 67, - 255, - 255, - 251, - 33, - 0, - 0, - 39, - 245, - 255, - 255, - 255, - 224, - 228, - 255, - 255, - 253, - 6, - 0, - 0, - 218, - 255, - 223, - 0, - 0, - 147, - 255, - 255, - 176, - 0, - 0, - 1, - 187, - 255, - 255, - 245, - 82, - 1, - 94, - 255, - 255, - 220, - 0, - 0, - 0, - 177, - 255, - 253, - 2, - 0, - 212, - 255, - 255, - 95, - 0, - 0, - 60, - 255, - 255, - 255, - 98, - 0, - 0, - 130, - 255, - 255, - 183, - 0, - 0, - 0, - 161, - 255, - 255, - 17, - 7, - 252, - 255, - 255, - 39, - 0, - 0, - 155, - 255, - 255, - 210, - 2, - 0, - 0, - 166, - 255, - 255, - 145, - 0, - 0, - 0, - 161, - 255, - 255, - 22, - 43, - 255, - 255, - 250, - 4, - 0, - 1, - 231, - 255, - 255, - 122, - 0, - 0, - 0, - 202, - 255, - 255, - 107, - 0, - 0, - 0, - 180, - 255, - 255, - 9, - 74, - 255, - 255, - 216, - 0, - 0, - 25, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 238, - 255, - 255, - 70, - 0, - 0, - 0, - 224, - 255, - 233, - 0, - 91, - 255, - 255, - 197, - 0, - 0, - 56, - 255, - 255, - 255, - 44, - 0, - 0, - 18, - 255, - 255, - 255, - 32, - 0, - 0, - 32, - 255, - 255, - 186, - 0, - 99, - 255, - 255, - 188, - 0, - 0, - 67, - 255, - 255, - 255, - 55, - 0, - 0, - 59, - 255, - 255, - 249, - 3, - 0, - 0, - 134, - 255, - 255, - 113, - 0, - 94, - 255, - 255, - 197, - 0, - 0, - 46, - 255, - 255, - 255, - 124, - 0, - 1, - 169, - 255, - 255, - 222, - 0, - 0, - 37, - 248, - 255, - 250, - 25, - 0, - 69, - 255, - 255, - 219, - 0, - 0, - 8, - 248, - 255, - 255, - 249, - 160, - 191, - 255, - 255, - 255, - 230, - 8, - 67, - 221, - 255, - 255, - 144, - 0, - 0, - 43, - 255, - 255, - 249, - 10, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 12, - 0, - 0, - 7, - 246, - 255, - 255, - 69, - 0, - 0, - 19, - 222, - 255, - 255, - 255, - 255, - 91, - 199, - 255, - 255, - 255, - 255, - 255, - 214, - 35, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 166, - 0, - 0, - 0, - 20, - 130, - 189, - 182, - 82, - 0, - 28, - 170, - 244, - 252, - 207, - 122, - 11, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 254, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 216, - 255, - 255, - 215, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 253, - 255, - 255, - 224, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 195, - 103, - 54, - 16, - 4, - 11, - 41, - 85, - 133, - 194, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 148, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 76, - 122, - 165, - 188, - 193, - 182, - 148, - 107, - 67, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 15, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 4, - 243, - 252, - 252, - 252, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 247, - 255, - 255, - 248, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 178, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 249, - 104, - 255, - 255, - 238, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 211, - 60, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 170, - 19, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 4, - 247, - 255, - 255, - 129, - 0, - 234, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 88, - 0, - 193, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 47, - 0, - 152, - 255, - 255, - 238, - 1, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 254, - 9, - 0, - 111, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 221, - 0, - 0, - 70, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 5, - 248, - 255, - 255, - 255, - 252, - 252, - 253, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 221, - 204, - 204, - 204, - 242, - 255, - 255, - 238, - 1, - 0, - 0, - 150, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 34, - 0, - 0, - 201, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 85, - 0, - 5, - 248, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 136, - 0, - 48, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 187, - 0, - 99, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 238, - 1 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 251, - 236, - 204, - 139, - 34, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 97, - 0, - 0, - 76, - 255, - 255, - 255, - 247, - 201, - 211, - 244, - 255, - 255, - 255, - 251, - 48, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 6, - 123, - 255, - 255, - 255, - 152, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 1, - 222, - 255, - 255, - 202, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 226, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 216, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 4, - 238, - 255, - 255, - 171, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 4, - 130, - 255, - 255, - 255, - 85, - 0, - 76, - 255, - 255, - 255, - 245, - 192, - 199, - 240, - 255, - 255, - 255, - 145, - 1, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 118, - 2, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 19, - 0, - 76, - 255, - 255, - 255, - 213, - 4, - 10, - 55, - 186, - 255, - 255, - 255, - 178, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 8, - 227, - 255, - 255, - 255, - 39, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 104, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 135, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 142, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 123, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 82, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 1, - 89, - 254, - 255, - 255, - 248, - 14, - 76, - 255, - 255, - 255, - 245, - 192, - 195, - 228, - 255, - 255, - 255, - 255, - 134, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 7, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 228, - 177, - 80, - 1, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 3, - 89, - 181, - 227, - 250, - 244, - 211, - 152, - 39, - 0, - 0, - 0, - 11, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 87, - 0, - 0, - 151, - 255, - 255, - 255, - 251, - 208, - 220, - 255, - 255, - 255, - 246, - 25, - 22, - 252, - 255, - 255, - 246, - 46, - 0, - 1, - 135, - 255, - 255, - 255, - 130, - 94, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 190, - 138, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 221, - 162, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 232, - 171, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 232, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 7, - 80, - 80, - 80, - 73, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 12, - 152, - 152, - 152, - 138, - 171, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 232, - 163, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 229, - 139, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 216, - 93, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 181, - 21, - 251, - 255, - 255, - 250, - 45, - 0, - 1, - 148, - 255, - 255, - 255, - 114, - 0, - 145, - 255, - 255, - 255, - 253, - 202, - 219, - 255, - 255, - 255, - 240, - 20, - 0, - 9, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 75, - 0, - 0, - 0, - 2, - 92, - 187, - 230, - 254, - 247, - 216, - 152, - 37, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 249, - 229, - 196, - 134, - 29, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 90, - 0, - 0, - 76, - 255, - 255, - 255, - 247, - 200, - 207, - 245, - 255, - 255, - 255, - 251, - 41, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 12, - 183, - 255, - 255, - 255, - 163, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 233, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 12, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 35, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 40, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 39, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 30, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 6, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 222, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 13, - 191, - 255, - 255, - 255, - 144, - 0, - 76, - 255, - 255, - 255, - 245, - 192, - 201, - 245, - 255, - 255, - 255, - 245, - 29, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 77, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 253, - 235, - 200, - 136, - 27, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 1, - "y": 0, - "width": 11, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 11, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 48, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 76, - 255, - 255, - 255, - 247, - 200, - 200, - 200, - 200, - 200, - 38, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 245, - 192, - 192, - 192, - 192, - 12, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 76, - 255, - 255, - 255, - 213, - 4, - 4, - 4, - 4, - 1, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 245, - 192, - 192, - 192, - 192, - 192, - 48, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 1, - "y": 0, - "width": 10, - "height": 23, - "dx": 11, - "glyphBitmap": { - "height": 23, - "width": 10, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 255, - 255, - 255, - 247, - 200, - 200, - 200, - 200, - 200, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 245, - 192, - 192, - 192, - 186, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 76, - 255, - 255, - 255, - 213, - 4, - 4, - 4, - 4, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 0, - 0, - 3, - 94, - 182, - 228, - 250, - 245, - 215, - 156, - 53, - 0, - 0, - 0, - 0, - 9, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 120, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 254, - 210, - 223, - 255, - 255, - 255, - 255, - 56, - 0, - 16, - 245, - 255, - 255, - 250, - 51, - 0, - 1, - 107, - 255, - 255, - 255, - 165, - 0, - 88, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 6, - 251, - 255, - 255, - 229, - 0, - 133, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 7, - 157, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 16, - 171, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 91, - 104, - 104, - 104, - 7, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 245, - 252, - 252, - 252, - 252, - 252, - 48, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 48, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 194, - 200, - 230, - 255, - 255, - 255, - 48, - 172, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 48, - 171, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 48, - 157, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 48, - 130, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 48, - 80, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 1, - 220, - 255, - 255, - 255, - 48, - 16, - 246, - 255, - 255, - 253, - 58, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 48, - 0, - 147, - 255, - 255, - 255, - 253, - 205, - 212, - 255, - 255, - 251, - 255, - 255, - 48, - 0, - 13, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 177, - 255, - 255, - 48, - 0, - 0, - 6, - 107, - 197, - 241, - 253, - 220, - 133, - 11, - 141, - 255, - 255, - 48 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 67, - 252, - 252, - 252, - 217, - 0, - 0, - 0, - 0, - 134, - 252, - 252, - 252, - 154, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 247, - 192, - 192, - 192, - 192, - 226, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 221, - 4, - 4, - 4, - 4, - 138, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156, - 68, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 156 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 1, - "y": 0, - "width": 5, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "width": 5, - "pixelArray": [ - 48, - 252, - 252, - 252, - 225, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228, - 48, - 255, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": 0, - "width": 8, - "height": 23, - "dx": 9, - "glyphBitmap": { - "height": 23, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 182, - 252, - 252, - 252, - 102, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 99, - 0, - 0, - 1, - 224, - 255, - 255, - 255, - 86, - 0, - 21, - 117, - 255, - 255, - 255, - 255, - 55, - 186, - 255, - 255, - 255, - 255, - 255, - 234, - 6, - 188, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 188, - 255, - 254, - 233, - 190, - 76, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 75, - 252, - 252, - 252, - 209, - 0, - 0, - 0, - 7, - 230, - 252, - 252, - 241, - 15, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 154, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 1, - 207, - 255, - 255, - 255, - 48, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 64, - 255, - 255, - 255, - 198, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 176, - 255, - 255, - 255, - 92, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 35, - 254, - 255, - 255, - 235, - 8, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 144, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 15, - 243, - 255, - 255, - 254, - 33, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 113, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 215, - 223, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 5, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 203, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 241, - 22, - 234, - 255, - 255, - 249, - 19, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 144, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 50, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 1, - 212, - 255, - 255, - 255, - 49, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 118, - 255, - 255, - 255, - 146, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 27, - 254, - 255, - 255, - 238, - 8, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 86, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 183, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 11, - 244, - 255, - 255, - 254, - 29, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 123 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 1, - "y": 0, - "width": 11, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 11, - "pixelArray": [ - 75, - 252, - 252, - 252, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 254, - 240, - 240, - 240, - 240, - 240, - 60, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 1, - "y": 0, - "width": 17, - "height": 23, - "dx": 19, - "glyphBitmap": { - "height": 23, - "width": 17, - "pixelArray": [ - 0, - 247, - 252, - 252, - 252, - 92, - 0, - 0, - 0, - 0, - 0, - 46, - 252, - 252, - 252, - 252, - 18, - 1, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 22, - 3, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 26, - 7, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 31, - 11, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 8, - 251, - 255, - 255, - 255, - 255, - 35, - 15, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 40, - 20, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 44, - 24, - 255, - 255, - 255, - 243, - 255, - 198, - 0, - 0, - 0, - 162, - 255, - 254, - 248, - 255, - 255, - 48, - 28, - 255, - 255, - 255, - 187, - 255, - 246, - 4, - 0, - 0, - 216, - 255, - 211, - 236, - 255, - 255, - 53, - 32, - 255, - 255, - 255, - 129, - 255, - 255, - 45, - 0, - 15, - 255, - 255, - 157, - 231, - 255, - 255, - 57, - 36, - 255, - 255, - 255, - 71, - 255, - 255, - 97, - 0, - 66, - 255, - 255, - 104, - 227, - 255, - 255, - 61, - 41, - 255, - 255, - 254, - 16, - 255, - 255, - 149, - 0, - 119, - 255, - 255, - 50, - 223, - 255, - 255, - 66, - 45, - 255, - 255, - 250, - 0, - 216, - 255, - 200, - 0, - 172, - 255, - 248, - 5, - 218, - 255, - 255, - 70, - 49, - 255, - 255, - 246, - 0, - 162, - 255, - 248, - 5, - 225, - 255, - 198, - 0, - 214, - 255, - 255, - 74, - 53, - 255, - 255, - 242, - 0, - 108, - 255, - 255, - 70, - 255, - 255, - 145, - 0, - 210, - 255, - 255, - 79, - 57, - 255, - 255, - 238, - 0, - 54, - 255, - 255, - 174, - 255, - 255, - 91, - 0, - 205, - 255, - 255, - 83, - 61, - 255, - 255, - 234, - 0, - 7, - 250, - 255, - 252, - 255, - 255, - 37, - 0, - 201, - 255, - 255, - 87, - 66, - 255, - 255, - 230, - 0, - 0, - 202, - 255, - 255, - 255, - 239, - 1, - 0, - 197, - 255, - 255, - 92, - 70, - 255, - 255, - 226, - 0, - 0, - 148, - 255, - 255, - 255, - 186, - 0, - 0, - 192, - 255, - 255, - 96, - 74, - 255, - 255, - 222, - 0, - 0, - 94, - 255, - 255, - 255, - 132, - 0, - 0, - 188, - 255, - 255, - 100, - 78, - 255, - 255, - 218, - 0, - 0, - 40, - 255, - 255, - 255, - 78, - 0, - 0, - 184, - 255, - 255, - 105, - 82, - 255, - 255, - 214, - 0, - 0, - 2, - 241, - 255, - 255, - 25, - 0, - 0, - 179, - 255, - 255, - 109, - 86, - 255, - 255, - 210, - 0, - 0, - 0, - 188, - 255, - 227, - 0, - 0, - 0, - 175, - 255, - 255, - 114 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 75, - 252, - 252, - 190, - 0, - 0, - 0, - 0, - 0, - 229, - 252, - 252, - 130, - 76, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 245, - 16, - 0, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 255, - 218, - 2, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 243, - 255, - 255, - 139, - 0, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 150, - 255, - 255, - 238, - 10, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 62, - 239, - 255, - 255, - 99, - 232, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 142, - 255, - 255, - 207, - 233, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 4, - 227, - 255, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 24, - 251, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 132, - 76, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 132 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 0, - 0, - 2, - 92, - 180, - 224, - 249, - 246, - 213, - 156, - 52, - 0, - 0, - 0, - 0, - 11, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 121, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 252, - 210, - 221, - 255, - 255, - 255, - 255, - 70, - 0, - 26, - 250, - 255, - 255, - 248, - 47, - 0, - 0, - 110, - 255, - 255, - 255, - 195, - 0, - 99, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 254, - 20, - 139, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 64, - 165, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 92, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 164, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 92, - 136, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 65, - 89, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 255, - 24, - 20, - 248, - 255, - 255, - 248, - 46, - 0, - 0, - 110, - 255, - 255, - 255, - 197, - 0, - 0, - 145, - 255, - 255, - 255, - 251, - 202, - 214, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 11, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 121, - 0, - 0, - 0, - 0, - 2, - 91, - 182, - 228, - 253, - 249, - 216, - 164, - 57, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 15, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 252, - 249, - 222, - 163, - 51, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 96, - 0, - 0, - 76, - 255, - 255, - 255, - 247, - 200, - 205, - 235, - 255, - 255, - 255, - 251, - 37, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 2, - 135, - 255, - 255, - 255, - 144, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 12, - 252, - 255, - 255, - 210, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 244, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 2, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 1, - 240, - 255, - 255, - 247, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 211, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 3, - 44, - 184, - 255, - 255, - 255, - 137, - 0, - 76, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 240, - 24, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 60, - 0, - 0, - 76, - 255, - 255, - 255, - 247, - 200, - 200, - 194, - 163, - 97, - 12, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 1, - "y": -5, - "width": 14, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 0, - 0, - 2, - 92, - 180, - 224, - 249, - 246, - 213, - 155, - 51, - 0, - 0, - 0, - 0, - 11, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 118, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 252, - 210, - 221, - 255, - 255, - 255, - 255, - 68, - 0, - 26, - 250, - 255, - 255, - 248, - 47, - 0, - 0, - 110, - 255, - 255, - 255, - 193, - 0, - 99, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 254, - 19, - 139, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 64, - 165, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 92, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 172, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 100, - 164, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 92, - 136, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 64, - 89, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 255, - 22, - 20, - 248, - 255, - 255, - 248, - 46, - 0, - 0, - 110, - 255, - 255, - 255, - 202, - 0, - 0, - 145, - 255, - 255, - 255, - 251, - 202, - 214, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 11, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 2, - 91, - 182, - 228, - 253, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 249, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 252, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 173, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 152, - 235, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 75, - 252, - 252, - 252, - 252, - 252, - 249, - 231, - 202, - 141, - 40, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 122, - 0, - 0, - 76, - 255, - 255, - 255, - 247, - 200, - 207, - 246, - 255, - 255, - 255, - 255, - 79, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 7, - 144, - 255, - 255, - 255, - 195, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 9, - 249, - 255, - 255, - 246, - 2, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 21, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 17, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 13, - 251, - 255, - 255, - 238, - 1, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 10, - 157, - 255, - 255, - 255, - 185, - 0, - 76, - 255, - 255, - 255, - 245, - 193, - 205, - 248, - 255, - 255, - 255, - 255, - 76, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 115, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 213, - 4, - 61, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 6, - 246, - 255, - 255, - 245, - 7, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 188, - 255, - 255, - 255, - 63, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 125, - 255, - 255, - 255, - 130, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 62, - 255, - 255, - 255, - 198, - 0, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 8, - 248, - 255, - 255, - 252, - 15, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 78, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 146, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 214, - 0, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 10, - 250, - 255, - 255, - 255, - 27, - 76, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 94 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 0, - 0, - 33, - 147, - 216, - 247, - 245, - 212, - 137, - 22, - 0, - 0, - 0, - 0, - 78, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 39, - 0, - 0, - 28, - 243, - 255, - 255, - 255, - 217, - 221, - 255, - 255, - 255, - 202, - 1, - 0, - 131, - 255, - 255, - 255, - 110, - 0, - 1, - 144, - 255, - 255, - 255, - 58, - 0, - 190, - 255, - 255, - 255, - 12, - 0, - 0, - 27, - 255, - 255, - 255, - 126, - 0, - 214, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 235, - 255, - 255, - 160, - 0, - 203, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 113, - 86, - 38, - 2, - 0, - 157, - 255, - 255, - 255, - 240, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 237, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 189, - 255, - 255, - 255, - 255, - 248, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 218, - 255, - 255, - 255, - 255, - 254, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 205, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 183, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 156, - 255, - 255, - 255, - 255, - 240, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 138, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 1, - 33, - 59, - 0, - 0, - 1, - 173, - 255, - 255, - 255, - 218, - 0, - 155, - 233, - 255, - 201, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 254, - 7, - 195, - 255, - 255, - 242, - 2, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 18, - 148, - 255, - 255, - 255, - 52, - 0, - 0, - 1, - 232, - 255, - 255, - 246, - 3, - 67, - 255, - 255, - 255, - 188, - 8, - 0, - 65, - 255, - 255, - 255, - 184, - 0, - 1, - 196, - 255, - 255, - 255, - 233, - 202, - 253, - 255, - 255, - 255, - 62, - 0, - 0, - 27, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 114, - 0, - 0, - 0, - 0, - 9, - 115, - 199, - 241, - 254, - 230, - 168, - 54, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 12, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 182, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 179, - 200, - 200, - 206, - 255, - 255, - 255, - 255, - 203, - 200, - 200, - 144, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 1, - "y": 0, - "width": 14, - "height": 23, - "dx": 16, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 123, - 252, - 252, - 252, - 134, - 0, - 0, - 0, - 0, - 189, - 252, - 252, - 252, - 67, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 124, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 68, - 122, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 65, - 112, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 56, - 89, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 33, - 46, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 9, - 248, - 255, - 255, - 242, - 3, - 2, - 230, - 255, - 255, - 255, - 74, - 0, - 1, - 127, - 255, - 255, - 255, - 172, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 207, - 217, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 3, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 1, - 83, - 182, - 227, - 253, - 250, - 221, - 166, - 55, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 14, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 66, - 252, - 252, - 252, - 102, - 0, - 0, - 0, - 0, - 4, - 244, - 252, - 252, - 188, - 18, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 140, - 0, - 222, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 88, - 0, - 171, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 37, - 0, - 119, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 175, - 255, - 255, - 241, - 2, - 0, - 68, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 220, - 255, - 255, - 190, - 0, - 0, - 18, - 255, - 255, - 255, - 130, - 0, - 0, - 11, - 254, - 255, - 255, - 139, - 0, - 0, - 0, - 222, - 255, - 255, - 177, - 0, - 0, - 54, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 171, - 255, - 255, - 225, - 0, - 0, - 99, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 17, - 0, - 144, - 255, - 255, - 240, - 1, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 63, - 0, - 189, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 110, - 0, - 234, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 157, - 23, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 205, - 68, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 248, - 117, - 255, - 255, - 240, - 1, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 200, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 239, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 0, - "y": 0, - "width": 20, - "height": 23, - "dx": 20, - "glyphBitmap": { - "height": 23, - "width": 20, - "pixelArray": [ - 6, - 249, - 252, - 252, - 114, - 0, - 0, - 0, - 103, - 252, - 252, - 131, - 0, - 0, - 0, - 71, - 252, - 252, - 252, - 30, - 0, - 223, - 255, - 255, - 147, - 0, - 0, - 0, - 146, - 255, - 255, - 175, - 0, - 0, - 0, - 104, - 255, - 255, - 248, - 2, - 0, - 187, - 255, - 255, - 179, - 0, - 0, - 0, - 188, - 255, - 255, - 217, - 0, - 0, - 0, - 136, - 255, - 255, - 214, - 0, - 0, - 151, - 255, - 255, - 211, - 0, - 0, - 0, - 229, - 255, - 255, - 253, - 8, - 0, - 0, - 168, - 255, - 255, - 177, - 0, - 0, - 115, - 255, - 255, - 242, - 1, - 0, - 15, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 199, - 255, - 255, - 141, - 0, - 0, - 79, - 255, - 255, - 255, - 18, - 0, - 56, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 231, - 255, - 255, - 105, - 0, - 0, - 43, - 255, - 255, - 255, - 50, - 0, - 98, - 255, - 255, - 255, - 255, - 132, - 0, - 9, - 255, - 255, - 255, - 69, - 0, - 0, - 9, - 255, - 255, - 255, - 82, - 0, - 139, - 255, - 255, - 255, - 255, - 174, - 0, - 39, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 227, - 255, - 255, - 114, - 0, - 181, - 255, - 249, - 208, - 255, - 217, - 0, - 71, - 255, - 255, - 250, - 3, - 0, - 0, - 0, - 191, - 255, - 255, - 145, - 0, - 222, - 255, - 209, - 162, - 255, - 253, - 7, - 102, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 177, - 10, - 254, - 255, - 166, - 119, - 255, - 255, - 46, - 134, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 209, - 49, - 255, - 255, - 123, - 76, - 255, - 255, - 88, - 166, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 241, - 91, - 255, - 255, - 80, - 33, - 255, - 255, - 131, - 198, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 149, - 255, - 255, - 37, - 2, - 245, - 255, - 173, - 230, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 222, - 255, - 247, - 3, - 0, - 203, - 255, - 223, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 251, - 4, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 1, - 243, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 246, - 2, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 235, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 253, - 6, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 14, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 100, - 252, - 252, - 252, - 121, - 0, - 0, - 0, - 0, - 107, - 252, - 252, - 252, - 48, - 13, - 243, - 255, - 255, - 223, - 2, - 0, - 0, - 0, - 196, - 255, - 255, - 209, - 1, - 0, - 151, - 255, - 255, - 255, - 71, - 0, - 0, - 30, - 255, - 255, - 255, - 113, - 0, - 0, - 47, - 255, - 255, - 255, - 173, - 0, - 0, - 117, - 255, - 255, - 251, - 22, - 0, - 0, - 0, - 200, - 255, - 255, - 252, - 25, - 0, - 205, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 123, - 38, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 10, - 239, - 255, - 255, - 224, - 128, - 255, - 255, - 236, - 6, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 245, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 209, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 2, - 224, - 255, - 255, - 221, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 72, - 222, - 255, - 255, - 243, - 14, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 229, - 3, - 117, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 15, - 246, - 255, - 255, - 138, - 0, - 19, - 247, - 255, - 255, - 213, - 1, - 0, - 0, - 101, - 255, - 255, - 255, - 44, - 0, - 0, - 159, - 255, - 255, - 255, - 63, - 0, - 0, - 198, - 255, - 255, - 206, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 170, - 0, - 40, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 251, - 26, - 136, - 255, - 255, - 252, - 23, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 127 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 14, - "height": 23, - "dx": 14, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 146, - 252, - 252, - 252, - 65, - 0, - 0, - 0, - 0, - 139, - 252, - 252, - 252, - 63, - 67, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 235, - 4, - 5, - 237, - 255, - 255, - 219, - 1, - 0, - 0, - 31, - 255, - 255, - 255, - 156, - 0, - 0, - 159, - 255, - 255, - 255, - 40, - 0, - 0, - 104, - 255, - 255, - 255, - 75, - 0, - 0, - 76, - 255, - 255, - 255, - 118, - 0, - 0, - 177, - 255, - 255, - 242, - 8, - 0, - 0, - 8, - 243, - 255, - 255, - 195, - 0, - 7, - 244, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 253, - 19, - 68, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 93, - 141, - 255, - 255, - 248, - 12, - 0, - 0, - 0, - 0, - 13, - 248, - 255, - 255, - 170, - 214, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 247, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 252, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 252, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 0, - "y": 0, - "width": 12, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 0, - 182, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 56, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 144, - 200, - 200, - 200, - 200, - 203, - 255, - 255, - 255, - 250, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 234, - 255, - 255, - 247, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 238, - 255, - 255, - 242, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 242, - 255, - 255, - 236, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 244, - 255, - 255, - 230, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 247, - 255, - 255, - 222, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 249, - 255, - 255, - 254, - 193, - 192, - 192, - 192, - 192, - 192, - 45, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 1, - "y": -5, - "width": 8, - "height": 28, - "dx": 10, - "glyphBitmap": { - "height": 28, - "width": 8, - "pixelArray": [ - 99, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 101, - 255, - 255, - 255, - 220, - 220, - 220, - 80, - 101, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 216, - 216, - 216, - 75, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 88 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 1, - "y": 0, - "width": 10, - "height": 23, - "dx": 11, - "glyphBitmap": { - "height": 23, - "width": 10, - "pixelArray": [ - 218, - 252, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 251, - 255, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 235, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 232, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 251, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 254, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 223, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 241, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 246, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 247, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 238, - 3 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 0, - "y": -5, - "width": 8, - "height": 28, - "dx": 9, - "glyphBitmap": { - "height": 28, - "width": 8, - "pixelArray": [ - 99, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 86, - 220, - 220, - 222, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 92, - 85, - 216, - 216, - 218, - 255, - 255, - 255, - 92, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 92 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 0, - "y": 13, - "width": 13, - "height": 10, - "dx": 13, - "glyphBitmap": { - "height": 10, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 102, - 252, - 252, - 252, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 201, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 17, - 247, - 255, - 253, - 39, - 250, - 255, - 249, - 21, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 187, - 0, - 180, - 255, - 255, - 119, - 0, - 0, - 0, - 1, - 215, - 255, - 255, - 99, - 0, - 92, - 255, - 255, - 222, - 2, - 0, - 0, - 63, - 255, - 255, - 251, - 18, - 0, - 14, - 248, - 255, - 255, - 73, - 0, - 0, - 167, - 255, - 255, - 181, - 0, - 0, - 0, - 174, - 255, - 255, - 177, - 0, - 2, - 126, - 132, - 132, - 60, - 0, - 0, - 0, - 56, - 132, - 132, - 129, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -4, - "width": 10, - "height": 3, - "dx": 10, - "glyphBitmap": { - "height": 3, - "width": 10, - "pixelArray": [ - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 1, - "y": 16, - "width": 6, - "height": 7, - "dx": 8, - "glyphBitmap": { - "height": 7, - "width": 6, - "pixelArray": [ - 81, - 252, - 252, - 252, - 109, - 0, - 1, - 195, - 255, - 255, - 181, - 0, - 0, - 53, - 255, - 255, - 245, - 7, - 0, - 0, - 163, - 255, - 255, - 66, - 0, - 0, - 29, - 247, - 255, - 137, - 0, - 0, - 0, - 131, - 255, - 207, - 0, - 0, - 0, - 1, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 13, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 0, - 0, - 62, - 173, - 229, - 250, - 235, - 179, - 57, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 70, - 0, - 26, - 248, - 255, - 255, - 247, - 213, - 255, - 255, - 255, - 214, - 1, - 110, - 255, - 255, - 255, - 69, - 0, - 159, - 255, - 255, - 255, - 38, - 160, - 255, - 255, - 255, - 8, - 0, - 108, - 255, - 255, - 255, - 75, - 120, - 172, - 172, - 169, - 0, - 0, - 100, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 32, - 170, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 53, - 178, - 254, - 255, - 255, - 255, - 255, - 84, - 0, - 7, - 143, - 255, - 255, - 255, - 211, - 255, - 255, - 255, - 84, - 3, - 179, - 255, - 255, - 246, - 79, - 100, - 255, - 255, - 255, - 84, - 99, - 255, - 255, - 255, - 95, - 0, - 100, - 255, - 255, - 255, - 84, - 182, - 255, - 255, - 230, - 2, - 0, - 100, - 255, - 255, - 255, - 84, - 224, - 255, - 255, - 202, - 0, - 0, - 100, - 255, - 255, - 255, - 84, - 223, - 255, - 255, - 245, - 18, - 5, - 175, - 255, - 255, - 255, - 88, - 163, - 255, - 255, - 255, - 231, - 224, - 245, - 255, - 255, - 255, - 102, - 44, - 249, - 255, - 255, - 255, - 255, - 104, - 255, - 255, - 255, - 122, - 0, - 64, - 204, - 252, - 218, - 102, - 1, - 236, - 255, - 255, - 148 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 126, - 252, - 252, - 252, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 85, - 90, - 205, - 249, - 214, - 80, - 0, - 0, - 128, - 255, - 255, - 255, - 211, - 255, - 255, - 255, - 255, - 254, - 57, - 0, - 128, - 255, - 255, - 255, - 255, - 225, - 233, - 255, - 255, - 255, - 176, - 0, - 128, - 255, - 255, - 255, - 136, - 3, - 18, - 240, - 255, - 255, - 244, - 3, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 182, - 255, - 255, - 255, - 32, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 165, - 255, - 255, - 255, - 47, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 164, - 255, - 255, - 255, - 48, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 164, - 255, - 255, - 255, - 48, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 164, - 255, - 255, - 255, - 48, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 164, - 255, - 255, - 255, - 48, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 164, - 255, - 255, - 255, - 48, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 166, - 255, - 255, - 255, - 42, - 128, - 255, - 255, - 255, - 84, - 0, - 0, - 184, - 255, - 255, - 255, - 22, - 128, - 255, - 255, - 255, - 101, - 0, - 10, - 236, - 255, - 255, - 235, - 1, - 128, - 255, - 255, - 255, - 255, - 212, - 224, - 255, - 255, - 255, - 158, - 0, - 128, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 255, - 246, - 42, - 0, - 128, - 255, - 255, - 255, - 92, - 124, - 223, - 252, - 202, - 64, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 12, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 0, - 1, - 89, - 192, - 238, - 250, - 228, - 171, - 52, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 67, - 0, - 44, - 255, - 255, - 255, - 248, - 212, - 255, - 255, - 255, - 205, - 0, - 134, - 255, - 255, - 255, - 67, - 0, - 146, - 255, - 255, - 255, - 22, - 186, - 255, - 255, - 255, - 12, - 0, - 93, - 255, - 255, - 255, - 53, - 211, - 255, - 255, - 253, - 0, - 0, - 85, - 255, - 255, - 255, - 60, - 216, - 255, - 255, - 252, - 0, - 0, - 36, - 108, - 108, - 108, - 26, - 216, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 252, - 0, - 0, - 61, - 184, - 184, - 184, - 44, - 211, - 255, - 255, - 253, - 0, - 0, - 84, - 255, - 255, - 255, - 60, - 186, - 255, - 255, - 255, - 12, - 0, - 92, - 255, - 255, - 255, - 51, - 135, - 255, - 255, - 255, - 71, - 0, - 148, - 255, - 255, - 255, - 18, - 46, - 255, - 255, - 255, - 250, - 216, - 255, - 255, - 255, - 196, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 56, - 0, - 0, - 1, - 94, - 195, - 242, - 254, - 229, - 168, - 45, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 1, - "y": 0, - "width": 11, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "width": 11, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 252, - 252, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 200, - 0, - 17, - 160, - 236, - 241, - 172, - 47, - 255, - 255, - 255, - 200, - 1, - 190, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 200, - 59, - 255, - 255, - 255, - 254, - 210, - 253, - 255, - 255, - 255, - 200, - 136, - 255, - 255, - 255, - 105, - 0, - 48, - 255, - 255, - 255, - 200, - 179, - 255, - 255, - 255, - 27, - 0, - 12, - 255, - 255, - 255, - 200, - 201, - 255, - 255, - 255, - 9, - 0, - 12, - 255, - 255, - 255, - 200, - 208, - 255, - 255, - 255, - 8, - 0, - 12, - 255, - 255, - 255, - 200, - 208, - 255, - 255, - 255, - 8, - 0, - 12, - 255, - 255, - 255, - 200, - 208, - 255, - 255, - 255, - 8, - 0, - 12, - 255, - 255, - 255, - 200, - 208, - 255, - 255, - 255, - 8, - 0, - 12, - 255, - 255, - 255, - 200, - 208, - 255, - 255, - 255, - 8, - 0, - 12, - 255, - 255, - 255, - 200, - 206, - 255, - 255, - 255, - 10, - 0, - 12, - 255, - 255, - 255, - 200, - 188, - 255, - 255, - 255, - 24, - 0, - 12, - 255, - 255, - 255, - 200, - 153, - 255, - 255, - 255, - 97, - 0, - 21, - 255, - 255, - 255, - 200, - 85, - 255, - 255, - 255, - 252, - 201, - 244, - 255, - 255, - 255, - 200, - 6, - 213, - 255, - 255, - 255, - 255, - 249, - 255, - 255, - 255, - 200, - 0, - 24, - 168, - 240, - 247, - 182, - 58, - 255, - 255, - 255, - 200 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 13, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 0, - 0, - 82, - 188, - 237, - 250, - 225, - 163, - 37, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 41, - 0, - 40, - 254, - 255, - 255, - 248, - 213, - 255, - 255, - 255, - 172, - 0, - 131, - 255, - 255, - 255, - 72, - 0, - 149, - 255, - 255, - 250, - 12, - 184, - 255, - 255, - 255, - 14, - 0, - 87, - 255, - 255, - 255, - 55, - 210, - 255, - 255, - 251, - 0, - 0, - 73, - 255, - 255, - 255, - 79, - 216, - 255, - 255, - 248, - 0, - 0, - 72, - 255, - 255, - 255, - 91, - 216, - 255, - 255, - 255, - 252, - 252, - 254, - 255, - 255, - 255, - 92, - 216, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 216, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 248, - 0, - 0, - 57, - 200, - 200, - 200, - 69, - 185, - 255, - 255, - 254, - 3, - 0, - 80, - 255, - 255, - 255, - 79, - 134, - 255, - 255, - 255, - 69, - 1, - 147, - 255, - 255, - 255, - 41, - 44, - 255, - 255, - 255, - 252, - 230, - 255, - 255, - 255, - 214, - 1, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 65, - 0, - 0, - 1, - 89, - 192, - 240, - 254, - 230, - 169, - 46, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 9, - "height": 23, - "dx": 9, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 0, - 0, - 0, - 56, - 185, - 239, - 249, - 232, - 74, - 0, - 0, - 32, - 246, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 124, - 255, - 255, - 255, - 247, - 209, - 81, - 0, - 0, - 173, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 126, - 252, - 255, - 255, - 255, - 255, - 253, - 252, - 87, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 100, - 200, - 242, - 255, - 255, - 255, - 205, - 200, - 69, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 20, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 0, - "y": -5, - "width": 14, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 35, - 0, - 0, - 0, - 0, - 71, - 185, - 238, - 249, - 211, - 109, - 1, - 34, - 208, - 197, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 230, - 255, - 255, - 41, - 0, - 30, - 250, - 255, - 255, - 244, - 211, - 255, - 255, - 255, - 255, - 182, - 74, - 4, - 0, - 117, - 255, - 255, - 253, - 33, - 0, - 130, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 221, - 0, - 0, - 69, - 255, - 255, - 252, - 11, - 0, - 0, - 0, - 195, - 255, - 255, - 200, - 0, - 0, - 48, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 197, - 255, - 255, - 198, - 0, - 0, - 47, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 172, - 255, - 255, - 215, - 0, - 0, - 69, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 123, - 255, - 255, - 253, - 32, - 0, - 128, - 255, - 255, - 247, - 7, - 0, - 0, - 0, - 26, - 240, - 255, - 255, - 237, - 204, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 35, - 0, - 0, - 0, - 0, - 9, - 189, - 255, - 209, - 235, - 255, - 232, - 163, - 33, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 14, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 202, - 142, - 111, - 84, - 56, - 11, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 156, - 15, - 0, - 0, - 0, - 16, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 39, - 224, - 255, - 179, - 80, - 105, - 131, - 192, - 255, - 255, - 255, - 28, - 0, - 7, - 217, - 255, - 255, - 42, - 0, - 0, - 0, - 1, - 201, - 255, - 255, - 64, - 0, - 71, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 12, - 222, - 255, - 255, - 53, - 0, - 90, - 255, - 255, - 255, - 255, - 220, - 201, - 204, - 244, - 255, - 255, - 243, - 10, - 0, - 18, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 23, - 130, - 201, - 238, - 254, - 255, - 253, - 231, - 180, - 79, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 1, - "y": 0, - "width": 12, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "width": 12, - "pixelArray": [ - 119, - 252, - 252, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 32, - 152, - 226, - 247, - 180, - 17, - 0, - 120, - 255, - 255, - 255, - 170, - 244, - 255, - 255, - 255, - 255, - 152, - 0, - 120, - 255, - 255, - 255, - 255, - 239, - 224, - 255, - 255, - 255, - 234, - 0, - 120, - 255, - 255, - 255, - 176, - 16, - 5, - 235, - 255, - 255, - 255, - 3, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 205, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4, - 120, - 255, - 255, - 255, - 88, - 0, - 0, - 204, - 255, - 255, - 255, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 1, - "y": 0, - "width": 5, - "height": 23, - "dx": 7, - "glyphBitmap": { - "height": 23, - "width": 5, - "pixelArray": [ - 103, - 252, - 252, - 252, - 107, - 104, - 255, - 255, - 255, - 108, - 82, - 200, - 200, - 200, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 252, - 252, - 252, - 107, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108, - 104, - 255, - 255, - 255, - 108 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -5, - "width": 7, - "height": 28, - "dx": 7, - "glyphBitmap": { - "height": 28, - "width": 7, - "pixelArray": [ - 0, - 0, - 44, - 252, - 252, - 252, - 174, - 0, - 0, - 44, - 255, - 255, - 255, - 176, - 0, - 0, - 35, - 200, - 200, - 200, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 252, - 252, - 252, - 166, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 40, - 255, - 255, - 255, - 168, - 0, - 0, - 43, - 255, - 255, - 255, - 168, - 0, - 0, - 106, - 255, - 255, - 255, - 149, - 83, - 205, - 254, - 255, - 255, - 255, - 86, - 100, - 255, - 255, - 255, - 255, - 202, - 4, - 81, - 236, - 254, - 231, - 149, - 16, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 1, - "y": 0, - "width": 13, - "height": 23, - "dx": 13, - "glyphBitmap": { - "height": 23, - "width": 13, - "pixelArray": [ - 126, - 252, - 252, - 252, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 12, - 225, - 252, - 252, - 251, - 55, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 135, - 255, - 255, - 255, - 163, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 38, - 250, - 255, - 255, - 244, - 26, - 0, - 128, - 255, - 255, - 255, - 80, - 1, - 184, - 255, - 255, - 255, - 120, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 80, - 255, - 255, - 255, - 220, - 7, - 0, - 0, - 128, - 255, - 255, - 255, - 90, - 224, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 207, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 233, - 66, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 103, - 1, - 214, - 255, - 255, - 234, - 6, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 126, - 255, - 255, - 255, - 81, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 37, - 255, - 255, - 255, - 179, - 0, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 204, - 255, - 255, - 253, - 26, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 115, - 255, - 255, - 255, - 119, - 0, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 28, - 254, - 255, - 255, - 217, - 1, - 128, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 59 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 1, - "y": 0, - "width": 5, - "height": 23, - "dx": 7, - "glyphBitmap": { - "height": 23, - "width": 5, - "pixelArray": [ - 75, - 252, - 252, - 252, - 134, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136, - 76, - 255, - 255, - 255, - 136 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 1, - "y": 0, - "width": 18, - "height": 17, - "dx": 20, - "glyphBitmap": { - "height": 17, - "width": 18, - "pixelArray": [ - 134, - 252, - 252, - 252, - 24, - 86, - 194, - 244, - 233, - 129, - 1, - 5, - 110, - 207, - 248, - 220, - 87, - 0, - 136, - 255, - 255, - 255, - 180, - 255, - 255, - 255, - 255, - 255, - 109, - 191, - 255, - 255, - 255, - 255, - 253, - 48, - 136, - 255, - 255, - 255, - 255, - 234, - 224, - 255, - 255, - 255, - 255, - 255, - 222, - 235, - 255, - 255, - 255, - 136, - 136, - 255, - 255, - 255, - 129, - 8, - 4, - 221, - 255, - 255, - 251, - 89, - 1, - 25, - 255, - 255, - 255, - 177, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 182, - 255, - 255, - 236, - 0, - 0, - 0, - 238, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184, - 136, - 255, - 255, - 255, - 24, - 0, - 0, - 180, - 255, - 255, - 236, - 0, - 0, - 0, - 236, - 255, - 255, - 184 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 13, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 134, - 252, - 252, - 252, - 75, - 44, - 162, - 231, - 245, - 164, - 8, - 136, - 255, - 255, - 255, - 180, - 251, - 255, - 255, - 255, - 255, - 116, - 136, - 255, - 255, - 255, - 255, - 233, - 231, - 255, - 255, - 255, - 192, - 136, - 255, - 255, - 255, - 155, - 9, - 19, - 254, - 255, - 255, - 226, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 241, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 13, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 0, - 0, - 81, - 187, - 237, - 250, - 224, - 160, - 40, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 63, - 0, - 46, - 255, - 255, - 255, - 245, - 211, - 255, - 255, - 255, - 218, - 4, - 140, - 255, - 255, - 255, - 65, - 0, - 144, - 255, - 255, - 255, - 62, - 191, - 255, - 255, - 253, - 4, - 0, - 79, - 255, - 255, - 255, - 113, - 214, - 255, - 255, - 245, - 0, - 0, - 69, - 255, - 255, - 255, - 138, - 216, - 255, - 255, - 244, - 0, - 0, - 68, - 255, - 255, - 255, - 140, - 216, - 255, - 255, - 244, - 0, - 0, - 68, - 255, - 255, - 255, - 140, - 216, - 255, - 255, - 244, - 0, - 0, - 68, - 255, - 255, - 255, - 140, - 216, - 255, - 255, - 244, - 0, - 0, - 68, - 255, - 255, - 255, - 140, - 216, - 255, - 255, - 244, - 0, - 0, - 68, - 255, - 255, - 255, - 140, - 214, - 255, - 255, - 245, - 0, - 0, - 69, - 255, - 255, - 255, - 138, - 192, - 255, - 255, - 252, - 2, - 0, - 81, - 255, - 255, - 255, - 114, - 143, - 255, - 255, - 255, - 58, - 0, - 142, - 255, - 255, - 255, - 65, - 50, - 255, - 255, - 255, - 243, - 203, - 255, - 255, - 255, - 221, - 5, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 67, - 0, - 0, - 1, - 86, - 192, - 241, - 254, - 228, - 165, - 44, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 1, - "y": -5, - "width": 12, - "height": 22, - "dx": 13, - "glyphBitmap": { - "height": 22, - "width": 12, - "pixelArray": [ - 134, - 252, - 252, - 252, - 77, - 106, - 211, - 249, - 210, - 73, - 0, - 0, - 136, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 252, - 50, - 0, - 136, - 255, - 255, - 255, - 255, - 224, - 237, - 255, - 255, - 255, - 164, - 0, - 136, - 255, - 255, - 255, - 131, - 2, - 24, - 246, - 255, - 255, - 237, - 1, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 191, - 255, - 255, - 255, - 22, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 173, - 255, - 255, - 255, - 35, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 172, - 255, - 255, - 255, - 36, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 172, - 255, - 255, - 255, - 36, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 172, - 255, - 255, - 255, - 36, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 172, - 255, - 255, - 255, - 36, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 172, - 255, - 255, - 255, - 36, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 174, - 255, - 255, - 255, - 30, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 192, - 255, - 255, - 255, - 12, - 136, - 255, - 255, - 255, - 93, - 0, - 17, - 243, - 255, - 255, - 227, - 0, - 136, - 255, - 255, - 255, - 255, - 210, - 228, - 255, - 255, - 255, - 150, - 0, - 136, - 255, - 255, - 255, - 229, - 255, - 255, - 255, - 255, - 243, - 37, - 0, - 136, - 255, - 255, - 255, - 80, - 115, - 223, - 251, - 199, - 59, - 0, - 0, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 1, - "y": -5, - "width": 11, - "height": 22, - "dx": 13, - "glyphBitmap": { - "height": 22, - "width": 11, - "pixelArray": [ - 0, - 14, - 156, - 236, - 242, - 180, - 49, - 252, - 252, - 252, - 209, - 1, - 186, - 255, - 255, - 255, - 255, - 250, - 255, - 255, - 255, - 212, - 59, - 255, - 255, - 255, - 255, - 210, - 253, - 255, - 255, - 255, - 212, - 136, - 255, - 255, - 255, - 108, - 0, - 40, - 255, - 255, - 255, - 212, - 180, - 255, - 255, - 255, - 28, - 0, - 0, - 255, - 255, - 255, - 212, - 199, - 255, - 255, - 255, - 9, - 0, - 0, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 8, - 0, - 0, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 8, - 0, - 0, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 8, - 0, - 0, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 8, - 0, - 0, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 8, - 0, - 0, - 255, - 255, - 255, - 212, - 202, - 255, - 255, - 255, - 10, - 0, - 0, - 255, - 255, - 255, - 212, - 184, - 255, - 255, - 255, - 25, - 0, - 0, - 255, - 255, - 255, - 212, - 149, - 255, - 255, - 255, - 103, - 0, - 11, - 255, - 255, - 255, - 212, - 83, - 255, - 255, - 255, - 253, - 201, - 243, - 255, - 255, - 255, - 212, - 6, - 213, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 212, - 0, - 24, - 167, - 239, - 246, - 175, - 33, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 212 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 1, - "y": 0, - "width": 9, - "height": 18, - "dx": 10, - "glyphBitmap": { - "height": 18, - "width": 9, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 6, - 123, - 252, - 252, - 252, - 87, - 15, - 158, - 243, - 84, - 124, - 255, - 255, - 255, - 91, - 188, - 255, - 255, - 84, - 124, - 255, - 255, - 255, - 196, - 255, - 255, - 255, - 84, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 124, - 255, - 255, - 255, - 255, - 122, - 22, - 18, - 18, - 124, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 0, - "y": 0, - "width": 11, - "height": 17, - "dx": 11, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 0, - 0, - 18, - 141, - 222, - 250, - 228, - 150, - 21, - 0, - 0, - 0, - 21, - 221, - 255, - 255, - 255, - 255, - 255, - 221, - 19, - 0, - 0, - 151, - 255, - 255, - 255, - 217, - 245, - 255, - 255, - 155, - 0, - 0, - 230, - 255, - 255, - 161, - 0, - 33, - 239, - 255, - 247, - 11, - 0, - 253, - 255, - 255, - 143, - 0, - 0, - 142, - 247, - 157, - 18, - 0, - 213, - 255, - 255, - 251, - 64, - 0, - 29, - 19, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 246, - 72, - 0, - 0, - 0, - 0, - 0, - 6, - 195, - 255, - 255, - 255, - 251, - 89, - 0, - 0, - 0, - 0, - 0, - 19, - 202, - 255, - 255, - 255, - 254, - 103, - 0, - 0, - 0, - 0, - 0, - 11, - 178, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 3, - 150, - 255, - 255, - 255, - 238, - 15, - 0, - 0, - 35, - 61, - 0, - 1, - 158, - 255, - 255, - 255, - 91, - 45, - 194, - 255, - 209, - 1, - 0, - 13, - 250, - 255, - 255, - 124, - 33, - 255, - 255, - 255, - 89, - 0, - 36, - 254, - 255, - 255, - 105, - 0, - 176, - 255, - 255, - 255, - 206, - 241, - 255, - 255, - 254, - 35, - 0, - 26, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 21, - 144, - 223, - 253, - 239, - 185, - 75, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 9, - "height": 22, - "dx": 9, - "glyphBitmap": { - "height": 22, - "width": 9, - "pixelArray": [ - 0, - 0, - 221, - 252, - 252, - 245, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 123, - 252, - 255, - 255, - 255, - 255, - 252, - 252, - 107, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 97, - 200, - 249, - 255, - 255, - 255, - 200, - 200, - 85, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 249, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 240, - 196, - 124, - 0, - 0, - 42, - 250, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 66, - 200, - 248, - 251, - 239, - 132 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 1, - "y": 0, - "width": 11, - "height": 17, - "dx": 13, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 162, - 252, - 252, - 252, - 44, - 0, - 24, - 252, - 252, - 252, - 182, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 44, - 0, - 24, - 255, - 255, - 255, - 184, - 164, - 255, - 255, - 255, - 45, - 0, - 24, - 255, - 255, - 255, - 184, - 162, - 255, - 255, - 255, - 87, - 2, - 94, - 255, - 255, - 255, - 184, - 131, - 255, - 255, - 255, - 252, - 235, - 255, - 255, - 255, - 255, - 184, - 58, - 255, - 255, - 255, - 255, - 255, - 179, - 255, - 255, - 255, - 184, - 0, - 126, - 241, - 244, - 186, - 73, - 24, - 255, - 255, - 255, - 184 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 11, - "height": 17, - "dx": 11, - "glyphBitmap": { - "height": 17, - "width": 11, - "pixelArray": [ - 139, - 252, - 252, - 252, - 44, - 0, - 0, - 198, - 252, - 252, - 225, - 94, - 255, - 255, - 255, - 77, - 0, - 0, - 233, - 255, - 255, - 182, - 47, - 255, - 255, - 255, - 110, - 0, - 11, - 255, - 255, - 255, - 134, - 6, - 250, - 255, - 255, - 143, - 0, - 43, - 255, - 255, - 255, - 87, - 0, - 207, - 255, - 255, - 176, - 0, - 76, - 255, - 255, - 255, - 40, - 0, - 160, - 255, - 255, - 209, - 0, - 108, - 255, - 255, - 246, - 3, - 0, - 112, - 255, - 255, - 242, - 1, - 141, - 255, - 255, - 201, - 0, - 0, - 65, - 255, - 255, - 255, - 19, - 174, - 255, - 255, - 154, - 0, - 0, - 18, - 255, - 255, - 255, - 52, - 207, - 255, - 255, - 106, - 0, - 0, - 0, - 226, - 255, - 255, - 85, - 239, - 255, - 255, - 59, - 0, - 0, - 0, - 178, - 255, - 255, - 135, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 130, - 255, - 255, - 200, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 252, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 2, - 243, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 239, - 1, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 0, - "y": 0, - "width": 16, - "height": 17, - "dx": 17, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 58, - 252, - 252, - 232, - 0, - 0, - 28, - 252, - 252, - 215, - 0, - 0, - 41, - 252, - 252, - 218, - 21, - 255, - 255, - 255, - 12, - 0, - 68, - 255, - 255, - 251, - 5, - 0, - 76, - 255, - 255, - 182, - 1, - 240, - 255, - 255, - 44, - 0, - 108, - 255, - 255, - 255, - 37, - 0, - 111, - 255, - 255, - 144, - 0, - 202, - 255, - 255, - 76, - 0, - 148, - 255, - 255, - 255, - 75, - 0, - 146, - 255, - 255, - 105, - 0, - 165, - 255, - 255, - 109, - 0, - 188, - 255, - 255, - 255, - 112, - 0, - 180, - 255, - 255, - 67, - 0, - 127, - 255, - 255, - 141, - 0, - 228, - 255, - 255, - 255, - 150, - 0, - 215, - 255, - 255, - 28, - 0, - 90, - 255, - 255, - 173, - 13, - 255, - 255, - 240, - 255, - 187, - 2, - 248, - 255, - 245, - 1, - 0, - 53, - 255, - 255, - 206, - 51, - 255, - 255, - 159, - 255, - 225, - 28, - 255, - 255, - 207, - 0, - 0, - 16, - 255, - 255, - 238, - 91, - 255, - 249, - 79, - 255, - 254, - 71, - 255, - 255, - 168, - 0, - 0, - 0, - 234, - 255, - 255, - 146, - 255, - 208, - 32, - 255, - 255, - 141, - 255, - 255, - 129, - 0, - 0, - 0, - 196, - 255, - 255, - 217, - 255, - 164, - 2, - 245, - 255, - 213, - 255, - 255, - 91, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 119, - 0, - 203, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 74, - 0, - 161, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 29, - 0, - 118, - 255, - 255, - 255, - 231, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 240, - 1, - 0, - 75, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 195, - 0, - 0, - 33, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 150, - 0, - 0, - 2, - 245, - 255, - 255, - 115, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 12, - "height": 17, - "dx": 12, - "glyphBitmap": { - "height": 17, - "width": 12, - "pixelArray": [ - 112, - 252, - 252, - 252, - 77, - 0, - 0, - 75, - 252, - 252, - 242, - 15, - 16, - 245, - 255, - 255, - 188, - 0, - 0, - 171, - 255, - 255, - 156, - 0, - 0, - 150, - 255, - 255, - 255, - 43, - 19, - 249, - 255, - 255, - 51, - 0, - 0, - 40, - 255, - 255, - 255, - 153, - 107, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 246, - 213, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 239, - 10, - 0, - 0, - 0, - 0, - 2, - 217, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 250, - 24, - 0, - 0, - 0, - 14, - 245, - 255, - 255, - 131, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 102, - 255, - 255, - 223, - 3, - 214, - 255, - 255, - 233, - 7, - 0, - 0, - 201, - 255, - 255, - 133, - 0, - 103, - 255, - 255, - 255, - 94, - 0, - 44, - 255, - 255, - 255, - 42, - 0, - 10, - 237, - 255, - 255, - 205, - 1, - 143, - 255, - 255, - 206, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 60 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -4, - "width": 12, - "height": 21, - "dx": 12, - "glyphBitmap": { - "height": 21, - "width": 12, - "pixelArray": [ - 179, - 252, - 252, - 248, - 8, - 0, - 0, - 95, - 252, - 252, - 252, - 83, - 119, - 255, - 255, - 255, - 50, - 0, - 0, - 138, - 255, - 255, - 255, - 28, - 56, - 255, - 255, - 255, - 97, - 0, - 0, - 180, - 255, - 255, - 227, - 0, - 5, - 244, - 255, - 255, - 145, - 0, - 0, - 221, - 255, - 255, - 171, - 0, - 0, - 183, - 255, - 255, - 192, - 0, - 9, - 254, - 255, - 255, - 114, - 0, - 0, - 119, - 255, - 255, - 239, - 1, - 48, - 255, - 255, - 255, - 58, - 0, - 0, - 55, - 255, - 255, - 255, - 31, - 90, - 255, - 255, - 250, - 8, - 0, - 0, - 4, - 243, - 255, - 255, - 78, - 131, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 125, - 172, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 173, - 214, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 225, - 251, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 3, - 240, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 245, - 255, - 255, - 251, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 229, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 99, - 230, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 251, - 225, - 173, - 78, - 1, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 0, - "y": 0, - "width": 10, - "height": 17, - "dx": 10, - "glyphBitmap": { - "height": 17, - "width": 10, - "pixelArray": [ - 0, - 162, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 158, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 129, - 200, - 200, - 200, - 226, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 254, - 32, - 0, - 0, - 0, - 0, - 27, - 253, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 2, - 223, - 255, - 255, - 238, - 8, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 22, - 250, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 248, - 17, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 9, - 248, - 255, - 255, - 255, - 194, - 192, - 192, - 192, - 111, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 1, - "y": -7, - "width": 8, - "height": 30, - "dx": 10, - "glyphBitmap": { - "height": 30, - "width": 8, - "pixelArray": [ - 0, - 0, - 2, - 112, - 205, - 246, - 252, - 186, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 213, - 255, - 255, - 255, - 237, - 149, - 0, - 2, - 252, - 255, - 255, - 237, - 14, - 0, - 0, - 14, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 107, - 0, - 0, - 154, - 247, - 255, - 255, - 239, - 23, - 0, - 0, - 200, - 255, - 255, - 239, - 54, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 198, - 5, - 0, - 0, - 8, - 139, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 1, - 243, - 255, - 255, - 247, - 50, - 2, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 72, - 253, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 52, - 145, - 189, - 196, - 144 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 1, - "y": -5, - "width": 5, - "height": 28, - "dx": 7, - "glyphBitmap": { - "height": 28, - "width": 5, - "pixelArray": [ - 29, - 252, - 252, - 252, - 52, - 29, - 255, - 255, - 255, - 52, - 29, - 255, - 255, - 255, - 52, - 30, - 255, - 255, - 255, - 52, - 30, - 255, - 255, - 255, - 52, - 30, - 255, - 255, - 255, - 52, - 30, - 255, - 255, - 255, - 52, - 31, - 255, - 255, - 255, - 52, - 31, - 255, - 255, - 255, - 52, - 31, - 255, - 255, - 255, - 52, - 32, - 255, - 255, - 255, - 52, - 32, - 255, - 255, - 255, - 52, - 32, - 255, - 255, - 255, - 52, - 32, - 255, - 255, - 255, - 52, - 33, - 255, - 255, - 255, - 52, - 33, - 255, - 255, - 255, - 52, - 33, - 255, - 255, - 255, - 52, - 34, - 255, - 255, - 255, - 52, - 34, - 255, - 255, - 255, - 52, - 34, - 255, - 255, - 255, - 52, - 34, - 255, - 255, - 255, - 52, - 35, - 255, - 255, - 255, - 52, - 35, - 255, - 255, - 255, - 52, - 35, - 255, - 255, - 255, - 52, - 36, - 255, - 255, - 255, - 52, - 36, - 255, - 255, - 255, - 52, - 36, - 255, - 255, - 255, - 52, - 36, - 255, - 255, - 255, - 52 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 1, - "y": -7, - "width": 8, - "height": 30, - "dx": 10, - "glyphBitmap": { - "height": 30, - "width": 8, - "pixelArray": [ - 201, - 252, - 244, - 201, - 103, - 1, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 162, - 240, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 20, - 246, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 254, - 1, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 33, - 246, - 255, - 255, - 244, - 141, - 0, - 0, - 0, - 65, - 244, - 255, - 255, - 184, - 0, - 0, - 9, - 210, - 255, - 255, - 255, - 184, - 0, - 0, - 96, - 255, - 255, - 255, - 123, - 7, - 0, - 0, - 149, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 216, - 255, - 255, - 249, - 0, - 0, - 3, - 60, - 253, - 255, - 255, - 224, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 204, - 255, - 255, - 255, - 250, - 57, - 0, - 0, - 157, - 196, - 188, - 141, - 45, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 1, - "y": 9, - "width": 12, - "height": 6, - "dx": 13, - "glyphBitmap": { - "height": 6, - "width": 12, - "pixelArray": [ - 0, - 8, - 119, - 184, - 115, - 10, - 0, - 0, - 0, - 13, - 0, - 0, - 19, - 202, - 255, - 255, - 255, - 224, - 78, - 1, - 30, - 212, - 102, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 242, - 255, - 243, - 11, - 99, - 247, - 98, - 20, - 120, - 245, - 255, - 255, - 255, - 253, - 87, - 0, - 1, - 45, - 0, - 0, - 0, - 28, - 160, - 246, - 212, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 0, - "y": 0, - "width": 9, - "height": 20, - "dx": 10, - "glyphBitmap": { - "height": 20, - "width": 9, - "pixelArray": [ - 5, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 26, - 16, - 245, - 176, - 176, - 176, - 176, - 176, - 221, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 220, - 0, - 0, - 0, - 0, - 0, - 144, - 96, - 16, - 255, - 244, - 244, - 244, - 244, - 244, - 251, - 96 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 20, - "encoding": 127 - } - } - ] - }, - { - "name": "Oswald24", - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24 - }, - "bpp": 8, - "height": 43, - "ascent": 35, - "descent": 8, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "width": 0, - "pixelArray": [] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 1, - "y": 0, - "width": 6, - "height": 28, - "dx": 8, - "glyphBitmap": { - "height": 28, - "width": 6, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 7, - 88, - 255, - 255, - 255, - 244, - 0, - 71, - 255, - 255, - 255, - 225, - 0, - 54, - 255, - 255, - 255, - 206, - 0, - 38, - 255, - 255, - 255, - 187, - 0, - 21, - 255, - 255, - 255, - 169, - 0, - 5, - 255, - 255, - 255, - 150, - 0, - 0, - 243, - 255, - 255, - 131, - 0, - 0, - 227, - 255, - 255, - 112, - 0, - 0, - 210, - 255, - 255, - 93, - 0, - 0, - 193, - 255, - 255, - 74, - 0, - 0, - 176, - 255, - 255, - 55, - 0, - 0, - 160, - 255, - 255, - 37, - 0, - 0, - 143, - 255, - 255, - 18, - 0, - 0, - 126, - 255, - 253, - 2, - 0, - 0, - 109, - 255, - 236, - 0, - 0, - 0, - 93, - 255, - 217, - 0, - 0, - 0, - 76, - 255, - 198, - 0, - 0, - 0, - 59, - 255, - 179, - 0, - 0, - 0, - 42, - 255, - 161, - 0, - 0, - 0, - 26, - 255, - 142, - 0, - 0, - 0, - 1, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 252, - 252, - 252, - 225, - 0, - 120, - 255, - 255, - 255, - 228, - 0, - 120, - 255, - 255, - 255, - 228, - 0, - 120, - 255, - 255, - 255, - 228, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 2, - "y": 18, - "width": 10, - "height": 10, - "dx": 12, - "glyphBitmap": { - "height": 10, - "width": 10, - "pixelArray": [ - 252, - 252, - 252, - 206, - 0, - 123, - 252, - 252, - 252, - 87, - 255, - 255, - 255, - 161, - 0, - 124, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 114, - 0, - 124, - 255, - 255, - 246, - 3, - 255, - 255, - 255, - 66, - 0, - 124, - 255, - 255, - 200, - 0, - 255, - 255, - 255, - 19, - 0, - 124, - 255, - 255, - 152, - 0, - 255, - 255, - 227, - 0, - 0, - 124, - 255, - 255, - 104, - 0, - 255, - 255, - 179, - 0, - 0, - 124, - 255, - 255, - 56, - 0, - 255, - 255, - 132, - 0, - 0, - 124, - 255, - 254, - 11, - 0, - 255, - 255, - 84, - 0, - 0, - 124, - 255, - 216, - 0, - 0, - 4, - 4, - 1, - 0, - 0, - 2, - 4, - 3, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 233, - 252, - 252, - 196, - 0, - 0, - 127, - 252, - 252, - 252, - 47, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 165, - 0, - 0, - 163, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 131, - 0, - 0, - 197, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 97, - 0, - 0, - 231, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 63, - 0, - 10, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 29, - 0, - 43, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 249, - 3, - 0, - 77, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 217, - 0, - 0, - 111, - 255, - 255, - 255, - 65, - 0, - 180, - 252, - 252, - 255, - 255, - 255, - 255, - 252, - 252, - 254, - 255, - 255, - 255, - 253, - 157, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 51, - 68, - 153, - 255, - 255, - 255, - 113, - 68, - 74, - 255, - 255, - 255, - 196, - 68, - 41, - 0, - 0, - 139, - 255, - 255, - 255, - 35, - 0, - 31, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 7, - 0, - 59, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 231, - 0, - 0, - 86, - 255, - 255, - 255, - 87, - 0, - 0, - 195, - 252, - 255, - 255, - 255, - 255, - 252, - 252, - 254, - 255, - 255, - 255, - 254, - 252, - 145, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 55, - 127, - 255, - 255, - 255, - 139, - 68, - 68, - 236, - 255, - 255, - 218, - 68, - 68, - 38, - 0, - 107, - 255, - 255, - 255, - 68, - 0, - 4, - 252, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 36, - 0, - 32, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 254, - 7, - 0, - 64, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 228, - 0, - 0, - 96, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 196, - 0, - 0, - 128, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 164, - 0, - 0, - 160, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 132, - 0, - 0, - 192, - 255, - 255, - 243, - 1, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 100, - 0, - 0, - 224, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 68, - 0, - 4, - 252, - 255, - 255, - 180, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 1, - "y": -3, - "width": 15, - "height": 34, - "dx": 16, - "glyphBitmap": { - "height": 34, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 212, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 99, - 189, - 236, - 254, - 255, - 249, - 190, - 86, - 1, - 0, - 0, - 0, - 0, - 21, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 1, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 181, - 80, - 88, - 217, - 255, - 255, - 255, - 215, - 1, - 0, - 166, - 255, - 255, - 255, - 225, - 4, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 51, - 0, - 214, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 107, - 0, - 237, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 146, - 0, - 233, - 255, - 255, - 255, - 228, - 3, - 0, - 0, - 0, - 143, - 250, - 203, - 151, - 70, - 0, - 198, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 21, - 7, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 253, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 251, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 179, - 255, - 255, - 255, - 255, - 255, - 223, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 172, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 198, - 255, - 255, - 255, - 255, - 192, - 0, - 12, - 65, - 121, - 178, - 63, - 0, - 0, - 0, - 37, - 253, - 255, - 255, - 255, - 246, - 2, - 241, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 22, - 215, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 30, - 172, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 253, - 8, - 102, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 1, - 206, - 255, - 255, - 255, - 208, - 0, - 18, - 241, - 255, - 255, - 255, - 234, - 103, - 69, - 160, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 9, - 0, - 0, - 1, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 37, - 0, - 0, - 0, - 0, - 0, - 56, - 161, - 219, - 251, - 255, - 255, - 225, - 131, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 101, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 1, - "y": 0, - "width": 30, - "height": 28, - "dx": 32, - "glyphBitmap": { - "height": 28, - "width": 30, - "pixelArray": [ - 0, - 0, - 23, - 136, - 209, - 245, - 249, - 221, - 163, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 243, - 252, - 252, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 100, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 233, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 28, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 236, - 99, - 83, - 207, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 118, - 0, - 0, - 52, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 20, - 254, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 69, - 0, - 0, - 6, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 87, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 244, - 255, - 255, - 245, - 0, - 0, - 0, - 156, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 241, - 255, - 255, - 248, - 0, - 0, - 1, - 225, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 241, - 255, - 255, - 248, - 0, - 0, - 37, - 255, - 255, - 251, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 246, - 255, - 255, - 242, - 0, - 0, - 106, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 76, - 0, - 0, - 11, - 255, - 255, - 255, - 219, - 0, - 0, - 175, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 130, - 0, - 0, - 66, - 255, - 255, - 255, - 181, - 0, - 4, - 241, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 241, - 94, - 79, - 215, - 255, - 255, - 255, - 113, - 0, - 57, - 255, - 255, - 240, - 4, - 0, - 0, - 0, - 3, - 33, - 58, - 51, - 17, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 17, - 0, - 126, - 255, - 255, - 175, - 0, - 0, - 7, - 132, - 235, - 255, - 255, - 255, - 255, - 199, - 66, - 0, - 0, - 0, - 31, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 83, - 0, - 0, - 195, - 255, - 255, - 106, - 0, - 2, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 82, - 0, - 0, - 0, - 18, - 133, - 213, - 251, - 255, - 225, - 162, - 47, - 0, - 0, - 13, - 251, - 255, - 255, - 37, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 6, - 0, - 0, - 0, - 0, - 0, - 1, - 2, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 224, - 1, - 0, - 172, - 255, - 255, - 255, - 135, - 14, - 42, - 219, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 155, - 0, - 0, - 227, - 255, - 255, - 250, - 9, - 0, - 0, - 117, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 86, - 0, - 3, - 253, - 255, - 255, - 224, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 254, - 20, - 0, - 12, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 205, - 0, - 0, - 12, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 136, - 0, - 0, - 9, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 233, - 255, - 255, - 67, - 0, - 0, - 1, - 245, - 255, - 255, - 235, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 247, - 8, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 33, - 0, - 0, - 147, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 189, - 71, - 105, - 247, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 37, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 247, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 111, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 233, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 170, - 226, - 253, - 245, - 208, - 131, - 17, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 1, - "y": 0, - "width": 17, - "height": 28, - "dx": 20, - "glyphBitmap": { - "height": 28, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 69, - 179, - 234, - 250, - 226, - 165, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 1, - 220, - 255, - 255, - 255, - 178, - 76, - 166, - 255, - 255, - 255, - 221, - 1, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 243, - 10, - 0, - 3, - 233, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 196, - 0, - 0, - 3, - 245, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 232, - 1, - 0, - 45, - 255, - 255, - 255, - 236, - 1, - 0, - 0, - 0, - 0, - 4, - 237, - 255, - 255, - 255, - 34, - 0, - 126, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 103, - 5, - 225, - 255, - 255, - 250, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 253, - 255, - 255, - 186, - 95, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 253, - 230, - 255, - 255, - 192, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 250, - 255, - 255, - 255, - 255, - 221, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 231, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 188, - 1, - 0, - 0, - 5, - 112, - 112, - 112, - 84, - 0, - 0, - 58, - 252, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 30, - 255, - 255, - 255, - 182, - 0, - 8, - 221, - 255, - 255, - 255, - 251, - 255, - 255, - 219, - 7, - 0, - 60, - 255, - 255, - 255, - 152, - 0, - 109, - 255, - 255, - 255, - 188, - 134, - 255, - 255, - 255, - 117, - 0, - 103, - 255, - 255, - 255, - 117, - 0, - 211, - 255, - 255, - 255, - 74, - 16, - 236, - 255, - 255, - 242, - 24, - 150, - 255, - 255, - 255, - 55, - 28, - 255, - 255, - 255, - 244, - 5, - 0, - 109, - 255, - 255, - 255, - 157, - 219, - 255, - 255, - 236, - 3, - 71, - 255, - 255, - 255, - 200, - 0, - 0, - 5, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 90, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 80, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 40, - 255, - 255, - 255, - 245, - 13, - 0, - 0, - 20, - 213, - 255, - 255, - 255, - 255, - 243, - 98, - 10, - 1, - 217, - 255, - 255, - 255, - 186, - 69, - 105, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 237, - 255, - 255, - 255, - 212, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 33, - 46, - 228, - 255, - 255, - 212, - 0, - 0, - 0, - 63, - 174, - 232, - 253, - 237, - 186, - 104, - 7, - 0, - 0, - 22, - 159, - 239, - 211 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 2, - "y": 18, - "width": 5, - "height": 10, - "dx": 11, - "glyphBitmap": { - "height": 10, - "width": 5, - "pixelArray": [ - 197, - 252, - 252, - 244, - 3, - 200, - 255, - 255, - 207, - 0, - 200, - 255, - 255, - 164, - 0, - 200, - 255, - 255, - 120, - 0, - 200, - 255, - 255, - 76, - 0, - 200, - 255, - 255, - 33, - 0, - 200, - 255, - 244, - 2, - 0, - 200, - 255, - 202, - 0, - 0, - 200, - 255, - 158, - 0, - 0, - 4, - 4, - 3, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 2, - "y": -7, - "width": 8, - "height": 35, - "dx": 11, - "glyphBitmap": { - "height": 35, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 0, - 63, - 172, - 230, - 114, - 0, - 0, - 2, - 143, - 255, - 255, - 255, - 116, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 116, - 0, - 19, - 244, - 255, - 255, - 255, - 158, - 34, - 0, - 110, - 255, - 255, - 255, - 198, - 1, - 0, - 0, - 195, - 255, - 255, - 255, - 89, - 0, - 0, - 14, - 252, - 255, - 255, - 255, - 19, - 0, - 0, - 60, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 253, - 10, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 38, - 254, - 255, - 255, - 254, - 92, - 3, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 15, - 202, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 7, - 130, - 238, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 3, - 41, - 28 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 1, - "y": -7, - "width": 8, - "height": 35, - "dx": 10, - "glyphBitmap": { - "height": 35, - "width": 8, - "pixelArray": [ - 234, - 205, - 126, - 14, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 224, - 47, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 230, - 15, - 0, - 0, - 91, - 231, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 235, - 4, - 0, - 0, - 1, - 214, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 252, - 3, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 3, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 253, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 249, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 249, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 62, - 0, - 0, - 2, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 63, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 84, - 0, - 0, - 40, - 255, - 255, - 255, - 246, - 12, - 0, - 27, - 200, - 255, - 255, - 255, - 162, - 0, - 0, - 244, - 255, - 255, - 255, - 248, - 34, - 0, - 0, - 244, - 255, - 255, - 251, - 91, - 0, - 0, - 0, - 244, - 255, - 193, - 53, - 0, - 0, - 0, - 0, - 55, - 17, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 1, - "y": 16, - "width": 12, - "height": 12, - "dx": 14, - "glyphBitmap": { - "height": 12, - "width": 12, - "pixelArray": [ - 0, - 0, - 0, - 0, - 103, - 252, - 252, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 73, - 22, - 0, - 55, - 255, - 255, - 170, - 0, - 1, - 83, - 10, - 2, - 227, - 242, - 121, - 39, - 255, - 255, - 145, - 55, - 196, - 255, - 89, - 66, - 255, - 255, - 255, - 231, - 255, - 255, - 230, - 255, - 255, - 255, - 182, - 48, - 172, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 120, - 0, - 0, - 24, - 120, - 250, - 255, - 255, - 255, - 192, - 71, - 2, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 201, - 5, - 0, - 0, - 0, - 0, - 29, - 240, - 255, - 238, - 152, - 255, - 255, - 128, - 0, - 0, - 0, - 2, - 188, - 255, - 255, - 130, - 26, - 249, - 255, - 252, - 57, - 0, - 0, - 25, - 212, - 255, - 246, - 21, - 0, - 155, - 255, - 250, - 109, - 0, - 0, - 0, - 5, - 118, - 136, - 0, - 0, - 38, - 186, - 40, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 6, - "width": 14, - "height": 15, - "dx": 14, - "glyphBitmap": { - "height": 15, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 119, - 252, - 252, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 36, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 126, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 10, - 68, - 68, - 68, - 68, - 157, - 255, - 255, - 201, - 68, - 68, - 68, - 68, - 34, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 1, - "y": -5, - "width": 5, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "width": 5, - "pixelArray": [ - 174, - 252, - 252, - 252, - 186, - 176, - 255, - 255, - 255, - 188, - 176, - 255, - 255, - 255, - 188, - 176, - 255, - 255, - 255, - 188, - 176, - 255, - 255, - 255, - 187, - 0, - 0, - 100, - 255, - 168, - 0, - 1, - 183, - 255, - 118, - 20, - 154, - 255, - 245, - 26, - 84, - 255, - 247, - 82, - 0, - 17, - 135, - 33, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 1, - "y": 8, - "width": 9, - "height": 5, - "dx": 12, - "glyphBitmap": { - "height": 5, - "width": 9, - "pixelArray": [ - 9, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 49, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 1, - "y": 0, - "width": 5, - "height": 5, - "dx": 7, - "glyphBitmap": { - "height": 5, - "width": 5, - "pixelArray": [ - 123, - 252, - 252, - 252, - 225, - 124, - 255, - 255, - 255, - 228, - 124, - 255, - 255, - 255, - 228, - 124, - 255, - 255, - 255, - 228, - 124, - 255, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 1, - "y": 0, - "width": 11, - "height": 28, - "dx": 13, - "glyphBitmap": { - "height": 28, - "width": 11, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 252, - 252, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 238, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 237, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 250, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 233, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 242, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 247, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 225, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 254, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 227, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 246, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 16, - 115, - 194, - 237, - 250, - 232, - 186, - 97, - 7, - 0, - 0, - 0, - 0, - 0, - 51, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 30, - 0, - 0, - 0, - 24, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 8, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 9, - 245, - 255, - 255, - 255, - 235, - 65, - 10, - 84, - 250, - 255, - 255, - 255, - 215, - 0, - 67, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 29, - 105, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 67, - 128, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 92, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 132, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 96, - 129, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 93, - 106, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 68, - 67, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 29, - 8, - 244, - 255, - 255, - 255, - 239, - 61, - 4, - 84, - 252, - 255, - 255, - 255, - 212, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 21, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 6, - 0, - 0, - 0, - 45, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 26, - 0, - 0, - 0, - 0, - 0, - 13, - 111, - 195, - 240, - 253, - 234, - 187, - 96, - 5, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 2, - "y": 0, - "width": 10, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 61, - 244, - 252, - 252, - 186, - 0, - 0, - 0, - 2, - 105, - 248, - 255, - 255, - 255, - 188, - 0, - 1, - 75, - 202, - 255, - 255, - 255, - 255, - 255, - 188, - 22, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 36, - 255, - 255, - 255, - 242, - 249, - 255, - 255, - 255, - 188, - 34, - 199, - 129, - 59, - 5, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 188 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 6, - 101, - 182, - 230, - 250, - 239, - 200, - 127, - 24, - 0, - 0, - 0, - 0, - 0, - 25, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 75, - 0, - 0, - 0, - 4, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 44, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 195, - 255, - 255, - 255, - 254, - 102, - 12, - 56, - 227, - 255, - 255, - 255, - 253, - 21, - 12, - 253, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 75, - 48, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 108, - 75, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 118, - 84, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 106, - 61, - 184, - 184, - 184, - 184, - 35, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 252, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 200, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 188, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 239, - 255, - 255, - 255, - 250, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 221, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 210, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 242, - 255, - 255, - 255, - 241, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 201, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 215, - 255, - 255, - 255, - 252, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 245, - 255, - 255, - 255, - 245, - 72, - 60, - 60, - 60, - 60, - 60, - 60, - 47, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 37, - 139, - 206, - 242, - 250, - 231, - 187, - 105, - 9, - 0, - 0, - 0, - 0, - 0, - 111, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 47, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 21, - 0, - 8, - 235, - 255, - 255, - 255, - 237, - 107, - 75, - 146, - 255, - 255, - 255, - 255, - 149, - 0, - 81, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 239, - 5, - 134, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 40, - 163, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 70, - 168, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 72, - 40, - 60, - 60, - 60, - 55, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 236, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 23, - 122, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 253, - 255, - 255, - 255, - 255, - 255, - 195, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 248, - 130, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 195, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 5, - 34, - 157, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 206, - 255, - 255, - 255, - 228, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 62, - 147, - 224, - 224, - 224, - 204, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 74, - 166, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 67, - 146, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 40, - 112, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 249, - 8, - 48, - 255, - 255, - 255, - 255, - 205, - 37, - 4, - 75, - 244, - 255, - 255, - 255, - 188, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 3, - 0, - 0, - 0, - 101, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 25, - 0, - 0, - 0, - 0, - 0, - 37, - 141, - 207, - 245, - 253, - 233, - 186, - 96, - 7, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 1, - "y": 0, - "width": 16, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 252, - 252, - 252, - 252, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 250, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 242, - 251, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 164, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 254, - 255, - 255, - 79, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 242, - 8, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 6, - 233, - 255, - 255, - 164, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 79, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 242, - 8, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 165, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 79, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 11, - 241, - 255, - 255, - 242, - 8, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 28, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 249, - 255, - 255, - 255, - 91, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 88, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 203, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 87, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 220, - 255, - 255, - 255, - 31, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 223, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 252, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 232, - 0, - 3, - 39, - 58, - 33, - 1, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 222, - 110, - 232, - 255, - 255, - 255, - 231, - 115, - 2, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 1, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 250, - 255, - 255, - 255, - 234, - 73, - 10, - 73, - 240, - 255, - 255, - 255, - 178, - 0, - 0, - 253, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 249, - 8, - 0, - 128, - 128, - 128, - 127, - 3, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 93, - 10, - 24, - 24, - 24, - 24, - 3, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 86, - 101, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 68, - 84, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 43, - 58, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 244, - 4, - 13, - 252, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 183, - 0, - 0, - 177, - 255, - 255, - 255, - 253, - 127, - 67, - 125, - 251, - 255, - 255, - 255, - 89, - 0, - 0, - 57, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 2, - 0, - 0, - 0, - 103, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 29, - 0, - 0, - 0, - 0, - 0, - 49, - 156, - 209, - 245, - 254, - 235, - 190, - 106, - 6, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 1, - 85, - 178, - 228, - 250, - 242, - 208, - 143, - 40, - 0, - 0, - 0, - 0, - 0, - 12, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 108, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 177, - 77, - 105, - 236, - 255, - 255, - 255, - 208, - 0, - 0, - 158, - 255, - 255, - 255, - 222, - 6, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 34, - 1, - 229, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 79, - 28, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 101, - 57, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 1, - 12, - 12, - 12, - 12, - 5, - 75, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 68, - 0, - 16, - 55, - 50, - 9, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 87, - 176, - 255, - 255, - 255, - 251, - 164, - 22, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 18, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 84, - 255, - 255, - 255, - 255, - 248, - 96, - 13, - 52, - 222, - 255, - 255, - 255, - 248, - 15, - 84, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 74, - 84, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 117, - 84, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 5, - 255, - 255, - 255, - 255, - 143, - 84, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 154, - 81, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 249, - 255, - 255, - 255, - 150, - 64, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 1, - 254, - 255, - 255, - 255, - 128, - 35, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 100, - 2, - 236, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 51, - 0, - 159, - 255, - 255, - 255, - 215, - 3, - 0, - 0, - 135, - 255, - 255, - 255, - 227, - 3, - 0, - 53, - 255, - 255, - 255, - 255, - 169, - 69, - 113, - 249, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 15, - 0, - 0, - 0, - 7, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 180, - 230, - 253, - 242, - 194, - 123, - 14, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 1, - "y": 0, - "width": 12, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 12, - "pixelArray": [ - 174, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 217, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 47, - 68, - 68, - 68, - 68, - 68, - 68, - 204, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 253, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 242, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 250, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 251, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 245, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 239, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 29, - 134, - 205, - 242, - 250, - 227, - 177, - 83, - 1, - 0, - 0, - 0, - 0, - 0, - 81, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 10, - 0, - 0, - 0, - 43, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 247, - 113, - 78, - 191, - 255, - 255, - 255, - 254, - 40, - 0, - 12, - 249, - 255, - 255, - 255, - 124, - 0, - 0, - 16, - 245, - 255, - 255, - 255, - 123, - 0, - 51, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 170, - 0, - 77, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 196, - 0, - 73, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 194, - 0, - 37, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 159, - 0, - 1, - 235, - 255, - 255, - 255, - 122, - 0, - 0, - 12, - 244, - 255, - 255, - 255, - 103, - 0, - 0, - 129, - 255, - 255, - 255, - 235, - 51, - 9, - 149, - 255, - 255, - 255, - 241, - 15, - 0, - 0, - 14, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 34, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 106, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 22, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 4, - 0, - 4, - 226, - 255, - 255, - 255, - 217, - 49, - 14, - 125, - 255, - 255, - 255, - 255, - 96, - 0, - 71, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 1, - 200, - 255, - 255, - 255, - 197, - 0, - 125, - 255, - 255, - 255, - 248, - 3, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 248, - 5, - 167, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 41, - 179, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 54, - 172, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 49, - 147, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 24, - 111, - 255, - 255, - 255, - 242, - 4, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 244, - 2, - 45, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 3, - 205, - 255, - 255, - 255, - 180, - 0, - 1, - 202, - 255, - 255, - 255, - 237, - 102, - 70, - 169, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 61, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 2, - 0, - 0, - 0, - 90, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 21, - 0, - 0, - 0, - 0, - 0, - 33, - 139, - 206, - 245, - 253, - 230, - 182, - 91, - 4, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 12, - 116, - 190, - 238, - 249, - 225, - 170, - 74, - 1, - 0, - 0, - 0, - 0, - 0, - 37, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 6, - 0, - 0, - 0, - 16, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 253, - 127, - 77, - 176, - 255, - 255, - 255, - 255, - 50, - 0, - 5, - 233, - 255, - 255, - 255, - 149, - 0, - 0, - 4, - 221, - 255, - 255, - 255, - 160, - 0, - 59, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 238, - 2, - 107, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 34, - 134, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 64, - 153, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 82, - 153, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 84, - 142, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 84, - 115, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 84, - 66, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 84, - 7, - 238, - 255, - 255, - 255, - 244, - 108, - 68, - 145, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 7, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 5, - 113, - 207, - 249, - 254, - 219, - 125, - 81, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 1, - 2, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 75, - 13, - 32, - 32, - 32, - 32, - 2, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 55, - 101, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 26, - 76, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 229, - 1, - 32, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 6, - 225, - 255, - 255, - 255, - 158, - 0, - 0, - 205, - 255, - 255, - 255, - 235, - 100, - 69, - 171, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 108, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 14, - 0, - 0, - 0, - 0, - 0, - 42, - 146, - 211, - 245, - 254, - 231, - 183, - 91, - 2, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 2, - "y": 2, - "width": 5, - "height": 17, - "dx": 8, - "glyphBitmap": { - "height": 17, - "width": 5, - "pixelArray": [ - 245, - 252, - 252, - 252, - 95, - 248, - 255, - 255, - 255, - 96, - 248, - 255, - 255, - 255, - 96, - 248, - 255, - 255, - 255, - 96, - 248, - 255, - 255, - 255, - 96, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 252, - 252, - 252, - 95, - 248, - 255, - 255, - 255, - 96, - 248, - 255, - 255, - 255, - 96, - 248, - 255, - 255, - 255, - 96, - 4, - 4, - 4, - 4, - 2 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 2, - "y": -3, - "width": 5, - "height": 23, - "dx": 8, - "glyphBitmap": { - "height": 23, - "width": 5, - "pixelArray": [ - 252, - 252, - 252, - 252, - 91, - 255, - 255, - 255, - 255, - 92, - 255, - 255, - 255, - 255, - 92, - 255, - 255, - 255, - 255, - 92, - 255, - 255, - 255, - 255, - 92, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 249, - 252, - 252, - 252, - 115, - 252, - 255, - 255, - 255, - 116, - 252, - 255, - 255, - 255, - 116, - 252, - 255, - 255, - 255, - 116, - 252, - 255, - 255, - 255, - 112, - 4, - 4, - 187, - 255, - 82, - 6, - 95, - 252, - 245, - 18, - 164, - 255, - 252, - 97, - 0, - 51, - 109, - 36, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 1, - "y": 2, - "width": 10, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 162, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 53, - 220, - 255, - 255, - 212, - 0, - 0, - 0, - 2, - 119, - 251, - 255, - 255, - 255, - 212, - 0, - 0, - 26, - 188, - 255, - 255, - 255, - 255, - 235, - 74, - 0, - 76, - 235, - 255, - 255, - 255, - 255, - 190, - 26, - 0, - 145, - 255, - 255, - 255, - 255, - 252, - 123, - 3, - 0, - 0, - 255, - 255, - 255, - 255, - 225, - 59, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 184, - 17, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 235, - 74, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 140, - 6, - 0, - 0, - 0, - 74, - 234, - 255, - 255, - 255, - 255, - 201, - 33, - 0, - 0, - 0, - 24, - 185, - 255, - 255, - 255, - 255, - 240, - 84, - 0, - 0, - 0, - 2, - 113, - 250, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 49, - 216, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 11, - 154, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 239, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 149 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 1, - "y": 8, - "width": 12, - "height": 11, - "dx": 14, - "glyphBitmap": { - "height": 11, - "width": 12, - "pixelArray": [ - 5, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 15, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 15, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 1, - "y": 2, - "width": 11, - "height": 19, - "dx": 13, - "glyphBitmap": { - "height": 19, - "width": 11, - "pixelArray": [ - 10, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 210, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 247, - 105, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 176, - 20, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 229, - 66, - 0, - 0, - 0, - 0, - 4, - 132, - 254, - 255, - 255, - 255, - 254, - 135, - 5, - 0, - 0, - 0, - 0, - 66, - 230, - 255, - 255, - 255, - 255, - 202, - 35, - 0, - 0, - 0, - 0, - 21, - 182, - 255, - 255, - 255, - 255, - 243, - 86, - 0, - 0, - 0, - 0, - 2, - 114, - 250, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 230, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 4, - 132, - 254, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 29, - 196, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 78, - 237, - 255, - 255, - 255, - 255, - 200, - 34, - 0, - 7, - 144, - 255, - 255, - 255, - 255, - 254, - 131, - 5, - 0, - 15, - 204, - 255, - 255, - 255, - 255, - 227, - 62, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 171, - 17, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 245, - 98, - 1, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 205, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 138, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 1, - "y": 0, - "width": 14, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 0, - 0, - 1, - 72, - 170, - 222, - 249, - 245, - 213, - 156, - 57, - 0, - 0, - 0, - 0, - 6, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 5, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 25, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 94, - 255, - 255, - 255, - 255, - 141, - 20, - 33, - 163, - 255, - 255, - 255, - 255, - 139, - 125, - 255, - 255, - 255, - 233, - 2, - 0, - 0, - 3, - 225, - 255, - 255, - 255, - 190, - 127, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 220, - 102, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 217, - 57, - 229, - 178, - 126, - 75, - 1, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 184, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 245, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 227, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 251, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 251, - 255, - 255, - 255, - 173, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 248, - 255, - 255, - 255, - 194, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 250, - 255, - 255, - 255, - 194, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 235, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 140, - 140, - 140, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 252, - 252, - 252, - 252, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 1, - "y": -5, - "width": 29, - "height": 33, - "dx": 31, - "glyphBitmap": { - "height": 33, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 68, - 137, - 186, - 222, - 243, - 251, - 243, - 212, - 171, - 114, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 129, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 164, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 142, - 255, - 255, - 255, - 255, - 255, - 223, - 150, - 102, - 76, - 71, - 89, - 126, - 182, - 250, - 255, - 255, - 255, - 254, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 156, - 255, - 255, - 255, - 255, - 202, - 67, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 153, - 254, - 255, - 255, - 246, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 254, - 124, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 251, - 255, - 255, - 204, - 2, - 0, - 0, - 0, - 0, - 42, - 251, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 14, - 124, - 203, - 247, - 212, - 62, - 183, - 252, - 252, - 191, - 0, - 1, - 201, - 255, - 255, - 180, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 226, - 8, - 0, - 0, - 0, - 46, - 223, - 255, - 255, - 255, - 255, - 248, - 249, - 255, - 255, - 156, - 0, - 0, - 88, - 255, - 255, - 252, - 17, - 0, - 0, - 164, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 37, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 12, - 249, - 255, - 255, - 71, - 0, - 9, - 245, - 255, - 255, - 228, - 5, - 0, - 0, - 2, - 199, - 255, - 255, - 255, - 248, - 141, - 75, - 179, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 206, - 255, - 255, - 110, - 0, - 69, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 247, - 60, - 0, - 0, - 160, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 175, - 255, - 255, - 129, - 0, - 132, - 255, - 255, - 255, - 63, - 0, - 0, - 1, - 215, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 196, - 255, - 255, - 254, - 9, - 0, - 0, - 0, - 160, - 255, - 255, - 143, - 0, - 179, - 255, - 255, - 255, - 12, - 0, - 0, - 50, - 255, - 255, - 255, - 232, - 7, - 0, - 0, - 0, - 232, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 139, - 0, - 219, - 255, - 255, - 224, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 122, - 1, - 245, - 255, - 255, - 184, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 89, - 11, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 42, - 23, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 97, - 255, - 255, - 225, - 1, - 25, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 39, - 0, - 0, - 5, - 211, - 255, - 255, - 132, - 0, - 19, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 149, - 0, - 0, - 53, - 253, - 255, - 255, - 255, - 13, - 0, - 0, - 119, - 255, - 255, - 245, - 25, - 0, - 3, - 252, - 255, - 255, - 187, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 160, - 148, - 246, - 255, - 255, - 255, - 255, - 23, - 5, - 111, - 253, - 255, - 255, - 114, - 0, - 0, - 0, - 223, - 255, - 255, - 232, - 1, - 0, - 0, - 17, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 255, - 255, - 255, - 234, - 240, - 255, - 255, - 255, - 178, - 2, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 62, - 246, - 255, - 255, - 255, - 255, - 202, - 21, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 8, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 43, - 162, - 217, - 215, - 139, - 16, - 0, - 36, - 166, - 238, - 255, - 225, - 166, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 251, - 255, - 255, - 243, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 166, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 247, - 255, - 255, - 255, - 140, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 187, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 254, - 190, - 110, - 64, - 24, - 6, - 3, - 21, - 49, - 93, - 151, - 220, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 135, - 204, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 178, - 122, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 33, - 54, - 63, - 58, - 38, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 17, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 14, - 251, - 252, - 252, - 252, - 252, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 249, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 192, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 111, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 43, - 244, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 249, - 255, - 255, - 252, - 6, - 204, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 217, - 0, - 163, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 176, - 0, - 123, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 135, - 0, - 83, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 95, - 0, - 42, - 255, - 255, - 255, - 236, - 1, - 0, - 0, - 0, - 0, - 3, - 245, - 255, - 255, - 255, - 54, - 0, - 7, - 252, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 218, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 1, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 113, - 68, - 68, - 68, - 73, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 120, - 0, - 0, - 133, - 255, - 255, - 255, - 239, - 1, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 169, - 0, - 0, - 183, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 219, - 0, - 1, - 233, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 14, - 26, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 62, - 76, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 111 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 2, - "y": 0, - "width": 16, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 243, - 217, - 175, - 98, - 8, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 63, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 38, - 0, - 0, - 255, - 255, - 255, - 255, - 230, - 69, - 76, - 101, - 177, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 253, - 16, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 13, - 254, - 255, - 255, - 255, - 58, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 90, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 94, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 1, - 243, - 255, - 255, - 255, - 75, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 33, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 209, - 1, - 0, - 255, - 255, - 255, - 255, - 229, - 60, - 62, - 89, - 172, - 255, - 255, - 255, - 253, - 69, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 74, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 136, - 27, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 71, - 0, - 0, - 255, - 255, - 255, - 255, - 221, - 4, - 6, - 32, - 111, - 241, - 255, - 255, - 255, - 245, - 33, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 146, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 224, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 12, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 36, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 37, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 14, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 233, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 162, - 0, - 255, - 255, - 255, - 255, - 229, - 60, - 61, - 78, - 138, - 247, - 255, - 255, - 255, - 255, - 60, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 7, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 210, - 152, - 55, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 1, - "y": 0, - "width": 16, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 1, - 78, - 168, - 216, - 246, - 250, - 230, - 190, - 120, - 18, - 0, - 0, - 0, - 0, - 0, - 24, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 63, - 0, - 0, - 0, - 5, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 32, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 201, - 89, - 72, - 136, - 254, - 255, - 255, - 255, - 157, - 0, - 0, - 204, - 255, - 255, - 255, - 237, - 16, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 246, - 8, - 23, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 52, - 67, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 83, - 94, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 98, - 106, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 100, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 100, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 6, - 20, - 20, - 20, - 20, - 8, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 34, - 112, - 112, - 112, - 112, - 44, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 100, - 107, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 100, - 95, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 93, - 67, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 77, - 23, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 42, - 0, - 204, - 255, - 255, - 255, - 243, - 16, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 234, - 3, - 0, - 102, - 255, - 255, - 255, - 255, - 201, - 84, - 68, - 146, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 4, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 23, - 0, - 0, - 0, - 21, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 55, - 0, - 0, - 0, - 0, - 0, - 1, - 82, - 174, - 220, - 249, - 254, - 233, - 195, - 118, - 13, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 2, - "y": 0, - "width": 15, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 239, - 208, - 169, - 98, - 9, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 64, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 49, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 72, - 99, - 196, - 255, - 255, - 255, - 255, - 190, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 4, - 203, - 255, - 255, - 255, - 255, - 42, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 103, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 136, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 161, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 171, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 172, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 168, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 152, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 125, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 87, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 7, - 216, - 255, - 255, - 255, - 253, - 23, - 255, - 255, - 255, - 255, - 229, - 60, - 64, - 100, - 198, - 255, - 255, - 255, - 255, - 163, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 33, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 51, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 213, - 174, - 100, - 9, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 2, - "y": 0, - "width": 12, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 12, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 68, - 68, - 68, - 68, - 13, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 217, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 68, - 68, - 59, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 229, - 60, - 60, - 60, - 60, - 60, - 60, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 2, - "y": 0, - "width": 11, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 11, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 68, - 68, - 68, - 66, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 189, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 68, - 68, - 51, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 1, - "y": 0, - "width": 16, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 3, - 84, - 168, - 215, - 246, - 250, - 231, - 194, - 123, - 27, - 0, - 0, - 0, - 0, - 0, - 18, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 91, - 0, - 0, - 0, - 3, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 62, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 207, - 95, - 75, - 134, - 250, - 255, - 255, - 255, - 200, - 0, - 0, - 195, - 255, - 255, - 255, - 242, - 18, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 35, - 16, - 254, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 96, - 59, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 128, - 84, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 145, - 104, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 148, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 4, - 44, - 44, - 44, - 44, - 26, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 33, - 60, - 60, - 60, - 60, - 60, - 60, - 44, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 3, - 4, - 4, - 170, - 255, - 255, - 255, - 184, - 112, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 184, - 106, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 184, - 84, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 184, - 57, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 184, - 10, - 251, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 8, - 246, - 255, - 255, - 255, - 184, - 0, - 193, - 255, - 255, - 255, - 251, - 28, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 184, - 0, - 90, - 255, - 255, - 255, - 255, - 215, - 93, - 66, - 122, - 246, - 255, - 255, - 255, - 255, - 184, - 0, - 4, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 225, - 255, - 255, - 184, - 0, - 0, - 26, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 163, - 255, - 255, - 184, - 0, - 0, - 0, - 7, - 96, - 185, - 232, - 253, - 239, - 183, - 68, - 0, - 129, - 255, - 255, - 184 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 2, - "y": 0, - "width": 16, - "height": 28, - "dx": 19, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 241, - 252, - 252, - 252, - 229, - 0, - 0, - 0, - 0, - 0, - 166, - 252, - 252, - 252, - 252, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 239, - 68, - 68, - 68, - 68, - 68, - 192, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52, - 244, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 52 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 2, - "y": 0, - "width": 5, - "height": 28, - "dx": 9, - "glyphBitmap": { - "height": 28, - "width": 5, - "pixelArray": [ - 217, - 252, - 252, - 252, - 237, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240, - 220, - 255, - 255, - 255, - 240 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": 0, - "width": 9, - "height": 28, - "dx": 11, - "glyphBitmap": { - "height": 28, - "width": 9, - "pixelArray": [ - 0, - 0, - 0, - 32, - 252, - 252, - 252, - 252, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 139, - 44, - 84, - 146, - 250, - 255, - 255, - 255, - 255, - 86, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 8, - 176, - 255, - 255, - 255, - 255, - 255, - 248, - 76, - 0, - 176, - 255, - 255, - 247, - 216, - 159, - 41, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 2, - "y": 0, - "width": 16, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 252, - 252, - 252, - 252, - 217, - 0, - 0, - 0, - 0, - 26, - 248, - 252, - 252, - 252, - 144, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 44, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 7, - 233, - 255, - 255, - 255, - 197, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 239, - 9, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 22, - 249, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 123, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 4, - 228, - 255, - 255, - 255, - 239, - 9, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 84, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 193, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 4, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 164, - 247, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 246, - 24, - 170, - 255, - 255, - 255, - 249, - 17, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 79, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 6, - 237, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 2, - 225, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 244, - 12, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 95, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 28, - 254, - 255, - 255, - 255, - 190, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 31 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 2, - "y": 0, - "width": 12, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 12, - "pixelArray": [ - 252, - 252, - 252, - 252, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 229, - 60, - 60, - 60, - 60, - 60, - 60, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 1, - "y": 0, - "width": 20, - "height": 28, - "dx": 23, - "glyphBitmap": { - "height": 28, - "width": 20, - "pixelArray": [ - 0, - 156, - 252, - 252, - 252, - 252, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 252, - 252, - 252, - 252, - 30, - 0, - 162, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 166, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 254, - 11, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 194, - 255, - 255, - 246, - 236, - 255, - 255, - 58, - 0, - 0, - 0, - 173, - 255, - 255, - 230, - 255, - 255, - 255, - 67, - 0, - 198, - 255, - 255, - 241, - 184, - 255, - 255, - 108, - 0, - 0, - 0, - 225, - 255, - 255, - 173, - 255, - 255, - 255, - 71, - 0, - 202, - 255, - 255, - 237, - 131, - 255, - 255, - 159, - 0, - 0, - 20, - 255, - 255, - 255, - 118, - 255, - 255, - 255, - 75, - 0, - 206, - 255, - 255, - 233, - 79, - 255, - 255, - 209, - 0, - 0, - 71, - 255, - 255, - 220, - 97, - 255, - 255, - 255, - 79, - 0, - 210, - 255, - 255, - 229, - 27, - 255, - 255, - 252, - 8, - 0, - 123, - 255, - 255, - 168, - 93, - 255, - 255, - 255, - 83, - 0, - 214, - 255, - 255, - 225, - 1, - 231, - 255, - 255, - 53, - 0, - 174, - 255, - 255, - 116, - 88, - 255, - 255, - 255, - 88, - 0, - 218, - 255, - 255, - 221, - 0, - 178, - 255, - 255, - 103, - 0, - 226, - 255, - 255, - 64, - 84, - 255, - 255, - 255, - 92, - 0, - 222, - 255, - 255, - 217, - 0, - 126, - 255, - 255, - 153, - 22, - 255, - 255, - 255, - 14, - 80, - 255, - 255, - 255, - 96, - 0, - 226, - 255, - 255, - 213, - 0, - 74, - 255, - 255, - 203, - 73, - 255, - 255, - 216, - 0, - 75, - 255, - 255, - 255, - 100, - 0, - 230, - 255, - 255, - 209, - 0, - 22, - 255, - 255, - 249, - 129, - 255, - 255, - 164, - 0, - 71, - 255, - 255, - 255, - 104, - 0, - 234, - 255, - 255, - 205, - 0, - 0, - 225, - 255, - 255, - 222, - 255, - 255, - 112, - 0, - 66, - 255, - 255, - 255, - 108, - 0, - 238, - 255, - 255, - 201, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 62, - 255, - 255, - 255, - 112, - 0, - 242, - 255, - 255, - 197, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 254, - 12, - 0, - 57, - 255, - 255, - 255, - 117, - 0, - 246, - 255, - 255, - 193, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 53, - 255, - 255, - 255, - 121, - 0, - 250, - 255, - 255, - 189, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 49, - 255, - 255, - 255, - 125, - 0, - 254, - 255, - 255, - 185, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 109, - 0, - 0, - 44, - 255, - 255, - 255, - 129, - 2, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 57, - 0, - 0, - 40, - 255, - 255, - 255, - 133, - 6, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 115, - 255, - 255, - 252, - 10, - 0, - 0, - 35, - 255, - 255, - 255, - 137, - 10, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 63, - 255, - 255, - 210, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 142 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 2, - "y": 0, - "width": 14, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 252, - 252, - 252, - 137, - 0, - 0, - 0, - 0, - 0, - 28, - 252, - 252, - 252, - 233, - 255, - 255, - 255, - 236, - 8, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 242, - 12, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 249, - 255, - 255, - 246, - 17, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 165, - 255, - 255, - 255, - 110, - 28, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 64, - 254, - 255, - 255, - 214, - 29, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 182, - 255, - 255, - 255, - 91, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 79, - 255, - 255, - 255, - 195, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 4, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 29, - 253, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 3, - 225, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 26, - 252, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 2, - 222, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 236 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 1, - "y": 0, - "width": 16, - "height": 28, - "dx": 19, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 2, - 81, - 166, - 212, - 245, - 250, - 233, - 192, - 124, - 27, - 0, - 0, - 0, - 0, - 0, - 23, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 95, - 0, - 0, - 0, - 6, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 204, - 94, - 74, - 132, - 251, - 255, - 255, - 255, - 225, - 5, - 0, - 213, - 255, - 255, - 255, - 240, - 15, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 82, - 28, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 154, - 68, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 6, - 255, - 255, - 255, - 255, - 200, - 96, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 253, - 255, - 255, - 255, - 231, - 110, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 246, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 109, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 245, - 93, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 253, - 255, - 255, - 255, - 228, - 64, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 200, - 18, - 254, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 155, - 0, - 202, - 255, - 255, - 255, - 242, - 17, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 82, - 0, - 94, - 255, - 255, - 255, - 255, - 205, - 87, - 67, - 129, - 251, - 255, - 255, - 255, - 223, - 4, - 0, - 4, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 22, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 93, - 0, - 0, - 0, - 0, - 0, - 2, - 76, - 167, - 215, - 248, - 253, - 236, - 194, - 134, - 31, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 2, - "y": 0, - "width": 15, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 241, - 204, - 134, - 30, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 82, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 51, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 69, - 88, - 155, - 255, - 255, - 255, - 255, - 186, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 254, - 22, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 113, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 129, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 126, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 98, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 55, - 255, - 255, - 255, - 255, - 220, - 0, - 1, - 21, - 99, - 243, - 255, - 255, - 255, - 228, - 2, - 255, - 255, - 255, - 255, - 255, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 1, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 191, - 74, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 67, - 49, - 13, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 1, - "y": -6, - "width": 16, - "height": 34, - "dx": 19, - "glyphBitmap": { - "height": 34, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 2, - 81, - 166, - 212, - 245, - 250, - 233, - 192, - 124, - 27, - 0, - 0, - 0, - 0, - 0, - 23, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 95, - 0, - 0, - 0, - 6, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 204, - 94, - 74, - 132, - 251, - 255, - 255, - 255, - 224, - 5, - 0, - 213, - 255, - 255, - 255, - 240, - 15, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 81, - 28, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 152, - 68, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 6, - 255, - 255, - 255, - 255, - 199, - 96, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 253, - 255, - 255, - 255, - 230, - 110, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 245, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 112, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 248, - 109, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 246, - 93, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 253, - 255, - 255, - 255, - 231, - 64, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 206, - 18, - 254, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 159, - 0, - 202, - 255, - 255, - 255, - 242, - 17, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 89, - 0, - 94, - 255, - 255, - 255, - 255, - 205, - 87, - 67, - 129, - 251, - 255, - 255, - 255, - 233, - 8, - 0, - 4, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 22, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 113, - 0, - 0, - 0, - 0, - 0, - 2, - 76, - 167, - 215, - 248, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 210, - 255, - 255, - 254, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 240, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 251, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 250, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 226, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 2, - "y": 0, - "width": 16, - "height": 28, - "dx": 18, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 237, - 211, - 169, - 95, - 7, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 73, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 59, - 0, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 71, - 99, - 188, - 255, - 255, - 255, - 255, - 217, - 2, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 1, - 170, - 255, - 255, - 255, - 255, - 58, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 107, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 144, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 154, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 146, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 111, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 67, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 4, - 40, - 139, - 255, - 255, - 255, - 255, - 241, - 9, - 0, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 2, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 230, - 68, - 68, - 233, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 169, - 255, - 255, - 255, - 247, - 8, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 1, - 233, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 254, - 20, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 1, - 233, - 255, - 255, - 255, - 225, - 1, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 38, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 107, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 176, - 0, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 255, - 241, - 5 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 37, - 141, - 208, - 244, - 250, - 224, - 174, - 75, - 1, - 0, - 0, - 0, - 0, - 0, - 112, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 6, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 8, - 235, - 255, - 255, - 255, - 219, - 98, - 76, - 175, - 255, - 255, - 255, - 251, - 27, - 0, - 81, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 4, - 216, - 255, - 255, - 255, - 115, - 0, - 133, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 178, - 0, - 161, - 255, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 220, - 0, - 158, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 63, - 255, - 221, - 170, - 113, - 0, - 128, - 255, - 255, - 255, - 255, - 189, - 4, - 0, - 0, - 10, - 17, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 160, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 240, - 255, - 255, - 255, - 255, - 255, - 172, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 21, - 4, - 47, - 104, - 161, - 121, - 0, - 0, - 0, - 6, - 219, - 255, - 255, - 255, - 255, - 71, - 161, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 100, - 135, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 105, - 90, - 255, - 255, - 255, - 252, - 20, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 75, - 20, - 252, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 252, - 23, - 0, - 167, - 255, - 255, - 255, - 254, - 137, - 67, - 115, - 245, - 255, - 255, - 255, - 174, - 0, - 0, - 30, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 32, - 0, - 0, - 0, - 51, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 57, - 0, - 0, - 0, - 0, - 0, - 12, - 107, - 190, - 233, - 254, - 243, - 202, - 120, - 16, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 14, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 221, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 205, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 60, - 68, - 68, - 68, - 142, - 255, - 255, - 255, - 255, - 157, - 68, - 68, - 68, - 56, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 1, - "y": 0, - "width": 16, - "height": 28, - "dx": 19, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 56, - 252, - 252, - 252, - 252, - 130, - 0, - 0, - 0, - 0, - 0, - 233, - 252, - 252, - 252, - 205, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 56, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 208, - 55, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 207, - 49, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 200, - 35, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 186, - 10, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 160, - 0, - 221, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 116, - 0, - 154, - 255, - 255, - 255, - 253, - 40, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 48, - 0, - 61, - 255, - 255, - 255, - 255, - 225, - 96, - 67, - 135, - 254, - 255, - 255, - 255, - 210, - 1, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 12, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 98, - 0, - 0, - 0, - 0, - 0, - 1, - 70, - 167, - 216, - 247, - 254, - 238, - 202, - 136, - 29, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 17, - "height": 28, - "dx": 17, - "glyphBitmap": { - "height": 28, - "width": 17, - "pixelArray": [ - 40, - 252, - 252, - 252, - 252, - 42, - 0, - 0, - 0, - 0, - 0, - 45, - 252, - 252, - 252, - 252, - 59, - 3, - 245, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 254, - 12, - 0, - 197, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 216, - 0, - 0, - 148, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 166, - 0, - 0, - 98, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 116, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 9, - 254, - 255, - 255, - 255, - 66, - 0, - 0, - 6, - 250, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 243, - 2, - 0, - 0, - 222, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 11, - 253, - 255, - 255, - 255, - 34, - 0, - 11, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 80, - 0, - 52, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 126, - 0, - 96, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 172, - 0, - 139, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 218, - 0, - 182, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 254, - 11, - 225, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 67, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 155, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 241, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 246, - 3, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 1, - "y": 0, - "width": 22, - "height": 28, - "dx": 24, - "glyphBitmap": { - "height": 28, - "width": 22, - "pixelArray": [ - 216, - 252, - 252, - 252, - 59, - 0, - 0, - 0, - 0, - 217, - 252, - 252, - 142, - 0, - 0, - 0, - 0, - 118, - 252, - 252, - 252, - 137, - 185, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 8, - 253, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 104, - 150, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 69, - 115, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 34, - 80, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 1, - 243, - 255, - 255, - 251, - 4, - 45, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 17, - 255, - 255, - 255, - 220, - 0, - 11, - 255, - 255, - 255, - 243, - 1, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 48, - 255, - 255, - 255, - 185, - 0, - 0, - 231, - 255, - 255, - 255, - 18, - 0, - 2, - 245, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 79, - 255, - 255, - 255, - 150, - 0, - 0, - 196, - 255, - 255, - 255, - 49, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 109, - 255, - 255, - 255, - 115, - 0, - 0, - 161, - 255, - 255, - 255, - 79, - 0, - 70, - 255, - 255, - 250, - 255, - 255, - 252, - 6, - 0, - 140, - 255, - 255, - 255, - 80, - 0, - 0, - 126, - 255, - 255, - 255, - 110, - 0, - 110, - 255, - 255, - 192, - 246, - 255, - 255, - 42, - 0, - 171, - 255, - 255, - 255, - 45, - 0, - 0, - 91, - 255, - 255, - 255, - 141, - 0, - 150, - 255, - 255, - 149, - 205, - 255, - 255, - 83, - 0, - 202, - 255, - 255, - 255, - 11, - 0, - 0, - 56, - 255, - 255, - 255, - 172, - 0, - 190, - 255, - 255, - 107, - 163, - 255, - 255, - 124, - 0, - 232, - 255, - 255, - 231, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 202, - 0, - 230, - 255, - 255, - 65, - 121, - 255, - 255, - 165, - 8, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 1, - 242, - 255, - 255, - 233, - 15, - 255, - 255, - 255, - 23, - 79, - 255, - 255, - 206, - 38, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 64, - 255, - 255, - 238, - 1, - 37, - 255, - 255, - 246, - 70, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 134, - 255, - 255, - 196, - 0, - 4, - 248, - 255, - 255, - 130, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 204, - 255, - 255, - 154, - 0, - 0, - 209, - 255, - 255, - 202, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 167, - 255, - 255, - 254, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 3, - 250, - 255, - 255, - 255, - 255, - 243, - 1, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 5, - 251, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 250, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 247, - 3, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 17, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 17, - "pixelArray": [ - 82, - 252, - 252, - 252, - 252, - 60, - 0, - 0, - 0, - 0, - 0, - 172, - 252, - 252, - 252, - 148, - 0, - 6, - 235, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 12, - 247, - 255, - 255, - 255, - 58, - 0, - 0, - 140, - 255, - 255, - 255, - 245, - 14, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 221, - 1, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 200, - 0, - 0, - 11, - 246, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 43, - 0, - 86, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 11, - 242, - 255, - 255, - 255, - 142, - 0, - 170, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 235, - 16, - 245, - 255, - 255, - 251, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 167, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 248, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 253, - 255, - 255, - 255, - 255, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 155, - 217, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 231, - 255, - 255, - 255, - 63, - 114, - 255, - 255, - 255, - 254, - 33, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 226, - 2, - 18, - 248, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 137, - 0, - 0, - 161, - 255, - 255, - 255, - 232, - 5, - 0, - 0, - 0, - 13, - 246, - 255, - 255, - 255, - 46, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 1, - 209, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 36, - 0, - 31, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 14, - 244, - 255, - 255, - 255, - 137, - 0, - 122, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 234, - 7 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 16, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 16, - "pixelArray": [ - 135, - 252, - 252, - 252, - 242, - 8, - 0, - 0, - 0, - 0, - 0, - 208, - 252, - 252, - 252, - 166, - 59, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 90, - 3, - 233, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 251, - 16, - 0, - 156, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 188, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 3, - 237, - 255, - 255, - 255, - 109, - 0, - 0, - 9, - 245, - 255, - 255, - 255, - 111, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 186, - 0, - 0, - 124, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 249, - 12, - 0, - 195, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 19, - 252, - 255, - 255, - 255, - 78, - 15, - 252, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 153, - 81, - 255, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 227, - 152, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 226, - 255, - 255, - 255, - 255, - 249, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 1, - "y": 0, - "width": 13, - "height": 28, - "dx": 14, - "glyphBitmap": { - "height": 28, - "width": 13, - "pixelArray": [ - 123, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 60, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 33, - 68, - 68, - 68, - 68, - 68, - 68, - 232, - 255, - 255, - 255, - 218, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 220, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 222, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 223, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 253, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 223, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 252, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 250, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 241, - 61, - 60, - 60, - 60, - 60, - 60, - 60, - 15, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 1, - "y": -6, - "width": 9, - "height": 34, - "dx": 11, - "glyphBitmap": { - "height": 34, - "width": 9, - "pixelArray": [ - 25, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 213, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 25, - 255, - 255, - 255, - 230, - 20, - 20, - 20, - 17, - 25, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 226, - 16, - 16, - 16, - 14, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 1, - "y": 0, - "width": 11, - "height": 28, - "dx": 13, - "glyphBitmap": { - "height": 28, - "width": 11, - "pixelArray": [ - 176, - 252, - 252, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 246, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 227, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 254, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 247, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 241, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 249, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 236, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 236, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 189 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 0, - "y": -6, - "width": 9, - "height": 34, - "dx": 11, - "glyphBitmap": { - "height": 34, - "width": 9, - "pixelArray": [ - 71, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 170, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 6, - 20, - 20, - 20, - 102, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 172, - 5, - 16, - 16, - 16, - 96, - 255, - 255, - 255, - 172, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 1, - "y": 16, - "width": 14, - "height": 12, - "dx": 15, - "glyphBitmap": { - "height": 12, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 0, - 136, - 252, - 252, - 252, - 221, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 234, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 254, - 255, - 255, - 252, - 25, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 146, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 33, - 200, - 255, - 255, - 223, - 2, - 0, - 0, - 0, - 5, - 231, - 255, - 255, - 203, - 0, - 115, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 119, - 0, - 31, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 35, - 0, - 0, - 201, - 255, - 255, - 251, - 25, - 0, - 31, - 254, - 255, - 255, - 206, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 122, - 0, - 130, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 223, - 2, - 107, - 132, - 132, - 132, - 30, - 0, - 0, - 0, - 0, - 115, - 132, - 132, - 132, - 24 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -5, - "width": 12, - "height": 4, - "dx": 12, - "glyphBitmap": { - "height": 4, - "width": 12, - "pixelArray": [ - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 64, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 1, - "y": 20, - "width": 8, - "height": 8, - "dx": 10, - "glyphBitmap": { - "height": 8, - "width": 8, - "pixelArray": [ - 27, - 242, - 252, - 252, - 252, - 94, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 11, - 229, - 255, - 255, - 236, - 3, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 2, - 202, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 1 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 1, - "y": 0, - "width": 13, - "height": 20, - "dx": 15, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 0, - 0, - 1, - 77, - 174, - 225, - 249, - 243, - 203, - 119, - 9, - 0, - 0, - 0, - 5, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 17, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 8, - 238, - 255, - 255, - 255, - 174, - 76, - 185, - 255, - 255, - 255, - 245, - 9, - 60, - 255, - 255, - 255, - 253, - 16, - 0, - 49, - 255, - 255, - 255, - 255, - 57, - 104, - 255, - 255, - 255, - 232, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 86, - 79, - 168, - 168, - 168, - 145, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 7, - 97, - 204, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 77, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 4, - 152, - 255, - 255, - 255, - 238, - 90, - 255, - 255, - 255, - 255, - 92, - 0, - 142, - 255, - 255, - 255, - 227, - 36, - 12, - 255, - 255, - 255, - 255, - 92, - 42, - 255, - 255, - 255, - 255, - 58, - 0, - 12, - 255, - 255, - 255, - 255, - 92, - 120, - 255, - 255, - 255, - 200, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 92, - 165, - 255, - 255, - 255, - 160, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 92, - 177, - 255, - 255, - 255, - 196, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 94, - 146, - 255, - 255, - 255, - 255, - 117, - 86, - 223, - 255, - 255, - 255, - 255, - 104, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 218, - 255, - 255, - 255, - 122, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 110, - 163, - 255, - 255, - 255, - 141, - 0, - 4, - 123, - 225, - 252, - 209, - 102, - 1, - 116, - 255, - 255, - 255, - 169 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 1, - "y": 0, - "width": 14, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 72, - 46, - 169, - 236, - 244, - 181, - 40, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 165, - 250, - 255, - 255, - 255, - 255, - 237, - 30, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 60, - 255, - 255, - 255, - 255, - 235, - 114, - 86, - 227, - 255, - 255, - 255, - 240, - 4, - 60, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 45, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 78, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 91, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 88, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 68, - 60, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 34, - 60, - 255, - 255, - 255, - 255, - 191, - 92, - 75, - 218, - 255, - 255, - 255, - 227, - 1, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 60, - 255, - 255, - 255, - 255, - 213, - 255, - 255, - 255, - 255, - 255, - 221, - 19, - 0, - 60, - 255, - 255, - 255, - 255, - 73, - 81, - 194, - 248, - 238, - 166, - 29, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 1, - "y": 0, - "width": 13, - "height": 20, - "dx": 14, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 0, - 0, - 7, - 109, - 195, - 237, - 251, - 235, - 194, - 110, - 7, - 0, - 0, - 0, - 17, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 14, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 22, - 251, - 255, - 255, - 255, - 170, - 75, - 176, - 255, - 255, - 255, - 235, - 3, - 89, - 255, - 255, - 255, - 255, - 15, - 0, - 29, - 255, - 255, - 255, - 255, - 33, - 130, - 255, - 255, - 255, - 236, - 0, - 0, - 1, - 249, - 255, - 255, - 255, - 60, - 155, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 64, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 138, - 144, - 144, - 144, - 36, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 210, - 220, - 220, - 220, - 55, - 155, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 64, - 131, - 255, - 255, - 255, - 235, - 0, - 0, - 1, - 248, - 255, - 255, - 255, - 59, - 89, - 255, - 255, - 255, - 255, - 15, - 0, - 25, - 255, - 255, - 255, - 255, - 30, - 22, - 251, - 255, - 255, - 255, - 165, - 67, - 169, - 255, - 255, - 255, - 229, - 2, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 19, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 9, - 0, - 0, - 0, - 8, - 113, - 198, - 241, - 254, - 237, - 193, - 104, - 4, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 1, - "y": 0, - "width": 13, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 252, - 252, - 252, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 0, - 0, - 53, - 182, - 241, - 239, - 174, - 46, - 160, - 255, - 255, - 255, - 228, - 0, - 48, - 245, - 255, - 255, - 255, - 255, - 250, - 222, - 255, - 255, - 255, - 228, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 27, - 255, - 255, - 255, - 255, - 205, - 79, - 119, - 234, - 255, - 255, - 255, - 228, - 89, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 125, - 255, - 255, - 255, - 251, - 4, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 146, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 152, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 149, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 133, - 255, - 255, - 255, - 252, - 2, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 105, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 160, - 255, - 255, - 255, - 228, - 52, - 255, - 255, - 255, - 255, - 197, - 71, - 103, - 223, - 255, - 255, - 255, - 228, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 76, - 252, - 255, - 255, - 255, - 255, - 255, - 233, - 255, - 255, - 255, - 228, - 0, - 0, - 64, - 190, - 245, - 246, - 187, - 63, - 160, - 255, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 1, - "y": 0, - "width": 13, - "height": 20, - "dx": 15, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 0, - 0, - 5, - 103, - 191, - 235, - 250, - 235, - 190, - 103, - 3, - 0, - 0, - 0, - 14, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 5, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 19, - 249, - 255, - 255, - 255, - 169, - 75, - 176, - 255, - 255, - 255, - 221, - 1, - 86, - 255, - 255, - 255, - 255, - 14, - 0, - 20, - 255, - 255, - 255, - 255, - 34, - 129, - 255, - 255, - 255, - 231, - 0, - 0, - 0, - 235, - 255, - 255, - 255, - 70, - 154, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 92, - 160, - 255, - 255, - 255, - 222, - 36, - 36, - 36, - 232, - 255, - 255, - 255, - 100, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 160, - 255, - 255, - 255, - 217, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 160, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 8, - 8, - 8, - 8, - 3, - 154, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 96, - 130, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 87, - 89, - 255, - 255, - 255, - 251, - 13, - 0, - 18, - 255, - 255, - 255, - 255, - 54, - 23, - 252, - 255, - 255, - 255, - 162, - 67, - 170, - 255, - 255, - 255, - 240, - 6, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 19, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 8, - 0, - 0, - 0, - 7, - 111, - 196, - 239, - 254, - 238, - 192, - 99, - 3, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 10, - "height": 27, - "dx": 10, - "glyphBitmap": { - "height": 27, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 1, - 84, - 193, - 238, - 250, - 237, - 176, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 2, - 232, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 197, - 78, - 83, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 103, - 252, - 254, - 255, - 255, - 255, - 255, - 253, - 252, - 209, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 28, - 68, - 133, - 255, - 255, - 255, - 255, - 98, - 68, - 57, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 40, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 0, - "y": -6, - "width": 16, - "height": 27, - "dx": 15, - "glyphBitmap": { - "height": 27, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 53, - 0, - 0, - 0, - 0, - 2, - 92, - 188, - 236, - 250, - 222, - 151, - 27, - 0, - 26, - 194, - 246, - 15, - 0, - 0, - 6, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 59, - 225, - 255, - 255, - 103, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 205, - 82, - 0, - 9, - 242, - 255, - 255, - 255, - 141, - 74, - 165, - 255, - 255, - 255, - 208, - 60, - 1, - 0, - 0, - 69, - 255, - 255, - 255, - 221, - 1, - 0, - 10, - 251, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 224, - 255, - 255, - 253, - 11, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 204, - 0, - 0, - 3, - 245, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 27, - 253, - 255, - 255, - 255, - 76, - 4, - 104, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 7, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 10, - 0, - 0, - 0, - 0, - 0, - 61, - 244, - 255, - 247, - 255, - 255, - 255, - 246, - 152, - 15, - 0, - 0, - 0, - 0, - 0, - 34, - 242, - 255, - 217, - 6, - 41, - 65, - 49, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 221, - 60, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 236, - 209, - 182, - 146, - 82, - 6, - 0, - 0, - 0, - 0, - 59, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 45, - 0, - 0, - 0, - 0, - 52, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 5, - 0, - 0, - 6, - 166, - 255, - 255, - 149, - 78, - 102, - 126, - 166, - 240, - 255, - 255, - 255, - 67, - 0, - 0, - 142, - 255, - 255, - 238, - 12, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 109, - 0, - 17, - 252, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 109, - 0, - 66, - 255, - 255, - 255, - 255, - 157, - 92, - 71, - 67, - 97, - 198, - 255, - 255, - 255, - 73, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 8, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 78, - 0, - 0, - 0, - 0, - 63, - 155, - 210, - 239, - 254, - 255, - 255, - 240, - 209, - 145, - 38, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 1, - "y": 0, - "width": 14, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 14, - "pixelArray": [ - 48, - 252, - 252, - 252, - 252, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 76, - 5, - 97, - 192, - 242, - 239, - 152, - 8, - 0, - 48, - 255, - 255, - 255, - 255, - 113, - 204, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 2, - 48, - 255, - 255, - 255, - 255, - 253, - 146, - 78, - 203, - 255, - 255, - 255, - 255, - 29, - 48, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40, - 48, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 40 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 1, - "y": 0, - "width": 6, - "height": 27, - "dx": 8, - "glyphBitmap": { - "height": 27, - "width": 6, - "pixelArray": [ - 32, - 252, - 252, - 252, - 252, - 99, - 32, - 255, - 255, - 255, - 255, - 100, - 32, - 255, - 255, - 255, - 255, - 100, - 32, - 255, - 255, - 255, - 255, - 100, - 1, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 252, - 252, - 252, - 252, - 95, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96, - 32, - 255, - 255, - 255, - 255, - 96 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -5, - "width": 8, - "height": 32, - "dx": 8, - "glyphBitmap": { - "height": 32, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 213, - 252, - 252, - 252, - 178, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 252, - 252, - 252, - 170, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 172, - 0, - 0, - 3, - 239, - 255, - 255, - 255, - 165, - 41, - 70, - 160, - 255, - 255, - 255, - 255, - 126, - 120, - 255, - 255, - 255, - 255, - 255, - 254, - 42, - 120, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 94, - 231, - 254, - 245, - 196, - 87, - 1, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 1, - "y": 0, - "width": 15, - "height": 28, - "dx": 16, - "glyphBitmap": { - "height": 28, - "width": 15, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 71, - 252, - 252, - 252, - 252, - 157, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 7, - 218, - 255, - 255, - 255, - 242, - 25, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 117, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 28, - 245, - 255, - 255, - 255, - 218, - 6, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 169, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 66, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 69, - 213, - 255, - 255, - 255, - 250, - 39, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 178, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 170, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 205, - 5, - 216, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 75, - 0, - 127, - 255, - 255, - 255, - 237, - 7, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 39, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 206, - 255, - 255, - 255, - 183, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 117, - 255, - 255, - 255, - 254, - 29, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 124, - 0, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 221, - 2, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 64, - 60, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 21, - 252, - 255, - 255, - 255, - 163 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 2, - "y": 0, - "width": 5, - "height": 28, - "dx": 8, - "glyphBitmap": { - "height": 28, - "width": 5, - "pixelArray": [ - 249, - 252, - 252, - 252, - 134, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136, - 252, - 255, - 255, - 255, - 136 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 1, - "y": 0, - "width": 22, - "height": 20, - "dx": 24, - "glyphBitmap": { - "height": 20, - "width": 22, - "pixelArray": [ - 71, - 252, - 252, - 252, - 252, - 4, - 40, - 156, - 223, - 249, - 212, - 88, - 0, - 0, - 36, - 153, - 222, - 249, - 213, - 84, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 104, - 248, - 255, - 255, - 255, - 255, - 255, - 66, - 90, - 248, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 72, - 255, - 255, - 255, - 255, - 242, - 126, - 78, - 198, - 255, - 255, - 255, - 255, - 241, - 125, - 78, - 200, - 255, - 255, - 255, - 248, - 2, - 72, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 15, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16, - 72, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 16 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 1, - "y": 0, - "width": 14, - "height": 20, - "dx": 16, - "glyphBitmap": { - "height": 20, - "width": 14, - "pixelArray": [ - 71, - 252, - 252, - 252, - 252, - 60, - 10, - 111, - 200, - 245, - 234, - 131, - 2, - 0, - 72, - 255, - 255, - 255, - 255, - 118, - 221, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 72, - 255, - 255, - 255, - 255, - 248, - 133, - 84, - 227, - 255, - 255, - 255, - 245, - 0, - 72, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 4 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 1, - "y": 0, - "width": 13, - "height": 20, - "dx": 15, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 0, - 0, - 4, - 100, - 190, - 235, - 250, - 233, - 185, - 92, - 2, - 0, - 0, - 0, - 14, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 9, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 26, - 253, - 255, - 255, - 255, - 166, - 76, - 177, - 255, - 255, - 255, - 250, - 18, - 98, - 255, - 255, - 255, - 252, - 13, - 0, - 19, - 255, - 255, - 255, - 255, - 88, - 138, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 128, - 158, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 150, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 160, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 152, - 159, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 150, - 139, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 130, - 100, - 255, - 255, - 255, - 249, - 10, - 0, - 19, - 255, - 255, - 255, - 255, - 90, - 28, - 254, - 255, - 255, - 255, - 163, - 68, - 165, - 255, - 255, - 255, - 251, - 20, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 18, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 12, - 0, - 0, - 0, - 6, - 107, - 195, - 239, - 254, - 236, - 191, - 99, - 3, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 1, - "y": -6, - "width": 14, - "height": 26, - "dx": 16, - "glyphBitmap": { - "height": 26, - "width": 14, - "pixelArray": [ - 71, - 252, - 252, - 252, - 252, - 60, - 61, - 178, - 238, - 242, - 176, - 35, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 182, - 255, - 255, - 255, - 255, - 255, - 232, - 23, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 72, - 255, - 255, - 255, - 255, - 232, - 110, - 90, - 233, - 255, - 255, - 255, - 230, - 1, - 72, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 33, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 66, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 79, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 80, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 76, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 56, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 22, - 72, - 255, - 255, - 255, - 255, - 185, - 89, - 78, - 226, - 255, - 255, - 255, - 215, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 72, - 255, - 255, - 255, - 255, - 185, - 255, - 255, - 255, - 255, - 255, - 214, - 14, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 69, - 191, - 248, - 235, - 161, - 24, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 1, - "y": -6, - "width": 13, - "height": 26, - "dx": 16, - "glyphBitmap": { - "height": 26, - "width": 13, - "pixelArray": [ - 0, - 0, - 46, - 181, - 241, - 241, - 183, - 64, - 146, - 252, - 252, - 252, - 237, - 0, - 47, - 245, - 255, - 255, - 255, - 255, - 255, - 231, - 255, - 255, - 255, - 240, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 30, - 255, - 255, - 255, - 255, - 206, - 80, - 116, - 231, - 255, - 255, - 255, - 240, - 91, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 126, - 255, - 255, - 255, - 251, - 4, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 143, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 145, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 129, - 255, - 255, - 255, - 252, - 2, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 102, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 49, - 255, - 255, - 255, - 255, - 202, - 73, - 103, - 220, - 255, - 255, - 255, - 240, - 1, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 76, - 252, - 255, - 255, - 255, - 255, - 249, - 213, - 255, - 255, - 255, - 240, - 0, - 0, - 64, - 189, - 244, - 245, - 179, - 48, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 240 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 1, - "y": 0, - "width": 10, - "height": 20, - "dx": 11, - "glyphBitmap": { - "height": 20, - "width": 10, - "pixelArray": [ - 56, - 252, - 252, - 252, - 252, - 75, - 3, - 116, - 218, - 248, - 56, - 255, - 255, - 255, - 255, - 77, - 157, - 255, - 255, - 252, - 56, - 255, - 255, - 255, - 255, - 182, - 255, - 255, - 255, - 252, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 56, - 255, - 255, - 255, - 255, - 255, - 188, - 49, - 10, - 73, - 56, - 255, - 255, - 255, - 255, - 209, - 10, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 0, - "y": 0, - "width": 13, - "height": 20, - "dx": 13, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 45, - 162, - 226, - 250, - 231, - 168, - 46, - 0, - 0, - 0, - 0, - 0, - 94, - 252, - 255, - 255, - 255, - 255, - 255, - 251, - 83, - 0, - 0, - 0, - 40, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 31, - 0, - 0, - 145, - 255, - 255, - 255, - 211, - 84, - 128, - 254, - 255, - 255, - 148, - 0, - 0, - 198, - 255, - 255, - 255, - 75, - 0, - 0, - 144, - 255, - 255, - 230, - 1, - 0, - 207, - 255, - 255, - 255, - 115, - 0, - 0, - 38, - 255, - 182, - 73, - 1, - 0, - 158, - 255, - 255, - 255, - 247, - 56, - 0, - 0, - 33, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 243, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 249, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 195, - 255, - 255, - 255, - 255, - 253, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 178, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 148, - 255, - 255, - 255, - 255, - 253, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 118, - 255, - 255, - 255, - 255, - 215, - 2, - 0, - 0, - 2, - 65, - 23, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 53, - 19, - 129, - 224, - 255, - 109, - 0, - 0, - 2, - 215, - 255, - 255, - 255, - 90, - 28, - 255, - 255, - 255, - 217, - 6, - 0, - 0, - 193, - 255, - 255, - 255, - 84, - 0, - 188, - 255, - 255, - 255, - 186, - 73, - 124, - 255, - 255, - 255, - 255, - 34, - 0, - 54, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 99, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 24, - 0, - 0, - 0, - 0, - 48, - 163, - 228, - 254, - 242, - 197, - 109, - 8, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 11, - "height": 26, - "dx": 11, - "glyphBitmap": { - "height": 26, - "width": 11, - "pixelArray": [ - 0, - 0, - 62, - 124, - 124, - 124, - 124, - 4, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 99, - 252, - 254, - 255, - 255, - 255, - 255, - 253, - 252, - 233, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 27, - 68, - 162, - 255, - 255, - 255, - 255, - 74, - 68, - 63, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 174, - 69, - 74, - 12, - 0, - 0, - 10, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 98, - 204, - 247, - 252, - 241, - 221, - 27 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 1, - "y": 0, - "width": 13, - "height": 20, - "dx": 16, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 24, - 0, - 0, - 174, - 252, - 252, - 252, - 205, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 176, - 255, - 255, - 255, - 208, - 104, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 177, - 255, - 255, - 255, - 208, - 91, - 255, - 255, - 255, - 255, - 159, - 70, - 153, - 253, - 255, - 255, - 255, - 208, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 203, - 255, - 255, - 255, - 255, - 255, - 179, - 195, - 255, - 255, - 255, - 208, - 0, - 33, - 191, - 250, - 236, - 178, - 74, - 1, - 176, - 255, - 255, - 255, - 208 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 13, - "height": 20, - "dx": 13, - "glyphBitmap": { - "height": 20, - "width": 13, - "pixelArray": [ - 124, - 252, - 252, - 252, - 225, - 0, - 0, - 0, - 119, - 252, - 252, - 252, - 214, - 78, - 255, - 255, - 255, - 254, - 8, - 0, - 0, - 154, - 255, - 255, - 255, - 170, - 30, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 187, - 255, - 255, - 255, - 123, - 1, - 239, - 255, - 255, - 255, - 72, - 0, - 0, - 220, - 255, - 255, - 255, - 75, - 0, - 191, - 255, - 255, - 255, - 105, - 0, - 3, - 250, - 255, - 255, - 255, - 28, - 0, - 143, - 255, - 255, - 255, - 139, - 0, - 30, - 255, - 255, - 255, - 237, - 1, - 0, - 96, - 255, - 255, - 255, - 172, - 0, - 63, - 255, - 255, - 255, - 190, - 0, - 0, - 48, - 255, - 255, - 255, - 205, - 0, - 96, - 255, - 255, - 255, - 142, - 0, - 0, - 7, - 251, - 255, - 255, - 238, - 0, - 129, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 16, - 162, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 49, - 195, - 255, - 255, - 251, - 7, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 82, - 228, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 123, - 254, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 186, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 246, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 243, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 0, - "y": 0, - "width": 19, - "height": 20, - "dx": 20, - "glyphBitmap": { - "height": 20, - "width": 19, - "pixelArray": [ - 26, - 252, - 252, - 252, - 154, - 0, - 0, - 0, - 217, - 252, - 252, - 149, - 0, - 0, - 0, - 215, - 252, - 252, - 178, - 1, - 245, - 255, - 255, - 188, - 0, - 0, - 8, - 253, - 255, - 255, - 188, - 0, - 0, - 3, - 250, - 255, - 255, - 142, - 0, - 208, - 255, - 255, - 220, - 0, - 0, - 44, - 255, - 255, - 255, - 225, - 0, - 0, - 32, - 255, - 255, - 255, - 104, - 0, - 170, - 255, - 255, - 250, - 3, - 0, - 84, - 255, - 255, - 255, - 255, - 9, - 0, - 67, - 255, - 255, - 255, - 65, - 0, - 133, - 255, - 255, - 255, - 29, - 0, - 124, - 255, - 255, - 255, - 255, - 45, - 0, - 102, - 255, - 255, - 255, - 27, - 0, - 96, - 255, - 255, - 255, - 61, - 0, - 164, - 255, - 255, - 255, - 255, - 82, - 0, - 137, - 255, - 255, - 243, - 1, - 0, - 58, - 255, - 255, - 255, - 94, - 0, - 205, - 255, - 255, - 255, - 255, - 120, - 0, - 172, - 255, - 255, - 205, - 0, - 0, - 21, - 255, - 255, - 255, - 126, - 2, - 245, - 255, - 246, - 255, - 255, - 158, - 0, - 207, - 255, - 255, - 167, - 0, - 0, - 1, - 239, - 255, - 255, - 158, - 29, - 255, - 255, - 177, - 250, - 255, - 196, - 1, - 242, - 255, - 255, - 128, - 0, - 0, - 0, - 202, - 255, - 255, - 191, - 69, - 255, - 255, - 127, - 212, - 255, - 233, - 20, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 164, - 255, - 255, - 223, - 109, - 255, - 255, - 82, - 169, - 255, - 255, - 70, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 127, - 255, - 255, - 252, - 153, - 255, - 255, - 37, - 126, - 255, - 255, - 142, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 222, - 255, - 246, - 3, - 83, - 255, - 255, - 215, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 4, - 249, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 81, - 255, - 255, - 255, - 250, - 4, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 215, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 14, - "height": 20, - "dx": 14, - "glyphBitmap": { - "height": 20, - "width": 14, - "pixelArray": [ - 96, - 252, - 252, - 252, - 242, - 17, - 0, - 0, - 2, - 223, - 252, - 252, - 242, - 15, - 9, - 236, - 255, - 255, - 255, - 117, - 0, - 0, - 67, - 255, - 255, - 255, - 156, - 0, - 0, - 133, - 255, - 255, - 255, - 225, - 4, - 0, - 164, - 255, - 255, - 255, - 51, - 0, - 0, - 27, - 251, - 255, - 255, - 255, - 84, - 15, - 246, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 195, - 100, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 226, - 255, - 255, - 239, - 10, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 229, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 248, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 151, - 255, - 255, - 255, - 253, - 32, - 0, - 0, - 0, - 9, - 239, - 255, - 255, - 224, - 7, - 229, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 133, - 0, - 121, - 255, - 255, - 255, - 240, - 12, - 0, - 0, - 189, - 255, - 255, - 255, - 42, - 0, - 18, - 246, - 255, - 255, - 255, - 106, - 0, - 34, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 216, - 2, - 131, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 72 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -5, - "width": 14, - "height": 25, - "dx": 14, - "glyphBitmap": { - "height": 25, - "width": 14, - "pixelArray": [ - 171, - 252, - 252, - 252, - 180, - 0, - 0, - 0, - 5, - 248, - 252, - 252, - 252, - 91, - 112, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 36, - 50, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 82, - 255, - 255, - 255, - 236, - 1, - 3, - 241, - 255, - 255, - 255, - 66, - 0, - 0, - 122, - 255, - 255, - 255, - 180, - 0, - 0, - 180, - 255, - 255, - 255, - 112, - 0, - 0, - 163, - 255, - 255, - 255, - 124, - 0, - 0, - 117, - 255, - 255, - 255, - 158, - 0, - 0, - 204, - 255, - 255, - 255, - 68, - 0, - 0, - 54, - 255, - 255, - 255, - 205, - 0, - 1, - 244, - 255, - 255, - 254, - 15, - 0, - 0, - 4, - 243, - 255, - 255, - 248, - 4, - 29, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 42, - 70, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 88, - 110, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 135, - 151, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 181, - 191, - 255, - 255, - 243, - 3, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 227, - 232, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 248, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 248, - 6, - 0, - 0, - 0, - 0, - 0, - 12, - 71, - 101, - 182, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 253, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 241, - 207, - 144, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 1, - "y": 0, - "width": 11, - "height": 20, - "dx": 12, - "glyphBitmap": { - "height": 20, - "width": 11, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 87, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 28, - 68, - 68, - 68, - 68, - 172, - 255, - 255, - 255, - 241, - 10, - 0, - 0, - 0, - 0, - 3, - 227, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 209, - 1, - 0, - 0, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 248, - 18, - 0, - 0, - 0, - 0, - 2, - 224, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 223, - 2, - 0, - 0, - 0, - 0, - 23, - 251, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 254, - 30, - 0, - 0, - 0, - 0, - 2, - 220, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 248, - 67, - 60, - 60, - 60, - 60, - 18, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 1, - "y": -7, - "width": 10, - "height": 35, - "dx": 11, - "glyphBitmap": { - "height": 35, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 5, - 112, - 198, - 242, - 252, - 252, - 75, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 175, - 76, - 21, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 36, - 108, - 254, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 191, - 5, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 220, - 32, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 228, - 19, - 0, - 0, - 0, - 4, - 52, - 245, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 253, - 7, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 116, - 9, - 1, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 4, - 213, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 34, - 185, - 253, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 14, - 53, - 64, - 64, - 19 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 2, - "y": -6, - "width": 5, - "height": 34, - "dx": 8, - "glyphBitmap": { - "height": 34, - "width": 5, - "pixelArray": [ - 198, - 252, - 252, - 252, - 35, - 201, - 255, - 255, - 255, - 35, - 201, - 255, - 255, - 255, - 35, - 201, - 255, - 255, - 255, - 35, - 202, - 255, - 255, - 255, - 35, - 202, - 255, - 255, - 255, - 35, - 202, - 255, - 255, - 255, - 35, - 202, - 255, - 255, - 255, - 35, - 203, - 255, - 255, - 255, - 35, - 203, - 255, - 255, - 255, - 34, - 203, - 255, - 255, - 255, - 34, - 203, - 255, - 255, - 255, - 34, - 204, - 255, - 255, - 255, - 34, - 204, - 255, - 255, - 255, - 34, - 204, - 255, - 255, - 255, - 34, - 204, - 255, - 255, - 255, - 34, - 204, - 255, - 255, - 255, - 34, - 205, - 255, - 255, - 255, - 34, - 205, - 255, - 255, - 255, - 33, - 205, - 255, - 255, - 255, - 33, - 205, - 255, - 255, - 255, - 33, - 206, - 255, - 255, - 255, - 33, - 206, - 255, - 255, - 255, - 33, - 206, - 255, - 255, - 255, - 33, - 206, - 255, - 255, - 255, - 33, - 207, - 255, - 255, - 255, - 33, - 207, - 255, - 255, - 255, - 32, - 207, - 255, - 255, - 255, - 32, - 207, - 255, - 255, - 255, - 32, - 208, - 255, - 255, - 255, - 32, - 208, - 255, - 255, - 255, - 32, - 208, - 255, - 255, - 255, - 32, - 208, - 255, - 255, - 255, - 32, - 208, - 255, - 255, - 255, - 32 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 1, - "y": -7, - "width": 10, - "height": 35, - "dx": 12, - "glyphBitmap": { - "height": 35, - "width": 10, - "pixelArray": [ - 146, - 252, - 251, - 233, - 178, - 71, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 40, - 88, - 219, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 226, - 81, - 18, - 0, - 0, - 0, - 36, - 234, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 80, - 247, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 68, - 253, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 200, - 24, - 2, - 0, - 0, - 3, - 248, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 1, - 21, - 179, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 241, - 3, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 243, - 145, - 6, - 0, - 0, - 0, - 37, - 64, - 63, - 45, - 5, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 1, - "y": 11, - "width": 14, - "height": 7, - "dx": 15, - "glyphBitmap": { - "height": 7, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 22, - 50, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 149, - 251, - 255, - 235, - 122, - 12, - 0, - 0, - 2, - 116, - 22, - 0, - 17, - 200, - 255, - 255, - 255, - 255, - 255, - 234, - 124, - 74, - 186, - 255, - 200, - 9, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 30, - 29, - 235, - 195, - 49, - 26, - 120, - 237, - 255, - 255, - 255, - 255, - 239, - 53, - 0, - 0, - 46, - 6, - 0, - 0, - 0, - 14, - 121, - 219, - 251, - 173, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 128, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 129, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 130, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 131, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 132, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 133, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 134, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 135, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 136, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 137, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 138, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 139, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 140, - "x": 2, - "y": 0, - "width": 29, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 142, - 203, - 238, - 251, - 238, - 203, - 142, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 248, - 255, - 255, - 255, - 255, - 220, - 119, - 61, - 39, - 59, - 117, - 218, - 255, - 255, - 255, - 255, - 248, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 137, - 7, - 0, - 0, - 0, - 0, - 0, - 6, - 136, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 220, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 220, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 69, - 221, - 252, - 252, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 252, - 252, - 222, - 71, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 56, - 24, - 56, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 13, - 0, - 0, - 0, - 0, - 0, - 14, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 19, - 0, - 0, - 0, - 19, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 26, - 0, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 3, - 0, - 0, - 0, - 0, - 0, - 3, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 74, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 76 - ], - "width": 29 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61630 - } - }, - { - "encoding": 141, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 142, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 143, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 144, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 145, - "x": 0, - "y": 3, - "width": 21, - "height": 13, - "dx": 21, - "glyphBitmap": { - "height": 13, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 17, - 52, - 37, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 178, - 255, - 255, - 255, - 226, - 106, - 2, - 0, - 0, - 8, - 113, - 197, - 229, - 202, - 125, - 13, - 0, - 0, - 0, - 15, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 6, - 36, - 215, - 255, - 255, - 255, - 255, - 255, - 214, - 22, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 1, - 229, - 255, - 255, - 238, - 158, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 250, - 255, - 255, - 255, - 28, - 27, - 255, - 255, - 255, - 52, - 0, - 1, - 104, - 251, - 255, - 255, - 255, - 255, - 228, - 62, - 0, - 37, - 246, - 255, - 255, - 88, - 50, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 242, - 30, - 0, - 0, - 0, - 189, - 255, - 255, - 114, - 41, - 255, - 255, - 250, - 13, - 0, - 0, - 19, - 200, - 255, - 255, - 255, - 255, - 145, - 2, - 0, - 2, - 219, - 255, - 255, - 103, - 6, - 251, - 255, - 255, - 164, - 47, - 95, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 111, - 172, - 255, - 255, - 255, - 59, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 3, - 0, - 59, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 54, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 100, - 251, - 255, - 255, - 255, - 255, - 215, - 42, - 0, - 0, - 79, - 222, - 255, - 255, - 255, - 231, - 84, - 0, - 0, - 0, - 0, - 0, - 35, - 119, - 163, - 149, - 84, - 6, - 0, - 0, - 0, - 0, - 4, - 53, - 85, - 58, - 6, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 8734 - } - }, - { - "encoding": 146, - "x": 1, - "y": 0, - "width": 9, - "height": 23, - "dx": 12, - "glyphBitmap": { - "height": 23, - "width": 9, - "pixelArray": [ - 160, - 176, - 176, - 176, - 176, - 176, - 176, - 176, - 152, - 232, - 139, - 112, - 112, - 112, - 112, - 112, - 146, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 48, - 0, - 0, - 0, - 0, - 0, - 60, - 220, - 232, - 71, - 28, - 28, - 28, - 28, - 28, - 82, - 220, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 127 - } - }, - { - "encoding": 147, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 222, - 231, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 246, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 203, - 217, - 79, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 46, - 205, - 212, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 245, - 26, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 91, - 240, - 255, - 235, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 154, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 30, - 195, - 247, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 253, - 43, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 5, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 220, - 255, - 255, - 255, - 179, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 167, - 171, - 58, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 163, - 174, - 43, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 160, - 24, - 1, - 187, - 255, - 255, - 255, - 203, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 225, - 1, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 241, - 113, - 48, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 249, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 1, - 101, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 190, - 185, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 98, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 182, - 255, - 255, - 255, - 255, - 255, - 166, - 30, - 0, - 1, - 68, - 78, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 94, - 239, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 28, - 28, - 28, - 28, - 28, - 53, - 201, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 28, - 28, - 13, - 0, - 0, - 91, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 249, - 118, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 250, - 15, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 247, - 13, - 77, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 238, - 101, - 0, - 0, - 1, - 4, - 4, - 4, - 4, - 4, - 62, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 171, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 142, - 250, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 226, - 172, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 238, - 255, - 255, - 255, - 255, - 249, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 183, - 255, - 255, - 250, - 110, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 184, - 38, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 253, - 15, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 223, - 79, - 1, - 143, - 129, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 3, - 41, - 188, - 255, - 255, - 255, - 247, - 9, - 0, - 0, - 0, - 0, - 64, - 229, - 238, - 127, - 9, - 0, - 44, - 252, - 255, - 161, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 122, - 237, - 102, - 0, - 1, - 85, - 213, - 231, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 1, - 192, - 255, - 255, - 255, - 173, - 0, - 85, - 53, - 50, - 71, - 12, - 92, - 245, - 255, - 255, - 236, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 48, - 0, - 255, - 255, - 255, - 255, - 32, - 20, - 240, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 164, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 117, - 255, - 255, - 255, - 252, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 250, - 33, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 8, - 223, - 255, - 255, - 248, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 216, - 238, - 98, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 57, - 224, - 233, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 247, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 228, - 235, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62265 - } - }, - { - "encoding": 148, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 149, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 150, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 151, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 152, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 153, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 154, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 155, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 156, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 157, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 158, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 159, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 160, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 161, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 162, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 163, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 8, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 164, - "x": 0, - "y": -4, - "width": 20, - "height": 31, - "dx": 19, - "glyphBitmap": { - "height": 31, - "pixelArray": [ - 20, - 167, - 245, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 199, - 57, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 13, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 255, - 255, - 255, - 79, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 249, - 255, - 255, - 88, - 242, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 73, - 174, - 255, - 255, - 229, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 242, - 13, - 57, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 133, - 0, - 0, - 159, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 231, - 255, - 255, - 224, - 13, - 0, - 0, - 16, - 227, - 255, - 255, - 234, - 23, - 0, - 0, - 0, - 0, - 0, - 1, - 186, - 255, - 255, - 254, - 63, - 0, - 0, - 0, - 0, - 61, - 253, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 242, - 255, - 255, - 79, - 0, - 0, - 0, - 18, - 234, - 255, - 255, - 192, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 212, - 1, - 0, - 0, - 140, - 255, - 255, - 236, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 191, - 255, - 255, - 55, - 0, - 6, - 240, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 127, - 0, - 48, - 255, - 255, - 227, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 154, - 0, - 69, - 255, - 255, - 205, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 131, - 0, - 44, - 255, - 255, - 236, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 252, - 255, - 255, - 66, - 0, - 2, - 230, - 255, - 242, - 97, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 184, - 255, - 255, - 215, - 2, - 0, - 0, - 136, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 22, - 239, - 255, - 255, - 111, - 5, - 0, - 0, - 0, - 0, - 0, - 50, - 250, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 11, - 217, - 255, - 255, - 241, - 32, - 0, - 0, - 0, - 0, - 0, - 1, - 185, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 89, - 0, - 0, - 39, - 196, - 91, - 0, - 0, - 27, - 238, - 255, - 255, - 226, - 15, - 0, - 47, - 254, - 255, - 255, - 168, - 0, - 1, - 113, - 245, - 255, - 255, - 171, - 16, - 0, - 87, - 255, - 255, - 255, - 139, - 0, - 167, - 255, - 255, - 232, - 19, - 10, - 174, - 255, - 255, - 255, - 255, - 255, - 218, - 47, - 0, - 171, - 255, - 255, - 243, - 12, - 240, - 255, - 255, - 112, - 2, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 30, - 33, - 255, - 255, - 255, - 70, - 255, - 255, - 255, - 76, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 248, - 255, - 255, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 14, - 21, - 169, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 202, - 59, - 0 - ], - "width": 20 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 24, - "encoding": 59393 - } - } - ] - }, - { - "name": "Oswald38", - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38 - }, - "bpp": 8, - "height": 71, - "ascent": 57, - "descent": 14, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 13, - "glyphBitmap": { - "height": 0, - "width": 0, - "pixelArray": [] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 2, - "y": 0, - "width": 8, - "height": 43, - "dx": 12, - "glyphBitmap": { - "height": 43, - "width": 8, - "pixelArray": [ - 115, - 252, - 252, - 252, - 252, - 252, - 252, - 176, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 2, - 253, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 237, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 203, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 2, - 254, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 238, - 255, - 255, - 247, - 1, - 0, - 0, - 0, - 221, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 252, - 252, - 252, - 252, - 252, - 252, - 119, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 120 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 3, - "y": 28, - "width": 16, - "height": 15, - "dx": 20, - "glyphBitmap": { - "height": 15, - "width": 16, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 102, - 0, - 0, - 237, - 252, - 252, - 252, - 252, - 252, - 71, - 204, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 23, - 204, - 255, - 255, - 255, - 255, - 253, - 10, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 228, - 0, - 204, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 178, - 0, - 204, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 129, - 0, - 204, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 79, - 0, - 204, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 29, - 0, - 204, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 236, - 1, - 0, - 204, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 186, - 0, - 0, - 204, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 136, - 0, - 0, - 204, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 86, - 0, - 0, - 204, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 37, - 0, - 0, - 204, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 242, - 2, - 0, - 0, - 204, - 255, - 255, - 233, - 1, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 193, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 3, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 1, - "y": 0, - "width": 25, - "height": 43, - "dx": 27, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 252, - 252, - 252, - 252, - 252, - 35, - 0, - 0, - 0, - 124, - 252, - 252, - 252, - 252, - 252, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 242, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 6, - 254, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 248, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 255, - 249, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 235, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 26, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 20, - 20, - 20, - 90, - 255, - 255, - 255, - 255, - 255, - 171, - 20, - 20, - 20, - 22, - 248, - 255, - 255, - 255, - 255, - 245, - 21, - 20, - 20, - 1, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 2, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 6, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 0, - 2, - 20, - 20, - 175, - 255, - 255, - 255, - 255, - 255, - 83, - 20, - 20, - 20, - 105, - 255, - 255, - 255, - 255, - 255, - 154, - 20, - 20, - 20, - 20, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 253, - 6, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 5, - 253, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 241, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 254, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 1, - "y": -5, - "width": 24, - "height": 53, - "dx": 26, - "glyphBitmap": { - "height": 53, - "width": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 124, - 124, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 62, - 102, - 133, - 255, - 255, - 165, - 114, - 54, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 175, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 112, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 7, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 42, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 13, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 170, - 134, - 147, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 36, - 0, - 0, - 0, - 8, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 22, - 247, - 255, - 255, - 255, - 255, - 255, - 252, - 12, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 242, - 192, - 141, - 90, - 28, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 90, - 39, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 38, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 1, - 34, - 86, - 138, - 190, - 241, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 2, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 63, - 0, - 0, - 0, - 0, - 2, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 4, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 112, - 24, - 2, - 40, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 45, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 1, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 39, - 0, - 0, - 0, - 0, - 0, - 1, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 75, - 152, - 197, - 238, - 253, - 255, - 255, - 255, - 232, - 162, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 34, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 128, - 128, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 2, - "y": 0, - "width": 48, - "height": 43, - "dx": 51, - "glyphBitmap": { - "height": 43, - "width": 48, - "pixelArray": [ - 0, - 0, - 0, - 0, - 18, - 105, - 175, - 215, - 244, - 251, - 242, - 210, - 171, - 97, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 244, - 252, - 252, - 252, - 252, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 111, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 100, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 243, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 55, - 24, - 62, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 224, - 5, - 0, - 0, - 0, - 14, - 241, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 6, - 243, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 247, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 4, - 238, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 223, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 242, - 17, - 0, - 0, - 0, - 33, - 253, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 52, - 17, - 65, - 212, - 255, - 255, - 255, - 255, - 255, - 254, - 21, - 0, - 0, - 21, - 254, - 255, - 255, - 255, - 250, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 4, - 74, - 158, - 202, - 238, - 250, - 247, - 223, - 185, - 128, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 45, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 56, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 17, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 2, - 233, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 72, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 17, - 0, - 0, - 0, - 0, - 0, - 82, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 78, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 230, - 1, - 0, - 0, - 15, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 96, - 175, - 217, - 250, - 255, - 248, - 214, - 172, - 91, - 10, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 227, - 83, - 27, - 41, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 252, - 255, - 255, - 255, - 253, - 18, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 239, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 227, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 235, - 2, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 249, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 249, - 10, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 240, - 4, - 0, - 0, - 0, - 0, - 0, - 17, - 253, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 1, - 192, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 236, - 83, - 20, - 37, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 245, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 136, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 59, - 151, - 199, - 238, - 253, - 249, - 223, - 184, - 122, - 29, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 2, - "y": -1, - "width": 27, - "height": 45, - "dx": 31, - "glyphBitmap": { - "height": 45, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 71, - 112, - 122, - 110, - 72, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 175, - 252, - 255, - 255, - 255, - 255, - 255, - 253, - 186, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 115, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 154, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 6, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 239, - 2, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 244, - 2, - 0, - 0, - 0, - 12, - 252, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 244, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 227, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 9, - 239, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 231, - 2, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 247, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 249, - 255, - 255, - 255, - 255, - 255, - 57, - 3, - 218, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 145, - 90, - 255, - 255, - 255, - 255, - 255, - 198, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 246, - 255, - 255, - 255, - 255, - 232, - 228, - 255, - 255, - 255, - 255, - 237, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 124, - 124, - 124, - 124, - 124, - 63, - 0, - 0, - 0, - 1, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 4, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 21, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 254, - 156, - 255, - 255, - 255, - 255, - 255, - 237, - 18, - 0, - 0, - 4, - 252, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 23, - 249, - 255, - 255, - 255, - 255, - 255, - 171, - 5, - 217, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 248, - 5, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 253, - 45, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 190, - 1, - 158, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 11, - 251, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 47, - 253, - 255, - 255, - 255, - 255, - 255, - 87, - 232, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 22, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 5, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 6, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 13, - 0, - 0, - 0, - 11, - 253, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 4, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 31, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 251, - 61, - 0, - 0, - 0, - 34, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 176, - 82, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 168, - 147, - 193, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 1, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 32, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 22, - 75, - 248, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 39, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 14, - 0, - 0, - 62, - 234, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 7, - 120, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 182, - 67, - 0, - 0, - 0, - 0, - 0, - 26, - 180, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 48, - 93, - 122, - 125, - 106, - 69, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 98, - 125, - 75 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 3, - "y": 28, - "width": 7, - "height": 15, - "dx": 17, - "glyphBitmap": { - "height": 15, - "width": 7, - "pixelArray": [ - 107, - 252, - 252, - 252, - 252, - 252, - 163, - 108, - 255, - 255, - 255, - 255, - 255, - 121, - 108, - 255, - 255, - 255, - 255, - 255, - 76, - 108, - 255, - 255, - 255, - 255, - 255, - 31, - 108, - 255, - 255, - 255, - 255, - 241, - 1, - 108, - 255, - 255, - 255, - 255, - 196, - 0, - 108, - 255, - 255, - 255, - 255, - 151, - 0, - 108, - 255, - 255, - 255, - 255, - 106, - 0, - 108, - 255, - 255, - 255, - 255, - 61, - 0, - 108, - 255, - 255, - 255, - 255, - 17, - 0, - 108, - 255, - 255, - 255, - 227, - 0, - 0, - 108, - 255, - 255, - 255, - 181, - 0, - 0, - 108, - 255, - 255, - 255, - 136, - 0, - 0, - 108, - 255, - 255, - 255, - 91, - 0, - 0, - 2, - 4, - 4, - 4, - 2, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 3, - "y": -11, - "width": 13, - "height": 55, - "dx": 17, - "glyphBitmap": { - "height": 55, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 32, - 83, - 117, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 97, - 213, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 29, - 190, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 31, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 2, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 178, - 29, - 0, - 0, - 3, - 222, - 255, - 255, - 255, - 255, - 255, - 246, - 57, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 245, - 15, - 0, - 0, - 0, - 0, - 3, - 233, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 3, - 253, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 1, - 246, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 29, - 253, - 255, - 255, - 255, - 255, - 255, - 184, - 2, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 30, - 1, - 0, - 0, - 0, - 36, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 1, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 233, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 105, - 180, - 230, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 3 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 1, - "y": -11, - "width": 13, - "height": 55, - "dx": 15, - "glyphBitmap": { - "height": 55, - "width": 13, - "pixelArray": [ - 39, - 115, - 77, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 201, - 81, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 172, - 18, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 17, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 47, - 184, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 79, - 254, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 29, - 253, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 5, - 254, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 251, - 1, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 1, - 249, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 239, - 4, - 0, - 0, - 0, - 0, - 5, - 239, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 10, - 217, - 255, - 255, - 255, - 255, - 255, - 236, - 7, - 0, - 0, - 1, - 39, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 15, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 254, - 115, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 222, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 224, - 173, - 92, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 2, - "y": 24, - "width": 19, - "height": 19, - "dx": 22, - "glyphBitmap": { - "height": 19, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 252, - 252, - 252, - 252, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 20, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 247, - 1, - 0, - 0, - 0, - 7, - 16, - 0, - 0, - 72, - 242, - 123, - 11, - 0, - 0, - 166, - 255, - 255, - 255, - 221, - 0, - 0, - 2, - 91, - 224, - 128, - 0, - 0, - 168, - 255, - 255, - 231, - 103, - 5, - 140, - 255, - 255, - 255, - 196, - 0, - 68, - 206, - 255, - 255, - 224, - 2, - 17, - 248, - 255, - 255, - 255, - 255, - 217, - 180, - 255, - 255, - 255, - 204, - 185, - 255, - 255, - 255, - 255, - 255, - 67, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 40, - 144, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 176, - 74, - 0, - 0, - 7, - 84, - 182, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 117, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 234, - 255, - 255, - 255, - 255, - 255, - 254, - 74, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 251, - 255, - 255, - 255, - 206, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 218, - 255, - 255, - 255, - 246, - 24, - 217, - 255, - 255, - 255, - 246, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 142, - 0, - 95, - 255, - 255, - 255, - 255, - 209, - 8, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 249, - 26, - 0, - 5, - 223, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 35, - 179, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 212, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 221, - 251, - 31, - 0, - 0, - 0, - 7, - 228, - 239, - 109, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 75, - 0, - 0, - 0, - 0, - 0, - 63, - 21, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 1, - "y": 10, - "width": 21, - "height": 23, - "dx": 23, - "glyphBitmap": { - "height": 23, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 252, - 252, - 252, - 252, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 12, - 12, - 12, - 12, - 12, - 12, - 43, - 255, - 255, - 255, - 255, - 249, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 9, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 36, - 255, - 255, - 255, - 255, - 249, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 2, - "y": -8, - "width": 8, - "height": 15, - "dx": 11, - "glyphBitmap": { - "height": 15, - "width": 8, - "pixelArray": [ - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 12, - 0, - 0, - 2, - 193, - 255, - 255, - 205, - 0, - 0, - 11, - 156, - 255, - 255, - 255, - 109, - 0, - 72, - 224, - 255, - 255, - 255, - 208, - 8, - 0, - 76, - 255, - 255, - 255, - 211, - 29, - 0, - 0, - 11, - 249, - 225, - 120, - 9, - 0, - 0, - 0, - 0, - 35, - 2, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 2, - "y": 13, - "width": 14, - "height": 7, - "dx": 19, - "glyphBitmap": { - "height": 7, - "width": 14, - "pixelArray": [ - 1, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 10, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 2, - "y": 0, - "width": 8, - "height": 7, - "dx": 11, - "glyphBitmap": { - "height": 7, - "width": 8, - "pixelArray": [ - 142, - 252, - 252, - 252, - 252, - 252, - 252, - 119, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 120 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 1, - "y": 0, - "width": 19, - "height": 43, - "dx": 21, - "glyphBitmap": { - "height": 43, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 252, - 252, - 252, - 252, - 234, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 241, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 242, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 237, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 254, - 255, - 255, - 255, - 245, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 232, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 252, - 255, - 255, - 255, - 248, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 227, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 225, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 249, - 255, - 255, - 255, - 251, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 222, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 246, - 255, - 255, - 255, - 253, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 235, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 243, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 2, - "y": -1, - "width": 23, - "height": 45, - "dx": 27, - "glyphBitmap": { - "height": 45, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 47, - 86, - 114, - 122, - 115, - 87, - 47, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 146, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 148, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 5, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 7, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 175, - 136, - 166, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 56, - 0, - 0, - 0, - 43, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 19, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 5, - 0, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 17, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 63, - 0, - 0, - 0, - 51, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 171, - 128, - 165, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 2, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 5, - 0, - 0, - 0, - 58, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 99, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 132, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 139, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 36, - 81, - 117, - 126, - 118, - 84, - 39, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 4, - "y": 0, - "width": 15, - "height": 43, - "dx": 27, - "glyphBitmap": { - "height": 43, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 246, - 252, - 252, - 252, - 252, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 114, - 252, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 57, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 1, - 70, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 21, - 115, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 108, - 255, - 255, - 255, - 255, - 254, - 202, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 108, - 255, - 217, - 149, - 82, - 18, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 33, - 30, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 216 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 2, - "y": 0, - "width": 23, - "height": 44, - "dx": 27, - "glyphBitmap": { - "height": 44, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 74, - 108, - 121, - 119, - 99, - 60, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 120, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 187, - 90, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 42, - 0, - 0, - 0, - 0, - 27, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 7, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 28, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 142, - 149, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 4, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 1, - 0, - 0, - 6, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 2, - 0, - 0, - 0, - 0, - 20, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 2, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 15, - 48, - 48, - 48, - 48, - 48, - 48, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 186, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 2, - "y": -1, - "width": 23, - "height": 45, - "dx": 26, - "glyphBitmap": { - "height": 45, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 51, - 91, - 117, - 122, - 112, - 80, - 41, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 168, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 144, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 126, - 4, - 0, - 0, - 0, - 0, - 0, - 23, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 4, - 0, - 0, - 0, - 2, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 44, - 0, - 1, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 155, - 136, - 170, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 12, - 0, - 0, - 0, - 30, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 9, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 190, - 220, - 220, - 220, - 220, - 220, - 220, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 27, - 88, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 138, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 8, - 41, - 122, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 90, - 104, - 104, - 104, - 104, - 104, - 104, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 1, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 3, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 14, - 0, - 0, - 0, - 33, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 154, - 128, - 163, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 1, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 60, - 0, - 0, - 0, - 0, - 18, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 74, - 179, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 146, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 53, - 95, - 120, - 126, - 116, - 86, - 47, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 1, - "y": 0, - "width": 25, - "height": 43, - "dx": 27, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 221, - 255, - 255, - 255, - 255, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 249, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 175, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 85, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 243, - 9, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 245, - 255, - 255, - 255, - 255, - 162, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 222, - 255, - 255, - 255, - 255, - 235, - 5, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 246, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 3, - 224, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 221, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 2, - "y": -1, - "width": 23, - "height": 44, - "dx": 26, - "glyphBitmap": { - "height": 44, - "width": 23, - "pixelArray": [ - 0, - 117, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 207, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 6, - 8, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 116, - 5, - 95, - 180, - 229, - 255, - 255, - 245, - 203, - 140, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 152, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 148, - 7, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 4, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 23, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 51, - 8, - 37, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 2, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 249, - 31, - 0, - 0, - 0, - 0, - 0, - 17, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 181, - 228, - 228, - 228, - 228, - 228, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 21, - 48, - 48, - 48, - 48, - 48, - 48, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 2, - 232, - 255, - 255, - 255, - 255, - 255, - 230, - 1, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 69, - 0, - 0, - 0, - 27, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 23, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 145, - 166, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 2, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 12, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 89, - 198, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 147, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 63, - 99, - 119, - 126, - 118, - 85, - 43, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 2, - "y": -1, - "width": 24, - "height": 45, - "dx": 27, - "glyphBitmap": { - "height": 45, - "width": 24, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 61, - 103, - 120, - 120, - 101, - 63, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 189, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 193, - 96, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 4, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 144, - 144, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 5, - 0, - 0, - 1, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 14, - 0, - 0, - 0, - 0, - 2, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 1, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 80, - 80, - 80, - 80, - 80, - 80, - 59, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 1, - 9, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 10, - 109, - 190, - 239, - 255, - 255, - 231, - 182, - 100, - 9, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 66, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 82, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 35, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 77, - 14, - 19, - 91, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 25, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 11, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 2, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 5, - 0, - 0, - 0, - 0, - 24, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 2, - 0, - 0, - 5, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 10, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 137, - 142, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 56, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 33, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 149, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 181, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 179, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 63, - 105, - 124, - 124, - 103, - 67, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 2, - "y": 0, - "width": 19, - "height": 43, - "dx": 23, - "glyphBitmap": { - "height": 43, - "width": 19, - "pixelArray": [ - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 166, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 19, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 247, - 255, - 255, - 255, - 255, - 255, - 251, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 2, - "y": -1, - "width": 23, - "height": 45, - "dx": 27, - "glyphBitmap": { - "height": 45, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 49, - 91, - 117, - 122, - 110, - 72, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 151, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 103, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 113, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 36, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 2, - 0, - 0, - 0, - 7, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 178, - 156, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 50, - 0, - 0, - 5, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 19, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 1, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 1, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 5, - 235, - 255, - 255, - 255, - 255, - 255, - 253, - 22, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 7, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 32, - 6, - 85, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 40, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 103, - 1, - 0, - 0, - 0, - 0, - 0, - 39, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 12, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 130, - 31, - 10, - 66, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 16, - 0, - 12, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 18, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 5, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 6, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 25, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 18, - 0, - 0, - 0, - 85, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 166, - 146, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 6, - 0, - 0, - 3, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 25, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 109, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 81, - 184, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 145, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 56, - 98, - 120, - 126, - 115, - 79, - 38, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 2, - "y": -1, - "width": 23, - "height": 45, - "dx": 27, - "glyphBitmap": { - "height": 45, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 46, - 91, - 115, - 123, - 111, - 82, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 138, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 105, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 45, - 0, - 0, - 0, - 0, - 0, - 50, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 14, - 0, - 0, - 0, - 1, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 171, - 137, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 18, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 46, - 0, - 0, - 0, - 80, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 10, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 2, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 19, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 29, - 2, - 41, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 1, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 32, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 34, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 94, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 2, - 80, - 171, - 223, - 255, - 255, - 254, - 218, - 151, - 40, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 18, - 7, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 25, - 56, - 56, - 56, - 56, - 56, - 56, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 11, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 1, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 8, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 150, - 128, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 24, - 0, - 0, - 41, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 16, - 0, - 0, - 0, - 0, - 9, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 172, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 122, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 56, - 94, - 121, - 126, - 115, - 79, - 36, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 3, - "y": 3, - "width": 8, - "height": 25, - "dx": 12, - "glyphBitmap": { - "height": 25, - "width": 8, - "pixelArray": [ - 186, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 1 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 3, - "y": -4, - "width": 8, - "height": 35, - "dx": 13, - "glyphBitmap": { - "height": 35, - "width": 8, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 4, - 4, - 4, - 10, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 50, - 0, - 0, - 2, - 177, - 255, - 255, - 243, - 6, - 23, - 91, - 194, - 255, - 255, - 255, - 155, - 0, - 67, - 255, - 255, - 255, - 255, - 231, - 27, - 0, - 6, - 242, - 255, - 255, - 201, - 40, - 0, - 0, - 0, - 94, - 103, - 49, - 1, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 1, - "y": 3, - "width": 17, - "height": 29, - "dx": 20, - "glyphBitmap": { - "height": 29, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 221, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 132, - 253, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 204, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 107, - 246, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 14, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 36, - 0, - 0, - 0, - 0, - 61, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 8, - 0, - 0, - 0, - 6, - 135, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 70, - 0, - 0, - 0, - 0, - 42, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 20, - 0, - 0, - 0, - 0, - 64, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 101, - 1, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 254, - 134, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 222, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 125, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 135, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 124, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 102, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 199, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 125, - 252, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 216, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 147, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 76 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 3, - "y": 13, - "width": 17, - "height": 16, - "dx": 23, - "glyphBitmap": { - "height": 16, - "width": 17, - "pixelArray": [ - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 170, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 19, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 9, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 2, - "y": 3, - "width": 17, - "height": 29, - "dx": 20, - "glyphBitmap": { - "height": 29, - "width": 17, - "pixelArray": [ - 5, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 250, - 119, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 195, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 243, - 97, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 174, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 129, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 109, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 106, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 228, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 214, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 165, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 130, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 35, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 41, - 0, - 0, - 0, - 1, - 94, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 130, - 5, - 0, - 0, - 0, - 16, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 56, - 0, - 0, - 0, - 0, - 61, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 11, - 0, - 0, - 0, - 0, - 7, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 241, - 92, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 190, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 255, - 248, - 113, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 207, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 133, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 2, - "y": 0, - "width": 22, - "height": 44, - "dx": 26, - "glyphBitmap": { - "height": 44, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 39, - 80, - 113, - 122, - 117, - 92, - 53, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 133, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 174, - 74, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 28, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 37, - 0, - 0, - 0, - 48, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 7, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 182, - 137, - 156, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 8, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 68, - 0, - 0, - 0, - 11, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 8, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 53, - 255, - 255, - 255, - 224, - 172, - 120, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 6, - 123, - 71, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 12, - 12, - 12, - 12, - 12, - 12, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 252, - 252, - 252, - 252, - 252, - 252, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 3, - "y": -8, - "width": 45, - "height": 51, - "dx": 50, - "glyphBitmap": { - "height": 51, - "width": 45, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 62, - 113, - 158, - 195, - 217, - 238, - 249, - 251, - 242, - 223, - 196, - 156, - 103, - 39, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 90, - 177, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 120, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 126, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 129, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 105, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 195, - 135, - 85, - 55, - 31, - 22, - 27, - 44, - 80, - 118, - 168, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 112, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 83, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 111, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 91, - 239, - 255, - 255, - 255, - 255, - 255, - 223, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 224, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 241, - 255, - 255, - 255, - 255, - 252, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 29, - 245, - 255, - 255, - 255, - 255, - 255, - 204, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 88, - 176, - 234, - 255, - 248, - 168, - 29, - 7, - 241, - 252, - 252, - 252, - 252, - 151, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 243, - 10, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 248, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 110, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 41, - 254, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 25, - 248, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 113, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 229, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 236, - 1, - 0, - 2, - 226, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 7, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 243, - 15, - 0, - 0, - 0, - 0, - 0, - 18, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 113, - 34, - 9, - 115, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 68, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 24, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 88, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 38, - 253, - 255, - 255, - 255, - 255, - 255, - 224, - 20, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 106, - 11, - 253, - 255, - 255, - 255, - 255, - 249, - 10, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 124, - 56, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 9, - 242, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 124, - 104, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 4, - 250, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 118, - 143, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 225, - 1, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 249, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 103, - 170, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 72, - 198, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 244, - 255, - 255, - 255, - 255, - 37, - 220, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 246, - 4, - 234, - 255, - 255, - 255, - 255, - 253, - 1, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 191, - 0, - 243, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 117, - 0, - 245, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 5, - 249, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 27, - 251, - 255, - 255, - 255, - 253, - 26, - 0, - 239, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 1, - 189, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 43, - 251, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 3, - 238, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 0, - 0, - 7, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 13, - 213, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 166, - 144, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 24, - 196, - 255, - 255, - 255, - 255, - 239, - 28, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 252, - 99, - 74, - 133, - 238, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 250, - 20, - 0, - 0, - 0, - 0, - 0, - 12, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 36, - 45, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 72, - 0, - 0, - 81, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 229, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 144, - 192, - 206, - 188, - 126, - 25, - 0, - 0, - 0, - 0, - 28, - 139, - 214, - 250, - 255, - 238, - 195, - 137, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 253, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 252, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 249, - 255, - 255, - 255, - 255, - 255, - 232, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 133, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 123, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 52, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 203, - 138, - 91, - 51, - 28, - 10, - 2, - 5, - 17, - 37, - 61, - 99, - 138, - 189, - 244, - 255, - 243, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 113, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 154, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 120, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 165, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 95, - 145, - 186, - 222, - 241, - 255, - 255, - 255, - 255, - 243, - 223, - 197, - 159, - 121, - 77, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 13, - 14, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 27, - "height": 43, - "dx": 28, - "glyphBitmap": { - "width": 27, - "height": 43, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 240, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 255, - 247, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 173, - 253, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 122, - 219, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 254, - 255, - 255, - 255, - 255, - 255, - 81, - 177, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 135, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 250, - 4, - 93, - 255, - 255, - 255, - 255, - 255, - 248, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 250, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 253, - 7, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 251, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 10, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 20, - 20, - 20, - 20, - 20, - 20, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 254, - 255, - 255, - 255, - 255, - 255, - 253, - 11, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 1, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 13, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 114 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 3, - "y": 0, - "width": 25, - "height": 43, - "dx": 29, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 248, - 234, - 208, - 180, - 134, - 69, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 44, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 37, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 2, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 21, - 30, - 46, - 80, - 150, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 22, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 253, - 255, - 255, - 255, - 255, - 255, - 240, - 1, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 237, - 255, - 255, - 255, - 255, - 255, - 232, - 1, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 28, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 14, - 28, - 63, - 135, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 5, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 183, - 74, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 121, - 30, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 140, - 9, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 16, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 4, - 6, - 19, - 56, - 127, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 1, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 18, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 14, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 3, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 2, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 13, - 19, - 48, - 101, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 46, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 10, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 17, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 101, - 2, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 222, - 183, - 141, - 66, - 4, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 2, - "y": -1, - "width": 25, - "height": 45, - "dx": 29, - "glyphBitmap": { - "height": 45, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 48, - 83, - 113, - 122, - 118, - 102, - 68, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 70, - 178, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 128, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 15, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 61, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 1, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 166, - 136, - 139, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 18, - 0, - 0, - 0, - 0, - 75, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 7, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 164, - 164, - 164, - 164, - 164, - 164, - 164, - 52, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 56, - 56, - 56, - 56, - 56, - 56, - 56, - 18, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 8, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 5, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 20, - 0, - 0, - 0, - 1, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 22, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 164, - 128, - 141, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 9, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 40, - 0, - 0, - 0, - 0, - 0, - 37, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 176, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 49, - 85, - 116, - 126, - 122, - 102, - 67, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 3, - "y": 0, - "width": 24, - "height": 43, - "dx": 29, - "glyphBitmap": { - "height": 43, - "width": 24, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 244, - 229, - 203, - 173, - 126, - 65, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 122, - 9, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 44, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 41, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 5, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 23, - 36, - 72, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 2, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 12, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 16, - 34, - 82, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 18, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 24, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 109, - 4, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 237, - 208, - 178, - 129, - 66, - 4, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 3, - "y": 0, - "width": 19, - "height": 43, - "dx": 23, - "glyphBitmap": { - "height": 43, - "width": 19, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 4, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 12, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 1, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 4, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 3, - "y": 0, - "width": 18, - "height": 43, - "dx": 22, - "glyphBitmap": { - "height": 43, - "width": 18, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 209, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 17, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 217, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 20, - 20, - 20, - 20, - 20, - 18, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 2, - "y": -1, - "width": 25, - "height": 45, - "dx": 30, - "glyphBitmap": { - "height": 45, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 54, - 92, - 113, - 123, - 119, - 103, - 67, - 31, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 81, - 183, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 147, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 138, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 4, - 0, - 0, - 0, - 0, - 12, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 29, - 0, - 0, - 13, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 177, - 138, - 144, - 191, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 27, - 0, - 0, - 0, - 0, - 53, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 2, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 60, - 60, - 60, - 60, - 60, - 60, - 38, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 205, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 217, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 17, - 20, - 20, - 20, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 39, - 0, - 0, - 0, - 0, - 38, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 12, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 179, - 134, - 133, - 180, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 16, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 169, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 54, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 48, - 136, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 49, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 85, - 0, - 103, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 8, - 112, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 52, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 80, - 109, - 126, - 122, - 94, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 3, - "y": 0, - "width": 25, - "height": 43, - "dx": 31, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 182, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 162, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 3, - "y": 0, - "width": 9, - "height": 43, - "dx": 15, - "glyphBitmap": { - "height": 43, - "width": 9, - "pixelArray": [ - 142, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": -1, - "width": 15, - "height": 44, - "dx": 17, - "glyphBitmap": { - "height": 44, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 1, - 65, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 73, - 150, - 174, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 1, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 62, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 96, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 174, - 46, - 0, - 0, - 0, - 0, - 66, - 128, - 128, - 128, - 126, - 117, - 88, - 55, - 11, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 3, - "y": 0, - "width": 25, - "height": 43, - "dx": 28, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 252, - 252, - 252, - 252, - 252, - 252, - 180, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 30, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 16, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 14, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 4, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 1, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 4, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 21, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 38, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 19, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 1, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 27, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 1, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 11, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 9, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 2, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 3, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 18, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 18, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 3, - "y": 0, - "width": 19, - "height": 43, - "dx": 22, - "glyphBitmap": { - "height": 43, - "width": 19, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 4, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 3, - "y": 0, - "width": 31, - "height": 43, - "dx": 36, - "glyphBitmap": { - "height": 43, - "width": 31, - "pixelArray": [ - 46, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 240, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 77, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 195, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 202, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 145, - 248, - 255, - 255, - 255, - 253, - 12, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 143, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 135, - 199, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 12, - 253, - 255, - 255, - 255, - 249, - 93, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 131, - 145, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 200, - 83, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 127, - 91, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 146, - 79, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 123, - 36, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 92, - 74, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 119, - 1, - 238, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 38, - 70, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 184, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 239, - 2, - 65, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 130, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 187, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 75, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 133, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 22, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 79, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 21, - 1, - 238, - 255, - 255, - 255, - 255, - 25, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 73, - 36, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 126, - 90, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 178, - 144, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 10, - 252, - 255, - 255, - 255, - 231, - 199, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 254, - 15, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 3, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 7, - 0, - 0, - 0, - 2, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 232, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 249, - 255, - 255, - 255, - 255, - 236, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 240, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 245, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 241, - 2, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 249, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 253, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 2 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 3, - "y": 0, - "width": 23, - "height": 43, - "dx": 29, - "glyphBitmap": { - "height": 43, - "width": 23, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 203, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 252, - 252, - 252, - 252, - 252, - 142, - 204, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 252, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 29, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 9, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 253, - 30, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 199, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 92, - 255, - 255, - 255, - 255, - 255, - 237, - 9, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 8, - 235, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 209, - 1, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 31, - 254, - 255, - 255, - 255, - 255, - 255, - 63, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 173, - 232, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 253, - 248, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 17, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 7, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 246, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 144, - 204, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 144 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 2, - "y": -1, - "width": 26, - "height": 45, - "dx": 30, - "glyphBitmap": { - "height": 45, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 49, - 84, - 111, - 121, - 119, - 107, - 75, - 39, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 79, - 181, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 152, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 151, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 13, - 0, - 0, - 0, - 0, - 0, - 21, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 1, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 31, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 175, - 137, - 143, - 189, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 1, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 21, - 0, - 0, - 0, - 0, - 52, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 15, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 0, - 6, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 25, - 0, - 0, - 0, - 0, - 57, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 19, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 168, - 130, - 136, - 185, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 1, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 14, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 145, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 77, - 180, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 157, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 53, - 87, - 115, - 125, - 125, - 109, - 84, - 42, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 3, - "y": 0, - "width": 24, - "height": 43, - "dx": 27, - "glyphBitmap": { - "height": 43, - "width": 24, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 244, - 215, - 174, - 119, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 171, - 28, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 61, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 40, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 1, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 21, - 30, - 59, - 113, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 21, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 5, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 20, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 29, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 12, - 13, - 26, - 59, - 129, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 7, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 51, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 61, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 148, - 18, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 208, - 170, - 100, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 2, - "y": -9, - "width": 26, - "height": 53, - "dx": 30, - "glyphBitmap": { - "height": 53, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 49, - 84, - 111, - 121, - 119, - 107, - 75, - 39, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 79, - 181, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 154, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 14, - 0, - 0, - 0, - 0, - 0, - 21, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 1, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 31, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 175, - 137, - 143, - 189, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 1, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 21, - 0, - 0, - 0, - 0, - 52, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 15, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 6, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 25, - 0, - 0, - 0, - 0, - 57, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 19, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 168, - 130, - 136, - 185, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 14, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 120, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 77, - 180, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 53, - 87, - 115, - 125, - 134, - 253, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 229, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 229, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 213, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 168, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 14, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 3, - "y": 0, - "width": 25, - "height": 43, - "dx": 29, - "glyphBitmap": { - "height": 43, - "width": 25, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 244, - 224, - 200, - 174, - 130, - 68, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 124, - 17, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 72, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 77, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 26, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 22, - 37, - 73, - 147, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 40, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 9, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 54, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 8, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 2, - 27, - 72, - 156, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 36, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 89, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 79, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 18, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 20, - 20, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 17, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 1, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 8, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 18, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 3, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 15, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 2, - "y": -1, - "width": 23, - "height": 45, - "dx": 26, - "glyphBitmap": { - "height": 45, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 59, - 97, - 119, - 122, - 106, - 69, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 80, - 180, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 94, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 27, - 0, - 0, - 0, - 0, - 10, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 2, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 11, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 144, - 135, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 1, - 0, - 0, - 0, - 73, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 2, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 248, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 245, - 196, - 145, - 94, - 1, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 93, - 42, - 3, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 16, - 68, - 121, - 174, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 144, - 218, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 24, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 21, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 64, - 0, - 0, - 0, - 5, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 131, - 142, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 4, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 57, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 1, - 0, - 0, - 0, - 0, - 91, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 114, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 171, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 66, - 107, - 123, - 124, - 103, - 61, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 23, - "height": 43, - "dx": 22, - "glyphBitmap": { - "height": 43, - "width": 23, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 2, - "y": -1, - "width": 25, - "height": 44, - "dx": 30, - "glyphBitmap": { - "height": 44, - "width": 25, - "pixelArray": [ - 32, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 252, - 252, - 252, - 252, - 252, - 252, - 249, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 5, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 67, - 0, - 0, - 0, - 0, - 85, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 9, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 134, - 137, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 1, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 21, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 151, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 171, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 160, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 49, - 82, - 114, - 125, - 124, - 111, - 78, - 44, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 1, - "y": 0, - "width": 26, - "height": 43, - "dx": 27, - "glyphBitmap": { - "height": 43, - "width": 26, - "pixelArray": [ - 173, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 241, - 252, - 252, - 252, - 252, - 252, - 252, - 30, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 1, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 250, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 254, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 240, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 1, - 236, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 4, - 249, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 251, - 8, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 254, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 242, - 2, - 104, - 255, - 255, - 255, - 255, - 255, - 253, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 150, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 195, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 253, - 255, - 255, - 255, - 255, - 255, - 132, - 240, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 1, - "y": 0, - "width": 36, - "height": 43, - "dx": 38, - "glyphBitmap": { - "height": 43, - "width": 36, - "pixelArray": [ - 50, - 252, - 252, - 252, - 252, - 252, - 252, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 252, - 252, - 252, - 252, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 252, - 252, - 252, - 252, - 252, - 252, - 62, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 252, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 1, - 246, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 254, - 7, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 4, - 248, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 2, - 248, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 235, - 188, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 192, - 144, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 149, - 101, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 106, - 58, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 63, - 15, - 255, - 255, - 255, - 255, - 240, - 1, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 231, - 0, - 3, - 247, - 255, - 255, - 255, - 255, - 20, - 0, - 227, - 255, - 255, - 255, - 255, - 27, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 34, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 70, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 77, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 114, - 3, - 250, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 72, - 119, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 157, - 28, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 104, - 161, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 200, - 61, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 137, - 203, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 242, - 94, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 171, - 244, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 155, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 232, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 8, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 26, - "height": 43, - "dx": 26, - "glyphBitmap": { - "height": 43, - "width": 26, - "pixelArray": [ - 15, - 242, - 252, - 252, - 252, - 252, - 252, - 252, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 252, - 252, - 252, - 252, - 252, - 251, - 33, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 253, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 241, - 10, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 8, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 9, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 251, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 16, - 0, - 3, - 231, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 1, - 159, - 255, - 255, - 255, - 255, - 255, - 231, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 242, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 237, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 237, - 7, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 253, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 218, - 255, - 255, - 255, - 255, - 255, - 216, - 1, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 6, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 254, - 30, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 0, - 0, - 0, - 11, - 243, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 28, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 245, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 22, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 4, - 2, - 225, - 255, - 255, - 255, - 255, - 255, - 227, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 187 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 26, - "height": 43, - "dx": 26, - "glyphBitmap": { - "height": 43, - "width": 26, - "pixelArray": [ - 90, - 252, - 252, - 252, - 252, - 252, - 252, - 235, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 240, - 252, - 252, - 252, - 252, - 252, - 252, - 58, - 15, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 2, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 18, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 4, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 21, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 15, - 251, - 255, - 255, - 255, - 255, - 255, - 239, - 6, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 254, - 255, - 255, - 255, - 255, - 255, - 248, - 12, - 0, - 0, - 2, - 233, - 255, - 255, - 255, - 255, - 255, - 243, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 4, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 245, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 175, - 255, - 255, - 255, - 255, - 255, - 248, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 1, - "y": 0, - "width": 21, - "height": 43, - "dx": 23, - "glyphBitmap": { - "height": 43, - "width": 21, - "pixelArray": [ - 0, - 142, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 6, - 0, - 12, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 22, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 4, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 3, - "y": -9, - "width": 13, - "height": 52, - "dx": 18, - "glyphBitmap": { - "height": 52, - "width": 13, - "pixelArray": [ - 241, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 205, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 245, - 255, - 255, - 255, - 255, - 255, - 122, - 4, - 4, - 4, - 4, - 4, - 4, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 1, - "y": 0, - "width": 19, - "height": 43, - "dx": 21, - "glyphBitmap": { - "height": 43, - "width": 19, - "pixelArray": [ - 6, - 240, - 252, - 252, - 252, - 251, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 234, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 247, - 255, - 255, - 255, - 253, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 229, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 221, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 249, - 255, - 255, - 255, - 251, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 226, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 251, - 255, - 255, - 255, - 248, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 253, - 255, - 255, - 255, - 245, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 235, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 241, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 239, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 237, - 3 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 1, - "y": -9, - "width": 13, - "height": 52, - "dx": 17, - "glyphBitmap": { - "height": 52, - "width": 13, - "pixelArray": [ - 209, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 233, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 4, - 4, - 4, - 4, - 4, - 4, - 134, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 236, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 1, - "y": 25, - "width": 22, - "height": 18, - "dx": 25, - "glyphBitmap": { - "height": 18, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 251, - 252, - 252, - 252, - 252, - 252, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 166, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 249, - 255, - 255, - 255, - 255, - 200, - 40, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 205, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 225, - 255, - 255, - 255, - 255, - 253, - 24, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 26, - 254, - 255, - 255, - 255, - 255, - 238, - 10, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 247, - 14, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 207, - 1, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 15, - 248, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 11, - 240, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 239, - 7, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 251, - 25, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 239, - 255, - 255, - 255, - 255, - 255, - 126, - 17, - 132, - 132, - 132, - 132, - 132, - 132, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 132, - 132, - 132, - 132, - 132, - 108 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -8, - "width": 19, - "height": 6, - "dx": 19, - "glyphBitmap": { - "height": 6, - "width": 19, - "pixelArray": [ - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 2, - "y": 31, - "width": 12, - "height": 12, - "dx": 16, - "glyphBitmap": { - "height": 12, - "width": 12, - "pixelArray": [ - 24, - 239, - 252, - 252, - 252, - 252, - 252, - 252, - 39, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 7, - 220, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 248, - 10, - 0, - 0, - 0, - 0, - 1, - 186, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 42, - 252, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 236, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 208, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 246, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 1 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 2, - "y": 0, - "width": 21, - "height": 31, - "dx": 24, - "glyphBitmap": { - "height": 31, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 25, - 106, - 175, - 212, - 242, - 250, - 242, - 209, - 166, - 82, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 139, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 74, - 0, - 0, - 0, - 0, - 1, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 17, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 37, - 36, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 1, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 3, - 0, - 0, - 5, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 44, - 80, - 80, - 80, - 80, - 80, - 80, - 32, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 132, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 67, - 181, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 8, - 137, - 253, - 255, - 255, - 255, - 255, - 255, - 242, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 25, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 26, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 16, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 3, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 36, - 254, - 255, - 255, - 255, - 255, - 255, - 210, - 4, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 36, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 74, - 19, - 90, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 15, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 6, - 251, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 102, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 14, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 43, - 158, - 223, - 253, - 241, - 195, - 102, - 5, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 244, - 1 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 2, - "y": 0, - "width": 22, - "height": 43, - "dx": 25, - "glyphBitmap": { - "height": 43, - "width": 22, - "pixelArray": [ - 40, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 12, - 111, - 188, - 238, - 248, - 214, - 143, - 27, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 81, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 65, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 39, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 129, - 42, - 34, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 1, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 2, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 4, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 99, - 33, - 21, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 9, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 16, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 32, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 44, - 149, - 214, - 251, - 244, - 193, - 118, - 13, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 2, - "y": 0, - "width": 20, - "height": 31, - "dx": 23, - "glyphBitmap": { - "height": 31, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 1, - 57, - 146, - 193, - 232, - 249, - 249, - 231, - 196, - 148, - 68, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 54, - 0, - 0, - 0, - 0, - 0, - 62, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 66, - 0, - 0, - 0, - 17, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 10, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 4, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 36, - 34, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 1, - 216, - 255, - 255, - 255, - 255, - 255, - 253, - 6, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 92, - 188, - 188, - 188, - 188, - 188, - 188, - 50, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 28, - 56, - 56, - 56, - 56, - 56, - 56, - 15, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 1, - 0, - 0, - 1, - 211, - 255, - 255, - 255, - 255, - 255, - 249, - 3, - 4, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 29, - 26, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 18, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 4, - 0, - 0, - 0, - 64, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 47, - 0, - 0, - 0, - 0, - 0, - 48, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 61, - 150, - 196, - 236, - 252, - 251, - 233, - 196, - 145, - 61, - 1, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 2, - "y": 0, - "width": 21, - "height": 43, - "dx": 25, - "glyphBitmap": { - "height": 43, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 1, - 77, - 174, - 228, - 249, - 232, - 179, - 83, - 3, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 3, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 36, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 9, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 55, - 29, - 93, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 0, - 0, - 9, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 33, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 55, - 19, - 67, - 151, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 1, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 5, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 18, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 62, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 3, - 82, - 178, - 229, - 253, - 241, - 192, - 104, - 11, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 80 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 2, - "y": 0, - "width": 20, - "height": 31, - "dx": 24, - "glyphBitmap": { - "height": 31, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 49, - 140, - 190, - 230, - 248, - 248, - 232, - 196, - 145, - 63, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 29, - 0, - 0, - 0, - 0, - 0, - 51, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 29, - 0, - 0, - 0, - 12, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 1, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 2, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 34, - 35, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 1, - 0, - 0, - 1, - 200, - 255, - 255, - 255, - 255, - 255, - 240, - 3, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 65, - 172, - 172, - 172, - 172, - 172, - 172, - 84, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 2, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 3, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 27, - 26, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 1, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 16, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 11, - 0, - 0, - 0, - 61, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 55, - 0, - 0, - 0, - 0, - 0, - 44, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 54, - 145, - 192, - 232, - 251, - 252, - 234, - 197, - 146, - 59, - 1, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 16, - "height": 42, - "dx": 16, - "glyphBitmap": { - "height": 42, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 10, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 161, - 218, - 249, - 255, - 255, - 242, - 218, - 149, - 0, - 0, - 0, - 0, - 0, - 8, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 20, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 93, - 13, - 20, - 39, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 12, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 197, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 1, - 20, - 20, - 20, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 20, - 20, - 20, - 16, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 1, - "y": -9, - "width": 25, - "height": 41, - "dx": 25, - "glyphBitmap": { - "height": 41, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 134, - 189, - 231, - 249, - 245, - 216, - 167, - 78, - 2, - 0, - 0, - 0, - 6, - 135, - 252, - 245, - 14, - 0, - 0, - 0, - 0, - 0, - 17, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 23, - 0, - 18, - 197, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 29, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 25, - 208, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 2, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 255, - 255, - 238, - 26, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 85, - 6, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 252, - 111, - 32, - 35, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 48, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 234, - 1, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 250, - 96, - 9, - 14, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 243, - 255, - 255, - 255, - 151, - 189, - 235, - 255, - 255, - 250, - 212, - 153, - 58, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 238, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 10, - 16, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 188, - 123, - 88, - 59, - 33, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 212, - 180, - 129, - 63, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 85, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 6, - 149, - 255, - 255, - 255, - 255, - 174, - 190, - 213, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 11, - 192, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 5, - 29, - 79, - 162, - 255, - 255, - 255, - 255, - 255, - 253, - 8, - 0, - 0, - 1, - 170, - 255, - 255, - 255, - 255, - 236, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 203, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 97, - 54, - 34, - 20, - 19, - 33, - 73, - 155, - 255, - 255, - 255, - 255, - 255, - 249, - 4, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 17, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 22, - 157, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 112, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 91, - 154, - 197, - 225, - 243, - 253, - 255, - 255, - 255, - 249, - 226, - 200, - 152, - 88, - 10, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 2, - "y": 0, - "width": 21, - "height": 43, - "dx": 25, - "glyphBitmap": { - "height": 43, - "width": 21, - "pixelArray": [ - 24, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 11, - 102, - 173, - 225, - 249, - 234, - 173, - 44, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 4, - 118, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 57, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 4, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 77, - 26, - 82, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 5, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 192 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 3, - "y": 0, - "width": 8, - "height": 41, - "dx": 13, - "glyphBitmap": { - "height": 41, - "width": 8, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -8, - "width": 12, - "height": 50, - "dx": 13, - "glyphBitmap": { - "height": 50, - "width": 12, - "pixelArray": [ - 0, - 0, - 0, - 0, - 134, - 252, - 252, - 252, - 252, - 252, - 252, - 193, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 252, - 252, - 252, - 252, - 252, - 252, - 182, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 3, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 37, - 22, - 43, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 30, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 40, - 0, - 0, - 121, - 202, - 235, - 253, - 251, - 222, - 175, - 88, - 4, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 2, - "y": 0, - "width": 24, - "height": 43, - "dx": 26, - "glyphBitmap": { - "height": 43, - "width": 24, - "pixelArray": [ - 40, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 65, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 53, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 3, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 30, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 21, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 8, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 4, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 36, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 25, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 11, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 25, - 253, - 255, - 255, - 255, - 255, - 255, - 239, - 9, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 11, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 11, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 3, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 13, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 25, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 3, - "y": 0, - "width": 8, - "height": 43, - "dx": 13, - "glyphBitmap": { - "height": 43, - "width": 8, - "pixelArray": [ - 193, - 252, - 252, - 252, - 252, - 252, - 252, - 123, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 124 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 2, - "y": 0, - "width": 34, - "height": 31, - "dx": 38, - "glyphBitmap": { - "height": 31, - "width": 34, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 252, - 252, - 166, - 0, - 0, - 6, - 90, - 168, - 219, - 247, - 243, - 199, - 101, - 2, - 0, - 0, - 0, - 0, - 9, - 102, - 171, - 226, - 248, - 237, - 181, - 68, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 80, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 2, - 0, - 1, - 99, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 7, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 61, - 25, - 86, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 138, - 51, - 27, - 108, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 68, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 44, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 108 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 2, - "y": 0, - "width": 21, - "height": 31, - "dx": 25, - "glyphBitmap": { - "height": 31, - "width": 21, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 4, - 0, - 0, - 24, - 120, - 185, - 234, - 249, - 224, - 150, - 24, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 16, - 150, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 24, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 16, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 59, - 28, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 1, - 0, - 0, - 1, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 132 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 2, - "y": 0, - "width": 20, - "height": 31, - "dx": 24, - "glyphBitmap": { - "height": 31, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 47, - 138, - 190, - 229, - 248, - 248, - 229, - 189, - 138, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 29, - 0, - 0, - 0, - 0, - 0, - 49, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 51, - 0, - 0, - 0, - 14, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 16, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 7, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 37, - 38, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 11, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 2, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 1, - 0, - 0, - 1, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 8, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 30, - 28, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 13, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 16, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 19, - 0, - 0, - 0, - 56, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 58, - 0, - 0, - 0, - 0, - 0, - 34, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 52, - 143, - 193, - 233, - 252, - 251, - 232, - 193, - 142, - 52, - 1, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 2, - "y": -10, - "width": 21, - "height": 41, - "dx": 25, - "glyphBitmap": { - "height": 41, - "width": 21, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 4, - 0, - 25, - 127, - 196, - 241, - 248, - 209, - 135, - 21, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 122, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 52, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 27, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 19, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 122, - 38, - 38, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 3, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 1, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 95, - 30, - 24, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 3, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 8, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 127, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 23, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 34, - 144, - 213, - 252, - 242, - 188, - 110, - 9, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 2, - "y": -10, - "width": 21, - "height": 41, - "dx": 25, - "glyphBitmap": { - "height": 41, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 69, - 170, - 225, - 250, - 235, - 188, - 104, - 12, - 0, - 217, - 252, - 252, - 252, - 252, - 252, - 252, - 99, - 0, - 0, - 5, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 77, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 49, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 9, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 58, - 27, - 88, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 0, - 0, - 7, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 38, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 59, - 18, - 65, - 147, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 1, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 4, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 17, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 31, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 3, - 81, - 177, - 229, - 253, - 239, - 185, - 86, - 3, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 100 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 2, - "y": 0, - "width": 16, - "height": 31, - "dx": 18, - "glyphBitmap": { - "height": 31, - "width": 16, - "pixelArray": [ - 32, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 32, - 0, - 0, - 20, - 137, - 219, - 250, - 166, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 56, - 234, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 40, - 241, - 255, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 211, - 255, - 255, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 81, - 19, - 12, - 67, - 95, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 3, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 1, - "y": 0, - "width": 19, - "height": 31, - "dx": 21, - "glyphBitmap": { - "height": 31, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 45, - 137, - 198, - 236, - 250, - 238, - 198, - 132, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 129, - 3, - 0, - 0, - 0, - 0, - 0, - 25, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 2, - 0, - 0, - 0, - 3, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 29, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 33, - 45, - 170, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 2, - 242, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 2, - 190, - 255, - 255, - 255, - 255, - 232, - 3, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 51, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 1, - 216, - 255, - 255, - 211, - 109, - 14, - 2, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 133, - 160, - 57, - 1, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 3, - 66, - 156, - 177, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 51, - 143, - 230, - 255, - 255, - 252, - 28, - 0, - 0, - 0, - 0, - 2, - 218, - 255, - 255, - 255, - 255, - 255, - 218, - 182, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 219, - 97, - 255, - 255, - 255, - 255, - 255, - 243, - 36, - 0, - 0, - 0, - 5, - 227, - 255, - 255, - 255, - 255, - 255, - 187, - 13, - 242, - 255, - 255, - 255, - 255, - 255, - 230, - 88, - 22, - 45, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 8, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 29, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 6, - 0, - 0, - 0, - 0, - 20, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 119, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 135, - 199, - 236, - 254, - 248, - 218, - 177, - 102, - 18, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 17, - "height": 40, - "dx": 18, - "glyphBitmap": { - "height": 40, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 249, - 252, - 252, - 252, - 252, - 252, - 252, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 4, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 237, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 1, - 20, - 20, - 20, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 20, - 20, - 20, - 19, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 81, - 10, - 2, - 17, - 9, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 14, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 2, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 157, - 208, - 246, - 254, - 246, - 227, - 208, - 181, - 41 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 2, - "y": 0, - "width": 21, - "height": 31, - "dx": 25, - "glyphBitmap": { - "height": 31, - "width": 21, - "pixelArray": [ - 111, - 252, - 252, - 252, - 252, - 252, - 252, - 197, - 0, - 0, - 0, - 0, - 12, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 3, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 23, - 38, - 133, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 7, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 17, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 165, - 25, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 20, - 146, - 224, - 253, - 240, - 192, - 131, - 32, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 21, - "height": 31, - "dx": 21, - "glyphBitmap": { - "height": 31, - "width": 21, - "pixelArray": [ - 60, - 252, - 252, - 252, - 252, - 252, - 252, - 210, - 0, - 0, - 0, - 0, - 0, - 68, - 252, - 252, - 252, - 252, - 252, - 252, - 173, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 1, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 231, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 4, - 252, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 252, - 8, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 248, - 2, - 100, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 243, - 255, - 255, - 255, - 255, - 255, - 28, - 134, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 62, - 168, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 96, - 202, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 131, - 236, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 180, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 248, - 255, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 1, - "y": 0, - "width": 30, - "height": 31, - "dx": 32, - "glyphBitmap": { - "height": 31, - "width": 30, - "pixelArray": [ - 155, - 252, - 252, - 252, - 252, - 252, - 91, - 0, - 0, - 0, - 0, - 0, - 221, - 252, - 252, - 252, - 252, - 145, - 0, - 0, - 0, - 0, - 0, - 160, - 252, - 252, - 252, - 252, - 252, - 24, - 119, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 240, - 1, - 80, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 200, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 254, - 9, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 6, - 252, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 254, - 6, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 6, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 251, - 5, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 1, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 1, - 241, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 237, - 0, - 0, - 209, - 255, - 255, - 255, - 201, - 255, - 255, - 255, - 255, - 99, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 15, - 3, - 248, - 255, - 255, - 255, - 133, - 233, - 255, - 255, - 255, - 137, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 48, - 35, - 255, - 255, - 255, - 255, - 86, - 188, - 255, - 255, - 255, - 176, - 0, - 153, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 81, - 77, - 255, - 255, - 255, - 255, - 39, - 143, - 255, - 255, - 255, - 215, - 0, - 189, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 115, - 118, - 255, - 255, - 255, - 245, - 3, - 98, - 255, - 255, - 255, - 250, - 4, - 225, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 9, - 254, - 255, - 255, - 255, - 255, - 148, - 159, - 255, - 255, - 255, - 200, - 0, - 53, - 255, - 255, - 255, - 255, - 43, - 254, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 181, - 201, - 255, - 255, - 255, - 153, - 0, - 10, - 254, - 255, - 255, - 255, - 116, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 215, - 242, - 255, - 255, - 255, - 106, - 0, - 0, - 219, - 255, - 255, - 255, - 190, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 174, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 244, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 3, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 1, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 22, - "height": 31, - "dx": 22, - "glyphBitmap": { - "height": 31, - "width": 22, - "pixelArray": [ - 38, - 251, - 252, - 252, - 252, - 252, - 252, - 232, - 8, - 0, - 0, - 0, - 0, - 0, - 63, - 252, - 252, - 252, - 252, - 252, - 241, - 15, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 0, - 0, - 0, - 12, - 244, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 8, - 233, - 255, - 255, - 255, - 255, - 255, - 253, - 33, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 231, - 6, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 248, - 255, - 255, - 255, - 255, - 255, - 240, - 14, - 224, - 255, - 255, - 255, - 255, - 251, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 252, - 255, - 255, - 255, - 255, - 250, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 174, - 4, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 3, - 226, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 233, - 5, - 0, - 11, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 31, - 254, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 22, - 247, - 255, - 255, - 255, - 255, - 255, - 251, - 29, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 5, - 232, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 36, - 254, - 255, - 255, - 255, - 255, - 255, - 242, - 15, - 84, - 255, - 255, - 255, - 255, - 255, - 250, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 118 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -8, - "width": 22, - "height": 39, - "dx": 22, - "glyphBitmap": { - "height": 39, - "width": 22, - "pixelArray": [ - 135, - 252, - 252, - 252, - 252, - 252, - 252, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 252, - 252, - 252, - 252, - 252, - 252, - 134, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 14, - 253, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 6, - 252, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 14, - 252, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 242, - 3, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 250, - 6, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 3, - 248, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 12, - 251, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 249, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 77, - 1, - 244, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 125, - 30, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 172, - 71, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 246, - 255, - 255, - 255, - 255, - 220, - 113, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 168, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 245, - 255, - 255, - 255, - 255, - 252, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 21, - 31, - 60, - 106, - 216, - 255, - 255, - 255, - 255, - 255, - 246, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 173, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 252, - 234, - 210, - 166, - 109, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 1, - "y": 0, - "width": 18, - "height": 31, - "dx": 20, - "glyphBitmap": { - "height": 31, - "width": 18, - "pixelArray": [ - 0, - 111, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 56, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 14, - 0, - 9, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 2, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 2, - "y": -11, - "width": 15, - "height": 55, - "dx": 18, - "glyphBitmap": { - "height": 55, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 45, - 92, - 118, - 124, - 124, - 124, - 66, - 0, - 0, - 0, - 0, - 0, - 7, - 126, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 4, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 156, - 80, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 11, - 36, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 1, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 246, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 5, - 28, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 46, - 8, - 1, - 0, - 0, - 0, - 11, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 58, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 99, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 126, - 197, - 243, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 16, - 16, - 16, - 9 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 3, - "y": -8, - "width": 7, - "height": 51, - "dx": 13, - "glyphBitmap": { - "height": 51, - "width": 7, - "pixelArray": [ - 107, - 252, - 252, - 252, - 252, - 252, - 217, - 109, - 255, - 255, - 255, - 255, - 255, - 219, - 109, - 255, - 255, - 255, - 255, - 255, - 219, - 110, - 255, - 255, - 255, - 255, - 255, - 219, - 110, - 255, - 255, - 255, - 255, - 255, - 219, - 110, - 255, - 255, - 255, - 255, - 255, - 219, - 111, - 255, - 255, - 255, - 255, - 255, - 219, - 111, - 255, - 255, - 255, - 255, - 255, - 218, - 111, - 255, - 255, - 255, - 255, - 255, - 218, - 112, - 255, - 255, - 255, - 255, - 255, - 218, - 112, - 255, - 255, - 255, - 255, - 255, - 218, - 112, - 255, - 255, - 255, - 255, - 255, - 218, - 113, - 255, - 255, - 255, - 255, - 255, - 218, - 113, - 255, - 255, - 255, - 255, - 255, - 217, - 113, - 255, - 255, - 255, - 255, - 255, - 217, - 114, - 255, - 255, - 255, - 255, - 255, - 217, - 114, - 255, - 255, - 255, - 255, - 255, - 217, - 114, - 255, - 255, - 255, - 255, - 255, - 217, - 114, - 255, - 255, - 255, - 255, - 255, - 217, - 115, - 255, - 255, - 255, - 255, - 255, - 217, - 115, - 255, - 255, - 255, - 255, - 255, - 216, - 115, - 255, - 255, - 255, - 255, - 255, - 216, - 116, - 255, - 255, - 255, - 255, - 255, - 216, - 116, - 255, - 255, - 255, - 255, - 255, - 216, - 116, - 255, - 255, - 255, - 255, - 255, - 216, - 117, - 255, - 255, - 255, - 255, - 255, - 216, - 117, - 255, - 255, - 255, - 255, - 255, - 215, - 117, - 255, - 255, - 255, - 255, - 255, - 215, - 118, - 255, - 255, - 255, - 255, - 255, - 215, - 118, - 255, - 255, - 255, - 255, - 255, - 215, - 118, - 255, - 255, - 255, - 255, - 255, - 215, - 119, - 255, - 255, - 255, - 255, - 255, - 215, - 119, - 255, - 255, - 255, - 255, - 255, - 214, - 119, - 255, - 255, - 255, - 255, - 255, - 214, - 119, - 255, - 255, - 255, - 255, - 255, - 214, - 120, - 255, - 255, - 255, - 255, - 255, - 214, - 120, - 255, - 255, - 255, - 255, - 255, - 214, - 120, - 255, - 255, - 255, - 255, - 255, - 214, - 121, - 255, - 255, - 255, - 255, - 255, - 214, - 121, - 255, - 255, - 255, - 255, - 255, - 213, - 121, - 255, - 255, - 255, - 255, - 255, - 213, - 122, - 255, - 255, - 255, - 255, - 255, - 213, - 122, - 255, - 255, - 255, - 255, - 255, - 213, - 122, - 255, - 255, - 255, - 255, - 255, - 213, - 123, - 255, - 255, - 255, - 255, - 255, - 213, - 123, - 255, - 255, - 255, - 255, - 255, - 212, - 123, - 255, - 255, - 255, - 255, - 255, - 212, - 124, - 255, - 255, - 255, - 255, - 255, - 212, - 124, - 255, - 255, - 255, - 255, - 255, - 212, - 124, - 255, - 255, - 255, - 255, - 255, - 212, - 124, - 255, - 255, - 255, - 255, - 255, - 212 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 2, - "y": -11, - "width": 15, - "height": 55, - "dx": 19, - "glyphBitmap": { - "height": 55, - "width": 15, - "pixelArray": [ - 90, - 124, - 124, - 124, - 114, - 86, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 100, - 1, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 108, - 159, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 28, - 8, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 6, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 129, - 253, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 9, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 25, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 19, - 3, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 2, - 11, - 62, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 6, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 25, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 63, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 236, - 184, - 109, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 16, - 16, - 16, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 1, - "y": 17, - "width": 23, - "height": 10, - "dx": 25, - "glyphBitmap": { - "height": 10, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 8, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 134, - 232, - 255, - 223, - 149, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 55, - 0, - 0, - 0, - 0, - 5, - 135, - 248, - 62, - 0, - 0, - 0, - 0, - 108, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 85, - 22, - 65, - 206, - 255, - 255, - 240, - 45, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 1, - 2, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 74, - 0, - 0, - 25, - 229, - 255, - 253, - 150, - 42, - 16, - 82, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 83, - 0, - 0, - 0, - 0, - 56, - 228, - 65, - 0, - 0, - 0, - 0, - 0, - 51, - 173, - 254, - 255, - 255, - 255, - 255, - 255, - 233, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 143, - 216, - 255, - 226, - 136, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 1, - "y": 0, - "width": 15, - "height": 36, - "dx": 19, - "glyphBitmap": { - "height": 36, - "width": 15, - "pixelArray": [ - 13, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 44, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 60, - 255, - 202, - 144, - 144, - 144, - 144, - 144, - 144, - 144, - 144, - 144, - 144, - 248, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 216, - 60, - 255, - 225, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 251, - 216, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 38, - "encoding": 127 - } - } - ] - }, - { - "name": "Oswald48", - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48 - }, - "bpp": 8, - "height": 89, - "ascent": 71, - "descent": 18, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 16, - "glyphBitmap": { - "height": 0, - "width": 0, - "pixelArray": [] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 3, - "y": 0, - "width": 10, - "height": 54, - "dx": 15, - "glyphBitmap": { - "height": 54, - "width": 10, - "pixelArray": [ - 201, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 65, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 1, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 1, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 245, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 4, - "y": 35, - "width": 20, - "height": 19, - "dx": 25, - "glyphBitmap": { - "height": 19, - "width": 20, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 229, - 0, - 0, - 0, - 189, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 35, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 2, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 250, - 6, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 253, - 10, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 254, - 13, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 2, - "y": 0, - "width": 30, - "height": 54, - "dx": 34, - "glyphBitmap": { - "height": 54, - "width": 30, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 252, - 252, - 252, - 252, - 252, - 252, - 224, - 0, - 0, - 0, - 0, - 0, - 147, - 252, - 252, - 252, - 252, - 252, - 252, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 3, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 5, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 97, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 184, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 44, - 96, - 96, - 96, - 96, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 96, - 96, - 96, - 96, - 96, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 96, - 96, - 96, - 65, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 2, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 8, - 0, - 0, - 0, - 0, - 124, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 160, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 53, - 96, - 96, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 96, - 96, - 96, - 96, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 96, - 96, - 96, - 96, - 55, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 1, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 8, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 2, - "y": -6, - "width": 29, - "height": 66, - "dx": 33, - "glyphBitmap": { - "height": 66, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 124, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 71, - 105, - 119, - 250, - 255, - 247, - 153, - 115, - 64, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 132, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 152, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 127, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 120, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 45, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 181, - 139, - 134, - 174, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 0, - 19, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 35, - 0, - 0, - 0, - 0, - 36, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 223, - 173, - 122, - 72, - 21, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 119, - 68, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 11, - 61, - 115, - 169, - 222, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 146, - 210, - 253, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 20, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 31, - 0, - 0, - 0, - 0, - 67, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 1, - 0, - 13, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 179, - 131, - 138, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 9, - 0, - 0, - 0, - 5, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 31, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 156, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 145, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 117, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 35, - 79, - 106, - 124, - 232, - 255, - 254, - 167, - 120, - 49, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 2, - "y": 0, - "width": 61, - "height": 54, - "dx": 65, - "glyphBitmap": { - "height": 54, - "width": 61, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 81, - 149, - 193, - 226, - 245, - 251, - 244, - 221, - 183, - 144, - 73, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 252, - 252, - 252, - 252, - 252, - 252, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 116, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 114, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 222, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 248, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 124, - 99, - 128, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 247, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 4, - 0, - 0, - 0, - 6, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 26, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 250, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 8, - 245, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 227, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 251, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 2, - 0, - 0, - 0, - 0, - 0, - 5, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 0, - 0, - 6, - 243, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 6, - 0, - 0, - 0, - 16, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 121, - 92, - 128, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 1, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 29, - 65, - 82, - 86, - 79, - 52, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 253, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 101, - 186, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 155, - 65, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 5, - 0, - 0, - 0, - 0, - 5, - 241, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 90, - 1, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 71, - 146, - 194, - 230, - 251, - 255, - 250, - 227, - 193, - 145, - 72, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 233, - 2, - 0, - 0, - 0, - 4, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 94, - 23, - 8, - 44, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 254, - 20, - 0, - 0, - 0, - 4, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 238, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 236, - 3, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 236, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 239, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 254, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 14, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 1, - 0, - 0, - 0, - 29, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 111, - 93, - 137, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 232, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 241, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 252, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 121, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 87, - 155, - 198, - 233, - 249, - 254, - 245, - 219, - 186, - 132, - 57, - 1, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 3, - "y": -1, - "width": 34, - "height": 56, - "dx": 40, - "glyphBitmap": { - "height": 56, - "width": 34, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 57, - 101, - 120, - 120, - 101, - 62, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 72, - 175, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 193, - 102, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 103, - 4, - 0, - 31, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 5, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 19, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 10, - 0, - 0, - 0, - 0, - 39, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 2, - 0, - 0, - 0, - 5, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 9, - 0, - 0, - 0, - 0, - 5, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 31, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 22, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 33, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 26, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 4, - 0, - 7, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 21, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 7, - 4, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 1, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 2, - 0, - 0, - 0, - 0, - 40, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 2, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 1, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 13, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 58, - 0, - 0, - 0, - 13, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 1, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 144, - 24, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 7, - 0, - 7, - 67, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 221, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 17, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 8, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 32, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 85, - 0, - 0, - 5, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 18, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 35, - 0, - 0, - 0, - 0, - 1, - 116, - 251, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 167, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 160, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 196, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 49, - 94, - 120, - 126, - 114, - 89, - 44, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 91, - 122, - 123, - 22 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 4, - "y": 35, - "width": 9, - "height": 19, - "dx": 21, - "glyphBitmap": { - "height": 19, - "width": 9, - "pixelArray": [ - 123, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 54, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 251, - 6, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 246, - 2, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 2, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 4, - "y": -13, - "width": 16, - "height": 68, - "dx": 21, - "glyphBitmap": { - "height": 68, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 57, - 97, - 119, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 168, - 244, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 44, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 8, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 46, - 0, - 0, - 0, - 14, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 88, - 6, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 119, - 20, - 0, - 0, - 0, - 0, - 48, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 3, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 115, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 184, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 128, - 188, - 229, - 250, - 52 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 2, - "y": -13, - "width": 15, - "height": 68, - "dx": 19, - "glyphBitmap": { - "height": 68, - "width": 15, - "pixelArray": [ - 107, - 105, - 73, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 198, - 93, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 212, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 59, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 3, - 0, - 0, - 0, - 0, - 43, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 16, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 7, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 1, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 1, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 2, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 1, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 4, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 30, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 5, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 92, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 24, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 6, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 25, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 222, - 89, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 236, - 204, - 151, - 73, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 2, - "y": 30, - "width": 25, - "height": 24, - "dx": 28, - "glyphBitmap": { - "height": 24, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 252, - 252, - 252, - 252, - 252, - 252, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 28, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 7, - 22, - 0, - 0, - 0, - 0, - 59, - 249, - 142, - 20, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 2, - 91, - 223, - 151, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 241, - 124, - 11, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 1, - 71, - 208, - 255, - 255, - 240, - 9, - 0, - 0, - 11, - 243, - 255, - 255, - 255, - 255, - 231, - 105, - 7, - 252, - 255, - 255, - 255, - 255, - 85, - 53, - 189, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 247, - 255, - 255, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 32, - 1, - 108, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 156, - 33, - 0, - 0, - 0, - 48, - 145, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 96, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 82, - 179, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 133, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 254, - 255, - 255, - 255, - 255, - 233, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 225, - 255, - 255, - 255, - 255, - 255, - 56, - 223, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 168, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 235, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 7, - 227, - 255, - 255, - 255, - 255, - 255, - 191, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 242, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 193, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 9, - 232, - 255, - 255, - 255, - 255, - 236, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 89, - 229, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 252, - 145, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 137, - 251, - 69, - 0, - 0, - 0, - 0, - 0, - 11, - 235, - 188, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 1, - "y": 13, - "width": 27, - "height": 29, - "dx": 29, - "glyphBitmap": { - "height": 29, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 252, - 252, - 252, - 252, - 252, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 107, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 26, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 221, - 255, - 255, - 255, - 255, - 255, - 204, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 2, - "y": -10, - "width": 10, - "height": 19, - "dx": 14, - "glyphBitmap": { - "height": 19, - "width": 10, - "pixelArray": [ - 87, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 162, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 20, - 248, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 1, - 157, - 255, - 255, - 255, - 246, - 9, - 0, - 0, - 5, - 140, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 99, - 214, - 255, - 255, - 255, - 255, - 233, - 24, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 243, - 62, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 210, - 48, - 0, - 0, - 0, - 0, - 32, - 251, - 185, - 90, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 3, - "y": 17, - "width": 17, - "height": 8, - "dx": 24, - "glyphBitmap": { - "height": 8, - "width": 17, - "pixelArray": [ - 21, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 82, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 3, - "y": 0, - "width": 9, - "height": 9, - "dx": 14, - "glyphBitmap": { - "height": 9, - "width": 9, - "pixelArray": [ - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 245, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 2, - "y": 0, - "width": 23, - "height": 54, - "dx": 27, - "glyphBitmap": { - "height": 54, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 252, - 252, - 252, - 252, - 252, - 239, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 244, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 245, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 242, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 246, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 241, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 248, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 239, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 222, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 249, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 237, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 224, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 254, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 250, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 235, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 227, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 253, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 251, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 233, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 229, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 253, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 252, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 230, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 2, - "y": -1, - "width": 29, - "height": 56, - "dx": 33, - "glyphBitmap": { - "height": 56, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 40, - 81, - 106, - 122, - 123, - 110, - 87, - 47, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 160, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 176, - 78, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 60, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 6, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 147, - 139, - 184, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 2, - 0, - 13, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 95, - 1, - 0, - 0, - 0, - 48, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 9, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 1, - 0, - 0, - 0, - 61, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 140, - 133, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 44, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 3, - 0, - 0, - 0, - 0, - 15, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 151, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 171, - 70, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 38, - 82, - 108, - 125, - 127, - 112, - 89, - 48, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 4, - "y": 0, - "width": 19, - "height": 54, - "dx": 33, - "glyphBitmap": { - "height": 54, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 180, - 252, - 252, - 252, - 252, - 252, - 252, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 98, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 1, - 72, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 11, - 102, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 1, - 53, - 145, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 52, - 255, - 255, - 255, - 242, - 179, - 112, - 45, - 1, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 48, - 192, - 125, - 58, - 5, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 2, - "y": 0, - "width": 29, - "height": 55, - "dx": 33, - "glyphBitmap": { - "height": 55, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 66, - 96, - 117, - 123, - 116, - 98, - 64, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 126, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 141, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 128, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 162, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 13, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 1, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 19, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 168, - 136, - 160, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 21, - 0, - 0, - 0, - 8, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 13, - 0, - 0, - 0, - 0, - 0, - 3, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 6, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 60, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 1, - "y": -1, - "width": 30, - "height": 56, - "dx": 32, - "glyphBitmap": { - "height": 56, - "width": 30, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 51, - 86, - 112, - 121, - 119, - 107, - 76, - 41, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 101, - 191, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 171, - 77, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 98, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 27, - 0, - 0, - 0, - 1, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 179, - 138, - 144, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 34, - 0, - 0, - 0, - 0, - 52, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 12, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 4, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 1, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 1, - 33, - 116, - 116, - 116, - 116, - 116, - 116, - 116, - 116, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 16, - 57, - 136, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 121, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 131, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 6, - 22, - 67, - 155, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 36, - 128, - 128, - 128, - 128, - 128, - 128, - 128, - 128, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 1, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 21, - 0, - 0, - 0, - 0, - 36, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 172, - 131, - 134, - 180, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 2, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 124, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 117, - 204, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 179, - 83, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 60, - 95, - 114, - 127, - 125, - 110, - 88, - 48, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 1, - "y": 0, - "width": 31, - "height": 54, - "dx": 33, - "glyphBitmap": { - "height": 54, - "width": 31, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 245, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 245, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 248, - 255, - 255, - 255, - 255, - 255, - 236, - 5, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 2, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 24, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 15, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 4, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 182, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 2, - "y": -1, - "width": 29, - "height": 55, - "dx": 32, - "glyphBitmap": { - "height": 55, - "width": 29, - "pixelArray": [ - 0, - 132, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 28, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 1, - 0, - 0, - 0, - 15, - 57, - 83, - 86, - 70, - 41, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 16, - 122, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 174, - 77, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 82, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 53, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 27, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 85, - 20, - 10, - 52, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 10, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 18, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 180, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 155, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 8, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 4, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 1, - 0, - 0, - 0, - 23, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 147, - 128, - 165, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 5, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 40, - 0, - 0, - 0, - 0, - 0, - 1, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 118, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 126, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 176, - 76, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 60, - 95, - 114, - 126, - 126, - 112, - 89, - 50, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 2, - "y": -1, - "width": 29, - "height": 56, - "dx": 33, - "glyphBitmap": { - "height": 56, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 57, - 94, - 115, - 123, - 117, - 101, - 70, - 34, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 90, - 186, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 157, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 22, - 0, - 0, - 0, - 0, - 8, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 178, - 136, - 152, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 24, - 0, - 0, - 2, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 41, - 0, - 0, - 0, - 1, - 93, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 9, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 216, - 216, - 216, - 216, - 216, - 216, - 216, - 216, - 61, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 16, - 106, - 181, - 226, - 248, - 249, - 231, - 199, - 146, - 67, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 95, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 68, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 1, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 58, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 1, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 125, - 42, - 8, - 28, - 101, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 39, - 0, - 0, - 0, - 0, - 0, - 25, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 1, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 3, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 22, - 0, - 0, - 0, - 0, - 0, - 8, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 23, - 0, - 0, - 0, - 6, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 14, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 166, - 128, - 152, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 3, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 25, - 0, - 0, - 0, - 0, - 0, - 38, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 97, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 73, - 178, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 115, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 54, - 91, - 118, - 126, - 121, - 99, - 68, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 1, - "y": 0, - "width": 25, - "height": 54, - "dx": 28, - "glyphBitmap": { - "height": 54, - "width": 25, - "pixelArray": [ - 87, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 28, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 1, - "y": -1, - "width": 29, - "height": 56, - "dx": 33, - "glyphBitmap": { - "height": 56, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 50, - 85, - 112, - 122, - 120, - 103, - 75, - 31, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 87, - 183, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 141, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 145, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 1, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 185, - 138, - 154, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 57, - 0, - 0, - 0, - 10, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 4, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 10, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 2, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 2, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 21, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 13, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 62, - 5, - 22, - 120, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 35, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 5, - 0, - 0, - 0, - 0, - 32, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 54, - 10, - 24, - 93, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 33, - 0, - 0, - 37, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 23, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 8, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 8, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 2, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 13, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 23, - 0, - 0, - 0, - 1, - 95, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 172, - 130, - 143, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 1, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 48, - 0, - 0, - 0, - 0, - 0, - 10, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 117, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 114, - 203, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 168, - 71, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 61, - 97, - 116, - 127, - 124, - 108, - 84, - 43, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 1, - "y": -1, - "width": 30, - "height": 56, - "dx": 33, - "glyphBitmap": { - "height": 56, - "width": 30, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 36, - 81, - 107, - 122, - 121, - 104, - 76, - 28, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 149, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 133, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 134, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 22, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 143, - 146, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 8, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 89, - 0, - 0, - 0, - 2, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 1, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 2, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 11, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 1, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 20, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 24, - 0, - 0, - 0, - 0, - 31, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 152, - 99, - 99, - 158, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 19, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 34, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 9, - 137, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 64, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 112, - 172, - 215, - 249, - 255, - 249, - 212, - 167, - 91, - 8, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 0, - 147, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 13, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 5, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 21, - 0, - 0, - 0, - 1, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 171, - 131, - 137, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 9, - 0, - 0, - 0, - 0, - 35, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 118, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 160, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 116, - 203, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 153, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 58, - 89, - 115, - 125, - 125, - 108, - 82, - 39, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 4, - "y": 4, - "width": 9, - "height": 32, - "dx": 16, - "glyphBitmap": { - "height": 32, - "width": 9, - "pixelArray": [ - 221, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 241, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 241, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 4, - "y": -6, - "width": 10, - "height": 44, - "dx": 17, - "glyphBitmap": { - "height": 44, - "width": 10, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 233, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 4, - 4, - 4, - 4, - 46, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 56, - 250, - 255, - 255, - 255, - 140, - 0, - 1, - 36, - 125, - 246, - 255, - 255, - 255, - 255, - 51, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 211, - 16, - 0, - 0, - 0, - 209, - 255, - 255, - 244, - 145, - 11, - 0, - 0, - 0, - 0, - 76, - 112, - 70, - 14, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 2, - "y": 3, - "width": 20, - "height": 37, - "dx": 26, - "glyphBitmap": { - "height": 37, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 165, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 227, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 142, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 212, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 119, - 250, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 97, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 50, - 0, - 0, - 0, - 0, - 11, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 10, - 0, - 0, - 0, - 0, - 55, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 74, - 0, - 0, - 0, - 0, - 5, - 129, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 22, - 0, - 0, - 0, - 0, - 39, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 102, - 1, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 132, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 244, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 110, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 93, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 111, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 113, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 133, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 154, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 232, - 255, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 174, - 255, - 255, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 95, - 242, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 3, - "y": 17, - "width": 22, - "height": 20, - "dx": 29, - "glyphBitmap": { - "height": 20, - "width": 22, - "pixelArray": [ - 10, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 76, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 76, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 3, - "y": 3, - "width": 21, - "height": 37, - "dx": 26, - "glyphBitmap": { - "height": 37, - "width": 21, - "pixelArray": [ - 36, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 250, - 120, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 196, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 243, - 99, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 178, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 135, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 114, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 116, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 94, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 97, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 107, - 0, - 0, - 0, - 0, - 0, - 2, - 118, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 46, - 0, - 0, - 0, - 0, - 0, - 28, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 136, - 7, - 0, - 0, - 0, - 0, - 0, - 83, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 60, - 0, - 0, - 0, - 0, - 0, - 12, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 13, - 0, - 0, - 0, - 0, - 0, - 28, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 94, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 248, - 112, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 205, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 253, - 131, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 219, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 150, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 2, - "y": 0, - "width": 29, - "height": 55, - "dx": 33, - "glyphBitmap": { - "height": 55, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 49, - 87, - 109, - 122, - 120, - 110, - 81, - 49, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 82, - 178, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 189, - 102, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 106, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 15, - 0, - 0, - 0, - 0, - 0, - 44, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 1, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 4, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 142, - 141, - 186, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 56, - 0, - 0, - 0, - 0, - 37, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 3, - 1, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 189, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 8, - 0, - 88, - 255, - 236, - 185, - 134, - 84, - 34, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 13, - 30, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 32, - 32, - 32, - 32, - 32, - 32, - 32, - 32, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 3, - "y": -9, - "width": 58, - "height": 63, - "dx": 63, - "glyphBitmap": { - "height": 63, - "width": 58, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 34, - 80, - 125, - 167, - 193, - 214, - 235, - 247, - 251, - 249, - 236, - 216, - 193, - 154, - 112, - 53, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 82, - 153, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 170, - 81, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 153, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 118, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 95, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 155, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 199, - 159, - 133, - 110, - 99, - 98, - 109, - 128, - 157, - 196, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 135, - 54, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 59, - 139, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 65, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 97, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 139, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 55, - 82, - 79, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 96, - 193, - 251, - 255, - 255, - 255, - 252, - 143, - 9, - 0, - 189, - 252, - 252, - 252, - 252, - 252, - 252, - 73, - 0, - 0, - 0, - 26, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 29, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 4, - 0, - 0, - 0, - 0, - 25, - 253, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 2, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 141, - 55, - 12, - 21, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 35, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 12, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 4, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 250, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 234, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 2, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 234, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 248, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 253, - 26, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 232, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 3, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 24, - 0, - 0, - 0, - 2, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 251, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 100, - 56, - 82, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 40, - 234, - 255, - 255, - 255, - 255, - 255, - 242, - 33, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 75, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 70, - 104, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 3, - 0, - 30, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 116, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 137, - 5, - 0, - 0, - 0, - 33, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 159, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 67, - 131, - 162, - 173, - 157, - 106, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 73, - 163, - 221, - 252, - 255, - 242, - 214, - 165, - 97, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 129, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 181, - 101, - 36, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 38, - 94, - 152, - 212, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 193, - 154, - 131, - 112, - 98, - 94, - 98, - 108, - 128, - 148, - 173, - 212, - 248, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 106, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 158, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 150, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 84, - 165, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 188, - 133, - 78, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 40, - 90, - 131, - 173, - 199, - 219, - 238, - 250, - 255, - 252, - 244, - 225, - 205, - 186, - 154, - 116, - 78, - 39, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 1, - "y": 0, - "width": 33, - "height": 54, - "dx": 35, - "glyphBitmap": { - "height": 54, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 2, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 0, - 3, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 7, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 10, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 12, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 13, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 4, - "y": 0, - "width": 31, - "height": 54, - "dx": 37, - "glyphBitmap": { - "height": 54, - "width": 31, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 246, - 232, - 206, - 179, - 148, - 97, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 103, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 1, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 60, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 97, - 102, - 115, - 132, - 165, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 1, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 65, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 3, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 1, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 15, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 88, - 92, - 112, - 147, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 4, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 10, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 80, - 1, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 108, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 150, - 24, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 101, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 1, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 4, - 4, - 4, - 8, - 27, - 64, - 126, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 116, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 24, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 3, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 124, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 88, - 89, - 98, - 128, - 171, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 7, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 1, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 85, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 123, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 235, - 213, - 175, - 124, - 60, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 3, - "y": -1, - "width": 31, - "height": 56, - "dx": 36, - "glyphBitmap": { - "height": 56, - "width": 31, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 36, - 70, - 100, - 116, - 123, - 120, - 104, - 84, - 47, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 80, - 170, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 192, - 111, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 88, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 124, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 1, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 156, - 134, - 137, - 179, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 82, - 0, - 0, - 0, - 0, - 0, - 27, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 1, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 36, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 56, - 56, - 56, - 56, - 56, - 56, - 56, - 56, - 56, - 15, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 4, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 1, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 93, - 1, - 0, - 0, - 0, - 0, - 48, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 14, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 153, - 127, - 141, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 56, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 42, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 104, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 75, - 168, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 187, - 99, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 37, - 71, - 102, - 118, - 126, - 121, - 107, - 74, - 41, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 4, - "y": 0, - "width": 30, - "height": 54, - "dx": 37, - "glyphBitmap": { - "height": 54, - "width": 30, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 240, - 226, - 206, - 176, - 138, - 88, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 103, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 82, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 2, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 7, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 4, - 4, - 5, - 10, - 28, - 62, - 134, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 20, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 2, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 115, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 89, - 96, - 121, - 170, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 31, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 95, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 57, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 93, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 233, - 214, - 182, - 145, - 92, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 4, - "y": 0, - "width": 23, - "height": 54, - "dx": 29, - "glyphBitmap": { - "height": 54, - "width": 23, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 193, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 74, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 8, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 82, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 4, - "y": 0, - "width": 23, - "height": 54, - "dx": 27, - "glyphBitmap": { - "height": 54, - "width": 23, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 83, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 32, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 213, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 81, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 3, - "y": -1, - "width": 31, - "height": 56, - "dx": 37, - "glyphBitmap": { - "height": 56, - "width": 31, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 36, - 76, - 99, - 118, - 124, - 120, - 106, - 86, - 52, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 90, - 173, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 205, - 128, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 90, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 162, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 20, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 163, - 135, - 144, - 184, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 31, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 100, - 4, - 0, - 0, - 0, - 0, - 22, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 216, - 216, - 216, - 216, - 216, - 216, - 216, - 216, - 142, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 71, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 84, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 9, - 0, - 0, - 0, - 0, - 9, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 169, - 131, - 131, - 173, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 11, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 6, - 239, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 19, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 39, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 6, - 128, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 43, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 125, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 122, - 10, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 66, - 97, - 118, - 127, - 119, - 91, - 45, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 4, - "y": 0, - "width": 31, - "height": 54, - "dx": 39, - "glyphBitmap": { - "height": 54, - "width": 31, - "pixelArray": [ - 213, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 237, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 4, - "y": 0, - "width": 11, - "height": 54, - "dx": 18, - "glyphBitmap": { - "height": 54, - "width": 11, - "pixelArray": [ - 166, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": -1, - "width": 18, - "height": 55, - "dx": 22, - "glyphBitmap": { - "height": 55, - "width": 18, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 15, - 70, - 162, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 7, - 82, - 222, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 14, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 15, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 171, - 62, - 0, - 0, - 0, - 0, - 0, - 48, - 128, - 128, - 128, - 128, - 127, - 120, - 102, - 69, - 36, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 4, - "y": 0, - "width": 32, - "height": 54, - "dx": 36, - "glyphBitmap": { - "height": 54, - "width": 32, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 237, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 207, - 1, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 10, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 32, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 11, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 39, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 22, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 10, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 3, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 35, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 8, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 22, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 1, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 7, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 1, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 30, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 4, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 22, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 11, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 4, - "y": 0, - "width": 23, - "height": 54, - "dx": 28, - "glyphBitmap": { - "height": 54, - "width": 23, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 237, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 82, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 3, - "y": 0, - "width": 39, - "height": 54, - "dx": 46, - "glyphBitmap": { - "height": 54, - "width": 39, - "pixelArray": [ - 0, - 42, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 211, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 2, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 252, - 255, - 255, - 255, - 255, - 255, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 255, - 255, - 255, - 255, - 255, - 251, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 224, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 230, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 170, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 176, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 116, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 121, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 254, - 13, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 253, - 12, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 15, - 254, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 1, - 239, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 246, - 5, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 5, - 248, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 7, - 249, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 109, - 255, - 255, - 255, - 255, - 255, - 236, - 1, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 1, - 236, - 255, - 255, - 255, - 255, - 255, - 79, - 164, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 132, - 218, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 11, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 8, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 2, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 190 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 4, - "y": 0, - "width": 29, - "height": 54, - "dx": 36, - "glyphBitmap": { - "height": 54, - "width": 29, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 247, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 83, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 14, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 2, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 18, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 28, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 4, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 1, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 14, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 4, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 24, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 84 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 3, - "y": -1, - "width": 32, - "height": 56, - "dx": 38, - "glyphBitmap": { - "height": 56, - "width": 32, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 31, - 71, - 96, - 114, - 123, - 122, - 108, - 89, - 56, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 84, - 168, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 136, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 94, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 58, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 7, - 0, - 0, - 0, - 3, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 165, - 136, - 142, - 184, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 88, - 1, - 0, - 0, - 0, - 0, - 16, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 2, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 8, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 6, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 4, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 1, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 100, - 2, - 0, - 0, - 0, - 0, - 21, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 1, - 0, - 0, - 1, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 159, - 128, - 136, - 177, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 4, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 86, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 79, - 169, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 138, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 35, - 74, - 100, - 119, - 127, - 125, - 111, - 92, - 58, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 4, - "y": 0, - "width": 30, - "height": 54, - "dx": 35, - "glyphBitmap": { - "height": 54, - "width": 30, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 247, - 230, - 203, - 161, - 101, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 177, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 135, - 3, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 4, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 99, - 111, - 139, - 181, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 1, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 6, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 88, - 88, - 88, - 92, - 108, - 141, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 8, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 1, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 8, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 121, - 2, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 154, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 221, - 189, - 146, - 84, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 3, - "y": -11, - "width": 32, - "height": 66, - "dx": 38, - "glyphBitmap": { - "height": 66, - "width": 32, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 31, - 71, - 96, - 114, - 123, - 122, - 108, - 89, - 56, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 84, - 168, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 135, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 94, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 56, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 6, - 0, - 0, - 0, - 3, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 165, - 136, - 142, - 184, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 88, - 1, - 0, - 0, - 0, - 0, - 16, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 8, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 6, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 2, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 1, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 100, - 2, - 0, - 0, - 0, - 0, - 21, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 1, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 159, - 128, - 136, - 177, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 5, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 86, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 79, - 169, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 35, - 74, - 100, - 119, - 127, - 126, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 235, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 225, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 200, - 255, - 255, - 239, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 137, - 252, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 63, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 4, - "y": 0, - "width": 31, - "height": 54, - "dx": 37, - "glyphBitmap": { - "height": 54, - "width": 31, - "pixelArray": [ - 237, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 247, - 240, - 219, - 194, - 170, - 138, - 89, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 108, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 99, - 1, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 9, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 4, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 101, - 123, - 158, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 33, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 79, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 2, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 10, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 1, - 10, - 40, - 85, - 163, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 1, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 34, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 56, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 34, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 96, - 96, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 2, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 19, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 15, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 12, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 1, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 9, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 2, - "y": -1, - "width": 30, - "height": 56, - "dx": 33, - "glyphBitmap": { - "height": 56, - "width": 30, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 51, - 89, - 115, - 123, - 118, - 98, - 60, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 123, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 129, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 139, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 130, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 48, - 0, - 0, - 0, - 0, - 25, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 157, - 133, - 146, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 4, - 0, - 0, - 0, - 1, - 106, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 19, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 2, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 246, - 200, - 150, - 100, - 50, - 6, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 143, - 93, - 43, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 9, - 56, - 108, - 160, - 212, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 21, - 103, - 155, - 207, - 251, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 1, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 2, - 0, - 5, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 113, - 4, - 0, - 0, - 0, - 5, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 152, - 127, - 152, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 31, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 10, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 8, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 130, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 111, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 118, - 205, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 117, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 61, - 96, - 117, - 127, - 120, - 102, - 66, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 29, - "height": 54, - "dx": 28, - "glyphBitmap": { - "height": 54, - "width": 29, - "pixelArray": [ - 186, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 3, - "y": -1, - "width": 32, - "height": 55, - "dx": 38, - "glyphBitmap": { - "height": 55, - "width": 32, - "pixelArray": [ - 95, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 9, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 3, - 0, - 0, - 1, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 17, - 0, - 0, - 0, - 0, - 31, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 173, - 131, - 135, - 183, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 13, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 66, - 160, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 141, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 31, - 67, - 96, - 118, - 125, - 123, - 115, - 90, - 61, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 1, - "y": 0, - "width": 33, - "height": 54, - "dx": 35, - "glyphBitmap": { - "height": 54, - "width": 33, - "pixelArray": [ - 94, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 232, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 13, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 3, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 2, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 6, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 6, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 11, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 2, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 6, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 2, - "y": 0, - "width": 44, - "height": 54, - "dx": 48, - "glyphBitmap": { - "height": 54, - "width": 44, - "pixelArray": [ - 188, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 252, - 252, - 252, - 252, - 252, - 252, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 211, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 2, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 1, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 8, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 2, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 2, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 6, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 6, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 7, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 3, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 231, - 159, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 188, - 116, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 144, - 72, - 255, - 255, - 255, - 255, - 255, - 253, - 8, - 0, - 0, - 4, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 101, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 1, - 241, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 11, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 4, - 250, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 235, - 255, - 255, - 255, - 255, - 255, - 96, - 6, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 139, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 124, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 183, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 167, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 226, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 209, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 248, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 9, - 0, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 33, - "height": 54, - "dx": 33, - "glyphBitmap": { - "height": 54, - "width": 33, - "pixelArray": [ - 1, - 205, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 214, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 204, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 12, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 19, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 23, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 18, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 1, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 16, - 10, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 35, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 4, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 2, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 1, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 22, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 4, - 0, - 0, - 10, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 33, - "height": 54, - "dx": 33, - "glyphBitmap": { - "height": 54, - "width": 33, - "pixelArray": [ - 54, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 242, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 232, - 4, - 1, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 5, - 0, - 0, - 2, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 7, - 0, - 0, - 0, - 0, - 3, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 14, - 0, - 0, - 0, - 16, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 5, - 0, - 3, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 2, - "y": 0, - "width": 25, - "height": 54, - "dx": 28, - "glyphBitmap": { - "height": 54, - "width": 25, - "pixelArray": [ - 0, - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 217, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 89, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 89, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 79, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 3, - "y": -12, - "width": 17, - "height": 66, - "dx": 23, - "glyphBitmap": { - "height": 66, - "width": 17, - "pixelArray": [ - 36, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 249, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 2, - "y": 0, - "width": 23, - "height": 54, - "dx": 27, - "glyphBitmap": { - "height": 54, - "width": 23, - "pixelArray": [ - 119, - 252, - 252, - 252, - 252, - 252, - 228, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 231, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 252, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 253, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 228, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 232, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 251, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 253, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 233, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 249, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 253, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 223, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 235, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 248, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 254, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 236, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 247, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 237, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 246, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 239, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 244, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 239, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 243, - 6 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 1, - "y": -12, - "width": 17, - "height": 66, - "dx": 21, - "glyphBitmap": { - "height": 66, - "width": 17, - "pixelArray": [ - 134, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 150, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 2, - "y": 31, - "width": 27, - "height": 23, - "dx": 31, - "glyphBitmap": { - "height": 23, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 217, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 1, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 13, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 28, - 0, - 0, - 0, - 5, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 1, - 0, - 0, - 0, - 0, - 19, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 0, - 0, - 0, - 3, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 17, - 0, - 0, - 0, - 0, - 0, - 1, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 24, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 6, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -10, - "width": 24, - "height": 7, - "dx": 24, - "glyphBitmap": { - "height": 7, - "width": 24, - "pixelArray": [ - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 3, - "y": 40, - "width": 14, - "height": 14, - "dx": 20, - "glyphBitmap": { - "height": 14, - "width": 14, - "pixelArray": [ - 81, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 203, - 0, - 0, - 0, - 0, - 1, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 32, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 5, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 14, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 233, - 255, - 255, - 255, - 255, - 255, - 237, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 187, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 248, - 255, - 255, - 255, - 255, - 220, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 216, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 3 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 2, - "y": -1, - "width": 26, - "height": 40, - "dx": 30, - "glyphBitmap": { - "height": 40, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 48, - 82, - 112, - 122, - 119, - 102, - 64, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 93, - 179, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 115, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 31, - 0, - 0, - 0, - 0, - 29, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 10, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 82, - 1, - 0, - 38, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 64, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 132, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 86, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 125, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 129, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 10, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 47, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 22, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 124, - 3, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 12, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 76, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 76, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 12, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 1, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 44, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 65, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 171, - 130, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 1, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 10, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 65, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 25, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 83, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 50, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 43, - 180, - 255, - 255, - 255, - 255, - 255, - 254, - 174, - 31, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 87, - 123, - 122, - 88, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 3, - "y": -1, - "width": 27, - "height": 55, - "dx": 32, - "glyphBitmap": { - "height": 55, - "width": 27, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 6, - 53, - 105, - 121, - 108, - 60, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 26, - 137, - 240, - 255, - 255, - 255, - 255, - 255, - 230, - 103, - 1, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 92, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 5, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 229, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 24, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 113, - 16, - 0, - 15, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 32, - 0, - 0, - 0, - 0, - 2, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 2, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 2, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 164, - 59, - 3, - 0, - 5, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 221, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 3, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 22, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 10, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 115, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 57, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 81, - 121, - 123, - 95, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 2, - "y": -1, - "width": 25, - "height": 40, - "dx": 29, - "glyphBitmap": { - "height": 40, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 39, - 75, - 107, - 120, - 122, - 112, - 83, - 49, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 151, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 180, - 92, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 146, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 64, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 21, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 8, - 0, - 42, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 81, - 2, - 0, - 30, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 24, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 6, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 2, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 54, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 196, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 6, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 1, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 80, - 1, - 0, - 24, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 223, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 2, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 8, - 0, - 0, - 0, - 0, - 11, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 147, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 153, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 178, - 77, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 41, - 78, - 110, - 123, - 125, - 114, - 83, - 47, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 2, - "y": -1, - "width": 27, - "height": 55, - "dx": 32, - "glyphBitmap": { - "height": 55, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 88, - 117, - 120, - 90, - 36, - 1, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 58, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 86, - 1, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 108, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 25, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 19, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 1, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 228, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 16, - 0, - 13, - 103, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 4, - 0, - 0, - 0, - 0, - 20, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 1, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 5, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 14, - 0, - 4, - 61, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 32, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 221, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 4, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 19, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 1, - 82, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 88, - 1, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 31, - 82, - 119, - 124, - 98, - 43, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 2, - "y": -1, - "width": 26, - "height": 40, - "dx": 30, - "glyphBitmap": { - "height": 40, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 33, - 71, - 104, - 119, - 123, - 112, - 91, - 54, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 140, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 183, - 78, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 130, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 3, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 68, - 1, - 0, - 28, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 16, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 5, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 4, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 1, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 11, - 49, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 38, - 5, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 4, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 4, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 27, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 77, - 1, - 0, - 26, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 223, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 13, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 10, - 0, - 0, - 0, - 0, - 0, - 10, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 142, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 147, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 170, - 66, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 37, - 74, - 108, - 121, - 125, - 115, - 83, - 45, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 1, - "y": 0, - "width": 19, - "height": 52, - "dx": 20, - "glyphBitmap": { - "height": 52, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 83, - 158, - 200, - 234, - 249, - 247, - 238, - 223, - 201, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 33, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 1, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 135, - 101, - 130, - 168, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 201, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 241, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 77, - 96, - 96, - 96, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 96, - 96, - 96, - 96, - 92, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 1, - "y": -12, - "width": 31, - "height": 52, - "dx": 31, - "glyphBitmap": { - "height": 52, - "width": 31, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 73, - 107, - 120, - 121, - 101, - 66, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 182, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 126, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 174, - 50, - 0, - 0, - 0, - 0, - 1, - 109, - 247, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 122, - 1, - 0, - 5, - 160, - 255, - 255, - 255, - 255, - 227, - 4, - 0, - 0, - 0, - 0, - 1, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 5, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 35, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 151, - 60, - 0, - 0, - 0, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 100, - 11, - 0, - 0, - 0, - 0, - 18, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 50, - 1, - 0, - 29, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 80, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 11, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 9, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 103, - 97, - 153, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 253, - 255, - 255, - 255, - 255, - 118, - 122, - 174, - 216, - 247, - 255, - 248, - 214, - 173, - 119, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 250, - 255, - 255, - 255, - 255, - 212, - 1, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 65, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 193, - 162, - 134, - 108, - 81, - 56, - 31, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 188, - 130, - 61, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 90, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 104, - 247, - 255, - 255, - 255, - 255, - 226, - 208, - 231, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 3, - 151, - 255, - 255, - 255, - 255, - 255, - 237, - 28, - 0, - 0, - 3, - 22, - 45, - 70, - 98, - 143, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 13, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 2, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 94, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 167, - 133, - 115, - 99, - 94, - 98, - 118, - 156, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 2, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 46, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 9, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 183, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 84, - 139, - 181, - 210, - 231, - 246, - 254, - 255, - 255, - 255, - 252, - 244, - 219, - 193, - 160, - 98, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 3, - "y": 0, - "width": 26, - "height": 54, - "dx": 32, - "glyphBitmap": { - "height": 54, - "width": 26, - "pixelArray": [ - 83, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 82, - 112, - 123, - 98, - 40, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 13, - 112, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 26, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 1, - 96, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 16, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 26, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 20, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 69, - 3, - 0, - 62, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 5, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 3, - "y": 0, - "width": 10, - "height": 52, - "dx": 17, - "glyphBitmap": { - "height": 52, - "width": 10, - "pixelArray": [ - 52, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 249, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 241, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -11, - "width": 15, - "height": 63, - "dx": 17, - "glyphBitmap": { - "height": 63, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 154, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 154, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 138, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 1, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 128, - 101, - 104, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 13, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 128, - 7, - 0, - 0, - 0, - 132, - 186, - 217, - 245, - 254, - 249, - 221, - 180, - 111, - 22, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 3, - "y": 0, - "width": 30, - "height": 54, - "dx": 32, - "glyphBitmap": { - "height": 54, - "width": 30, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 224, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 232, - 18, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 1, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 41, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 36, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 9, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 1, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 22, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 24, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 11, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 50, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 16, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 44, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 1, - 0, - 0, - 1, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 29, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 11, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 1, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 11, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 19, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 29, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 5 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 4, - "y": 0, - "width": 10, - "height": 54, - "dx": 17, - "glyphBitmap": { - "height": 54, - "width": 10, - "pixelArray": [ - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 63, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 3, - "y": 0, - "width": 42, - "height": 39, - "dx": 48, - "glyphBitmap": { - "height": 39, - "width": 42, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 35, - 85, - 114, - 123, - 102, - 49, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 75, - 108, - 122, - 108, - 60, - 4, - 0, - 0, - 0, - 0, - 126, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 52, - 0, - 0, - 13, - 116, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 53, - 0, - 0, - 0, - 0, - 0, - 2, - 84, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 85, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 80, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 65, - 0, - 0, - 0, - 42, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 16, - 0, - 82, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 89, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 2, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 53, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 150, - 41, - 1, - 1, - 63, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 60, - 4, - 0, - 36, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 55, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 93, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 3, - "y": 0, - "width": 26, - "height": 39, - "dx": 32, - "glyphBitmap": { - "height": 39, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 37, - 91, - 118, - 120, - 85, - 23, - 0, - 0, - 0, - 0, - 126, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 166, - 0, - 0, - 0, - 18, - 118, - 223, - 255, - 255, - 255, - 255, - 255, - 249, - 139, - 4, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 4, - 115, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 40, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 72, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 16, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 41, - 0, - 4, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 85, - 0, - 0, - 0, - 0, - 4, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 2, - "y": -1, - "width": 26, - "height": 40, - "dx": 30, - "glyphBitmap": { - "height": 40, - "width": 26, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 32, - 72, - 105, - 119, - 121, - 111, - 82, - 46, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 138, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 168, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 123, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 19, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 1, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 46, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 83, - 4, - 0, - 43, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 0, - 0, - 34, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 1, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 45, - 1, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 4, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 1, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 1, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 33, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 2, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 83, - 1, - 0, - 27, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 1, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 22, - 0, - 0, - 0, - 0, - 0, - 7, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 129, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 142, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 172, - 68, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 36, - 75, - 108, - 122, - 125, - 114, - 85, - 50, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 3, - "y": -13, - "width": 27, - "height": 52, - "dx": 32, - "glyphBitmap": { - "height": 52, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 58, - 107, - 121, - 105, - 54, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 166, - 0, - 0, - 33, - 147, - 245, - 255, - 255, - 255, - 255, - 255, - 222, - 88, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 1, - 109, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 141, - 2, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 35, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 229, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 9, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 104, - 12, - 0, - 22, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 24, - 0, - 0, - 0, - 0, - 8, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 1, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 5, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 1, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 3, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 154, - 53, - 2, - 0, - 9, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 220, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 9, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 69, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 10, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 93, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 60, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 53, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 26, - 86, - 123, - 121, - 91, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 2, - "y": -13, - "width": 27, - "height": 52, - "dx": 32, - "glyphBitmap": { - "height": 52, - "width": 27, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 77, - 116, - 120, - 92, - 38, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 91, - 1, - 0, - 217, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 75, - 0, - 0, - 0, - 0, - 96, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 29, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 12, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 2, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 228, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 20, - 0, - 9, - 94, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 6, - 0, - 0, - 0, - 0, - 15, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 1, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 3, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 8, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 18, - 0, - 4, - 61, - 151, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 28, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 221, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 3, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 17, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 1, - 80, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 86, - 1, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 81, - 118, - 124, - 99, - 42, - 1, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 3, - "y": 0, - "width": 20, - "height": 39, - "dx": 23, - "glyphBitmap": { - "height": 39, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 76, - 117, - 115, - 29, - 95, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 201, - 0, - 0, - 0, - 3, - 115, - 239, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 9, - 183, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 3, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 50, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 187, - 143, - 138, - 172, - 230, - 80, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 19, - 0, - 0, - 0, - 0, - 2, - 11, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 1, - "y": -1, - "width": 25, - "height": 40, - "dx": 27, - "glyphBitmap": { - "height": 40, - "width": 25, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 46, - 86, - 116, - 122, - 109, - 71, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 148, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 88, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 128, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 12, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 41, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 35, - 0, - 5, - 96, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 13, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 5, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 254, - 182, - 44, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 45, - 0, - 0, - 0, - 0, - 0, - 3, - 233, - 255, - 235, - 136, - 34, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 16, - 0, - 0, - 0, - 0, - 0, - 122, - 91, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 10, - 0, - 0, - 0, - 0, - 0, - 29, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 35, - 126, - 217, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 22, - 109, - 200, - 255, - 255, - 255, - 217, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 98, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 1, - 0, - 0, - 0, - 0, - 0, - 38, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 2, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 127, - 14, - 0, - 4, - 101, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 17, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 221, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 4, - 0, - 0, - 0, - 1, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 47, - 0, - 0, - 0, - 0, - 0, - 9, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 130, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 147, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 175, - 75, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 46, - 84, - 117, - 126, - 120, - 92, - 55, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 1, - "y": -1, - "width": 20, - "height": 51, - "dx": 22, - "glyphBitmap": { - "height": 51, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 72, - 96, - 96, - 96, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 96, - 96, - 96, - 96, - 96, - 15, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 165, - 129, - 132, - 149, - 93, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 8, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 14, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 141, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 46, - 91, - 120, - 126, - 121, - 104, - 85, - 66, - 41, - 11 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 3, - "y": -1, - "width": 26, - "height": 39, - "dx": 32, - "glyphBitmap": { - "height": 39, - "width": 26, - "pixelArray": [ - 193, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 91, - 0, - 0, - 0, - 0, - 0, - 24, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 56, - 0, - 1, - 43, - 156, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 21, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 23, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 67, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 30, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 88, - 6, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 47, - 103, - 125, - 115, - 71, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 27, - "height": 38, - "dx": 27, - "glyphBitmap": { - "height": 38, - "width": 27, - "pixelArray": [ - 16, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 43, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 4, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 5, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 3, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 6, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 7, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 2, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 1, - "y": 0, - "width": 38, - "height": 38, - "dx": 40, - "glyphBitmap": { - "height": 38, - "width": 38, - "pixelArray": [ - 64, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 252, - 252, - 252, - 252, - 252, - 252, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 16, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 1, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 1, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 1, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 1, - 0, - 0, - 5, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 31, - 0, - 0, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 0, - 0, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 2, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 244, - 249, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 196, - 207, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 18, - 255, - 255, - 255, - 255, - 255, - 148, - 161, - 255, - 255, - 255, - 255, - 247, - 3, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 100, - 115, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 52, - 69, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 146, - 255, - 255, - 255, - 255, - 252, - 9, - 23, - 255, - 255, - 255, - 255, - 255, - 113, - 1, - 242, - 255, - 255, - 255, - 255, - 255, - 250, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 4, - 189, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 233, - 255, - 255, - 255, - 255, - 153, - 23, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 232, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 193, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 234, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 8, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 2, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 1, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 28, - "height": 38, - "dx": 28, - "glyphBitmap": { - "height": 38, - "width": 28, - "pixelArray": [ - 10, - 233, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 239, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 155, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 21, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 7, - 0, - 0, - 0, - 0, - 0, - 32, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 35, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 2, - 0, - 0, - 0, - 4, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 3, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 55, - 0, - 29, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 39, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 23, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 5, - 0, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 33, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 42, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 34, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 3, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 9, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 14, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 1, - 0, - 0, - 95, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -11, - "width": 28, - "height": 49, - "dx": 28, - "glyphBitmap": { - "height": 49, - "width": 28, - "pixelArray": [ - 115, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 59, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 8, - 3, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 45, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 0, - 2, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 6, - 0, - 0, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 1, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 2, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 2, - 0, - 0, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 5, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 23, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 4, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 82, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 6, - 15, - 41, - 72, - 133, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 155, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 236, - 183, - 106, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 92, - 88, - 77, - 53, - 28, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 2, - "y": 0, - "width": 22, - "height": 38, - "dx": 25, - "glyphBitmap": { - "height": 38, - "width": 22, - "pixelArray": [ - 0, - 193, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 8, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 1, - 0, - 74, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 95, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 88, - 83, - 0, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 2, - "y": -13, - "width": 19, - "height": 68, - "dx": 23, - "glyphBitmap": { - "height": 68, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 42, - 85, - 112, - 123, - 124, - 124, - 124, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 149, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 3, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 233, - 205, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 117, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 26, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 13, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 139, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 101, - 129, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 133, - 101, - 86, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 24, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 165, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 107, - 174, - 217, - 244, - 255, - 255, - 255, - 255, - 232 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 4, - "y": -11, - "width": 9, - "height": 65, - "dx": 17, - "glyphBitmap": { - "height": 65, - "width": 9, - "pixelArray": [ - 123, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 118, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 140, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 2, - "y": -13, - "width": 19, - "height": 68, - "dx": 24, - "glyphBitmap": { - "height": 68, - "width": 19, - "pixelArray": [ - 16, - 124, - 124, - 124, - 124, - 122, - 107, - 78, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 127, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 28, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 11, - 0, - 0, - 0, - 0, - 28, - 227, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 98, - 16, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 170, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 119, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 12, - 95, - 105, - 148, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 93, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 1, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 129, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 254, - 238, - 210, - 161, - 91, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 2, - "y": 22, - "width": 28, - "height": 12, - "dx": 31, - "glyphBitmap": { - "height": 12, - "width": 28, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 45, - 84, - 61, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 82, - 212, - 255, - 255, - 255, - 243, - 164, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 227, - 156, - 1, - 0, - 0, - 0, - 0, - 37, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 43, - 0, - 0, - 0, - 1, - 100, - 247, - 255, - 255, - 128, - 0, - 0, - 0, - 48, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 115, - 106, - 200, - 255, - 255, - 255, - 255, - 255, - 100, - 0, - 41, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 4, - 53, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 59, - 0, - 0, - 99, - 255, - 255, - 255, - 254, - 160, - 53, - 12, - 64, - 154, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 68, - 0, - 0, - 0, - 0, - 153, - 255, - 232, - 62, - 0, - 0, - 0, - 0, - 0, - 26, - 146, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 68, - 0, - 0, - 0, - 0, - 0, - 7, - 162, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 146, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 120, - 194, - 249, - 247, - 191, - 89, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 2, - "y": 0, - "width": 19, - "height": 45, - "dx": 24, - "glyphBitmap": { - "height": 45, - "width": 19, - "pixelArray": [ - 57, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 72, - 2, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 200, - 255, - 246, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 241, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 4, - 200, - 255, - 143, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 48, - 91, - 255, - 255, - 4, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4 - ] - }, - "source": { - "filePath": "fonts/Oswald-Medium.ttf", - "size": 48, - "encoding": 127 - } - } - ] - }, - { - "name": "Heydings14", - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14 - }, - "bpp": 8, - "height": 24, - "ascent": 23, - "descent": 1, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 5, - "width": 14, - "height": 11, - "dx": 13, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 176, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 214, - 31, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 40, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 211, - 30, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 40, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 224, - 211, - 30, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 40, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0 - ], - "width": 14 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 14, - "encoding": 59395 - } - }, - { - "encoding": 33, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 254, - 254, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 162, - 255, - 255, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 251, - 255, - 126, - 252, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 177, - 1, - 214, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 247, - 254, - 48, - 0, - 100, - 248, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 174, - 0, - 193, - 7, - 232, - 141, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 242, - 254, - 46, - 0, - 232, - 0, - 125, - 244, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 171, - 0, - 0, - 232, - 0, - 19, - 246, - 129, - 0, - 0, - 0, - 0, - 0, - 11, - 236, - 253, - 43, - 0, - 0, - 232, - 0, - 0, - 150, - 238, - 12, - 0, - 0, - 0, - 0, - 113, - 255, - 168, - 0, - 0, - 0, - 232, - 0, - 0, - 37, - 253, - 116, - 0, - 0, - 0, - 6, - 228, - 253, - 41, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 176, - 230, - 7, - 0, - 0, - 101, - 255, - 165, - 0, - 0, - 0, - 0, - 122, - 0, - 0, - 0, - 60, - 255, - 104, - 0, - 3, - 219, - 252, - 39, - 0, - 0, - 0, - 85, - 239, - 53, - 0, - 0, - 0, - 200, - 222, - 3, - 89, - 255, - 162, - 0, - 0, - 0, - 0, - 37, - 135, - 20, - 0, - 0, - 0, - 85, - 255, - 92, - 208, - 255, - 221, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 204, - 207, - 255, - 211, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 198, - 40, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 17, - 143, - 195, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 195, - 142, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 134, - 187, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 187, - 134, - 13, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 46, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 134, - 187, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 187, - 134, - 13, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61735 - } - }, - { - "encoding": 35, - "x": 0, - "y": 1, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 29, - 126, - 196, - 236, - 251, - 236, - 196, - 126, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 142, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 142, - 8, - 0, - 0, - 0, - 0, - 0, - 22, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 21, - 0, - 0, - 0, - 9, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 9, - 0, - 0, - 147, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 143, - 0, - 32, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 30, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 35, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 33, - 0, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 11, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 10, - 0, - 0, - 0, - 25, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 25, - 0, - 0, - 0, - 0, - 0, - 12, - 153, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 153, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 132, - 201, - 239, - 254, - 239, - 201, - 132, - 35, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61833 - } - }, - { - "encoding": 36, - "x": 0, - "y": 1, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 198, - 40, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61829 - } - }, - { - "encoding": 37, - "x": 3, - "y": 0, - "width": 13, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 195, - 229, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 210, - 255, - 255, - 244, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 212, - 255, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 24, - 214, - 255, - 255, - 255, - 255, - 192, - 9, - 0, - 0, - 0, - 0, - 26, - 216, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 31, - 222, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 19, - 223, - 255, - 255, - 255, - 255, - 192, - 11, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 243, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 230, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 229, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 227, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 225, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 222, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 186, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 215, - 255, - 255, - 246, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 200, - 234, - 67, - 0 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62601 - } - }, - { - "encoding": 38, - "x": 4, - "y": 0, - "width": 13, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 62, - 230, - 196, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 245, - 255, - 255, - 211, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 213, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 193, - 255, - 255, - 255, - 255, - 215, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 217, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 219, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 221, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 222, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 224, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 244, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 231, - 24, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 230, - 39, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 227, - 37, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 225, - 34, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 255, - 223, - 32, - 0, - 0, - 0, - 0, - 8, - 187, - 255, - 255, - 255, - 255, - 220, - 30, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 218, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 246, - 255, - 255, - 215, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 234, - 201, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 13 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62600 - } - }, - { - "encoding": 39, - "x": 0, - "y": 1, - "width": 25, - "height": 19, - "dx": 25, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 39, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 20, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 0, - 0, - 0, - 0, - 36, - 159, - 28, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 209, - 3, - 0, - 0, - 0, - 175, - 255, - 243, - 39, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 200, - 255, - 92, - 0, - 0, - 65, - 255, - 255, - 151, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 215, - 2, - 3, - 208, - 255, - 239, - 21, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 43, - 4, - 0, - 29, - 243, - 255, - 255, - 255, - 84, - 99, - 255, - 255, - 111, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 97, - 249, - 158, - 1, - 176, - 255, - 253, - 238, - 255, - 211, - 232, - 255, - 215, - 5, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 3, - 139, - 255, - 255, - 255, - 186, - 255, - 255, - 141, - 115, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 11, - 12, - 237, - 255, - 255, - 179, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 26, - 192, - 255, - 207, - 51, - 213, - 255, - 255, - 70, - 0, - 0, - 125, - 255, - 250, - 38, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 19, - 144, - 11, - 0, - 25, - 219, - 161, - 0, - 0, - 0, - 16, - 241, - 141, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 30, - 20, - 0, - 0, - 0, - 0, - 114, - 17, - 0, - 0, - 0, - 0, - 20, - 255, - 255, - 255, - 255, - 255, - 255, - 28, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 8, - 28, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255 - ], - "width": 25 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 18, - "encoding": 59392 - } - }, - { - "encoding": 40, - "x": 0, - "y": 0, - "width": 19, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 139, - 255, - 174, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 143, - 255, - 255, - 255, - 180, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 144, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 145, - 255, - 255, - 255, - 255, - 255, - 247, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 146, - 255, - 255, - 255, - 255, - 255, - 246, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 148, - 255, - 255, - 255, - 255, - 255, - 246, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 149, - 255, - 255, - 255, - 255, - 255, - 245, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 174, - 144, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 97, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 0, - 97, - 254, - 255, - 255, - 255, - 255, - 255, - 243, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 196, - 120, - 0, - 0, - 95, - 254, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 254, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 253, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 253, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 253, - 255, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 252, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 220, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62213 - } - }, - { - "encoding": 41, - "x": 0, - "y": -1, - "width": 19, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 213, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 252, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 253, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 253, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 255, - 255, - 253, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 253, - 92, - 0, - 0, - 113, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 188, - 242, - 255, - 255, - 255, - 255, - 255, - 254, - 93, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 2, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 64, - 244, - 255, - 255, - 255, - 255, - 255, - 151, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 244, - 255, - 255, - 255, - 255, - 255, - 149, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 245, - 255, - 255, - 255, - 255, - 255, - 147, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 246, - 255, - 255, - 255, - 255, - 255, - 145, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 144, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 180, - 255, - 255, - 255, - 142, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 174, - 255, - 138, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62212 - } - }, - { - "encoding": 42, - "x": 0, - "y": -1, - "width": 18, - "height": 18, - "dx": 19, - "glyphBitmap": { - "height": 18, - "width": 18, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 1, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 2, - 0, - 151, - 149, - 7, - 159, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 219, - 122, - 250, - 255, - 228, - 255, - 181, - 57, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 252, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 77, - 5, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 70, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 142, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 139, - 6, - 0, - 3, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 3, - 0, - 6, - 145, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 74, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 4, - 84, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 61, - 184, - 255, - 231, - 255, - 251, - 132, - 224, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 164, - 9, - 151, - 152, - 0, - 3, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 0, - 0, - 1, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 33, - 138, - 203, - 244, - 244, - 203, - 138, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 120, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 120, - 2, - 0, - 0, - 0, - 1, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 1, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 22, - 243, - 255, - 255, - 255, - 255, - 216, - 4, - 4, - 220, - 255, - 255, - 255, - 255, - 242, - 20, - 121, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 118, - 190, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 188, - 236, - 255, - 255, - 255, - 60, - 60, - 50, - 0, - 0, - 51, - 60, - 60, - 255, - 255, - 255, - 235, - 253, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 253, - 237, - 255, - 255, - 255, - 52, - 52, - 43, - 0, - 0, - 44, - 52, - 52, - 255, - 255, - 255, - 236, - 191, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 189, - 123, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 119, - 23, - 244, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 243, - 21, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 1, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 1, - 0, - 0, - 0, - 2, - 125, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 125, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 144, - 207, - 248, - 248, - 207, - 144, - 39, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 1, - "y": 1, - "width": 17, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 171, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 230, - 37, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 255, - 255, - 181, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 124, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 18, - 38, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 220, - 255, - 59, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 207, - 250, - 51, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 7, - 19, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 176, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 116, - 255, - 255, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 255, - 255, - 119, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 26, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 171, - 228, - 35, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 234, - 255, - 74, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 42, - 76, - 1, - 0, - 0, - 0, - 0, - 255, - 255, - 96, - 255, - 255, - 174, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 114, - 255, - 255, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 96, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 41 - ], - "width": 17 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61458 - } - }, - { - "encoding": 45, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 33, - 140, - 206, - 245, - 245, - 207, - 141, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 120, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 121, - 1, - 0, - 0, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 23, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 23, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 237, - 255, - 255, - 255, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 255, - 255, - 255, - 237, - 253, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 253, - 239, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 238, - 196, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 195, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 26, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 25, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 1, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 1, - 0, - 0, - 0, - 3, - 128, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 129, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 145, - 210, - 249, - 249, - 210, - 146, - 39, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 32, - 218, - 135, - 1, - 0, - 0, - 158, - 248, - 248, - 248, - 248, - 158, - 0, - 0, - 1, - 136, - 218, - 32, - 0, - 0, - 0, - 30, - 223, - 255, - 255, - 93, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 94, - 255, - 255, - 222, - 30, - 0, - 28, - 221, - 255, - 255, - 237, - 42, - 0, - 0, - 137, - 235, - 255, - 255, - 235, - 137, - 0, - 0, - 42, - 238, - 255, - 255, - 220, - 28, - 215, - 255, - 255, - 255, - 217, - 23, - 19, - 110, - 203, - 253, - 255, - 255, - 253, - 204, - 111, - 18, - 23, - 218, - 255, - 255, - 255, - 215, - 159, - 255, - 239, - 237, - 255, - 220, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 220, - 255, - 238, - 238, - 255, - 159, - 3, - 122, - 47, - 50, - 252, - 255, - 255, - 255, - 255, - 206, - 161, - 161, - 207, - 255, - 255, - 255, - 255, - 252, - 50, - 47, - 122, - 3, - 0, - 0, - 0, - 132, - 255, - 255, - 253, - 145, - 25, - 0, - 0, - 0, - 0, - 25, - 145, - 253, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 53, - 253, - 255, - 251, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 251, - 255, - 253, - 54, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 158, - 23, - 99, - 255, - 255, - 192, - 0, - 0, - 0, - 37, - 255, - 255, - 202, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 215, - 172, - 2, - 1, - 203, - 255, - 255, - 36, - 0, - 0, - 98, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 236, - 205, - 11, - 0, - 0, - 116, - 255, - 255, - 95, - 0, - 0, - 144, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 22, - 213, - 255, - 230, - 27, - 0, - 0, - 0, - 54, - 255, - 255, - 141, - 0, - 0, - 157, - 255, - 255, - 37, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 37, - 255, - 255, - 153, - 0, - 0, - 140, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 15, - 183, - 183, - 16, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 135, - 0, - 0, - 90, - 255, - 255, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 255, - 85, - 0, - 0, - 28, - 254, - 255, - 225, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 225, - 255, - 253, - 25, - 0, - 0, - 0, - 177, - 255, - 255, - 145, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 145, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 39, - 247, - 255, - 255, - 138, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 137, - 255, - 255, - 246, - 37, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 199, - 82, - 15, - 0, - 0, - 15, - 82, - 199, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 252, - 221, - 221, - 253, - 255, - 255, - 255, - 254, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 85, - 165, - 216, - 250, - 250, - 216, - 165, - 85, - 4, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61977 - } - }, - { - "encoding": 47, - "x": 1, - "y": 0, - "width": 21, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 21, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 243, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 125, - 5, - 0, - 254, - 255, - 214, - 0, - 17, - 137, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 255, - 86, - 0, - 255, - 255, - 216, - 0, - 127, - 255, - 234, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 136, - 0, - 255, - 255, - 216, - 0, - 177, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 179, - 0, - 255, - 255, - 216, - 0, - 220, - 255, - 170, - 0, - 31, - 200, - 157, - 1, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 222, - 0, - 255, - 255, - 216, - 10, - 254, - 255, - 133, - 0, - 131, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 147, - 255, - 255, - 12, - 255, - 255, - 216, - 51, - 255, - 255, - 102, - 0, - 195, - 255, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 56, - 255, - 255, - 216, - 94, - 255, - 255, - 81, - 10, - 250, - 255, - 134, - 0, - 2, - 139, - 166, - 19, - 0, - 66, - 255, - 255, - 150, - 255, - 255, - 216, - 137, - 255, - 255, - 77, - 66, - 255, - 255, - 71, - 0, - 56, - 255, - 255, - 171, - 1, - 26, - 255, - 255, - 255, - 255, - 255, - 232, - 223, - 255, - 255, - 111, - 130, - 255, - 255, - 25, - 0, - 16, - 233, - 255, - 255, - 104, - 1, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 203, - 255, - 249, - 1, - 0, - 0, - 80, - 255, - 255, - 250, - 63, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 244, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 0, - 0, - 25, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 12, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61662 - } - }, - { - "encoding": 48, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 238, - 252, - 252, - 250, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 231, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 119, - 65, - 5, - 0, - 3, - 98, - 242, - 255, - 255, - 255, - 255, - 255, - 110, - 3, - 0, - 4, - 63, - 120, - 10, - 0, - 0, - 139, - 255, - 255, - 238, - 164, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 163, - 238, - 255, - 255, - 142, - 0, - 53, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 55, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 85, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 53, - 1, - 1, - 53, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 88, - 0, - 77, - 249, - 255, - 255, - 255, - 255, - 209, - 10, - 0, - 0, - 0, - 0, - 11, - 211, - 255, - 255, - 255, - 255, - 249, - 79, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 26, - 0, - 0, - 0, - 0, - 26, - 255, - 255, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 255, - 255, - 255, - 255, - 27, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 71, - 247, - 255, - 255, - 255, - 255, - 203, - 7, - 0, - 0, - 0, - 0, - 8, - 205, - 255, - 255, - 255, - 255, - 248, - 74, - 0, - 79, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 43, - 0, - 0, - 44, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 82, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 57, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 59, - 0, - 144, - 255, - 255, - 243, - 171, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 177, - 245, - 255, - 255, - 147, - 0, - 0, - 11, - 127, - 72, - 7, - 0, - 4, - 114, - 255, - 255, - 255, - 255, - 255, - 244, - 108, - 6, - 0, - 8, - 72, - 127, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 230, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 254, - 255, - 255, - 245, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61455 - } - }, - { - "encoding": 49, - "x": 1, - "y": 0, - "width": 17, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 26, - 132, - 206, - 244, - 0, - 244, - 210, - 140, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 243, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 250, - 124, - 1, - 0, - 0, - 0, - 0, - 16, - 101, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 157, - 1, - 0, - 0, - 91, - 219, - 22, - 125, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 16, - 235, - 255, - 204, - 12, - 148, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 22, - 114, - 255, - 255, - 255, - 187, - 8, - 170, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 189, - 255, - 255, - 255, - 255, - 167, - 8, - 188, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 196, - 236, - 255, - 255, - 255, - 255, - 255, - 145, - 13, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 234, - 255, - 255, - 255, - 255, - 214, - 81, - 12, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 178, - 255, - 255, - 227, - 98, - 7, - 105, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 106, - 237, - 116, - 9, - 82, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 10, - 15, - 60, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 14, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 115, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 86, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 113, - 192, - 237, - 253, - 237, - 190, - 111, - 15, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 2, - "y": 0, - "width": 14, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 14, - "pixelArray": [ - 0, - 0, - 88, - 242, - 252, - 251, - 247, - 232, - 205, - 151, - 43, - 0, - 0, - 0, - 0, - 10, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 97, - 20, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 0, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 12, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 11, - 2, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 75, - 159, - 147, - 82, - 15, - 34, - 238, - 255, - 255, - 239, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 252, - 255, - 145, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 69, - 255, - 247, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 215, - 107, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 1, - "y": 0, - "width": 17, - "height": 15, - "dx": 19, - "glyphBitmap": { - "height": 15, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 225, - 240, - 240, - 240, - 240, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 247, - 252, - 252, - 252, - 252, - 247, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 4, - 232, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 240, - 240, - 240, - 240, - 226, - 0, - 232, - 0, - 226, - 240, - 240, - 240, - 240, - 226, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 232, - 0, - 232, - 0, - 232, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 243, - 240, - 250, - 240, - 243, - 0, - 0, - 0, - 0, - 232, - 0, - 5, - 247, - 252, - 252, - 252, - 252, - 247, - 5, - 0, - 5, - 247, - 252, - 252, - 252, - 252, - 247, - 5, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 218 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 33, - 140, - 206, - 245, - 245, - 207, - 141, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 120, - 250, - 255, - 255, - 229, - 229, - 255, - 255, - 251, - 121, - 1, - 0, - 0, - 0, - 0, - 158, - 255, - 240, - 115, - 20, - 0, - 0, - 20, - 114, - 240, - 255, - 158, - 0, - 0, - 0, - 109, - 255, - 220, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 220, - 255, - 109, - 0, - 23, - 243, - 247, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 247, - 243, - 23, - 120, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 175, - 0, - 0, - 0, - 0, - 136, - 255, - 119, - 193, - 255, - 38, - 0, - 0, - 0, - 0, - 7, - 255, - 6, - 0, - 0, - 0, - 38, - 255, - 193, - 237, - 239, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 26, - 0, - 0, - 0, - 0, - 240, - 237, - 253, - 218, - 0, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 218, - 253, - 239, - 236, - 0, - 0, - 59, - 162, - 232, - 135, - 255, - 165, - 215, - 118, - 10, - 0, - 234, - 238, - 196, - 255, - 65, - 180, - 255, - 255, - 227, - 115, - 255, - 134, - 248, - 255, - 218, - 72, - 255, - 195, - 123, - 255, - 255, - 255, - 255, - 255, - 69, - 185, - 255, - 182, - 147, - 255, - 255, - 255, - 255, - 122, - 26, - 245, - 255, - 255, - 255, - 255, - 66, - 255, - 255, - 255, - 153, - 255, - 255, - 255, - 245, - 25, - 0, - 116, - 255, - 255, - 255, - 255, - 80, - 213, - 255, - 221, - 167, - 255, - 255, - 255, - 116, - 0, - 0, - 1, - 167, - 255, - 255, - 255, - 223, - 78, - 63, - 126, - 252, - 255, - 255, - 167, - 1, - 0, - 0, - 0, - 3, - 128, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 129, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 145, - 210, - 249, - 249, - 210, - 146, - 39, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 3, - "y": 0, - "width": 12, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 12, - "pixelArray": [ - 240, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 234, - 237, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 205, - 239, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 239, - 232, - 0, - 244, - 244, - 244, - 240, - 240, - 244, - 244, - 244, - 0, - 232, - 232, - 0, - 255, - 255, - 219, - 0, - 0, - 220, - 255, - 255, - 0, - 232, - 232, - 0, - 255, - 255, - 220, - 0, - 0, - 220, - 255, - 255, - 0, - 232, - 232, - 0, - 255, - 255, - 255, - 252, - 252, - 255, - 255, - 255, - 0, - 232, - 232, - 0, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 0, - 232, - 243, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 243, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 244, - 244, - 243, - 240, - 240, - 243, - 244, - 244, - 0, - 232, - 232, - 0, - 255, - 255, - 218, - 0, - 0, - 218, - 255, - 255, - 0, - 232, - 232, - 0, - 255, - 255, - 251, - 212, - 212, - 251, - 255, - 255, - 0, - 232, - 232, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 232, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 232, - 243, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 243 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 101, - 166, - 218, - 246, - 246, - 218, - 166, - 101, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 122, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 121, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 205, - 255, - 255, - 255, - 255, - 251, - 225, - 229, - 254, - 255, - 255, - 255, - 255, - 204, - 33, - 0, - 0, - 0, - 0, - 0, - 35, - 231, - 255, - 255, - 254, - 246, - 197, - 5, - 0, - 0, - 13, - 234, - 243, - 255, - 255, - 255, - 229, - 33, - 0, - 0, - 0, - 5, - 206, - 255, - 255, - 228, - 58, - 129, - 254, - 38, - 0, - 0, - 80, - 255, - 93, - 76, - 237, - 255, - 255, - 205, - 5, - 0, - 0, - 125, - 255, - 255, - 231, - 34, - 0, - 25, - 250, - 122, - 0, - 0, - 167, - 229, - 6, - 53, - 79, - 237, - 255, - 255, - 122, - 0, - 18, - 244, - 255, - 255, - 69, - 0, - 0, - 0, - 49, - 16, - 0, - 0, - 28, - 38, - 107, - 247, - 58, - 78, - 255, - 255, - 242, - 16, - 106, - 255, - 255, - 241, - 89, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 157, - 255, - 113, - 5, - 90, - 243, - 255, - 255, - 103, - 170, - 255, - 255, - 236, - 255, - 225, - 25, - 0, - 0, - 0, - 0, - 27, - 201, - 255, - 163, - 34, - 225, - 255, - 236, - 255, - 255, - 168, - 222, - 255, - 252, - 10, - 83, - 165, - 19, - 0, - 0, - 0, - 64, - 232, - 255, - 205, - 9, - 27, - 169, - 82, - 12, - 253, - 255, - 221, - 250, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 234, - 30, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 249, - 251, - 255, - 221, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 250, - 223, - 255, - 248, - 3, - 36, - 114, - 9, - 0, - 0, - 4, - 99, - 78, - 0, - 0, - 0, - 14, - 117, - 34, - 3, - 249, - 255, - 222, - 172, - 255, - 255, - 193, - 254, - 250, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 250, - 254, - 192, - 255, - 255, - 170, - 109, - 255, - 255, - 245, - 131, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 132, - 246, - 255, - 255, - 106, - 21, - 246, - 255, - 252, - 50, - 0, - 0, - 0, - 35, - 9, - 0, - 0, - 19, - 26, - 0, - 0, - 0, - 55, - 253, - 255, - 244, - 18, - 0, - 131, - 255, - 255, - 220, - 24, - 0, - 24, - 248, - 118, - 0, - 0, - 162, - 227, - 5, - 0, - 30, - 225, - 255, - 255, - 128, - 0, - 0, - 7, - 211, - 255, - 255, - 218, - 47, - 126, - 255, - 39, - 0, - 0, - 80, - 255, - 90, - 60, - 226, - 255, - 255, - 210, - 6, - 0, - 0, - 0, - 39, - 236, - 255, - 255, - 251, - 243, - 196, - 2, - 0, - 0, - 8, - 233, - 238, - 254, - 255, - 255, - 234, - 38, - 0, - 0, - 0, - 0, - 0, - 40, - 212, - 255, - 255, - 255, - 255, - 246, - 218, - 221, - 250, - 255, - 255, - 255, - 255, - 211, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 132, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 131, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 110, - 171, - 222, - 250, - 250, - 222, - 171, - 109, - 21, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61463 - } - }, - { - "encoding": 55, - "x": 0, - "y": 0, - "width": 21, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 21, - "pixelArray": [ - 137, - 249, - 252, - 252, - 244, - 104, - 0, - 106, - 244, - 252, - 252, - 249, - 135, - 0, - 77, - 237, - 252, - 252, - 251, - 171, - 1, - 252, - 255, - 255, - 255, - 255, - 216, - 0, - 216, - 255, - 255, - 255, - 255, - 252, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 36, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 40, - 218, - 255, - 255, - 255, - 255, - 181, - 0, - 182, - 255, - 255, - 255, - 255, - 217, - 0, - 146, - 255, - 255, - 255, - 255, - 243, - 14, - 28, - 105, - 108, - 108, - 100, - 17, - 0, - 18, - 100, - 108, - 108, - 105, - 28, - 0, - 9, - 93, - 108, - 108, - 107, - 42, - 0, - 1, - 29, - 32, - 32, - 24, - 0, - 0, - 0, - 24, - 32, - 32, - 29, - 1, - 0, - 0, - 20, - 32, - 32, - 31, - 3, - 0, - 170, - 255, - 255, - 255, - 255, - 132, - 0, - 134, - 255, - 255, - 255, - 255, - 168, - 0, - 100, - 254, - 255, - 255, - 255, - 204, - 4, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 39, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 40, - 201, - 255, - 255, - 255, - 255, - 163, - 0, - 165, - 255, - 255, - 255, - 255, - 199, - 0, - 129, - 255, - 255, - 255, - 255, - 230, - 9, - 11, - 69, - 72, - 72, - 64, - 5, - 0, - 5, - 64, - 72, - 72, - 69, - 11, - 0, - 2, - 57, - 72, - 72, - 71, - 19, - 0, - 7, - 61, - 64, - 64, - 56, - 3, - 0, - 3, - 56, - 64, - 64, - 61, - 7, - 0, - 1, - 49, - 64, - 64, - 63, - 14, - 0, - 194, - 255, - 255, - 255, - 255, - 157, - 0, - 158, - 255, - 255, - 255, - 255, - 193, - 0, - 122, - 255, - 255, - 255, - 255, - 225, - 8, - 255, - 255, - 255, - 255, - 255, - 220, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 219, - 255, - 255, - 255, - 255, - 255, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 39, - 178, - 255, - 255, - 255, - 255, - 140, - 0, - 142, - 255, - 255, - 255, - 255, - 176, - 0, - 107, - 255, - 255, - 255, - 255, - 212, - 5, - 2, - 37, - 40, - 40, - 32, - 0, - 0, - 0, - 32, - 40, - 40, - 37, - 2, - 0, - 0, - 26, - 40, - 40, - 39, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 92, - 100, - 100, - 97, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 255, - 255, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 253, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 113, - 248, - 255, - 255, - 253, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62361 - } - }, - { - "encoding": 56, - "x": 0, - "y": 3, - "width": 22, - "height": 17, - "dx": 22, - "glyphBitmap": { - "height": 17, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 14, - 16, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 128, - 191, - 241, - 255, - 255, - 246, - 207, - 139, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 151, - 252, - 195, - 114, - 60, - 27, - 27, - 56, - 111, - 198, - 255, - 185, - 15, - 0, - 46, - 59, - 0, - 0, - 0, - 0, - 53, - 226, - 213, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 66, - 5, - 126, - 187, - 2, - 0, - 0, - 0, - 52, - 243, - 157, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 207, - 245, - 35, - 0, - 0, - 0, - 13, - 223, - 166, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 126, - 251, - 255, - 109, - 19, - 29, - 0, - 0, - 149, - 227, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 207, - 255, - 255, - 192, - 2, - 152, - 168, - 0, - 30, - 251, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 127, - 251, - 255, - 255, - 245, - 34, - 0, - 94, - 254, - 39, - 121, - 234, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 208, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 6, - 235, - 126, - 180, - 169, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 127, - 251, - 255, - 255, - 255, - 255, - 192, - 2, - 0, - 0, - 0, - 164, - 195, - 231, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 245, - 34, - 0, - 0, - 0, - 0, - 118, - 233, - 252, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 95, - 253, - 248, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 255, - 255, - 255, - 255, - 192, - 2, - 0, - 0, - 0, - 0, - 0, - 104, - 246, - 218, - 138, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 239, - 255, - 255, - 239, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 216, - 163, - 200, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 109, - 109, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 201, - 161, - 80, - 255, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 255, - 78, - 5, - 120, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 119, - 5 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62475 - } - }, - { - "encoding": 57, - "x": -1, - "y": 0, - "width": 23, - "height": 23, - "dx": 22, - "glyphBitmap": { - "height": 23, - "width": 23, - "pixelArray": [ - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 43, - 153, - 61, - 11, - 0, - 0, - 0, - 0, - 2, - 33, - 102, - 222, - 162, - 71, - 17, - 1, - 0, - 0, - 0, - 1, - 17, - 71, - 173, - 33, - 255, - 255, - 255, - 238, - 218, - 215, - 226, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 221, - 214, - 221, - 244, - 255, - 255, - 255, - 24, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 18, - 255, - 255, - 221, - 136, - 200, - 238, - 255, - 254, - 224, - 173, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 13, - 255, - 255, - 207, - 0, - 0, - 0, - 2, - 1, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 4, - 255, - 255, - 212, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 243, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 0, - 220, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 184, - 255, - 255, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 132, - 255, - 255, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 75, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 46, - 0, - 15, - 252, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 3, - 0, - 0, - 181, - 255, - 255, - 41, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 69, - 255, - 255, - 174, - 1, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 48, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 0, - 0, - 26, - 240, - 255, - 252, - 89, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 128, - 3, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 195, - 43, - 108, - 255, - 255, - 255, - 255, - 255, - 254, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 244, - 255, - 255, - 251, - 212, - 255, - 255, - 255, - 255, - 241, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 123, - 246, - 255, - 255, - 245, - 120, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 162, - 162, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61486 - } - }, - { - "encoding": 58, - "x": 0, - "y": 1, - "width": 22, - "height": 20, - "dx": 22, - "glyphBitmap": { - "height": 20, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 254, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 189, - 255, - 255, - 188, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 227, - 255, - 255, - 255, - 255, - 226, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 249, - 255, - 229, - 39, - 40, - 230, - 255, - 249, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 182, - 255, - 255, - 162, - 0, - 0, - 162, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 222, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 221, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 247, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 246, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 246, - 96, - 96, - 246, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 70, - 0, - 0, - 0, - 6, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 74, - 76, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 6, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 27, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 36, - 36, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 27, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 120, - 218, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 218, - 118 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62230 - } - }, - { - "encoding": 59, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 35, - 226, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 228, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 223, - 255, - 255, - 255, - 255, - 255, - 223, - 223, - 255, - 255, - 255, - 255, - 255, - 223, - 30, - 0, - 0, - 0, - 0, - 0, - 27, - 220, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 174, - 255, - 255, - 255, - 255, - 255, - 220, - 27, - 0, - 0, - 0, - 24, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 24, - 0, - 22, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 22, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 2, - 2, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 92, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 92, - 0, - 81, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 81, - 0, - 0, - 0, - 71, - 246, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 247, - 72, - 0, - 0, - 0, - 0, - 0, - 62, - 242, - 255, - 255, - 255, - 255, - 254, - 215, - 215, - 254, - 255, - 255, - 255, - 255, - 243, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 46, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61512 - } - }, - { - "encoding": 60, - "x": 0, - "y": 0, - "width": 22, - "height": 23, - "dx": 22, - "glyphBitmap": { - "height": 23, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 36, - 241, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 2, - 166, - 240, - 30, - 0, - 154, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 38, - 119, - 0, - 14, - 222, - 180, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 88, - 255, - 62, - 0, - 84, - 255, - 47, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 1, - 185, - 195, - 0, - 3, - 229, - 136, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 81, - 255, - 24, - 0, - 167, - 192, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 25, - 255, - 73, - 0, - 116, - 240, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 3, - 255, - 93, - 0, - 100, - 253, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 24, - 255, - 75, - 0, - 116, - 241, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 79, - 255, - 26, - 0, - 166, - 194, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 1, - 183, - 198, - 0, - 3, - 228, - 138, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 86, - 255, - 65, - 0, - 80, - 255, - 50, - 156, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 40, - 122, - 0, - 13, - 220, - 184, - 0, - 0, - 3, - 4, - 4, - 4, - 2, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 1, - 163, - 241, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 36, - 241, - 86, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61666 - } - }, - { - "encoding": 61, - "x": 0, - "y": 0, - "width": 20, - "height": 23, - "dx": 22, - "glyphBitmap": { - "height": 23, - "width": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 231, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 129, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 2, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 70, - 99, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 133, - 247, - 39, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 6, - 215, - 168, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 109, - 249, - 7, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 50, - 255, - 49, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 27, - 255, - 69, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 49, - 255, - 51, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 109, - 249, - 7, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 6, - 214, - 170, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 131, - 248, - 40, - 0, - 156, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 72, - 102, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 2, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 129, - 255, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 62, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61667 - } - }, - { - "encoding": 62, - "x": 0, - "y": 0, - "width": 23, - "height": 23, - "dx": 22, - "glyphBitmap": { - "height": 23, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 250, - 252, - 252, - 252, - 126, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 18, - 170, - 40, - 0, - 3, - 147, - 76, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 127, - 255, - 230, - 41, - 162, - 255, - 223, - 1, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 6, - 175, - 255, - 250, - 255, - 237, - 48, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 8, - 229, - 255, - 255, - 84, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 3, - 162, - 255, - 254, - 255, - 229, - 37, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 122, - 255, - 237, - 54, - 177, - 255, - 223, - 2, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 22, - 176, - 47, - 0, - 7, - 165, - 87, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 8, - 8, - 8, - 4, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 134, - 255, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 132, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 131, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 129, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61668 - } - }, - { - "encoding": 63, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 101, - 166, - 218, - 246, - 246, - 218, - 166, - 101, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 122, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 121, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 250, - 255, - 255, - 255, - 255, - 204, - 33, - 0, - 0, - 0, - 0, - 0, - 35, - 231, - 255, - 255, - 255, - 255, - 255, - 251, - 71, - 1, - 23, - 205, - 255, - 255, - 255, - 255, - 229, - 33, - 0, - 0, - 0, - 5, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 205, - 5, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 198, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 18, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 39, - 82, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 16, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 187, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 1, - 26, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 7, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 11, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 14, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 109, - 255, - 255, - 255, - 255, - 255, - 253, - 6, - 0, - 0, - 70, - 255, - 255, - 237, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 21, - 246, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 86, - 255, - 224, - 45, - 147, - 255, - 255, - 255, - 255, - 255, - 244, - 18, - 0, - 131, - 255, - 255, - 255, - 255, - 237, - 1, - 0, - 0, - 5, - 64, - 10, - 92, - 251, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 7, - 211, - 255, - 255, - 255, - 255, - 45, - 0, - 0, - 0, - 3, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 6, - 0, - 0, - 0, - 39, - 236, - 255, - 255, - 255, - 189, - 18, - 1, - 58, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 38, - 0, - 0, - 0, - 0, - 0, - 40, - 212, - 255, - 255, - 255, - 244, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 211, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 132, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 131, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 110, - 171, - 222, - 250, - 250, - 222, - 171, - 109, - 21, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62229 - } - }, - { - "encoding": 64, - "x": 1, - "y": 0, - "width": 17, - "height": 18, - "dx": 19, - "glyphBitmap": { - "height": 18, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 48, - 255, - 229, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 124, - 232, - 255, - 255, - 255, - 255, - 196, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 211, - 255, - 255, - 234, - 255, - 249, - 244, - 255, - 248, - 82, - 0, - 0, - 0, - 0, - 0, - 17, - 221, - 255, - 204, - 71, - 1, - 255, - 220, - 14, - 142, - 254, - 247, - 43, - 0, - 0, - 0, - 0, - 160, - 255, - 171, - 5, - 0, - 0, - 255, - 220, - 0, - 0, - 114, - 255, - 189, - 0, - 0, - 0, - 29, - 253, - 221, - 8, - 0, - 0, - 0, - 255, - 220, - 0, - 0, - 1, - 211, - 255, - 40, - 0, - 0, - 104, - 255, - 110, - 0, - 0, - 0, - 0, - 19, - 18, - 0, - 0, - 0, - 104, - 255, - 108, - 0, - 228, - 242, - 255, - 235, - 228, - 228, - 26, - 0, - 0, - 0, - 15, - 228, - 228, - 235, - 255, - 242, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 113, - 255, - 104, - 4, - 4, - 1, - 0, - 10, - 10, - 0, - 4, - 4, - 98, - 255, - 116, - 4, - 0, - 37, - 255, - 212, - 4, - 0, - 0, - 0, - 255, - 219, - 0, - 0, - 0, - 202, - 255, - 49, - 0, - 0, - 0, - 175, - 255, - 157, - 2, - 0, - 0, - 255, - 220, - 0, - 0, - 100, - 255, - 202, - 0, - 0, - 0, - 0, - 25, - 231, - 255, - 193, - 60, - 0, - 255, - 220, - 10, - 130, - 253, - 251, - 55, - 0, - 0, - 0, - 0, - 0, - 42, - 222, - 255, - 255, - 225, - 255, - 248, - 239, - 255, - 251, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 136, - 238, - 255, - 255, - 255, - 255, - 206, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 56, - 255, - 230, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 3, - "y": 0, - "width": 13, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 79, - 209, - 249, - 207, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 254, - 255, - 255, - 255, - 254, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 255, - 255, - 255, - 225, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 253, - 255, - 255, - 255, - 252, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 198, - 237, - 195, - 67, - 0, - 0, - 0, - 0, - 0, - 3, - 99, - 210, - 141, - 34, - 1, - 41, - 146, - 179, - 62, - 0, - 0, - 24, - 206, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 173, - 16, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 5, - "y": 0, - "width": 10, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 10, - "pixelArray": [ - 136, - 249, - 252, - 252, - 252, - 250, - 207, - 43, - 0, - 0, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 48, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 238, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 132, - 98, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 255, - 223, - 255, - 255, - 255, - 0, - 0, - 0, - 255, - 255, - 217, - 17, - 218, - 255, - 255, - 0, - 0, - 0, - 255, - 254, - 61, - 0, - 61, - 254, - 255, - 0, - 0, - 0, - 255, - 148, - 0, - 0, - 0, - 149, - 255, - 0, - 0, - 0, - 224, - 12, - 0, - 0, - 0, - 13, - 225, - 0, - 0, - 0, - 70, - 0, - 0, - 0, - 0, - 0, - 71, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 1, - "y": 0, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 112, - 99, - 35, - 237, - 126, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 255, - 254, - 222, - 255, - 232, - 128, - 210, - 43, - 0, - 0, - 0, - 0, - 0, - 77, - 201, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 108, - 41, - 0, - 0, - 21, - 173, - 255, - 255, - 220, - 82, - 16, - 17, - 84, - 222, - 255, - 255, - 255, - 213, - 0, - 112, - 255, - 255, - 255, - 220, - 18, - 0, - 0, - 0, - 0, - 20, - 221, - 255, - 255, - 133, - 0, - 101, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 255, - 255, - 230, - 128, - 33, - 222, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 255, - 255, - 255, - 242, - 239, - 255, - 255, - 255, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 255, - 255, - 224, - 39, - 130, - 235, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 254, - 99, - 0, - 129, - 255, - 255, - 215, - 14, - 0, - 0, - 0, - 0, - 15, - 217, - 255, - 255, - 255, - 117, - 0, - 211, - 255, - 255, - 255, - 213, - 73, - 9, - 9, - 75, - 215, - 255, - 255, - 174, - 25, - 0, - 0, - 46, - 120, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 208, - 81, - 0, - 0, - 0, - 0, - 0, - 45, - 214, - 134, - 233, - 255, - 224, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 129, - 241, - 36, - 102, - 114, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 17, - 163, - 244, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 244, - 162, - 16, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 248, - 255, - 255, - 255, - 255, - 255, - 241, - 220, - 220, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 255, - 255, - 255, - 255, - 255, - 211, - 11, - 0, - 0, - 0, - 94, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 70, - 60, - 37, - 0, - 221, - 252, - 181, - 7, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 70, - 241, - 255, - 255, - 255, - 255, - 254, - 166, - 156, - 100, - 0, - 74, - 100, - 57, - 23, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 166, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 62, - 28, - 28, - 32, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 165, - 164, - 164, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 22, - 0, - 0, - 0, - 1, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 18, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 173, - 252, - 211, - 0, - 3, - 4, - 20, - 241, - 255, - 255, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 252, - 245, - 19, - 1, - 4, - 2, - 0, - 184, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 157, - 156, - 156, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 50, - 36, - 36, - 36, - 38, - 193, - 255, - 249, - 54, - 37, - 160, - 255, - 255, - 158, - 37, - 50, - 241, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 232, - 0, - 0, - 108, - 255, - 255, - 104, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 228, - 2, - 0, - 0, - 0, - 0, - 161, - 255, - 241, - 4, - 0, - 121, - 255, - 255, - 117, - 0, - 2, - 228, - 255, - 255, - 249, - 255, - 255, - 224, - 212, - 212, - 212, - 215, - 254, - 255, - 255, - 226, - 213, - 249, - 255, - 255, - 248, - 213, - 224, - 255, - 255, - 249, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 21, - 169, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 168, - 20 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61449 - } - }, - { - "encoding": 69, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 17, - 163, - 244, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 248, - 176, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 255, - 250, - 221, - 220, - 220, - 220, - 220, - 220, - 220, - 243, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 249, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 218, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 253, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 139, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 242, - 76, - 0, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 242, - 43, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 49, - 64, - 64, - 160, - 255, - 255, - 221, - 19, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 5, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 3, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 49, - 64, - 64, - 160, - 255, - 255, - 218, - 17, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 255, - 242, - 41, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 132, - 78, - 0, - 99, - 244, - 76, - 0, - 0, - 0, - 255, - 255, - 217, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 255, - 252, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 216, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 249, - 255, - 255, - 247, - 213, - 212, - 212, - 212, - 212, - 212, - 212, - 239, - 255, - 255, - 255, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 169, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 182, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62244 - } - }, - { - "encoding": 70, - "x": 0, - "y": 1, - "width": 19, - "height": 18, - "dx": 19, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 15, - 199, - 252, - 252, - 252, - 252, - 250, - 175, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 48, - 107, - 108, - 108, - 108, - 107, - 52, - 0, - 90, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 80, - 0, - 46, - 249, - 255, - 255, - 255, - 255, - 255, - 252, - 57, - 1, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 46, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 3, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61588 - } - }, - { - "encoding": 71, - "x": 0, - "y": -1, - "width": 17, - "height": 18, - "dx": 19, - "glyphBitmap": { - "height": 18, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 77, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 185, - 255, - 181, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 196, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 242, - 255, - 128, - 0, - 0, - 17, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 249, - 255, - 193, - 8, - 15, - 203, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 226, - 255, - 255, - 253, - 253, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 203, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 253, - 255, - 255, - 174, - 164, - 113, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 244, - 255, - 250, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 240, - 255, - 247, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 145, - 152, - 129, - 247, - 255, - 251, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 252, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 231, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 254, - 99, - 4, - 82, - 255, - 255, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 102, - 0, - 0, - 0, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 249, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 247, - 242, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 79, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 0, - "y": 0, - "width": 22, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 22, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 222, - 222, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 239, - 255, - 255, - 238, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 255, - 239, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 52, - 0, - 0, - 0, - 0, - 0, - 53, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 52, - 0, - 0, - 0, - 53, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 52, - 0, - 53, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 53, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 214, - 255, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 255, - 214, - 23, - 86, - 78, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 113, - 112, - 175, - 254, - 255, - 255, - 255, - 255, - 255, - 78, - 86, - 22, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 246, - 70, - 0, - 0, - 0, - 0, - 67, - 245, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 252, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 251, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 230, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 63, - 255, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 12, - 207, - 255, - 255, - 228, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 205, - 11, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 62351 - } - }, - { - "encoding": 73, - "x": 1, - "y": 0, - "width": 16, - "height": 13, - "dx": 19, - "glyphBitmap": { - "height": 13, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 218, - 252, - 252, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 32, - 146, - 255, - 255, - 255, - 255, - 146, - 32, - 32, - 32, - 84, - 228, - 228, - 153, - 18, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 244, - 255, - 203, - 67, - 11, - 24, - 108, - 241, - 255, - 255, - 255, - 93, - 4, - 4, - 10, - 236, - 244, - 201, - 11, - 125, - 224, - 224, - 124, - 54, - 249, - 255, - 255, - 80, - 0, - 0, - 0, - 232, - 244, - 61, - 124, - 167, - 21, - 22, - 170, - 122, - 150, - 255, - 255, - 208, - 172, - 172, - 178, - 243, - 239, - 3, - 221, - 18, - 0, - 0, - 19, - 220, - 87, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 240, - 6, - 223, - 15, - 0, - 0, - 16, - 223, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 244, - 72, - 131, - 159, - 15, - 16, - 161, - 129, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 244, - 216, - 23, - 134, - 229, - 230, - 133, - 76, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 244, - 255, - 222, - 98, - 43, - 55, - 138, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 2, - "y": 0, - "width": 15, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 211, - 0, - 0, - 203, - 0, - 203, - 0, - 0, - 210, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 232, - 0, - 232, - 0, - 0, - 232, - 0, - 0, - 0, - 197, - 242, - 240, - 254, - 240, - 240, - 254, - 240, - 254, - 240, - 240, - 254, - 240, - 242, - 195, - 235, - 8, - 0, - 225, - 0, - 0, - 221, - 0, - 221, - 0, - 0, - 224, - 0, - 9, - 235, - 232, - 0, - 0, - 2, - 0, - 0, - 1, - 0, - 1, - 0, - 0, - 2, - 0, - 0, - 232, - 232, - 0, - 0, - 228, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 228, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 228, - 240, - 240, - 240, - 240, - 240, - 240, - 11, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 228, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 11, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 228, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 11, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 228, - 240, - 240, - 240, - 240, - 240, - 11, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 234, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 234, - 215, - 239, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 239, - 213 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 5, - "y": 0, - "width": 8, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 8, - "pixelArray": [ - 0, - 0, - 0, - 0, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 233, - 33, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 197, - 0, - 0, - 0, - 0, - 0, - 158, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 212, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 222, - 3, - 0, - 0, - 100, - 251, - 255, - 255, - 255, - 185, - 7, - 77, - 254, - 255, - 255, - 255, - 255, - 255, - 121, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 237, - 255, - 255, - 86, - 85, - 255, - 255, - 237, - 164, - 255, - 255, - 3, - 3, - 255, - 255, - 164, - 31, - 235, - 255, - 66, - 65, - 255, - 235, - 30, - 0, - 34, - 174, - 239, - 238, - 174, - 34, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 2, - "y": 2, - "width": 14, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 3, - 103, - 200, - 244, - 246, - 199, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 18, - 196, - 255, - 255, - 231, - 227, - 255, - 255, - 212, - 23, - 0, - 0, - 0, - 1, - 191, - 255, - 191, - 45, - 0, - 0, - 34, - 175, - 255, - 202, - 5, - 0, - 0, - 87, - 255, - 201, - 8, - 0, - 0, - 0, - 0, - 3, - 189, - 255, - 102, - 0, - 0, - 176, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 183, - 0, - 0, - 212, - 255, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 214, - 0, - 0, - 216, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 0, - 35, - 221, - 255, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 255, - 221, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 1, - "y": -1, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 164, - 234, - 244, - 191, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 246, - 223, - 251, - 253, - 102, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 223, - 249, - 109, - 7, - 0, - 14, - 138, - 249, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 146, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 236, - 3, - 0, - 0, - 0, - 0, - 0, - 28, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 203, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 235, - 3, - 0, - 0, - 0, - 0, - 0, - 26, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 97, - 0, - 0, - 0, - 0, - 0, - 141, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 227, - 247, - 101, - 4, - 0, - 11, - 130, - 254, - 60, - 0, - 0, - 0, - 0, - 4, - 104, - 173, - 255, - 239, - 255, - 241, - 215, - 247, - 255, - 144, - 0, - 0, - 0, - 0, - 2, - 169, - 255, - 255, - 185, - 14, - 136, - 226, - 255, - 220, - 107, - 0, - 0, - 0, - 0, - 1, - 156, - 255, - 255, - 255, - 126, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 236, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 238, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 240, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 242, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 173, - 186, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 31, - 135, - 202, - 244, - 244, - 202, - 136, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 116, - 248, - 255, - 255, - 229, - 229, - 255, - 255, - 248, - 116, - 1, - 0, - 0, - 0, - 0, - 158, - 255, - 240, - 116, - 29, - 47, - 46, - 28, - 116, - 240, - 255, - 157, - 0, - 0, - 0, - 107, - 255, - 228, - 35, - 0, - 31, - 255, - 255, - 31, - 0, - 34, - 228, - 255, - 106, - 0, - 21, - 242, - 247, - 45, - 0, - 0, - 56, - 205, - 202, - 55, - 0, - 0, - 44, - 247, - 241, - 19, - 120, - 255, - 139, - 0, - 0, - 0, - 0, - 154, - 152, - 0, - 0, - 0, - 0, - 139, - 255, - 116, - 189, - 255, - 47, - 0, - 0, - 0, - 44, - 226, - 226, - 42, - 0, - 0, - 0, - 48, - 255, - 188, - 236, - 240, - 2, - 0, - 0, - 3, - 224, - 195, - 195, - 221, - 2, - 0, - 0, - 2, - 241, - 235, - 253, - 219, - 0, - 44, - 255, - 255, - 255, - 22, - 21, - 255, - 255, - 255, - 44, - 0, - 219, - 252, - 237, - 235, - 0, - 0, - 0, - 4, - 230, - 184, - 184, - 227, - 3, - 0, - 0, - 0, - 235, - 238, - 192, - 255, - 37, - 0, - 0, - 0, - 54, - 237, - 237, - 52, - 0, - 0, - 0, - 28, - 255, - 195, - 124, - 255, - 119, - 0, - 0, - 0, - 0, - 171, - 170, - 0, - 0, - 0, - 0, - 119, - 255, - 122, - 24, - 244, - 237, - 24, - 0, - 0, - 37, - 190, - 189, - 36, - 0, - 0, - 23, - 238, - 245, - 25, - 0, - 113, - 255, - 206, - 14, - 0, - 48, - 255, - 255, - 42, - 0, - 14, - 197, - 255, - 116, - 0, - 0, - 1, - 167, - 255, - 216, - 74, - 4, - 70, - 73, - 1, - 75, - 220, - 255, - 167, - 1, - 0, - 0, - 0, - 2, - 125, - 251, - 255, - 240, - 189, - 189, - 234, - 255, - 252, - 129, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 144, - 207, - 248, - 249, - 210, - 146, - 39, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 1, - "y": 2, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 90, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 235, - 90, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 1, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 2, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 6, - 0, - 92, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 16, - 0, - 63, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 241, - 255, - 255, - 251, - 49, - 0, - 32, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 2, - 52, - 237, - 255, - 134, - 0, - 2, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 44, - 202, - 8, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 3, - 0, - 8, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 95, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 95 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 5, - "y": 0, - "width": 9, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 9, - "pixelArray": [ - 0, - 7, - 126, - 219, - 249, - 218, - 124, - 6, - 0, - 7, - 195, - 255, - 255, - 255, - 255, - 255, - 192, - 6, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 218, - 255, - 255, - 107, - 11, - 110, - 255, - 255, - 217, - 252, - 255, - 255, - 20, - 0, - 20, - 255, - 255, - 252, - 228, - 255, - 255, - 207, - 131, - 209, - 255, - 255, - 227, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 22, - 228, - 255, - 255, - 255, - 255, - 255, - 227, - 20, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 66, - 0, - 0, - 1, - 227, - 255, - 255, - 255, - 226, - 1, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 137, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 212, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 253, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 2, - "y": 1, - "width": 17, - "height": 19, - "dx": 22, - "glyphBitmap": { - "height": 19, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 240, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 86, - 89, - 0, - 192, - 255, - 255, - 16, - 51, - 105, - 10, - 0, - 0, - 0, - 0, - 0, - 14, - 182, - 255, - 255, - 61, - 192, - 255, - 255, - 14, - 237, - 255, - 210, - 29, - 0, - 0, - 0, - 7, - 198, - 255, - 255, - 243, - 33, - 192, - 255, - 255, - 16, - 206, - 255, - 255, - 218, - 16, - 0, - 0, - 145, - 255, - 255, - 195, - 31, - 0, - 192, - 255, - 255, - 16, - 13, - 171, - 255, - 255, - 165, - 0, - 36, - 252, - 255, - 186, - 9, - 0, - 0, - 192, - 255, - 255, - 16, - 0, - 3, - 171, - 255, - 255, - 47, - 136, - 255, - 241, - 22, - 0, - 0, - 0, - 192, - 255, - 255, - 16, - 0, - 0, - 15, - 236, - 255, - 145, - 205, - 255, - 159, - 0, - 0, - 0, - 0, - 163, - 255, - 237, - 5, - 0, - 0, - 0, - 153, - 255, - 209, - 242, - 255, - 92, - 0, - 0, - 0, - 0, - 20, - 120, - 50, - 0, - 0, - 0, - 0, - 90, - 255, - 244, - 253, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 253, - 233, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 230, - 184, - 255, - 183, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 188, - 255, - 179, - 102, - 255, - 254, - 66, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 255, - 255, - 96, - 10, - 230, - 255, - 233, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 235, - 255, - 226, - 8, - 0, - 78, - 255, - 255, - 246, - 121, - 18, - 0, - 0, - 0, - 19, - 124, - 247, - 255, - 254, - 72, - 0, - 0, - 0, - 115, - 255, - 255, - 255, - 251, - 212, - 191, - 212, - 251, - 255, - 255, - 254, - 109, - 0, - 0, - 0, - 0, - 0, - 83, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 109, - 190, - 236, - 253, - 236, - 189, - 108, - 12, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "../../../btsync_martin/PSU/Fonts/heydings_controls.ttf", - "size": 16, - "encoding": 79 - } - }, - { - "encoding": 82, - "x": 1, - "y": 0, - "width": 17, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 17, - "pixelArray": [ - 96, - 235, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 243, - 128, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 24, - 255, - 255, - 255, - 128, - 64, - 114, - 173, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 100, - 0, - 0, - 0, - 21, - 143, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 232, - 197, - 146, - 58, - 0, - 0, - 60, - 225, - 255, - 255, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 30, - 0, - 27, - 222, - 255, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 105, - 37, - 108, - 214, - 255, - 234, - 48, - 0, - 46, - 250, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 100, - 0, - 0, - 5, - 146, - 255, - 232, - 23, - 0, - 127, - 255, - 255, - 255, - 40, - 255, - 255, - 255, - 224, - 147, - 18, - 0, - 0, - 151, - 255, - 170, - 0, - 10, - 236, - 255, - 255, - 40, - 255, - 255, - 255, - 255, - 255, - 211, - 11, - 0, - 7, - 220, - 255, - 39, - 0, - 145, - 255, - 255, - 40, - 255, - 255, - 254, - 63, - 66, - 254, - 122, - 0, - 0, - 113, - 255, - 128, - 0, - 81, - 255, - 255, - 40, - 255, - 255, - 222, - 0, - 0, - 222, - 210, - 0, - 0, - 44, - 255, - 183, - 0, - 29, - 255, - 255, - 40, - 255, - 255, - 250, - 30, - 32, - 251, - 249, - 0, - 0, - 5, - 255, - 211, - 0, - 4, - 255, - 255, - 40, - 255, - 255, - 255, - 241, - 242, - 255, - 255, - 212, - 212, - 212, - 255, - 249, - 212, - 212, - 255, - 255, - 40, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 25, - 103, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 136, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 0, - "y": 0, - "width": 23, - "height": 22, - "dx": 22, - "glyphBitmap": { - "height": 22, - "width": 23, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 213, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 199, - 255, - 254, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 174, - 255, - 255, - 255, - 247, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 235, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 20, - 0, - 0, - 0, - 0, - 45, - 123, - 124, - 124, - 100, - 4, - 0, - 0, - 79, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 8, - 0, - 0, - 0, - 232, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 157, - 228, - 228, - 255, - 255, - 255, - 255, - 255, - 242, - 228, - 228, - 46, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 155, - 220, - 220, - 255, - 255, - 255, - 255, - 255, - 238, - 220, - 220, - 41, - 0, - 0, - 234, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 9, - 0, - 0, - 49, - 127, - 128, - 128, - 105, - 5, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 150, - 255, - 255, - 255, - 255, - 255, - 238, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 179, - 255, - 255, - 255, - 249, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 204, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 218, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 16, - "encoding": 61724 - } - }, - { - "encoding": 84, - "x": 3, - "y": 0, - "width": 13, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 200, - 252, - 252, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 98, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 134, - 243, - 255, - 255, - 255, - 255, - 207, - 47, - 0, - 0, - 0, - 18, - 202, - 220, - 100, - 30, - 21, - 30, - 100, - 221, - 241, - 52, - 0, - 0, - 186, - 178, - 11, - 0, - 0, - 190, - 0, - 0, - 11, - 181, - 221, - 7, - 81, - 217, - 9, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 10, - 218, - 102, - 177, - 91, - 0, - 0, - 0, - 0, - 232, - 19, - 173, - 169, - 0, - 92, - 185, - 226, - 18, - 0, - 0, - 0, - 0, - 238, - 225, - 227, - 52, - 0, - 18, - 228, - 230, - 0, - 0, - 0, - 0, - 0, - 243, - 190, - 22, - 0, - 0, - 0, - 230, - 208, - 14, - 0, - 0, - 0, - 0, - 68, - 3, - 0, - 0, - 0, - 14, - 207, - 145, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 82, - 144, - 46, - 204, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 205, - 46, - 0, - 132, - 159, - 4, - 0, - 0, - 0, - 0, - 0, - 5, - 162, - 132, - 0, - 0, - 0, - 141, - 204, - 78, - 10, - 0, - 11, - 78, - 205, - 140, - 0, - 0, - 0, - 0, - 0, - 62, - 163, - 226, - 235, - 226, - 163, - 62, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 3, - "y": 0, - "width": 13, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 13, - "pixelArray": [ - 217, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 251, - 162, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 188, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 188, - 233, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 245, - 188, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 244, - 181, - 4, - 4, - 232, - 4, - 232, - 4, - 244, - 189, - 4, - 220, - 188, - 244, - 251, - 240, - 240, - 254, - 240, - 254, - 240, - 255, - 251, - 240, - 253, - 188, - 244, - 180, - 0, - 0, - 232, - 0, - 232, - 0, - 244, - 188, - 0, - 220, - 188, - 244, - 180, - 0, - 0, - 232, - 0, - 232, - 0, - 244, - 188, - 0, - 220, - 188, - 244, - 251, - 240, - 240, - 254, - 240, - 254, - 240, - 255, - 251, - 240, - 253, - 188, - 244, - 180, - 0, - 0, - 232, - 0, - 232, - 0, - 244, - 188, - 0, - 220, - 188, - 244, - 251, - 240, - 240, - 254, - 240, - 254, - 240, - 255, - 188, - 0, - 220, - 188, - 244, - 180, - 0, - 0, - 232, - 0, - 232, - 0, - 244, - 188, - 0, - 220, - 188, - 244, - 180, - 0, - 0, - 232, - 0, - 232, - 0, - 244, - 188, - 0, - 220, - 188, - 224, - 250, - 236, - 236, - 254, - 236, - 254, - 236, - 255, - 250, - 236, - 253, - 167 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 1, - "y": 0, - "width": 15, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 71, - 120, - 124, - 164, - 85, - 0, - 0, - 0, - 0, - 31, - 79, - 129, - 124, - 176, - 227, - 47, - 254, - 71, - 179, - 131, - 49, - 138, - 121, - 190, - 207, - 57, - 255, - 54, - 197, - 157, - 92, - 247, - 17, - 244, - 177, - 94, - 255, - 36, - 214, - 132, - 113, - 236, - 19, - 252, - 159, - 156, - 155, - 100, - 62, - 14, - 49, - 221, - 32, - 255, - 146, - 159, - 144, - 94, - 53, - 8, - 0, - 0, - 0, - 0, - 0, - 7, - 135, - 89, - 44, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 243, - 240, - 244, - 241, - 241, - 244, - 240, - 243, - 242, - 241, - 244, - 240, - 242, - 0, - 255, - 150, - 77, - 254, - 44, - 185, - 194, - 39, - 253, - 83, - 145, - 225, - 20, - 238, - 0, - 249, - 30, - 203, - 175, - 56, - 255, - 68, - 161, - 213, - 26, - 247, - 107, - 124, - 255, - 0, - 255, - 249, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 0, - 214, - 100, - 100, - 100, - 100, - 100, - 85, - 84, - 100, - 100, - 100, - 100, - 100, - 214, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 238, - 255, - 255, - 255, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 1, - "y": 0, - "width": 17, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 171, - 237, - 171, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 110, - 5, - 110, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 2, - 0, - 2, - 231, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 124, - 203, - 123, - 209, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 252, - 255, - 251, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 252, - 252, - 252, - 252, - 255, - 252, - 252, - 252, - 252, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 2, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 2, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 29, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 10, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 10 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 1, - "y": 2, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 90, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 235, - 90, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 255, - 255, - 255, - 211, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 211, - 255, - 255, - 255, - 255, - 255, - 219, - 24, - 21, - 215, - 255, - 255, - 255, - 255, - 215, - 21, - 24, - 219, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 28, - 224, - 255, - 255, - 223, - 27, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 254, - 95, - 0, - 0, - 36, - 231, - 230, - 35, - 0, - 0, - 96, - 254, - 255, - 255, - 255, - 255, - 255, - 252, - 81, - 0, - 0, - 44, - 44, - 0, - 0, - 82, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 69, - 0, - 0, - 0, - 0, - 70, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 11, - 0, - 0, - 11, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 75, - 0, - 0, - 0, - 0, - 76, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 87, - 0, - 0, - 40, - 40, - 0, - 0, - 88, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 32, - 228, - 227, - 31, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 25, - 220, - 255, - 255, - 219, - 24, - 0, - 0, - 131, - 255, - 255, - 255, - 255, - 215, - 21, - 18, - 211, - 255, - 255, - 255, - 255, - 211, - 18, - 21, - 216, - 255, - 255, - 255, - 255, - 255, - 206, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 206, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 95, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 96 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 1, - "y": 0, - "width": 16, - "height": 14, - "dx": 19, - "glyphBitmap": { - "height": 14, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 118, - 221, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 26, - 54, - 84, - 133, - 193, - 250, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 244, - 250, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 5, - 0, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 5, - 9, - 232, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 229, - 255, - 216, - 0, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 216, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 216, - 0, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 216, - 255, - 255, - 216, - 0, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 216, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 239, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 152, - 239, - 255, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 1, - "y": 0, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 78, - 124, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 246, - 255, - 255, - 59, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 212, - 253, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 209, - 0, - 0, - 159, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 160, - 159, - 0, - 166, - 243, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 240, - 240, - 240, - 243, - 243, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 240, - 240, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 241, - 240, - 243, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 240, - 240, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 241, - 240, - 243, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 236, - 236, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 0, - "y": 1, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 78, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 78, - 255, - 255, - 40, - 2, - 103, - 182, - 134, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 40, - 106, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 40, - 185, - 255, - 255, - 255, - 249, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 255, - 255, - 40, - 142, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 1, - 37, - 6, - 0, - 0, - 40, - 255, - 255, - 40, - 18, - 176, - 253, - 206, - 46, - 0, - 0, - 0, - 0, - 3, - 155, - 255, - 207, - 21, - 0, - 40, - 255, - 255, - 40, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 5, - 166, - 255, - 255, - 255, - 213, - 25, - 40, - 255, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 176, - 255, - 255, - 255, - 255, - 255, - 160, - 40, - 255, - 255, - 40, - 0, - 0, - 27, - 171, - 135, - 3, - 10, - 185, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 40, - 0, - 27, - 218, - 255, - 255, - 162, - 9, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 40, - 27, - 218, - 255, - 255, - 255, - 255, - 162, - 8, - 172, - 255, - 255, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 40, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 7, - 168, - 255, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 40, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 6, - 165, - 255, - 255, - 255, - 164, - 40, - 255, - 255, - 40, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 1, - 4, - 4, - 4, - 3, - 40, - 255, - 255, - 159, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 140, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 8887 - } - }, - { - "encoding": 92, - "x": 2, - "y": 2, - "width": 14, - "height": 17, - "dx": 19, - "glyphBitmap": { - "width": 14, - "height": 17, - "pixelArray": [ - 0, - 0, - 0, - 3, - 103, - 200, - 244, - 246, - 199, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 18, - 196, - 255, - 255, - 231, - 227, - 255, - 255, - 212, - 23, - 0, - 0, - 0, - 1, - 191, - 255, - 191, - 45, - 0, - 0, - 34, - 175, - 255, - 202, - 5, - 0, - 0, - 87, - 255, - 201, - 8, - 0, - 0, - 0, - 0, - 3, - 189, - 255, - 102, - 0, - 0, - 176, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 183, - 0, - 0, - 0, - 0, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 214, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 255, - 221, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 76 - } - }, - { - "encoding": 93, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 119, - 0, - 0, - 183, - 252, - 119, - 0, - 9, - 238, - 250, - 59, - 0, - 120, - 251, - 198, - 40, - 201, - 255, - 255, - 143, - 0, - 0, - 207, - 255, - 143, - 0, - 15, - 255, - 255, - 79, - 0, - 143, - 255, - 255, - 200, - 255, - 255, - 181, - 36, - 0, - 0, - 62, - 100, - 36, - 0, - 1, - 87, - 98, - 13, - 0, - 37, - 182, - 255, - 255, - 128, - 147, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 147, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 107, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 75, - 10, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 226, - 0, - 0, - 0, - 0, - 0, - 11, - 75, - 56, - 254, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 254, - 244, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 243, - 12, - 19, - 1, - 0, - 0, - 158, - 236, - 236, - 245, - 255, - 255, - 236, - 236, - 223, - 52, - 0, - 1, - 19, - 12, - 0, - 0, - 0, - 0, - 0, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 119, - 139, - 31, - 0, - 0, - 53, - 116, - 116, - 178, - 255, - 248, - 116, - 116, - 103, - 9, - 0, - 32, - 139, - 118, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 192, - 211, - 59, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 60, - 211, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 241, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 139, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 139, - 118, - 255, - 255, - 175, - 31, - 0, - 0, - 55, - 92, - 31, - 0, - 1, - 78, - 90, - 10, - 0, - 32, - 176, - 255, - 255, - 205, - 255, - 255, - 143, - 0, - 0, - 207, - 255, - 143, - 0, - 15, - 255, - 255, - 79, - 0, - 143, - 255, - 255, - 204, - 48, - 204, - 255, - 124, - 0, - 0, - 189, - 255, - 124, - 0, - 10, - 244, - 254, - 62, - 0, - 125, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61874 - } - }, - { - "encoding": 94, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 42, - 198, - 251, - 119, - 0, - 0, - 183, - 252, - 119, - 0, - 9, - 238, - 250, - 59, - 0, - 120, - 251, - 198, - 40, - 201, - 255, - 255, - 143, - 0, - 0, - 207, - 255, - 143, - 0, - 15, - 255, - 255, - 79, - 0, - 143, - 255, - 255, - 200, - 255, - 255, - 181, - 36, - 0, - 0, - 62, - 100, - 36, - 0, - 1, - 87, - 98, - 13, - 0, - 37, - 182, - 255, - 255, - 128, - 147, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 147, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 11, - 7, - 240, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 239, - 255, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 254, - 65, - 83, - 13, - 0, - 0, - 99, - 172, - 172, - 172, - 172, - 172, - 172, - 172, - 159, - 25, - 0, - 14, - 83, - 65, - 0, - 0, - 0, - 0, - 0, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 57, - 75, - 10, - 0, - 0, - 106, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 167, - 29, - 0, - 11, - 75, - 56, - 254, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 255, - 254, - 244, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 243, - 12, - 19, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 19, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 139, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 139, - 118, - 255, - 255, - 175, - 31, - 0, - 0, - 55, - 92, - 31, - 0, - 1, - 78, - 90, - 10, - 0, - 32, - 176, - 255, - 255, - 205, - 255, - 255, - 143, - 0, - 0, - 207, - 255, - 143, - 0, - 15, - 255, - 255, - 79, - 0, - 143, - 255, - 255, - 204, - 48, - 204, - 255, - 124, - 0, - 0, - 189, - 255, - 124, - 0, - 10, - 244, - 254, - 62, - 0, - 125, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61875 - } - }, - { - "encoding": 95, - "x": 1, - "y": 2, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 90, - 234, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 235, - 90, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 1, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 2, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 6, - 0, - 92, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 16, - 0, - 63, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 241, - 255, - 255, - 251, - 49, - 0, - 32, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 2, - 52, - 237, - 255, - 134, - 0, - 2, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 149, - 0, - 0, - 44, - 202, - 8, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 3, - 0, - 8, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 186, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 95, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 95 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 79 - } - }, - { - "encoding": 96, - "x": 0, - "y": 3, - "width": 16, - "height": 18, - "dx": 16, - "glyphBitmap": { - "height": 18, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 147, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 160, - 255, - 242, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 160, - 255, - 255, - 255, - 242, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 161, - 255, - 255, - 255, - 255, - 255, - 242, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 161, - 255, - 255, - 230, - 255, - 250, - 237, - 255, - 242, - 57, - 0, - 0, - 0, - 0, - 3, - 162, - 255, - 255, - 164, - 103, - 255, - 240, - 49, - 238, - 255, - 242, - 58, - 0, - 0, - 3, - 162, - 255, - 255, - 163, - 3, - 100, - 255, - 240, - 0, - 49, - 238, - 255, - 242, - 58, - 0, - 154, - 255, - 255, - 163, - 3, - 0, - 100, - 255, - 240, - 0, - 0, - 50, - 238, - 255, - 243, - 47, - 242, - 255, - 162, - 3, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 50, - 238, - 255, - 119, - 68, - 105, - 3, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 42, - 119, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 237, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 16 - }, - "source": { - "filePath": "fonts\\fontello.ttf", - "size": 14, - "encoding": 59394 - } - }, - { - "encoding": 97, - "x": 1, - "y": 0, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 132, - 232, - 229, - 139, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 171, - 236, - 61, - 3, - 123, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 171, - 237, - 48, - 0, - 0, - 4, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 170, - 238, - 55, - 4, - 0, - 0, - 62, - 222, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 100, - 229, - 218, - 4, - 48, - 237, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 241, - 233, - 255, - 231, - 52, - 236, - 165, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 233, - 94, - 235, - 167, - 3, - 0, - 0, - 0, - 0, - 1, - 79, - 133, - 107, - 232, - 255, - 255, - 240, - 254, - 169, - 3, - 0, - 0, - 0, - 0, - 4, - 171, - 255, - 240, - 255, - 255, - 234, - 111, - 136, - 82, - 1, - 0, - 0, - 0, - 0, - 3, - 168, - 238, - 94, - 229, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 161, - 238, - 54, - 226, - 255, - 235, - 240, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 238, - 50, - 3, - 219, - 230, - 97, - 254, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 63, - 0, - 0, - 5, - 54, - 236, - 178, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 223, - 3, - 0, - 0, - 46, - 236, - 177, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 117, - 2, - 55, - 235, - 175, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 144, - 227, - 235, - 135, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 1, - "y": 0, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 70, - 219, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 218, - 68, - 212, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 212, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 213, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 212, - 73, - 221, - 240, - 240, - 240, - 241, - 122, - 0, - 0, - 128, - 241, - 240, - 240, - 240, - 221, - 71, - 0, - 0, - 0, - 0, - 0, - 87, - 238, - 11, - 20, - 244, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 234, - 108, - 132, - 219, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 223, - 240, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 254, - 239, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 178, - 131, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 2, - "y": 0, - "width": 15, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 212, - 0, - 0, - 203, - 0, - 203, - 0, - 0, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 232, - 0, - 232, - 0, - 0, - 232, - 0, - 0, - 0, - 197, - 242, - 240, - 254, - 240, - 240, - 254, - 240, - 254, - 240, - 240, - 254, - 240, - 242, - 195, - 235, - 8, - 0, - 225, - 0, - 0, - 220, - 0, - 220, - 0, - 0, - 224, - 0, - 9, - 235, - 232, - 0, - 0, - 2, - 0, - 0, - 1, - 0, - 1, - 0, - 0, - 2, - 0, - 0, - 232, - 232, - 0, - 0, - 203, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 209, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 0, - 232, - 232, - 0, - 0, - 81, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 83, - 0, - 232, - 241, - 137, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 132, - 137, - 241, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 5, - "y": 0, - "width": 9, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 9, - "pixelArray": [ - 0, - 0, - 0, - 252, - 252, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 11, - 123, - 124, - 255, - 255, - 251, - 124, - 121, - 7, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 23, - 240, - 255, - 255, - 255, - 234, - 17, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 97, - 0, - 0, - 0, - 0, - 3, - 205, - 255, - 197, - 1, - 0, - 0, - 0, - 0, - 0, - 55, - 250, - 47, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 45, - 76, - 106, - 137, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 216, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 254, - 255, - 255, - 255, - 255, - 169, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 193, - 24, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 59, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 4, - 4, - 4, - 4, - 4, - 2, - 137, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 174, - 62, - 240, - 255, - 216, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 179, - 15, - 0, - 49, - 255, - 216, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 183, - 37, - 178, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 188, - 8, - 226, - 216, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 192, - 10, - 0, - 255, - 216, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 0, - 0, - 255, - 216, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 0, - 0, - 255, - 216, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 0, - 0, - 255, - 249, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 255, - 216, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 3, - "y": 0, - "width": 12, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 12, - "pixelArray": [ - 191, - 191, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 215, - 215, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 6, - 22, - 129, - 162, - 104, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 232, - 255, - 255, - 255, - 239, - 115, - 15, - 0, - 0, - 68, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 207, - 219, - 255, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 222, - 136, - 116, - 162, - 240, - 255, - 255, - 255, - 255, - 255, - 0, - 232, - 9, - 0, - 0, - 0, - 8, - 93, - 180, - 229, - 215, - 128, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 1, - "y": 0, - "width": 16, - "height": 14, - "dx": 19, - "glyphBitmap": { - "height": 14, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 245, - 252, - 252, - 252, - 252, - 252, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 250, - 255, - 255, - 255, - 255, - 255, - 249, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 232, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 245, - 252, - 252, - 255, - 252, - 252, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 249, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 205, - 10, - 4, - 144, - 194, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 219, - 42, - 0, - 0, - 1, - 161, - 189, - 9, - 0, - 0, - 0, - 243, - 252, - 252, - 252, - 253, - 255, - 245, - 0, - 0, - 243, - 252, - 255, - 253, - 252, - 252, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 255, - 255, - 255, - 255, - 255, - 249, - 0, - 0, - 249, - 255, - 255, - 255, - 255, - 255, - 249 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 1, - "y": 0, - "width": 16, - "height": 14, - "dx": 19, - "glyphBitmap": { - "height": 14, - "width": 16, - "pixelArray": [ - 0, - 33, - 170, - 238, - 230, - 119, - 2, - 0, - 0, - 0, - 113, - 227, - 241, - 178, - 39, - 0, - 32, - 235, - 255, - 255, - 255, - 255, - 167, - 1, - 0, - 147, - 255, - 255, - 255, - 255, - 238, - 36, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 106, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 3, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 8, - 0, - 28, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 42, - 0, - 0, - 0, - 39, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 60, - 0, - 0, - 0, - 0, - 0, - 30, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 178, - 255, - 255, - 255, - 255, - 208, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 137, - 255, - 255, - 171, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 126, - 1, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 1, - "y": 0, - "width": 17, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 17, - "pixelArray": [ - 84, - 229, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 230, - 84, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 50, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 13, - 0, - 14, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 5, - 0, - 6, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 3, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 247, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 114, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 1, - 0, - 1, - 4, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 255, - 255, - 255, - 255, - 255, - 228, - 228, - 228, - 228, - 228, - 255, - 255, - 255, - 255, - 255, - 234, - 89, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 89 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": 1, - "y": 1, - "width": 17, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 174, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 126, - 0, - 213, - 30, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 221, - 29, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 221, - 28, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 220, - 27, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 219, - 27, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 0, - 244, - 244, - 244, - 244, - 244, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 217, - 216, - 216, - 216, - 216, - 216, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158 - ], - "width": 17 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61654 - } - }, - { - "encoding": 107, - "x": 1, - "y": 0, - "width": 17, - "height": 15, - "dx": 19, - "glyphBitmap": { - "height": 15, - "width": 17, - "pixelArray": [ - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 252, - 244, - 0, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 0, - 244, - 252, - 252, - 255, - 255, - 248, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 248, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 248, - 255, - 255, - 255, - 255, - 248, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 248, - 255, - 255, - 4, - 4, - 3, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 3, - 4, - 4, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 4, - "y": 0, - "width": 10, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 10, - "pixelArray": [ - 0, - 0, - 58, - 182, - 236, - 236, - 182, - 57, - 0, - 0, - 0, - 97, - 212, - 70, - 5, - 5, - 70, - 211, - 94, - 0, - 42, - 214, - 17, - 0, - 0, - 0, - 0, - 17, - 213, - 39, - 158, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 83, - 154, - 219, - 10, - 0, - 0, - 0, - 4, - 0, - 0, - 10, - 217, - 234, - 0, - 0, - 11, - 13, - 157, - 13, - 10, - 0, - 234, - 218, - 44, - 0, - 127, - 177, - 255, - 178, - 127, - 33, - 222, - 155, - 174, - 0, - 29, - 251, - 166, - 251, - 28, - 116, - 168, - 43, - 252, - 124, - 0, - 140, - 7, - 140, - 19, - 238, - 67, - 0, - 121, - 249, - 37, - 2, - 0, - 2, - 117, - 193, - 0, - 0, - 1, - 191, - 158, - 0, - 0, - 0, - 204, - 96, - 0, - 0, - 0, - 58, - 246, - 8, - 0, - 12, - 254, - 27, - 0, - 0, - 0, - 0, - 252, - 241, - 240, - 241, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 240, - 240, - 240, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 226, - 97, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 1, - "y": -1, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 246, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 132, - 255, - 255, - 0, - 0, - 0, - 173, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 175, - 255, - 255, - 255, - 0, - 0, - 6, - 196, - 179, - 0, - 0, - 0, - 0, - 0, - 31, - 209, - 255, - 255, - 255, - 255, - 0, - 45, - 149, - 22, - 233, - 59, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 0, - 111, - 254, - 88, - 116, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 121, - 186, - 41, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 13, - 230, - 1, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 11, - 231, - 1, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 111, - 188, - 38, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 104, - 252, - 92, - 112, - 151, - 4, - 4, - 4, - 4, - 37, - 213, - 255, - 255, - 255, - 255, - 0, - 52, - 160, - 20, - 229, - 64, - 0, - 0, - 0, - 0, - 0, - 14, - 180, - 255, - 255, - 255, - 0, - 0, - 5, - 191, - 185, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 137, - 255, - 255, - 0, - 0, - 0, - 180, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 247, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 4, - "y": 0, - "width": 10, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 10, - "pixelArray": [ - 208, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 208, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 243, - 244, - 244, - 244, - 243, - 243, - 244, - 244, - 244, - 243, - 244, - 255, - 255, - 251, - 49, - 49, - 250, - 255, - 255, - 244, - 244, - 255, - 255, - 210, - 0, - 0, - 207, - 255, - 255, - 244, - 244, - 255, - 255, - 248, - 36, - 36, - 247, - 255, - 255, - 244, - 213, - 255, - 255, - 255, - 251, - 251, - 255, - 255, - 255, - 214 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 3, - "y": 0, - "width": 13, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 44, - 216, - 226, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 113, - 60, - 196, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 201, - 196, - 167, - 223, - 70, - 0, - 0, - 0, - 0, - 232, - 240, - 240, - 240, - 65, - 0, - 0, - 41, - 221, - 241, - 240, - 244, - 205, - 234, - 0, - 23, - 249, - 240, - 240, - 240, - 240, - 247, - 57, - 0, - 255, - 216, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 229, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 255, - 247, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 216, - 244, - 255, - 255, - 229, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 255, - 216, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 1, - "y": 0, - "width": 17, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 231, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 231, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 80, - 249, - 252, - 252, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 252, - 252, - 250, - 101, - 116, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 236, - 255, - 140, - 116, - 255, - 255, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 255, - 214, - 10, - 247, - 140, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 255, - 140, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 116, - 255, - 255, - 255, - 244, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 244, - 255, - 255, - 255, - 140, - 87, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 110, - 0, - 16, - 211, - 51, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 4, - 230, - 34, - 0, - 0, - 0, - 63, - 32, - 234, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 234, - 0, - 77, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 2, - "y": 0, - "width": 15, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 15, - "pixelArray": [ - 0, - 0, - 0, - 6, - 101, - 68, - 163, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 209, - 255, - 207, - 51, - 175, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 220, - 255, - 255, - 255, - 75, - 186, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 195, - 71, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 232, - 255, - 255, - 255, - 255, - 255, - 56, - 144, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 255, - 255, - 255, - 255, - 255, - 249, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 147, - 114, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 250, - 255, - 255, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 111, - 255, - 255, - 238, - 20, - 0, - 0, - 0, - 21, - 72, - 118, - 112, - 0, - 0, - 0, - 14, - 239, - 255, - 255, - 187, - 7, - 0, - 56, - 237, - 247, - 47, - 205, - 38, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 193, - 41, - 226, - 255, - 255, - 197, - 58, - 195, - 2, - 0, - 0, - 3, - 196, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 110, - 141, - 116, - 0, - 0, - 0, - 26, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 42, - 69, - 0, - 0, - 0, - 0, - 24, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 102, - 188, - 244, - 247, - 196, - 119, - 16, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 3, - "y": 0, - "width": 12, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 12, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 212, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 248, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 163, - 255, - 217, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 212, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 87, - 243, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 6, - 148, - 255, - 255, - 255, - 255, - 162, - 80, - 21, - 0, - 0, - 30, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 28, - 0, - 78, - 155, - 213, - 254, - 255, - 255, - 255, - 255, - 180, - 15, - 0, - 0, - 0, - 0, - 3, - 212, - 255, - 255, - 254, - 130, - 1, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 242, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 235, - 255, - 217, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 180, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 249, - 130, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 168, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 41, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 1, - "y": 0, - "width": 17, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 253, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 108, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 253, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 226, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 161, - 8, - 0, - 25, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 113, - 0, - 0, - 0, - 0, - 6, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 254, - 255, - 255, - 255, - 255, - 255, - 208, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 172, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 199, - 114, - 245, - 255, - 255, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 247, - 253, - 131, - 4, - 0, - 39, - 206, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 226, - 62, - 0, - 0, - 0, - 0, - 6, - 142, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 16, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 1, - "y": -1, - "width": 17, - "height": 15, - "dx": 19, - "glyphBitmap": { - "height": 15, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 183, - 213, - 170, - 127, - 84, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 137, - 250, - 255, - 255, - 255, - 255, - 255, - 222, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 228, - 255, - 255, - 255, - 255, - 255, - 215, - 183, - 255, - 117, - 0, - 0, - 0, - 0, - 44, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 222, - 240, - 16, - 0, - 15, - 144, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 109, - 251, - 237, - 6, - 78, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 0, - 0, - 0, - 44, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 84, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 156, - 21, - 0, - 0, - 0, - 0, - 0, - 23, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 234, - 99, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 225, - 255, - 252, - 147, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 194, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 5, - "y": 0, - "width": 9, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 9, - "pixelArray": [ - 0, - 0, - 0, - 0, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 248, - 44, - 0, - 0, - 0, - 0, - 0, - 2, - 202, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 21, - 237, - 255, - 255, - 255, - 232, - 15, - 0, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 146, - 0, - 11, - 130, - 132, - 255, - 255, - 252, - 132, - 128, - 7, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 248, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 1, - "y": 0, - "width": 16, - "height": 16, - "dx": 19, - "glyphBitmap": { - "height": 16, - "width": 16, - "pixelArray": [ - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 36, - 36, - 36, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 36, - 36, - 36, - 36, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 252, - 252, - 252, - 252, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 232, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 0, - 255, - 255, - 255, - 255, - 255, - 36, - 255, - 255, - 255, - 255, - 36, - 255, - 255, - 255, - 255, - 36, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 1, - "y": -1, - "width": 17, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 17, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 144, - 234, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 119, - 248, - 255, - 255, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 176, - 255, - 255, - 255, - 223, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 206, - 255, - 255, - 255, - 255, - 99, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 225, - 255, - 255, - 255, - 255, - 189, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 223, - 255, - 255, - 255, - 255, - 234, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 187, - 255, - 255, - 255, - 255, - 251, - 65, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 244, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 48, - 162, - 255, - 255, - 244, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 149, - 243, - 62, - 160, - 181, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 120, - 229, - 160, - 238, - 241, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 252, - 255, - 216, - 27, - 202, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 220, - 96, - 249, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 225, - 90, - 245, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 84, - 240, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 61, - 37, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": -1, - "width": 20, - "height": 21, - "dx": 19, - "glyphBitmap": { - "height": 21, - "width": 20, - "pixelArray": [ - 0, - 20, - 90, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 33, - 0, - 0, - 0, - 0, - 184, - 244, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 212, - 235, - 230, - 0, - 0, - 0, - 0, - 208, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 0, - 0, - 0, - 174, - 255, - 244, - 74, - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 130, - 40, - 255, - 0, - 0, - 0, - 234, - 255, - 255, - 122, - 0, - 30, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 13, - 40, - 255, - 0, - 0, - 0, - 38, - 225, - 144, - 7, - 0, - 24, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 10, - 40, - 255, - 0, - 0, - 0, - 10, - 216, - 114, - 0, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 132, - 40, - 255, - 0, - 0, - 0, - 212, - 255, - 255, - 101, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 40, - 255, - 0, - 0, - 0, - 213, - 255, - 255, - 102, - 0, - 225, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 130, - 40, - 255, - 0, - 0, - 0, - 10, - 216, - 114, - 0, - 0, - 30, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 13, - 40, - 255, - 0, - 0, - 0, - 7, - 215, - 109, - 0, - 0, - 24, - 36, - 36, - 36, - 36, - 36, - 30, - 0, - 0, - 0, - 21, - 132, - 0, - 0, - 0, - 207, - 255, - 255, - 97, - 0, - 230, - 255, - 255, - 255, - 255, - 255, - 251, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 105, - 0, - 2, - 4, - 4, - 4, - 4, - 4, - 3, - 28, - 162, - 235, - 245, - 195, - 72, - 0, - 0, - 22, - 226, - 136, - 1, - 0, - 138, - 160, - 160, - 160, - 97, - 0, - 32, - 233, - 255, - 200, - 103, - 255, - 255, - 97, - 0, - 212, - 255, - 255, - 101, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 174, - 255, - 255, - 160, - 40, - 255, - 255, - 245, - 18, - 212, - 255, - 255, - 101, - 0, - 226, - 252, - 252, - 252, - 161, - 2, - 247, - 255, - 255, - 160, - 1, - 4, - 14, - 232, - 80, - 9, - 216, - 113, - 0, - 0, - 30, - 44, - 44, - 44, - 19, - 4, - 252, - 255, - 255, - 211, - 86, - 84, - 94, - 246, - 87, - 0, - 206, - 151, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 35, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 31, - 0, - 116, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 60, - 251, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 65, - 214, - 255, - 255, - 241, - 124, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 30, - 41, - 6, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62060 - } - }, - { - "encoding": 121, - "x": 1, - "y": 0, - "width": 16, - "height": 17, - "dx": 19, - "glyphBitmap": { - "height": 17, - "width": 16, - "pixelArray": [ - 0, - 0, - 0, - 0, - 28, - 133, - 201, - 238, - 238, - 201, - 133, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 221, - 117, - 35, - 1, - 1, - 35, - 115, - 220, - 109, - 0, - 0, - 0, - 0, - 0, - 146, - 178, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 175, - 147, - 0, - 0, - 0, - 92, - 187, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 185, - 94, - 0, - 12, - 219, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 220, - 13, - 105, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 104, - 176, - 66, - 0, - 123, - 242, - 130, - 0, - 0, - 0, - 0, - 125, - 242, - 130, - 0, - 67, - 175, - 222, - 9, - 0, - 224, - 240, - 231, - 0, - 0, - 0, - 0, - 224, - 240, - 231, - 0, - 9, - 222, - 232, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 232, - 224, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 224, - 178, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 177, - 107, - 135, - 0, - 48, - 248, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 59, - 0, - 136, - 107, - 14, - 218, - 20, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 144, - 0, - 20, - 219, - 14, - 0, - 96, - 184, - 5, - 0, - 74, - 195, - 247, - 250, - 204, - 91, - 0, - 5, - 182, - 98, - 0, - 0, - 0, - 153, - 174, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 171, - 153, - 0, - 0, - 0, - 0, - 1, - 115, - 217, - 107, - 27, - 0, - 0, - 26, - 106, - 216, - 117, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 142, - 206, - 235, - 235, - 206, - 142, - 36, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts/heydings_icons.ttf", - "size": 14, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 141, - 251, - 252, - 252, - 252, - 184, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 255, - 255, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 195, - 226, - 238, - 196, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 128, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 224, - 30, - 44, - 44, - 44, - 97, - 243, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 44, - 203, - 137, - 44, - 44, - 30, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 112, - 0, - 0, - 0, - 0, - 0, - 49, - 180, - 205, - 252, - 188, - 158, - 10, - 0, - 0, - 1, - 134, - 188, - 239, - 218, - 186, - 76, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 28, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 160, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 208, - 0, - 0, - 0, - 91, - 249, - 255, - 255, - 255, - 229, - 29, - 0, - 0, - 5, - 206, - 255, - 255, - 255, - 254, - 132, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61606 - } - }, - { - "encoding": 123, - "x": 3, - "y": 0, - "width": 14, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "width": 14, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 7, - 170, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 211, - 255, - 239, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 208, - 255, - 216, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 233, - 252, - 252, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 40, - 0, - 0, - 255, - 255, - 255, - 144, - 3, - 108, - 142, - 36, - 0, - 0, - 255, - 40, - 0, - 0, - 255, - 255, - 255, - 144, - 105, - 255, - 255, - 215, - 0, - 0, - 255, - 40, - 0, - 0, - 126, - 238, - 185, - 61, - 121, - 255, - 255, - 236, - 0, - 0, - 255, - 40, - 0, - 0, - 33, - 250, - 45, - 0, - 12, - 179, - 243, - 75, - 0, - 0, - 255, - 71, - 39, - 90, - 220, - 147, - 0, - 0, - 0, - 68, - 238, - 7, - 0, - 0, - 255, - 255, - 255, - 218, - 107, - 1, - 0, - 0, - 0, - 3, - 208, - 154, - 19, - 0, - 255, - 44, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 194, - 255, - 252, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 31, - 44, - 255, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 255, - 100, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 247, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 255, - 255, - 255, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 228, - 157, - 4, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61709 - } - }, - { - "encoding": 124, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "width": 20, - "pixelArray": [ - 0, - 36, - 80, - 80, - 80, - 80, - 77, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 250, - 255, - 255, - 255, - 255, - 255, - 215, - 7, - 0, - 0, - 1, - 28, - 32, - 32, - 32, - 32, - 13, - 0, - 0, - 180, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 1, - 184, - 255, - 255, - 255, - 255, - 255, - 247, - 69, - 0, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 16, - 12, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 6, - 114, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 192, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 73, - 211, - 255, - 211, - 73, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 216, - 76, - 1, - 0, - 61, - 254, - 60, - 0, - 1, - 77, - 216, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 234, - 6, - 7, - 122, - 154, - 1, - 3, - 1, - 155, - 123, - 8, - 6, - 235, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 52, - 76, - 255, - 255, - 97, - 0, - 98, - 255, - 255, - 77, - 54, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 255, - 255, - 160, - 3, - 212, - 255, - 252, - 249, - 252, - 255, - 213, - 4, - 160, - 255, - 255, - 255, - 255, - 80, - 255, - 255, - 148, - 52, - 25, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 178, - 0, - 25, - 52, - 87, - 255, - 255, - 80, - 222, - 255, - 96, - 97, - 156, - 164, - 255, - 255, - 190, - 108, - 190, - 255, - 255, - 164, - 156, - 95, - 16, - 255, - 255, - 45, - 84, - 248, - 96, - 192, - 255, - 255, - 255, - 255, - 16, - 0, - 16, - 255, - 255, - 255, - 255, - 192, - 16, - 255, - 153, - 0, - 0, - 21, - 24, - 143, - 220, - 225, - 255, - 255, - 137, - 44, - 136, - 255, - 255, - 225, - 220, - 142, - 5, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 206, - 255, - 255, - 255, - 255, - 255, - 208, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 183, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 255, - 255, - 145, - 56, - 145, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 180, - 215, - 9, - 0, - 9, - 215, - 181, - 26, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61494 - } - }, - { - "encoding": 125, - "x": 0, - "y": 0, - "width": 19, - "height": 20, - "dx": 19, - "glyphBitmap": { - "height": 20, - "width": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 1, - 61, - 92, - 92, - 92, - 92, - 92, - 61, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 224, - 248, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 255, - 255, - 45, - 181, - 255, - 255, - 255, - 255, - 255, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 41, - 44, - 44, - 45, - 162, - 255, - 255, - 255, - 255, - 68, - 0, - 0, - 0, - 0, - 0, - 7, - 100, - 153, - 156, - 156, - 156, - 156, - 157, - 222, - 255, - 255, - 255, - 255, - 68, - 88, - 155, - 102, - 4, - 15, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 144, - 255, - 255, - 147, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 68, - 144, - 255, - 255, - 245, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 7, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 92, - 61, - 60, - 60, - 60, - 60, - 31, - 5, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 27, - 50, - 133, - 140, - 140, - 140, - 140, - 145, - 221, - 255, - 255, - 255, - 255, - 253, - 255, - 255, - 255, - 255, - 198, - 0, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 203, - 255, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 64, - 46, - 206, - 255, - 255, - 192, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 67, - 0, - 0, - 0, - 3, - 4, - 3, - 0, - 255, - 255, - 255, - 179, - 5, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 193, - 37, - 36, - 36, - 33, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 255, - 255, - 210, - 65, - 255, - 254, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 203, - 255, - 255, - 255, - 255, - 230, - 108, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61553 - } - }, - { - "encoding": 126, - "x": 0, - "y": 3, - "width": 14, - "height": 14, - "dx": 14, - "glyphBitmap": { - "height": 14, - "width": 14, - "pixelArray": [ - 25, - 229, - 114, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 219, - 78, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 188, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 253, - 152, - 22, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 116, - 7, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 80, - 1, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 11, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 13, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 91, - 2, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 127, - 11, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 28, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 199, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 226, - 89, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 240, - 125, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 10, - "encoding": 61828 - } - }, - { - "encoding": 127, - "x": 0, - "y": 1, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 38, - 199, - 244, - 155, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 255, - 255, - 182, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 231, - 255, - 193, - 115, - 231, - 255, - 183, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 232, - 255, - 181, - 8, - 0, - 39, - 230, - 255, - 184, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 200, - 255, - 192, - 8, - 0, - 0, - 0, - 39, - 230, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 255, - 110, - 0, - 0, - 0, - 1, - 3, - 39, - 230, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 161, - 255, - 227, - 35, - 0, - 1, - 186, - 239, - 63, - 39, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 5, - 242, - 255, - 245, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 61, - 0, - 65, - 157, - 115, - 7, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 35, - 70, - 247, - 255, - 244, - 60, - 39, - 230, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 8, - 124, - 167, - 70, - 0, - 70, - 247, - 255, - 243, - 59, - 38, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 247, - 255, - 239, - 6, - 37, - 229, - 255, - 181, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 66, - 34, - 70, - 245, - 205, - 2, - 0, - 37, - 229, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 163, - 226, - 34, - 10, - 3, - 0, - 0, - 0, - 111, - 255, - 247, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 255, - 225, - 33, - 0, - 0, - 0, - 5, - 185, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 187, - 255, - 225, - 33, - 0, - 5, - 172, - 255, - 234, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 226, - 107, - 184, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 187, - 255, - 255, - 255, - 234, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 161, - 248, - 203, - 42, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61474 - } - }, - { - "encoding": 128, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 52, - 140, - 195, - 237, - 250, - 237, - 195, - 140, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 41, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 40, - 0, - 0, - 0, - 0, - 0, - 86, - 247, - 255, - 255, - 255, - 192, - 128, - 103, - 124, - 189, - 255, - 255, - 255, - 247, - 83, - 0, - 0, - 0, - 63, - 252, - 255, - 255, - 234, - 57, - 0, - 0, - 0, - 0, - 0, - 59, - 231, - 255, - 255, - 252, - 61, - 0, - 13, - 230, - 255, - 255, - 255, - 56, - 0, - 0, - 28, - 58, - 27, - 0, - 0, - 54, - 255, - 255, - 255, - 230, - 13, - 115, - 255, - 255, - 255, - 255, - 217, - 92, - 155, - 255, - 255, - 255, - 151, - 0, - 0, - 210, - 255, - 255, - 255, - 115, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 129, - 0, - 0, - 210, - 255, - 255, - 255, - 190, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 41, - 8, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 243, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 66, - 232, - 255, - 255, - 255, - 255, - 251, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 45, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 36, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 47, - 0, - 145, - 255, - 255, - 255, - 255, - 255, - 255, - 99, - 4, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 4, - 179, - 255, - 255, - 255, - 255, - 255, - 95, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 181, - 4, - 0, - 0, - 0, - 6, - 195, - 255, - 255, - 255, - 255, - 255, - 252, - 255, - 255, - 255, - 255, - 251, - 136, - 5, - 0, - 0, - 0, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 159, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 127, - 255, - 255, - 162, - 48, - 83, - 98, - 85, - 43, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 165, - 255, - 143, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 144, - 63, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61459 - } - }, - { - "encoding": 129, - "x": 0, - "y": 0, - "width": 19, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 44, - 199, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 247, - 62, - 0, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 86, - 20, - 156, - 255, - 255, - 222, - 105, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 96, - 60, - 19, - 208, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 207, - 255, - 251, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 206, - 255, - 255, - 133, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 205, - 255, - 255, - 140, - 1, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 204, - 255, - 255, - 141, - 1, - 140, - 255, - 255, - 96, - 0, - 10, - 182, - 176, - 16, - 0, - 0, - 0, - 16, - 202, - 255, - 255, - 141, - 1, - 140, - 255, - 255, - 255, - 96, - 0, - 51, - 255, - 255, - 202, - 16, - 0, - 15, - 201, - 255, - 255, - 142, - 1, - 83, - 255, - 255, - 255, - 255, - 96, - 0, - 1, - 158, - 255, - 255, - 203, - 31, - 200, - 255, - 255, - 142, - 1, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 2, - 156, - 255, - 255, - 250, - 255, - 255, - 143, - 1, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 2, - 154, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 2, - 147, - 254, - 140, - 1, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 96, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 219, - 101, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 101, - 220, - 255, - 255, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 48, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 46 - ], - "width": 19 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62224 - } - }, - { - "encoding": 130, - "x": 0, - "y": 3, - "width": 20, - "height": 13, - "dx": 19, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 0, - 0, - 24, - 2, - 24, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 92, - 0, - 0, - 0, - 0, - 0, - 8, - 206, - 118, - 3, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 149, - 255, - 252, - 60, - 23, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 229, - 21, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 99, - 255, - 255, - 0, - 0, - 0, - 36, - 242, - 255, - 255, - 255, - 255, - 185, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 61, - 100, - 159, - 255, - 255, - 100, - 100, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 92, - 154, - 255, - 255, - 92, - 92, - 23, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 246, - 255, - 255, - 255, - 255, - 186, - 2, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 230, - 22, - 0, - 0, - 0, - 96, - 255, - 255, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 150, - 0, - 159, - 255, - 253, - 63, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 90, - 10, - 211, - 123, - 0, - 0, - 0, - 0, - 0, - 38, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 100, - 89, - 1, - 28, - 2, - 0, - 0, - 0 - ], - "width": 20 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62598 - } - }, - { - "encoding": 131, - "x": 0, - "y": 4, - "width": 19, - "height": 13, - "dx": 19, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 97, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 224, - 255, - 228, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 223, - 255, - 255, - 255, - 226, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 221, - 255, - 255, - 255, - 255, - 255, - 223, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 217, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 219, - 26, - 0, - 0, - 0, - 0, - 0, - 24, - 215, - 255, - 255, - 255, - 255, - 193, - 23, - 193, - 255, - 255, - 255, - 255, - 217, - 24, - 0, - 0, - 0, - 22, - 213, - 255, - 255, - 255, - 255, - 193, - 12, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 214, - 22, - 0, - 21, - 211, - 255, - 255, - 255, - 255, - 193, - 12, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 211, - 20, - 197, - 255, - 255, - 255, - 255, - 193, - 12, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 255, - 197, - 235, - 255, - 255, - 255, - 193, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 255, - 255, - 235, - 66, - 246, - 255, - 193, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 193, - 255, - 247, - 67, - 0, - 47, - 101, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 101, - 48, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62602 - } - }, - { - "encoding": 132, - "x": 0, - "y": 3, - "width": 19, - "height": 13, - "dx": 19, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 41, - 93, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 93, - 41, - 0, - 62, - 244, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 186, - 255, - 244, - 63, - 232, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 186, - 255, - 255, - 255, - 232, - 201, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 0, - 0, - 9, - 186, - 255, - 255, - 255, - 255, - 201, - 23, - 215, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 0, - 0, - 9, - 186, - 255, - 255, - 255, - 255, - 215, - 23, - 0, - 25, - 217, - 255, - 255, - 255, - 255, - 186, - 9, - 0, - 9, - 186, - 255, - 255, - 255, - 255, - 217, - 25, - 0, - 0, - 0, - 26, - 219, - 255, - 255, - 255, - 255, - 186, - 18, - 186, - 255, - 255, - 255, - 255, - 220, - 27, - 0, - 0, - 0, - 0, - 0, - 28, - 220, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 222, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 224, - 255, - 255, - 255, - 255, - 255, - 226, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 226, - 255, - 255, - 255, - 229, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 227, - 255, - 230, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 103, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ], - "width": 19 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 62603 - } - }, - { - "encoding": 133, - "x": 0, - "y": 0, - "width": 20, - "height": 19, - "dx": 19, - "glyphBitmap": { - "height": 19, - "pixelArray": [ - 0, - 0, - 37, - 231, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 198, - 251, - 252, - 252, - 210, - 58, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 199, - 163, - 47, - 44, - 45, - 140, - 227, - 4, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 51, - 0, - 0, - 0, - 20, - 255, - 30, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 48, - 0, - 0, - 0, - 16, - 255, - 32, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 84, - 36, - 36, - 36, - 56, - 255, - 32, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 58, - 4, - 4, - 4, - 26, - 255, - 32, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 48, - 0, - 0, - 0, - 16, - 255, - 32, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 8, - 0, - 0, - 0, - 1, - 93, - 3, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 36, - 36, - 36, - 36, - 36, - 27, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 231, - 255, - 255, - 255, - 255, - 255, - 245, - 11, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 4, - 4, - 4, - 52, - 245, - 87, - 0, - 0, - 0, - 96, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 226, - 129, - 0, - 0, - 114, - 160, - 196, - 255, - 255, - 160, - 160, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 199, - 171, - 2, - 0, - 0, - 71, - 254, - 255, - 255, - 255, - 255, - 210, - 10, - 0, - 0, - 0, - 0, - 0, - 1, - 163, - 205, - 10, - 0, - 0, - 0, - 0, - 128, - 255, - 255, - 255, - 242, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 230, - 28, - 0, - 0, - 0, - 0, - 0, - 3, - 185, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 252, - 90, - 36, - 36, - 36, - 28, - 0, - 0, - 0, - 20, - 222, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 228, - 255, - 255, - 255, - 255, - 255, - 246, - 14 - ], - "width": 20 - }, - "source": { - "filePath": "fonts/webhostinghub-glyphs.ttf", - "size": 14, - "encoding": 61890 - } - } - ] - }, - { - "name": "WebHostingHub24", - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24 - }, - "bpp": 8, - "height": 35, - "ascent": 35, - "descent": 0, - "glyphs": [ - { - "encoding": 32, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 32 - } - }, - { - "encoding": 33, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 33 - } - }, - { - "encoding": 34, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 34 - } - }, - { - "encoding": 35, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 35 - } - }, - { - "encoding": 36, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 36 - } - }, - { - "encoding": 37, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 37 - } - }, - { - "encoding": 38, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 38 - } - }, - { - "encoding": 39, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 0, - "y": 0, - "width": 33, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 92, - 43, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 236, - 255, - 254, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 238, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 54, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 157, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 224, - 74, - 0, - 63, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 62, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 1, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 39, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 82, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 93, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 114, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 255, - 171, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 169, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 164, - 113, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62213 - } - }, - { - "encoding": 41, - "x": 0, - "y": -1, - "width": 33, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 109, - 156, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 170, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 172, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 174, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 107, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 97, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 33, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 146, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 0, - 122, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 122, - 0, - 0, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 67, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 67, - 0, - 77, - 230, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 66, - 0, - 0, - 0, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 5, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 152, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 58, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 81, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 255, - 237, - 49, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 254, - 255, - 235, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 88, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62212 - } - }, - { - "encoding": 42, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 0, - "width": 35, - "height": 35, - "dx": 35, - "glyphBitmap": { - "width": 35, - "height": 35, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 43 - } - }, - { - "encoding": 44, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 2, - "y": 0, - "width": 10, - "height": 16, - "dx": 14, - "glyphBitmap": { - "height": 16, - "width": 10, - "pixelArray": [ - 0, - 0, - 0, - 142, - 252, - 252, - 130, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 132, - 0, - 0, - 0, - 252, - 252, - 252, - 255, - 255, - 255, - 255, - 252, - 252, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 68, - 68, - 68, - 174, - 255, - 255, - 165, - 68, - 68, - 63, - 0, - 0, - 0, - 144, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 144, - 255, - 255, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 60, - 56, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 236 - ] - }, - "source": { - "filePath": "fonts\\Oswald-Medium.ttf", - "size": 24, - "encoding": 177 - } - }, - { - "encoding": 46, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 46 - } - }, - { - "encoding": 47, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 47 - } - }, - { - "encoding": 48, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 48 - } - }, - { - "encoding": 49, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 49 - } - }, - { - "encoding": 50, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 50 - } - }, - { - "encoding": 51, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 51 - } - }, - { - "encoding": 52, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 52 - } - }, - { - "encoding": 53, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 53 - } - }, - { - "encoding": 54, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 54 - } - }, - { - "encoding": 55, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 55 - } - }, - { - "encoding": 56, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 56 - } - }, - { - "encoding": 57, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 57 - } - }, - { - "encoding": 58, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 58 - } - }, - { - "encoding": 59, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 0, - "y": 5, - "width": 33, - "height": 22, - "dx": 33, - "glyphBitmap": { - "height": 22, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 193, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 222, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 217, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 23, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 21, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 63, - 96, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 48, - 169, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 20, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 78, - 251, - 255, - 255, - 255, - 255, - 167, - 3, - 0, - 50, - 255, - 255, - 255, - 255, - 0, - 0, - 18, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 21, - 0, - 0, - 84, - 253, - 255, - 255, - 173, - 5, - 0, - 1, - 147, - 255, - 255, - 255, - 255, - 0, - 16, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 17, - 0, - 0, - 91, - 254, - 179, - 6, - 0, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 15, - 201, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 14, - 0, - 0, - 72, - 8, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 195, - 11, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 138, - 0, - 0, - 0, - 44, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 13, - 0, - 0, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 18, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 16, - 0, - 0, - 65, - 6, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 19, - 209, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 19, - 0, - 0, - 85, - 253, - 173, - 5, - 0, - 0, - 132, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 21, - 211, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 22, - 0, - 0, - 78, - 251, - 255, - 255, - 167, - 3, - 0, - 1, - 150, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 22, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 72, - 249, - 255, - 255, - 255, - 255, - 161, - 2, - 0, - 50, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 24, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 62, - 93, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 48, - 167, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 26, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 200, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 1, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62374 - } - }, - { - "encoding": 61, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61 - } - }, - { - "encoding": 62, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 47, - 123, - 178, - 218, - 242, - 251, - 242, - 218, - 178, - 123, - 47, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 103, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 103, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 92, - 42, - 86, - 207, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 196, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 18, - 0, - 0, - 0, - 12, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 120, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 7, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 8, - 0, - 0, - 0, - 4, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 6, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 53, - 3, - 47, - 178, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 1, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 1, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 128, - 81, - 129, - 177, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 49, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 18, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 87, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 12, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 175, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 102, - 0, - 0, - 0, - 0, - 3, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 36, - 0, - 0, - 0, - 0, - 52, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 183, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 1, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 0, - 0, - 0, - 0, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 55, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 1, - 235, - 255, - 255, - 255, - 237, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 2, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 103, - 0, - 0, - 0, - 0, - 15, - 255, - 255, - 255, - 229, - 43, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 1, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 1, - 209, - 254, - 182, - 29, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 9, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 7, - 17, - 0, - 0, - 116, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 8, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 139, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 1, - 0, - 0, - 0, - 0, - 0, - 9, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 49, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 203, - 255, - 255, - 255, - 255, - 255, - 250, - 118, - 38, - 59, - 157, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 114, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 55, - 129, - 183, - 222, - 246, - 255, - 246, - 222, - 183, - 130, - 55, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62229 - } - }, - { - "encoding": 64, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 64 - } - }, - { - "encoding": 65, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 28, - 163, - 236, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 221, - 122, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 223, - 77, - 37, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 39, - 112, - 251, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 163, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 218, - 255, - 245, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 60, - 19, - 0, - 0, - 1, - 85, - 102, - 7, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 255, - 255, - 162, - 1, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 253, - 73, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 86, - 92, - 92, - 92, - 133, - 255, - 255, - 255, - 255, - 241, - 40, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 17, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 3, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 48, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 129, - 222, - 228, - 228, - 228, - 235, - 255, - 255, - 255, - 255, - 255, - 131, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 176, - 2, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 212, - 13, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 237, - 35, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 53, - 16, - 0, - 0, - 29, - 222, - 237, - 66, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 215, - 255, - 243, - 55, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 162, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 221, - 71, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 32, - 107, - 250, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 169, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 128, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62244 - } - }, - { - "encoding": 67, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 166, - 186, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 248, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 248, - 72, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 113, - 241, - 255, - 255, - 255, - 247, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 67, - 0, - 55, - 241, - 255, - 255, - 255, - 247, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 67, - 0, - 0, - 0, - 55, - 241, - 255, - 255, - 255, - 247, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 67, - 0, - 0, - 0, - 0, - 0, - 54, - 240, - 255, - 255, - 255, - 247, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 240, - 255, - 255, - 255, - 247, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 167, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 240, - 255, - 255, - 255, - 247, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 167, - 255, - 255, - 255, - 255, - 184, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 239, - 255, - 255, - 255, - 246, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 255, - 184, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 239, - 255, - 255, - 255, - 246, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 255, - 184, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 246, - 255, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 255, - 184, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 255, - 255, - 211, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 168, - 255, - 255, - 255, - 255, - 184, - 31, - 28, - 28, - 28, - 28, - 28, - 28, - 123, - 255, - 255, - 255, - 255, - 244, - 61, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 52, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 153, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 10, - 0, - 88, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 94, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 73, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 79 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61937 - } - }, - { - "encoding": 68, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 28, - 163, - 236, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 236, - 162, - 27, - 0, - 29, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 27, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 90, - 37, - 36, - 36, - 36, - 41, - 121, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 131, - 53, - 52, - 52, - 14, - 0, - 151, - 204, - 204, - 171, - 5, - 0, - 27, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 52, - 53, - 132, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 207, - 255, - 255, - 226, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 89, - 0, - 1, - 4, - 4, - 1, - 0, - 0, - 150, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 38, - 0, - 0, - 0, - 0, - 1, - 66, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 236, - 236, - 236, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 168, - 59, - 52, - 52, - 52, - 54, - 125, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 244, - 135, - 0, - 0, - 4, - 12, - 12, - 2, - 0, - 74, - 244, - 244, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 227, - 255, - 255, - 203, - 0, - 0, - 0, - 0, - 0, - 86, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 223, - 255, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 155, - 0, - 0, - 1, - 4, - 4, - 1, - 0, - 92, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 108, - 33, - 28, - 28, - 28, - 30, - 77, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 5, - 4, - 4, - 4, - 4, - 4, - 50, - 253, - 255, - 255, - 255, - 185, - 14, - 4, - 5, - 84, - 255, - 255, - 255, - 230, - 27, - 4, - 5, - 96, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 192, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 241, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 17, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 29, - 28, - 28, - 28, - 28, - 28, - 72, - 255, - 255, - 255, - 255, - 195, - 38, - 28, - 29, - 105, - 255, - 255, - 255, - 235, - 50, - 28, - 29, - 116, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 33, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 31, - 0, - 33, - 169, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 168, - 32, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61449 - } - }, - { - "encoding": 69, - "x": -1, - "y": 0, - "width": 35, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 35, - "pixelArray": [ - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 54, - 68, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 69, - 167, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 83, - 25, - 59, - 255, - 210, - 138, - 87, - 57, - 30, - 7, - 1, - 1, - 8, - 31, - 58, - 88, - 140, - 211, - 255, - 255, - 252, - 188, - 124, - 78, - 51, - 25, - 5, - 1, - 2, - 10, - 35, - 61, - 93, - 146, - 220, - 255, - 25, - 48, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 20, - 41, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 34, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 13, - 27, - 255, - 255, - 255, - 250, - 72, - 149, - 207, - 246, - 255, - 255, - 255, - 255, - 246, - 211, - 150, - 52, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 21, - 255, - 255, - 255, - 250, - 0, - 0, - 0, - 1, - 13, - 31, - 34, - 23, - 2, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 1, - 11, - 255, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 0, - 2, - 255, - 255, - 255, - 255, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 230, - 0, - 0, - 244, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 0, - 0, - 224, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 196, - 255, - 255, - 255, - 50, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 165, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 118, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 0, - 62, - 255, - 255, - 255, - 149, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 40, - 0, - 0, - 10, - 251, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 2, - 0, - 0, - 0, - 201, - 255, - 255, - 253, - 24, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 180, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 229, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 1, - 213, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 234, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 192, - 255, - 255, - 255, - 181, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 176, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 249, - 255, - 255, - 255, - 145, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 158, - 6, - 0, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 199, - 255, - 255, - 255, - 255, - 192, - 23, - 0, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 223, - 255, - 255, - 255, - 255, - 230, - 72, - 0, - 0, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 228, - 255, - 255, - 255, - 255, - 255, - 169, - 29, - 0, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 201, - 255, - 255, - 255, - 255, - 255, - 245, - 136, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 149, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 154, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 212, - 255, - 255, - 255, - 222, - 79, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 103, - 210, - 119, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61486 - } - }, - { - "encoding": 70, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 47, - 123, - 178, - 218, - 242, - 251, - 242, - 218, - 178, - 123, - 47, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 103, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 103, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 155, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 195, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 85, - 50, - 38, - 50, - 85, - 136, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 193, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 196, - 255, - 255, - 255, - 255, - 255, - 194, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 195, - 255, - 255, - 255, - 255, - 255, - 193, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 255, - 243, - 92, - 0, - 189, - 255, - 198, - 0, - 0, - 0, - 0, - 0, - 199, - 255, - 188, - 0, - 93, - 243, - 255, - 255, - 255, - 255, - 154, - 0, - 0, - 0, - 0, - 0, - 79, - 255, - 255, - 255, - 255, - 234, - 43, - 0, - 0, - 74, - 255, - 255, - 56, - 0, - 0, - 0, - 56, - 255, - 255, - 73, - 0, - 0, - 44, - 234, - 255, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 7, - 224, - 255, - 255, - 255, - 244, - 45, - 0, - 0, - 0, - 2, - 210, - 255, - 82, - 0, - 0, - 0, - 85, - 255, - 210, - 1, - 0, - 0, - 0, - 45, - 244, - 255, - 255, - 255, - 222, - 6, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 98, - 0, - 0, - 0, - 0, - 0, - 21, - 59, - 1, - 0, - 0, - 0, - 1, - 60, - 21, - 0, - 0, - 0, - 0, - 0, - 97, - 255, - 255, - 255, - 255, - 105, - 0, - 1, - 219, - 255, - 255, - 255, - 198, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 198, - 255, - 255, - 255, - 216, - 1, - 52, - 255, - 255, - 255, - 255, - 255, - 188, - 74, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 70, - 186, - 255, - 255, - 255, - 255, - 255, - 49, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 69, - 19, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 182, - 255, - 255, - 255, - 134, - 88, - 199, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 255, - 150, - 57, - 255, - 255, - 201, - 88, - 134, - 255, - 255, - 255, - 180, - 221, - 255, - 255, - 255, - 81, - 0, - 0, - 54, - 79, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 222, - 255, - 63, - 1, - 87, - 58, - 1, - 0, - 82, - 255, - 255, - 255, - 221, - 246, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 131, - 255, - 222, - 2, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 246, - 255, - 255, - 255, - 255, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 250, - 255, - 127, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 188, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 246, - 222, - 255, - 255, - 255, - 80, - 0, - 0, - 47, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 89, - 255, - 255, - 191, - 0, - 0, - 0, - 77, - 53, - 0, - 0, - 81, - 255, - 255, - 255, - 222, - 183, - 255, - 255, - 255, - 130, - 81, - 192, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 231, - 255, - 255, - 94, - 0, - 0, - 54, - 255, - 255, - 196, - 82, - 131, - 255, - 255, - 255, - 182, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 146, - 255, - 255, - 243, - 11, - 0, - 0, - 21, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 55, - 255, - 255, - 255, - 255, - 255, - 193, - 80, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 50, - 253, - 255, - 255, - 158, - 0, - 0, - 0, - 0, - 2, - 76, - 191, - 255, - 255, - 255, - 255, - 255, - 51, - 2, - 222, - 255, - 255, - 255, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 22, - 50, - 202, - 255, - 255, - 255, - 83, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 219, - 1, - 0, - 112, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 49, - 128, - 193, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 192, - 127, - 49, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 9, - 227, - 255, - 255, - 255, - 239, - 106, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 203, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 106, - 239, - 255, - 255, - 255, - 225, - 8, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 29, - 0, - 29, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 0, - 164, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 129, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 151, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 108, - 35, - 108, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 86, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 114, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 55, - 129, - 183, - 222, - 246, - 255, - 246, - 222, - 183, - 130, - 55, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61446 - } - }, - { - "encoding": 71, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 63, - 219, - 236, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 61, - 218, - 235, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 236, - 219, - 64, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 252, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 209, - 255, - 255, - 252, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 252, - 255, - 255, - 210, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 52, - 52, - 52, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 128, - 188, - 188, - 188, - 188, - 188, - 188, - 164, - 10, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 53, - 100, - 100, - 100, - 100, - 100, - 100, - 77, - 1, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 140, - 140, - 140, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 132, - 132, - 132, - 124, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 1, - 83, - 108, - 108, - 108, - 108, - 108, - 108, - 56, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 154, - 164, - 164, - 164, - 31, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 7, - 28, - 28, - 28, - 28, - 28, - 28, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 18, - 204, - 228, - 228, - 228, - 228, - 228, - 228, - 164, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 33, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 12, - 12, - 12, - 12, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 27, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 1, - 4, - 4, - 4, - 4, - 4, - 4, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 27, - 28, - 28, - 28, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 211, - 255, - 255, - 253, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 252, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 253, - 255, - 255, - 213, - 0, - 0, - 0, - 0, - 65, - 221, - 239, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 220, - 238, - 109, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 115, - 240, - 221, - 66, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61838 - } - }, - { - "encoding": 72, - "x": 0, - "y": -1, - "width": 33, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 71, - 138, - 186, - 221, - 243, - 251, - 243, - 222, - 186, - 138, - 71, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 38, - 152, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 152, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 159, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 158, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 235, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 117, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 140, - 82, - 50, - 38, - 51, - 87, - 148, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 110, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 88, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 112, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 66, - 253, - 255, - 255, - 255, - 255, - 255, - 209, - 23, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 44, - 234, - 255, - 255, - 255, - 255, - 255, - 252, - 61, - 0, - 0, - 0, - 12, - 226, - 255, - 255, - 255, - 255, - 255, - 241, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 254, - 255, - 255, - 255, - 255, - 255, - 223, - 10, - 0, - 0, - 130, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 94, - 4, - 0, - 1, - 85, - 181, - 232, - 250, - 232, - 181, - 83, - 1, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 0, - 11, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 93, - 108, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 9, - 88, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 68, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 161, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 118, - 3, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 120, - 38, - 16, - 0, - 0, - 0, - 0, - 0, - 1, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 212, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 99, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 42, - 171, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 212, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 69, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 178, - 18, - 12, - 19, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 89, - 10, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 10, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 130, - 0, - 0, - 13, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 9, - 4, - 9, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 12, - 0, - 0, - 0, - 63, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 67, - 0, - 0, - 0, - 0, - 0, - 104, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 33, - 28, - 34, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 121, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 102, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 162, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 222, - 255, - 255, - 255, - 255, - 247, - 151, - 192, - 223, - 251, - 255, - 251, - 230, - 195, - 148, - 81, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 235, - 255, - 255, - 255, - 248, - 73, - 0, - 0, - 0, - 0, - 3, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 255, - 255, - 255, - 240, - 68, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 204, - 36, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 153, - 210, - 102, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61459 - } - }, - { - "encoding": 73, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 29, - 165, - 236, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 234, - 58, - 0, - 0, - 31, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 114, - 0, - 0, - 10, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 0, - 116, - 160, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 114, - 255, - 236, - 255, - 255, - 255, - 255, - 221, - 71, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 25, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 111, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 109, - 255, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 108, - 255, - 255, - 255, - 255, - 255, - 118, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 136, - 1, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 137, - 1, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 255, - 255, - 255, - 255, - 255, - 137, - 1, - 0, - 61, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 138, - 1, - 0, - 61, - 244, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 3, - 101, - 153, - 69, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 255, - 138, - 1, - 0, - 61, - 244, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 98, - 255, - 255, - 255, - 255, - 255, - 139, - 1, - 0, - 61, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 186, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 0, - 0, - 97, - 254, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 20, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 0, - 0, - 95, - 254, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 4, - 165, - 255, - 255, - 255, - 255, - 255, - 106, - 0, - 94, - 254, - 255, - 255, - 255, - 255, - 141, - 1, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 3, - 164, - 255, - 255, - 255, - 255, - 255, - 161, - 254, - 255, - 255, - 255, - 255, - 141, - 1, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 3, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 1, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 160, - 255, - 255, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 159, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 106, - 164, - 97, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 69, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 29, - 70, - 220, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 33, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 31, - 0, - 33, - 169, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 168, - 32, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62224 - } - }, - { - "encoding": 74, - "x": -1, - "y": 5, - "width": 35, - "height": 22, - "dx": 33, - "glyphBitmap": { - "height": 22, - "width": 35, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 109, - 0, - 0, - 115, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 239, - 250, - 54, - 0, - 2, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 200, - 255, - 255, - 224, - 18, - 0, - 18, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 179, - 2, - 0, - 53, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 27, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 64, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 60, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 138, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 185, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 3, - 67, - 68, - 68, - 68, - 255, - 255, - 255, - 255, - 92, - 68, - 68, - 68, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 60, - 60, - 60, - 85, - 255, - 255, - 255, - 255, - 60, - 60, - 60, - 60, - 3, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 205, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 57, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 21, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 48, - 0, - 2, - 184, - 255, - 255, - 255, - 255, - 147, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 15, - 0, - 21, - 228, - 255, - 255, - 205, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 173, - 1, - 0, - 59, - 252, - 241, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 111, - 0, - 0, - 117, - 84, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62598 - } - }, - { - "encoding": 75, - "x": 0, - "y": 0, - "width": 31, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 31, - "pixelArray": [ - 58, - 213, - 252, - 252, - 252, - 252, - 251, - 193, - 30, - 0, - 0, - 58, - 212, - 252, - 252, - 252, - 252, - 251, - 193, - 30, - 0, - 0, - 59, - 214, - 252, - 252, - 252, - 252, - 251, - 190, - 28, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 216, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 13, - 120, - 160, - 160, - 160, - 160, - 159, - 101, - 2, - 0, - 0, - 13, - 119, - 160, - 160, - 160, - 160, - 159, - 101, - 2, - 0, - 0, - 13, - 121, - 160, - 160, - 160, - 160, - 158, - 98, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 56, - 212, - 252, - 252, - 252, - 252, - 251, - 191, - 28, - 0, - 0, - 56, - 211, - 252, - 252, - 252, - 252, - 251, - 191, - 28, - 0, - 0, - 57, - 213, - 252, - 252, - 252, - 252, - 251, - 188, - 26, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 0, - 0, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 162, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 0, - 0, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 120, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 13, - 120, - 160, - 160, - 160, - 160, - 159, - 101, - 2, - 0, - 0, - 13, - 119, - 160, - 160, - 160, - 160, - 159, - 101, - 2, - 0, - 0, - 13, - 121, - 160, - 160, - 160, - 160, - 158, - 98, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 112, - 152, - 152, - 152, - 152, - 151, - 91, - 1, - 0, - 0, - 9, - 111, - 152, - 152, - 152, - 152, - 151, - 91, - 1, - 0, - 0, - 10, - 113, - 152, - 152, - 152, - 152, - 151, - 88, - 1, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 113, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 165, - 63, - 220, - 255, - 255, - 255, - 255, - 255, - 201, - 33, - 0, - 0, - 63, - 219, - 255, - 255, - 255, - 255, - 255, - 201, - 33, - 0, - 0, - 63, - 221, - 255, - 255, - 255, - 255, - 255, - 198, - 31, - 0, - 0, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 111, - 152, - 152, - 152, - 152, - 151, - 91, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 167, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 204, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 166, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 63, - 216, - 255, - 255, - 255, - 255, - 255, - 198, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62361 - } - }, - { - "encoding": 76, - "x": 2, - "y": 0, - "width": 29, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 142, - 203, - 238, - 251, - 238, - 203, - 142, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 247, - 255, - 255, - 255, - 255, - 220, - 119, - 61, - 39, - 59, - 117, - 218, - 255, - 255, - 255, - 255, - 248, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 137, - 7, - 0, - 0, - 0, - 0, - 0, - 6, - 136, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 220, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 220, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 218, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 16, - 16, - 16, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 69, - 221, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 252, - 252, - 222, - 71, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 56, - 24, - 56, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 13, - 0, - 0, - 0, - 0, - 0, - 14, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 19, - 0, - 0, - 0, - 19, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 26, - 0, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 3, - 0, - 0, - 0, - 0, - 0, - 3, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 71, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 74 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61631 - } - }, - { - "encoding": 77, - "x": -1, - "y": 0, - "width": 35, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 35, - "pixelArray": [ - 0, - 0, - 0, - 0, - 25, - 228, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 213, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 36, - 36, - 36, - 82, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 206, - 252, - 252, - 252, - 252, - 252, - 252, - 221, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 120, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 20, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 128, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 20, - 20, - 20, - 20, - 20, - 8, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 135, - 1, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 150, - 1, - 0, - 0, - 0, - 243, - 255, - 255, - 254, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 235, - 255, - 255, - 255, - 255, - 157, - 2, - 0, - 0, - 0, - 0, - 51, - 100, - 100, - 64, - 0, - 0, - 173, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 235, - 255, - 255, - 255, - 255, - 164, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 206, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 240, - 255, - 255, - 255, - 171, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 35, - 20, - 20, - 20, - 20, - 20, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 55, - 242, - 255, - 177, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 113, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 12, - 12, - 12, - 12, - 12, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 20, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 12, - 12, - 12, - 12, - 12, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 206, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 214, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 20, - 4, - 4, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 12, - 12, - 12, - 12, - 12, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 210, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62623 - } - }, - { - "encoding": 78, - "x": 2, - "y": 0, - "width": 29, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 29, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 142, - 203, - 238, - 251, - 238, - 203, - 142, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 43, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 191, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 93, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 248, - 255, - 255, - 255, - 255, - 220, - 119, - 61, - 39, - 59, - 117, - 218, - 255, - 255, - 255, - 255, - 248, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 193, - 255, - 255, - 255, - 255, - 137, - 7, - 0, - 0, - 0, - 0, - 0, - 6, - 136, - 255, - 255, - 255, - 255, - 193, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 255, - 53, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 137, - 255, - 255, - 255, - 220, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 220, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 255, - 255, - 255, - 124, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 190, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 219, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 218, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 65, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 69, - 221, - 252, - 252, - 255, - 255, - 255, - 255, - 253, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 253, - 255, - 255, - 255, - 255, - 252, - 252, - 222, - 71, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 158, - 56, - 24, - 56, - 159, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 107, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 1, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 105, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 133, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 227, - 13, - 0, - 0, - 0, - 0, - 0, - 14, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 19, - 0, - 0, - 0, - 19, - 191, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 202, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 26, - 0, - 0, - 0, - 27, - 252, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 175, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 0, - 0, - 0, - 0, - 75, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 3, - 0, - 0, - 0, - 0, - 0, - 3, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 135, - 12, - 12, - 12, - 12, - 12, - 12, - 12, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 74, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 76 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61630 - } - }, - { - "encoding": 79, - "x": 2, - "y": 0, - "width": 28, - "height": 28, - "dx": 33, - "glyphBitmap": { - "height": 28, - "width": 28, - "pixelArray": [ - 2, - 127, - 227, - 251, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 251, - 224, - 120, - 2, - 123, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 42, - 250, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 139, - 0, - 0, - 0, - 0, - 80, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 0, - 0, - 0, - 0, - 87, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 0, - 0, - 0, - 0, - 74, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 4, - 0, - 0, - 0, - 58, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 15, - 0, - 0, - 0, - 43, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 62, - 236, - 255, - 255, - 255, - 255, - 255, - 250, - 48, - 0, - 0, - 0, - 20, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 63, - 0, - 39, - 223, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 2, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 170, - 0, - 0, - 0, - 24, - 207, - 255, - 255, - 199, - 3, - 0, - 0, - 0, - 119, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 13, - 187, - 253, - 46, - 0, - 0, - 0, - 38, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 80, - 0, - 0, - 0, - 0, - 6, - 92, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 253, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 142, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 205, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 159, - 2, - 0, - 0, - 0, - 0, - 69, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 181, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 126, - 0, - 0, - 30, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 83, - 0, - 128, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 50, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 242, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 127, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 4, - 127, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 125, - 3 - ] - }, - "source": { - "filePath": "fonts\\heydings_icons.ttf", - "size": 24, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": -1, - "y": 0, - "width": 35, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 35, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 152, - 249, - 252, - 252, - 252, - 252, - 229, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 115, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 154, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 68, - 196, - 133, - 55, - 2, - 0, - 0, - 1, - 81, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 85, - 1, - 0, - 0, - 2, - 54, - 132, - 196, - 68, - 0, - 0, - 0, - 0, - 0, - 20, - 235, - 255, - 255, - 255, - 232, - 155, - 85, - 188, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 187, - 85, - 155, - 231, - 255, - 255, - 255, - 235, - 20, - 0, - 0, - 0, - 0, - 163, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 164, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 74, - 0, - 3, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 5, - 11, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 168, - 109, - 87, - 109, - 169, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 13, - 0, - 35, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 30, - 0, - 0, - 0, - 0, - 0, - 30, - 190, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 35, - 0, - 0, - 0, - 30, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 182, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 182, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 30, - 0, - 0, - 0, - 0, - 0, - 26, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 238, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 140, - 255, - 255, - 255, - 255, - 255, - 238, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 255, - 243, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 254, - 255, - 255, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 255, - 255, - 255, - 255, - 254, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 244, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 238, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 238, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 209, - 22, - 0, - 0, - 0, - 0, - 0, - 27, - 215, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 171, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 172, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 215, - 26, - 0, - 0, - 0, - 31, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 179, - 24, - 0, - 0, - 0, - 0, - 0, - 24, - 179, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 31, - 0, - 10, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 160, - 101, - 79, - 101, - 160, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 12, - 4, - 226, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 6, - 0, - 77, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 79, - 0, - 0, - 0, - 168, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 0, - 0, - 0, - 0, - 23, - 238, - 255, - 255, - 255, - 237, - 162, - 92, - 193, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 197, - 100, - 168, - 240, - 255, - 255, - 255, - 237, - 23, - 0, - 0, - 0, - 0, - 0, - 74, - 204, - 140, - 62, - 4, - 0, - 0, - 1, - 91, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 216, - 88, - 2, - 0, - 0, - 5, - 64, - 140, - 203, - 74, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 59, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 255, - 250, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 235, - 255, - 255, - 255, - 255, - 254, - 159, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61455 - } - }, - { - "encoding": 81, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 222, - 233, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 225, - 255, - 255, - 247, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 176, - 197, - 62, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 1, - 113, - 211, - 156, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 204, - 255, - 255, - 231, - 4, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 64, - 255, - 255, - 255, - 166, - 2, - 0, - 0, - 0, - 0, - 0, - 1, - 167, - 255, - 255, - 255, - 255, - 14, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 100, - 255, - 255, - 255, - 255, - 128, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 30, - 243, - 255, - 255, - 255, - 254, - 63, - 0, - 0, - 0, - 13, - 233, - 255, - 255, - 255, - 232, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 64, - 251, - 255, - 255, - 255, - 216, - 4, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 81, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 123, - 255, - 255, - 255, - 255, - 97, - 0, - 3, - 226, - 255, - 255, - 255, - 173, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 200, - 255, - 255, - 255, - 212, - 1, - 61, - 255, - 255, - 255, - 255, - 44, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 49, - 132, - 255, - 255, - 255, - 201, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 216, - 255, - 255, - 255, - 124, - 185, - 255, - 255, - 255, - 135, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 180, - 224, - 255, - 255, - 255, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 221, - 247, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 205, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 47, - 255, - 255, - 255, - 245, - 255, - 255, - 255, - 255, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 102, - 111, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 255, - 255, - 255, - 255, - 247, - 255, - 255, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 255, - 255, - 255, - 246, - 219, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 222, - 186, - 255, - 255, - 255, - 129, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 130, - 255, - 255, - 255, - 182, - 129, - 255, - 255, - 255, - 202, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 203, - 255, - 255, - 255, - 127, - 60, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 255, - 255, - 255, - 51, - 3, - 222, - 255, - 255, - 255, - 171, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 172, - 255, - 255, - 255, - 219, - 1, - 0, - 116, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 255, - 255, - 255, - 108, - 0, - 0, - 13, - 233, - 255, - 255, - 255, - 237, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 34, - 238, - 255, - 255, - 255, - 225, - 8, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 224, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 224, - 255, - 255, - 255, - 255, - 82, - 0, - 0, - 0, - 0, - 1, - 160, - 255, - 255, - 255, - 255, - 237, - 75, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 75, - 237, - 255, - 255, - 255, - 255, - 161, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 199, - 255, - 255, - 255, - 255, - 255, - 170, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 170, - 255, - 255, - 255, - 255, - 255, - 200, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 199, - 255, - 255, - 255, - 255, - 255, - 255, - 200, - 127, - 75, - 43, - 31, - 43, - 74, - 127, - 200, - 255, - 255, - 255, - 255, - 255, - 255, - 201, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 160, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 92, - 234, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 228, - 85, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 117, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 223, - 114, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 2, - 59, - 127, - 185, - 218, - 246, - 254, - 246, - 222, - 183, - 130, - 55, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61725 - } - }, - { - "encoding": 82, - "x": 0, - "y": -1, - "width": 33, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 33, - "pixelArray": [ - 0, - 12, - 162, - 243, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 250, - 193, - 42, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 37, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 117, - 0, - 0, - 0, - 0, - 50, - 189, - 235, - 236, - 236, - 236, - 236, - 236, - 236, - 236, - 223, - 135, - 4, - 0, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 20, - 0, - 0, - 14, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 35, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 13, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 248, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 71, - 222, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 225, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 129, - 51, - 198, - 255, - 255, - 255, - 201, - 51, - 129, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 30, - 0, - 0, - 45, - 253, - 255, - 253, - 47, - 0, - 0, - 31, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 208, - 62, - 0, - 0, - 0, - 0, - 0, - 150, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 63, - 208, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 124, - 3, - 0, - 0, - 0, - 37, - 13, - 0, - 16, - 71, - 17, - 0, - 14, - 37, - 0, - 0, - 0, - 3, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 19, - 0, - 0, - 25, - 164, - 255, - 204, - 3, - 0, - 0, - 0, - 3, - 205, - 255, - 166, - 27, - 0, - 0, - 19, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 109, - 0, - 0, - 204, - 255, - 255, - 255, - 105, - 0, - 0, - 0, - 106, - 255, - 255, - 255, - 205, - 0, - 0, - 110, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 9, - 0, - 160, - 255, - 255, - 255, - 238, - 30, - 26, - 31, - 239, - 255, - 255, - 255, - 166, - 0, - 10, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 112, - 0, - 29, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 31, - 0, - 112, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 245, - 244, - 244, - 71, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 134, - 0, - 0, - 67, - 244, - 244, - 245, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 173, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 174, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 255, - 255, - 255, - 255, - 228, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 66, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 227, - 136, - 255, - 255, - 255, - 32, - 0, - 196, - 252, - 252, - 252, - 254, - 255, - 255, - 255, - 224, - 67, - 10, - 65, - 224, - 255, - 255, - 255, - 254, - 252, - 252, - 252, - 195, - 0, - 32, - 255, - 255, - 255, - 133, - 11, - 197, - 255, - 255, - 32, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 91, - 0, - 0, - 0, - 91, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 32, - 255, - 255, - 194, - 10, - 0, - 6, - 107, - 180, - 25, - 0, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 101, - 0, - 0, - 0, - 101, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 0, - 25, - 180, - 106, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 228, - 228, - 228, - 241, - 255, - 255, - 255, - 235, - 91, - 34, - 90, - 235, - 255, - 255, - 255, - 241, - 228, - 228, - 228, - 170, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 153, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 151, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 152, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 42, - 252, - 255, - 255, - 255, - 245, - 255, - 245, - 255, - 255, - 255, - 253, - 45, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 227, - 12, - 2, - 12, - 228, - 255, - 255, - 255, - 181, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 86, - 0, - 0, - 0, - 87, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 131, - 249, - 184, - 1, - 0, - 0, - 0, - 1, - 184, - 249, - 133, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 3, - 0, - 0, - 0, - 0, - 0, - 3, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61494 - } - }, - { - "encoding": 83, - "x": 0, - "y": 5, - "width": 33, - "height": 24, - "dx": 33, - "glyphBitmap": { - "height": 24, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 47, - 123, - 178, - 218, - 242, - 251, - 243, - 213, - 175, - 125, - 46, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 103, - 214, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 99, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 221, - 255, - 255, - 236, - 157, - 90, - 43, - 17, - 6, - 16, - 48, - 89, - 157, - 233, - 255, - 255, - 223, - 77, - 0, - 0, - 0, - 22, - 104, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 155, - 255, - 255, - 219, - 93, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 94, - 215, - 227, - 72, - 0, - 1, - 86, - 222, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 195, - 255, - 250, - 122, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 5, - 13, - 0, - 23, - 172, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 196, - 255, - 232, - 56, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 88, - 236, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 231, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 173, - 255, - 255, - 243, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 249, - 54, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 89, - 237, - 255, - 255, - 255, - 104, - 0, - 55, - 79, - 0, - 0, - 0, - 8, - 225, - 255, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 24, - 175, - 255, - 255, - 255, - 255, - 189, - 1, - 7, - 214, - 225, - 6, - 0, - 0, - 110, - 255, - 216, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 90, - 237, - 255, - 255, - 255, - 255, - 243, - 32, - 0, - 4, - 212, - 255, - 101, - 0, - 2, - 221, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 176, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 93, - 255, - 220, - 1, - 54, - 255, - 234, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 92, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 7, - 234, - 255, - 47, - 128, - 255, - 156, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 32, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 127, - 182, - 255, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 239, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 91, - 255, - 177, - 222, - 255, - 46, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 51, - 255, - 215, - 246, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 255, - 246, - 255, - 255, - 10, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 104, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 255, - 254, - 247, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 189, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 21, - 255, - 246, - 219, - 255, - 48, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 248, - 255, - 255, - 255, - 255, - 255, - 243, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 49, - 255, - 218, - 183, - 255, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 248, - 255, - 255, - 255, - 250, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 255, - 182, - 123, - 255, - 157, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 35, - 128, - 161, - 130, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 159, - 255, - 122, - 52, - 255, - 238, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 239, - 255, - 51, - 1, - 214, - 255, - 89, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 92, - 255, - 213, - 1, - 0, - 98, - 135, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 18, - 132, - 98, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62475 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 34, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 34, - "pixelArray": [ - 74, - 224, - 231, - 94, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 102, - 164, - 185, - 0, - 0, - 0, - 0, - 203, - 134, - 29, - 0, - 0, - 226, - 255, - 255, - 246, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 246, - 111, - 1, - 255, - 255, - 255, - 255, - 163, - 21, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 43, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 244, - 152, - 74, - 9, - 0, - 0, - 0, - 22, - 80, - 147, - 224, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 247, - 187, - 125, - 93, - 209, - 219, - 217, - 205, - 85, - 158, - 247, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 2, - 69, - 165, - 12, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 25, - 179, - 32, - 255, - 255, - 255, - 255, - 152, - 250, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 214, - 121, - 222, - 255, - 255, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 2, - 5, - 255, - 255, - 255, - 255, - 32, - 31, - 132, - 210, - 63, - 0, - 0, - 0, - 222, - 208, - 136, - 63, - 35, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 235, - 204, - 191, - 207, - 37, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 1, - 38, - 100, - 140, - 80, - 70, - 72, - 83, - 140, - 67, - 2, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 218, - 123, - 222, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 208, - 52, - 0, - 255, - 255, - 255, - 255, - 109, - 1, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 168, - 64, - 1, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 249, - 24, - 255, - 255, - 255, - 255, - 255, - 200, - 93, - 18, - 255, - 255, - 255, - 255, - 32, - 20, - 89, - 162, - 209, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 112, - 85, - 98, - 82, - 199, - 254, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 246, - 189, - 141, - 145, - 155, - 153, - 141, - 149, - 221, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 15, - 101, - 67, - 6, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 2, - 80, - 227, - 32, - 255, - 255, - 255, - 255, - 207, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 225, - 57, - 160, - 246, - 255, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 18, - 13, - 255, - 255, - 255, - 255, - 34, - 90, - 197, - 254, - 64, - 0, - 0, - 0, - 224, - 254, - 200, - 127, - 72, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 21, - 185, - 140, - 127, - 143, - 82, - 19, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 1, - 36, - 92, - 144, - 134, - 136, - 147, - 76, - 12, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 254, - 188, - 158, - 230, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 247, - 145, - 15, - 0, - 255, - 255, - 255, - 255, - 61, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 229, - 130, - 31, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 223, - 16, - 255, - 255, - 255, - 255, - 249, - 137, - 30, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 26, - 98, - 160, - 4, - 0, - 0, - 0, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 207, - 160, - 149, - 162, - 146, - 151, - 209, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 255, - 255, - 244, - 179, - 0, - 0, - 0, - 0, - 252, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 123, - 51, - 4, - 0, - 0, - 0, - 0, - 0, - 14, - 86, - 181, - 255, - 32, - 255, - 255, - 255, - 255, - 243, - 255, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 62, - 21, - 255, - 255, - 255, - 255, - 60, - 182, - 255, - 255, - 64, - 0, - 0, - 0, - 224, - 255, - 249, - 184, - 90, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 50, - 131, - 41, - 0, - 0, - 0, - 113, - 73, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 246, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 76, - 227, - 234, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62350 - } - }, - { - "encoding": 85, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 29, - 165, - 236, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 236, - 164, - 28, - 0, - 31, - 233, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 29, - 169, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 167, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 255, - 255, - 255, - 255, - 220, - 69, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 29, - 69, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 72, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 7, - 161, - 245, - 194, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 234, - 220, - 69, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 95, - 255, - 255, - 255, - 226, - 34, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 227, - 1, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 112, - 255, - 255, - 255, - 255, - 225, - 32, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 246, - 3, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 23, - 230, - 255, - 255, - 255, - 255, - 224, - 32, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 127, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 38, - 229, - 255, - 255, - 255, - 255, - 223, - 31, - 125, - 255, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 37, - 228, - 255, - 255, - 255, - 255, - 238, - 255, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 143, - 255, - 255, - 255, - 255, - 255, - 244, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 226, - 35, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 125, - 255, - 255, - 255, - 255, - 255, - 157, - 230, - 255, - 255, - 255, - 255, - 226, - 35, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 124, - 255, - 255, - 255, - 255, - 255, - 142, - 1, - 39, - 230, - 255, - 255, - 255, - 255, - 226, - 34, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 62, - 255, - 255, - 255, - 255, - 255, - 143, - 1, - 0, - 0, - 39, - 230, - 255, - 255, - 255, - 255, - 197, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 113, - 255, - 255, - 255, - 255, - 145, - 1, - 0, - 0, - 0, - 0, - 39, - 230, - 255, - 255, - 255, - 248, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 36, - 247, - 255, - 255, - 147, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 39, - 230, - 255, - 255, - 160, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 40, - 123, - 77, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 108, - 89, - 5, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 71, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 70, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 218, - 69, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 29, - 68, - 218, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 170, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 169, - 33, - 236, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 234, - 31, - 0, - 33, - 169, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 168, - 32, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62225 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 28, - 163, - 236, - 252, - 221, - 16, - 0, - 0, - 0, - 175, - 252, - 252, - 221, - 16, - 0, - 0, - 0, - 114, - 250, - 252, - 241, - 58, - 0, - 0, - 0, - 16, - 222, - 252, - 236, - 162, - 27, - 0, - 29, - 231, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 229, - 27, - 166, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 164, - 240, - 255, - 255, - 255, - 255, - 245, - 23, - 0, - 0, - 0, - 205, - 255, - 255, - 245, - 23, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 24, - 246, - 255, - 255, - 255, - 255, - 239, - 255, - 255, - 255, - 255, - 125, - 18, - 0, - 0, - 0, - 0, - 9, - 36, - 36, - 17, - 0, - 0, - 0, - 0, - 2, - 34, - 36, - 26, - 0, - 0, - 0, - 0, - 0, - 18, - 127, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 245, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 246, - 255, - 255, - 228, - 19, - 52, - 52, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 52, - 52, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 80, - 114, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 121, - 255, - 255, - 235, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 58, - 108, - 108, - 70, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 204, - 255, - 255, - 255, - 76, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 71, - 108, - 108, - 57, - 245, - 255, - 255, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 22, - 255, - 255, - 255, - 245, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 30, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 255, - 255, - 255, - 254, - 122, - 180, - 180, - 142, - 1, - 0, - 0, - 0, - 1, - 48, - 76, - 76, - 76, - 76, - 223, - 255, - 255, - 255, - 133, - 76, - 76, - 76, - 72, - 13, - 0, - 0, - 0, - 0, - 2, - 143, - 180, - 180, - 120, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 135, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 232, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 116, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 83, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 44, - 44, - 20, - 0, - 0, - 0, - 0, - 46, - 182, - 212, - 212, - 212, - 212, - 248, - 255, - 255, - 255, - 226, - 212, - 212, - 212, - 208, - 125, - 2, - 0, - 0, - 0, - 0, - 20, - 44, - 44, - 14, - 224, - 255, - 255, - 241, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 14, - 242, - 255, - 255, - 223, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 184, - 244, - 244, - 206, - 7, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 208, - 255, - 255, - 255, - 80, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 8, - 207, - 244, - 244, - 182, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 179, - 255, - 255, - 255, - 51, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 45, - 214, - 248, - 139, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 44, - 44, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 44, - 44, - 14, - 224, - 255, - 255, - 241, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 242, - 255, - 255, - 223, - 255, - 255, - 255, - 255, - 117, - 13, - 0, - 0, - 0, - 0, - 6, - 28, - 28, - 12, - 0, - 0, - 0, - 0, - 1, - 26, - 28, - 19, - 0, - 0, - 0, - 0, - 0, - 13, - 119, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 241, - 22, - 0, - 0, - 0, - 200, - 255, - 255, - 241, - 22, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 22, - 242, - 255, - 255, - 255, - 255, - 240, - 170, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 169, - 33, - 236, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 234, - 31, - 0, - 33, - 169, - 240, - 255, - 227, - 17, - 0, - 0, - 0, - 182, - 255, - 255, - 227, - 17, - 0, - 0, - 0, - 120, - 254, - 255, - 246, - 63, - 0, - 0, - 0, - 18, - 228, - 255, - 240, - 168, - 32, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61874 - } - }, - { - "encoding": 87, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 28, - 163, - 236, - 252, - 221, - 16, - 0, - 0, - 0, - 175, - 252, - 252, - 221, - 16, - 0, - 0, - 0, - 114, - 250, - 252, - 241, - 58, - 0, - 0, - 0, - 16, - 222, - 252, - 236, - 162, - 27, - 0, - 29, - 231, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 229, - 27, - 166, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 164, - 240, - 255, - 255, - 255, - 255, - 245, - 23, - 0, - 0, - 0, - 205, - 255, - 255, - 245, - 23, - 0, - 0, - 0, - 141, - 255, - 255, - 255, - 77, - 0, - 0, - 0, - 24, - 246, - 255, - 255, - 255, - 255, - 239, - 255, - 255, - 255, - 255, - 125, - 18, - 0, - 0, - 0, - 0, - 9, - 36, - 36, - 17, - 0, - 0, - 0, - 0, - 2, - 34, - 36, - 26, - 0, - 0, - 0, - 0, - 0, - 18, - 127, - 255, - 255, - 255, - 255, - 229, - 255, - 255, - 245, - 16, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 16, - 246, - 255, - 255, - 228, - 19, - 52, - 52, - 26, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 26, - 52, - 52, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 190, - 252, - 252, - 213, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 214, - 252, - 252, - 189, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 221, - 255, - 255, - 239, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 13, - 240, - 255, - 255, - 220, - 11, - 36, - 36, - 15, - 0, - 0, - 0, - 0, - 41, - 186, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 220, - 215, - 119, - 1, - 0, - 0, - 0, - 0, - 15, - 36, - 36, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 197, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 198, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 7, - 28, - 28, - 11, - 0, - 0, - 0, - 0, - 43, - 194, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 228, - 223, - 130, - 1, - 0, - 0, - 0, - 0, - 11, - 28, - 28, - 7, - 216, - 255, - 255, - 235, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 236, - 255, - 255, - 214, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 200, - 255, - 255, - 221, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 223, - 255, - 255, - 198, - 1, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 4, - 4, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 44, - 44, - 20, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 20, - 44, - 44, - 14, - 224, - 255, - 255, - 241, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 242, - 255, - 255, - 223, - 255, - 255, - 255, - 255, - 117, - 13, - 0, - 0, - 0, - 0, - 6, - 28, - 28, - 12, - 0, - 0, - 0, - 0, - 1, - 26, - 28, - 19, - 0, - 0, - 0, - 0, - 0, - 13, - 119, - 255, - 255, - 255, - 255, - 241, - 255, - 255, - 255, - 255, - 241, - 22, - 0, - 0, - 0, - 200, - 255, - 255, - 241, - 22, - 0, - 0, - 0, - 136, - 255, - 255, - 255, - 72, - 0, - 0, - 0, - 22, - 242, - 255, - 255, - 255, - 255, - 240, - 170, - 255, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 255, - 169, - 33, - 236, - 255, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 48, - 0, - 0, - 0, - 176, - 255, - 255, - 255, - 112, - 0, - 0, - 0, - 48, - 255, - 255, - 255, - 255, - 234, - 31, - 0, - 33, - 169, - 240, - 255, - 227, - 17, - 0, - 0, - 0, - 182, - 255, - 255, - 227, - 17, - 0, - 0, - 0, - 120, - 254, - 255, - 246, - 63, - 0, - 0, - 0, - 18, - 228, - 255, - 240, - 168, - 32, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61875 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 33, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 33, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 187, - 248, - 187, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 219, - 255, - 255, - 255, - 218, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 219, - 255, - 255, - 255, - 255, - 255, - 218, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 219, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 219, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 220, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 28, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 29, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 220, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 221, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 30, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 30, - 0, - 0, - 0, - 0, - 0, - 30, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 30, - 0, - 0, - 0, - 31, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 30, - 0, - 30, - 222, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 30, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 194, - 249, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 167, - 255, - 255, - 234, - 241, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 241, - 234, - 255, - 255, - 167, - 9, - 104, - 124, - 29, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 174, - 151, - 173, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 29, - 124, - 104, - 9, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 239, - 97, - 5, - 0, - 0, - 0, - 4, - 93, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 233, - 39, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 36, - 231, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 73, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 67, - 255, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 199, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 125, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 118, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 84, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 194, - 255, - 255, - 255, - 255, - 255, - 88, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 80, - 255, - 255, - 255, - 255, - 255, - 194, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 52, - 212, - 252, - 252, - 252, - 252, - 87, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 79, - 252, - 252, - 252, - 252, - 213, - 53, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 62351 - } - }, - { - "encoding": 89, - "x": 2, - "y": 0, - "width": 29, - "height": 33, - "dx": 33, - "glyphBitmap": { - "height": 33, - "width": 29, - "pixelArray": [ - 71, - 224, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 252, - 234, - 97, - 0, - 224, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 246, - 12, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 127, - 37, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 36, - 100, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 74, - 224, - 230, - 91, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 226, - 255, - 255, - 244, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 236, - 255, - 255, - 252, - 17, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 103, - 249, - 252, - 128, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 18, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 119, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 91, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 94, - 5, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 4, - 63, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 94, - 245, - 249, - 118, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 233, - 255, - 255, - 250, - 15, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 246, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 77, - 230, - 237, - 97, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 33, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 114, - 29, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 28, - 85, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 32, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 248, - 13, - 79, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 106, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61458 - } - }, - { - "encoding": 90, - "x": 0, - "y": 2, - "width": 34, - "height": 29, - "dx": 33, - "glyphBitmap": { - "height": 29, - "width": 34, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 43, - 44, - 43, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 187, - 255, - 255, - 255, - 186, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 12, - 226, - 255, - 255, - 255, - 226, - 12, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 189, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 188, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 184, - 252, - 255, - 255, - 36, - 4, - 4, - 4, - 36, - 255, - 255, - 252, - 189, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 175, - 236, - 236, - 183, - 2, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 221, - 255, - 255, - 255, - 29, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 13, - 240, - 255, - 255, - 220, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 11, - 36, - 243, - 255, - 57, - 9, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 15, - 36, - 36, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 238, - 255, - 255, - 219, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 244, - 255, - 255, - 12, - 3, - 0, - 0, - 0, - 0, - 176, - 244, - 255, - 255, - 43, - 12, - 12, - 12, - 12, - 12, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 217, - 4, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 184, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 171, - 255, - 255, - 255, - 16, - 0, - 0, - 0, - 0, - 0, - 177, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 4, - 255, - 255, - 253, - 213, - 8, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 4, - 4, - 36, - 255, - 255, - 252, - 192, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 232, - 11, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 150, - 236, - 255, - 255, - 35, - 7, - 0, - 0, - 181, - 236, - 236, - 201, - 8, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 231, - 6, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 155, - 220, - 252, - 255, - 36, - 12, - 0, - 0, - 0, - 0, - 255, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 32, - 255, - 255, - 255, - 255, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 15, - 44, - 243, - 255, - 218, - 165, - 0, - 0, - 0, - 0, - 0, - 0, - 158, - 212, - 254, - 255, - 71, - 44, - 44, - 44, - 71, - 255, - 254, - 212, - 154, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 240, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 147, - 204, - 204, - 165, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 204, - 250, - 255, - 255, - 255, - 250, - 204, - 132, - 0, - 0, - 19, - 52, - 52, - 52, - 52, - 52, - 52, - 32, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 227, - 255, - 255, - 255, - 255, - 255, - 255, - 252, - 38, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 170, - 232, - 232, - 232, - 232, - 232, - 232, - 208, - 19, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 224, - 255, - 255, - 255, - 224, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 156, - 255, - 255, - 255, - 155, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 4, - 4, - 4, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61518 - } - }, - { - "encoding": 91, - "x": 0, - "y": 0, - "width": 34, - "height": 34, - "dx": 33, - "glyphBitmap": { - "height": 34, - "width": 34, - "pixelArray": [ - 0, - 0, - 0, - 0, - 1, - 34, - 90, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 104, - 55, - 0, - 0, - 12, - 86, - 75, - 3, - 0, - 0, - 0, - 0, - 0, - 1, - 88, - 213, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 163, - 10, - 2, - 112, - 241, - 255, - 255, - 187, - 8, - 0, - 0, - 0, - 5, - 157, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 148, - 1, - 3, - 163, - 255, - 255, - 255, - 255, - 255, - 148, - 0, - 0, - 1, - 166, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 203, - 3, - 1, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 254, - 40, - 0, - 83, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 67, - 0, - 92, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 147, - 0, - 192, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 229, - 1, - 3, - 223, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 0, - 246, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 177, - 0, - 50, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 8, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 161, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 6, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 64, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 217, - 0, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 150, - 0, - 73, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 160, - 0, - 131, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 247, - 52, - 0, - 126, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 80, - 0, - 1, - 52, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 84, - 82, - 25, - 0, - 19, - 232, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 231, - 5, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 33, - 203, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 88, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 156, - 157, - 186, - 251, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 19, - 240, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 148, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 221, - 8, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 46, - 253, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 1, - 194, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 183, - 1, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 90, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 249, - 37, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 12, - 229, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 237, - 14, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 25, - 247, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 119, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 134, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 238, - 12, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 9, - 238, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 140, - 0, - 1, - 52, - 76, - 76, - 48, - 0, - 0, - 85, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 54, - 0, - 147, - 255, - 255, - 255, - 255, - 135, - 0, - 158, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 244, - 4, - 17, - 253, - 255, - 255, - 255, - 255, - 247, - 7, - 210, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 213, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 243, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 222, - 0, - 32, - 255, - 255, - 255, - 255, - 255, - 255, - 16, - 228, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 243, - 1, - 30, - 255, - 255, - 255, - 255, - 255, - 255, - 10, - 165, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 21, - 18, - 255, - 255, - 255, - 255, - 255, - 218, - 0, - 54, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 57, - 1, - 246, - 255, - 255, - 255, - 255, - 110, - 0, - 0, - 133, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 94, - 0, - 203, - 255, - 255, - 255, - 189, - 4, - 0, - 0, - 2, - 134, - 254, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 137, - 0, - 109, - 255, - 255, - 191, - 15, - 0, - 0, - 0, - 0, - 0, - 56, - 173, - 237, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 255, - 190, - 0, - 3, - 166, - 156, - 7, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 61581 - } - }, - { - "encoding": 92, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 92 - } - }, - { - "encoding": 93, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 93 - } - }, - { - "encoding": 94, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 94 - } - }, - { - "encoding": 95, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 95 - } - }, - { - "encoding": 96, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 96 - } - }, - { - "encoding": 97, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 97 - } - }, - { - "encoding": 98, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 98 - } - }, - { - "encoding": 99, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 99 - } - }, - { - "encoding": 100, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 100 - } - }, - { - "encoding": 101, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 101 - } - }, - { - "encoding": 102, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 102 - } - }, - { - "encoding": 103, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 103 - } - }, - { - "encoding": 104, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 104 - } - }, - { - "encoding": 105, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 105 - } - }, - { - "encoding": 106, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 106 - } - }, - { - "encoding": 107, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 107 - } - }, - { - "encoding": 108, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 108 - } - }, - { - "encoding": 109, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 109 - } - }, - { - "encoding": 110, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 110 - } - }, - { - "encoding": 111, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 111 - } - }, - { - "encoding": 112, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 112 - } - }, - { - "encoding": 113, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 113 - } - }, - { - "encoding": 114, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 114 - } - }, - { - "encoding": 115, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 115 - } - }, - { - "encoding": 116, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 116 - } - }, - { - "encoding": 117, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 117 - } - }, - { - "encoding": 118, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 118 - } - }, - { - "encoding": 119, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 119 - } - }, - { - "encoding": 120, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 120 - } - }, - { - "encoding": 121, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 121 - } - }, - { - "encoding": 122, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 122 - } - }, - { - "encoding": 123, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 123 - } - }, - { - "encoding": 124, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 124 - } - }, - { - "encoding": 125, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 125 - } - }, - { - "encoding": 126, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 126 - } - }, - { - "encoding": 127, - "source": { - "filePath": "fonts\\webhostinghub-glyphs.ttf", - "size": 24, - "encoding": 127 - } - } - ] - }, - { - "name": "Shadow", - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14 - }, - "bpp": 8, - "height": 20, - "ascent": 20, - "descent": 0, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 6, - 6, - 6, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 6, - 6, - 6, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 0, - 0, - 0, - 0, - 3, - 6, - 6, - 10, - 16, - 16, - 16, - 16, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 0, - 0, - 0, - 3, - 6, - 10, - 16, - 23, - 27, - 30, - 33, - 33, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 0, - 0, - 3, - 6, - 10, - 16, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 16, - 27, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 10, - 16, - 27, - 40, - 57, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 33, - 54, - 78, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 16, - 27, - 44, - 68, - 95, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 6, - 16, - 30, - 50, - 78, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 10, - 16, - 33, - 57, - 88, - 122, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 16, - 33, - 61, - 95, - 132, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 64, - 95, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 6, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 6, - 6, - 6, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 6, - 6, - 6, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 16, - 16, - 16, - 16, - 10, - 6, - 6, - 3, - 0, - 0, - 0, - 0, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 33, - 33, - 30, - 27, - 23, - 16, - 10, - 6, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 27, - 16, - 10, - 6, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 40, - 27, - 16, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 57, - 40, - 27, - 16, - 10, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 78, - 54, - 33, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 95, - 68, - 44, - 27, - 16, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 112, - 78, - 50, - 30, - 16, - 6, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 122, - 88, - 57, - 33, - 16, - 10, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 132, - 95, - 61, - 33, - 16, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 95, - 64, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 142, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 68, - 102, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 23, - 40, - 64, - 95, - 139, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 10, - 16, - 33, - 61, - 95, - 132, - 248, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 10, - 16, - 33, - 57, - 88, - 122, - 197, - 251, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 6, - 16, - 30, - 50, - 78, - 112, - 142, - 176, - 200, - 221, - 234, - 244, - 244, - 251, - 251, - 251, - 251, - 251, - 251, - 0, - 6, - 16, - 27, - 44, - 68, - 95, - 122, - 153, - 173, - 190, - 204, - 210, - 214, - 221, - 221, - 221, - 221, - 221, - 221, - 0, - 6, - 10, - 23, - 33, - 54, - 78, - 102, - 122, - 142, - 159, - 170, - 176, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 0, - 3, - 10, - 16, - 27, - 40, - 57, - 78, - 95, - 112, - 122, - 132, - 136, - 139, - 139, - 139, - 142, - 142, - 142, - 142, - 0, - 0, - 6, - 10, - 16, - 27, - 40, - 54, - 68, - 78, - 88, - 95, - 95, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 0, - 0, - 3, - 6, - 10, - 16, - 27, - 33, - 44, - 50, - 57, - 61, - 64, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 0, - 0, - 0, - 3, - 6, - 10, - 16, - 23, - 27, - 30, - 33, - 33, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 0, - 0, - 0, - 0, - 3, - 6, - 6, - 10, - 16, - 16, - 16, - 16, - 23, - 23, - 23, - 23, - 23, - 23, - 27, - 27, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 6, - 6, - 6, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 13, - 13, - 13, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 3, - 3, - 3, - 3, - 3, - 6, - 6, - 10, - 10, - 10, - 10 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 251, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 221, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 142, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 27, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 13, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 0, - "y": 0, - "width": 20, - "height": 20, - "dx": 20, - "glyphBitmap": { - "width": 20, - "height": 20, - "pixelArray": [ - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 142, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 102, - 68, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 139, - 95, - 64, - 40, - 23, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 248, - 132, - 95, - 61, - 33, - 16, - 10, - 6, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 251, - 197, - 122, - 88, - 57, - 33, - 16, - 10, - 3, - 251, - 251, - 251, - 251, - 251, - 251, - 244, - 244, - 234, - 221, - 200, - 176, - 142, - 112, - 78, - 50, - 30, - 16, - 6, - 3, - 221, - 221, - 221, - 221, - 221, - 221, - 214, - 210, - 204, - 190, - 173, - 153, - 122, - 95, - 68, - 44, - 27, - 16, - 6, - 0, - 180, - 180, - 180, - 180, - 180, - 180, - 180, - 176, - 170, - 159, - 142, - 122, - 102, - 78, - 54, - 33, - 23, - 10, - 6, - 0, - 142, - 142, - 142, - 142, - 139, - 139, - 139, - 136, - 132, - 122, - 112, - 95, - 78, - 57, - 40, - 27, - 16, - 10, - 3, - 0, - 102, - 102, - 102, - 102, - 102, - 102, - 102, - 95, - 95, - 88, - 78, - 68, - 54, - 40, - 27, - 16, - 10, - 6, - 0, - 0, - 68, - 68, - 68, - 68, - 68, - 68, - 68, - 64, - 61, - 57, - 50, - 44, - 33, - 27, - 16, - 10, - 6, - 3, - 0, - 0, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 40, - 33, - 33, - 30, - 27, - 23, - 16, - 10, - 6, - 3, - 0, - 0, - 0, - 27, - 23, - 23, - 23, - 23, - 23, - 23, - 23, - 16, - 16, - 16, - 16, - 10, - 6, - 6, - 3, - 0, - 0, - 0, - 0, - 13, - 13, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 10, - 6, - 6, - 6, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 10, - 10, - 10, - 6, - 6, - 6, - 3, - 3, - 3, - 3, - 3, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0 - ] - }, - "source": { - "filePath": "fonts\\fontawesome-webfont.ttf", - "size": 14, - "encoding": 39 - } - } - ], - "alwaysBuild": true - }, - { - "name": "RobotoCondensed-Regular", - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10 - }, - "bpp": 8, - "height": 19, - "ascent": 15, - "descent": 4, - "glyphs": [ - { - "encoding": 32, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 3, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 32 - } - }, - { - "encoding": 33, - "x": 0, - "y": 0, - "width": 3, - "height": 10, - "dx": 3, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 16, - 252, - 79, - 16, - 255, - 80, - 16, - 255, - 80, - 16, - 255, - 80, - 16, - 255, - 80, - 16, - 255, - 80, - 16, - 255, - 80, - 1, - 4, - 2, - 6, - 96, - 32, - 16, - 255, - 84 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 33 - } - }, - { - "encoding": 34, - "x": 0, - "y": 7, - "width": 4, - "height": 4, - "dx": 4, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 107, - 154, - 146, - 119, - 109, - 154, - 148, - 118, - 110, - 113, - 148, - 75, - 51, - 33, - 68, - 15 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 34 - } - }, - { - "encoding": 35, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 0, - 55, - 183, - 1, - 234, - 4, - 0, - 0, - 94, - 148, - 26, - 216, - 0, - 0, - 0, - 133, - 111, - 65, - 179, - 0, - 44, - 252, - 255, - 254, - 254, - 255, - 213, - 1, - 4, - 214, - 35, - 147, - 99, - 4, - 0, - 11, - 234, - 1, - 195, - 48, - 0, - 154, - 253, - 255, - 252, - 255, - 253, - 103, - 3, - 90, - 160, - 23, - 226, - 4, - 2, - 0, - 124, - 120, - 56, - 188, - 0, - 0, - 0, - 162, - 83, - 94, - 151, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 35 - } - }, - { - "encoding": 36, - "x": 0, - "y": -1, - "width": 7, - "height": 13, - "dx": 7, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 0, - 0, - 217, - 8, - 0, - 0, - 0, - 0, - 0, - 220, - 8, - 0, - 0, - 0, - 48, - 205, - 255, - 211, - 51, - 0, - 0, - 206, - 180, - 29, - 179, - 215, - 0, - 8, - 255, - 95, - 0, - 78, - 255, - 26, - 1, - 228, - 155, - 1, - 6, - 24, - 4, - 0, - 87, - 248, - 186, - 55, - 0, - 0, - 0, - 0, - 35, - 158, - 253, - 118, - 0, - 0, - 0, - 0, - 0, - 118, - 250, - 16, - 81, - 255, - 19, - 0, - 56, - 255, - 43, - 20, - 250, - 133, - 22, - 155, - 238, - 6, - 0, - 83, - 222, - 255, - 217, - 71, - 0, - 0, - 0, - 0, - 228, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 36 - } - }, - { - "encoding": 37, - "x": 0, - "y": 0, - "width": 9, - "height": 10, - "dx": 9, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 1, - 154, - 245, - 159, - 2, - 0, - 0, - 0, - 0, - 56, - 213, - 23, - 209, - 60, - 24, - 164, - 0, - 0, - 88, - 165, - 0, - 158, - 92, - 151, - 92, - 0, - 0, - 59, - 209, - 15, - 204, - 101, - 203, - 2, - 0, - 0, - 2, - 164, - 252, - 168, - 175, - 71, - 0, - 0, - 0, - 0, - 0, - 1, - 56, - 187, - 99, - 238, - 201, - 24, - 0, - 0, - 1, - 192, - 54, - 237, - 40, - 148, - 128, - 0, - 0, - 77, - 166, - 20, - 233, - 0, - 89, - 160, - 0, - 0, - 162, - 34, - 5, - 239, - 35, - 139, - 131, - 0, - 0, - 1, - 0, - 0, - 106, - 241, - 207, - 27 - ], - "width": 9 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 37 - } - }, - { - "encoding": 38, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 29, - 190, - 247, - 183, - 20, - 0, - 0, - 0, - 153, - 205, - 35, - 195, - 132, - 0, - 0, - 0, - 191, - 149, - 0, - 154, - 149, - 0, - 0, - 0, - 135, - 226, - 97, - 236, - 44, - 0, - 0, - 0, - 23, - 249, - 242, - 50, - 0, - 0, - 0, - 5, - 180, - 215, - 254, - 85, - 0, - 105, - 53, - 95, - 251, - 26, - 133, - 242, - 36, - 224, - 74, - 135, - 230, - 0, - 4, - 194, - 226, - 242, - 15, - 69, - 255, - 93, - 15, - 101, - 255, - 182, - 0, - 1, - 116, - 224, - 251, - 210, - 135, - 254, - 92 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 38 - } - }, - { - "encoding": 39, - "x": 0, - "y": 7, - "width": 2, - "height": 4, - "dx": 2, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 111, - 150, - 112, - 147, - 112, - 104, - 53, - 32 - ], - "width": 2 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 39 - } - }, - { - "encoding": 40, - "x": 0, - "y": -3, - "width": 4, - "height": 14, - "dx": 4, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 0, - 26, - 164, - 0, - 1, - 187, - 90, - 0, - 74, - 209, - 1, - 0, - 174, - 121, - 0, - 1, - 240, - 69, - 0, - 27, - 255, - 34, - 0, - 48, - 255, - 16, - 0, - 48, - 255, - 16, - 0, - 29, - 255, - 33, - 0, - 1, - 242, - 68, - 0, - 0, - 179, - 118, - 0, - 0, - 78, - 205, - 1, - 0, - 1, - 190, - 83, - 0, - 0, - 27, - 165 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 40 - } - }, - { - "encoding": 41, - "x": 0, - "y": -3, - "width": 4, - "height": 14, - "dx": 4, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 150, - 40, - 0, - 0, - 69, - 211, - 6, - 0, - 0, - 194, - 106, - 0, - 0, - 104, - 207, - 0, - 0, - 50, - 255, - 18, - 0, - 13, - 255, - 62, - 0, - 0, - 248, - 83, - 0, - 0, - 248, - 83, - 0, - 10, - 255, - 64, - 0, - 46, - 255, - 20, - 0, - 96, - 211, - 0, - 0, - 184, - 109, - 0, - 61, - 214, - 7, - 0, - 152, - 42, - 0, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 41 - } - }, - { - "encoding": 42, - "x": 0, - "y": 3, - "width": 6, - "height": 7, - "dx": 6, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 0, - 0, - 178, - 63, - 0, - 0, - 29, - 3, - 173, - 56, - 23, - 2, - 149, - 218, - 216, - 178, - 236, - 36, - 0, - 63, - 255, - 178, - 14, - 0, - 0, - 164, - 119, - 224, - 30, - 0, - 10, - 176, - 5, - 113, - 91, - 0, - 0, - 0, - 0, - 1, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 42 - } - }, - { - "encoding": 43, - "x": 0, - "y": 0, - "width": 7, - "height": 8, - "dx": 7, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 0, - 49, - 240, - 38, - 0, - 0, - 0, - 0, - 52, - 255, - 40, - 0, - 0, - 0, - 0, - 52, - 255, - 40, - 0, - 0, - 138, - 252, - 253, - 255, - 253, - 252, - 123, - 29, - 52, - 94, - 255, - 84, - 52, - 26, - 0, - 0, - 52, - 255, - 40, - 0, - 0, - 0, - 0, - 52, - 255, - 40, - 0, - 0, - 0, - 0, - 17, - 80, - 13, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 43 - } - }, - { - "encoding": 44, - "x": 0, - "y": -3, - "width": 3, - "height": 4, - "dx": 3, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 60, - 252, - 16, - 75, - 239, - 6, - 124, - 138, - 0, - 49, - 21, - 0 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 44 - } - }, - { - "encoding": 45, - "x": 0, - "y": 3, - "width": 4, - "height": 2, - "dx": 4, - "glyphBitmap": { - "height": 2, - "pixelArray": [ - 126, - 252, - 252, - 138, - 10, - 20, - 20, - 11 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 45 - } - }, - { - "encoding": 46, - "x": 0, - "y": 0, - "width": 3, - "height": 2, - "dx": 3, - "glyphBitmap": { - "height": 2, - "pixelArray": [ - 6, - 96, - 32, - 16, - 255, - 84 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 46 - } - }, - { - "encoding": 47, - "x": 0, - "y": -1, - "width": 5, - "height": 11, - "dx": 5, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 0, - 0, - 199, - 73, - 0, - 0, - 25, - 244, - 9, - 0, - 0, - 100, - 178, - 0, - 0, - 0, - 177, - 101, - 0, - 0, - 9, - 244, - 26, - 0, - 0, - 74, - 204, - 0, - 0, - 0, - 151, - 128, - 0, - 0, - 1, - 227, - 51, - 0, - 0, - 49, - 230, - 2, - 0, - 0, - 126, - 154, - 0, - 0, - 0, - 202, - 78, - 0, - 0, - 0 - ], - "width": 5 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 47 - } - }, - { - "encoding": 48, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 46, - 203, - 247, - 185, - 24, - 0, - 3, - 219, - 162, - 35, - 192, - 179, - 0, - 47, - 255, - 46, - 0, - 84, - 252, - 10, - 83, - 255, - 15, - 0, - 51, - 255, - 43, - 88, - 255, - 12, - 0, - 48, - 255, - 48, - 88, - 255, - 12, - 0, - 48, - 255, - 48, - 83, - 255, - 15, - 0, - 51, - 255, - 43, - 49, - 255, - 45, - 0, - 82, - 253, - 12, - 3, - 221, - 157, - 23, - 185, - 184, - 0, - 0, - 49, - 208, - 252, - 193, - 29, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 48 - } - }, - { - "encoding": 49, - "x": 0, - "y": 0, - "width": 5, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 37, - 114, - 190, - 75, - 4, - 248, - 229, - 255, - 80, - 1, - 1, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80, - 0, - 0, - 20, - 255, - 80 - ], - "width": 5 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 49 - } - }, - { - "encoding": 50, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 77, - 214, - 247, - 185, - 32, - 0, - 25, - 248, - 121, - 35, - 203, - 181, - 0, - 98, - 247, - 4, - 0, - 111, - 249, - 0, - 11, - 22, - 0, - 0, - 129, - 229, - 0, - 0, - 0, - 0, - 9, - 226, - 135, - 0, - 0, - 0, - 0, - 143, - 220, - 13, - 0, - 0, - 0, - 82, - 249, - 50, - 0, - 0, - 0, - 37, - 241, - 118, - 0, - 0, - 0, - 9, - 209, - 196, - 11, - 8, - 8, - 3, - 79, - 255, - 255, - 255, - 255, - 255, - 72 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 50 - } - }, - { - "encoding": 51, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 84, - 215, - 246, - 184, - 36, - 0, - 28, - 252, - 119, - 33, - 193, - 191, - 0, - 60, - 175, - 5, - 0, - 111, - 246, - 0, - 0, - 0, - 0, - 9, - 178, - 180, - 0, - 0, - 0, - 170, - 255, - 240, - 29, - 0, - 0, - 0, - 11, - 29, - 185, - 188, - 0, - 0, - 0, - 0, - 0, - 83, - 255, - 18, - 82, - 177, - 1, - 0, - 83, - 255, - 19, - 49, - 255, - 99, - 23, - 185, - 195, - 0, - 0, - 103, - 222, - 249, - 182, - 35, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 51 - } - }, - { - "encoding": 52, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 0, - 0, - 62, - 252, - 107, - 0, - 0, - 0, - 0, - 189, - 255, - 108, - 0, - 0, - 0, - 60, - 200, - 245, - 108, - 0, - 0, - 0, - 187, - 85, - 244, - 108, - 0, - 0, - 58, - 223, - 4, - 244, - 108, - 0, - 0, - 185, - 111, - 0, - 244, - 108, - 0, - 56, - 239, - 13, - 0, - 244, - 108, - 0, - 149, - 255, - 252, - 252, - 255, - 254, - 123, - 12, - 20, - 20, - 20, - 245, - 120, - 10, - 0, - 0, - 0, - 0, - 244, - 108, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 52 - } - }, - { - "encoding": 53, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 154, - 252, - 252, - 252, - 229, - 0, - 0, - 181, - 159, - 40, - 40, - 37, - 0, - 0, - 205, - 115, - 0, - 0, - 0, - 0, - 0, - 229, - 199, - 242, - 212, - 49, - 0, - 3, - 252, - 141, - 40, - 194, - 207, - 0, - 2, - 41, - 10, - 0, - 81, - 255, - 24, - 0, - 0, - 0, - 0, - 51, - 255, - 48, - 34, - 241, - 48, - 0, - 75, - 255, - 23, - 3, - 230, - 153, - 21, - 178, - 200, - 0, - 0, - 58, - 203, - 251, - 202, - 40, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 53 - } - }, - { - "encoding": 54, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 8, - 145, - 238, - 236, - 95, - 0, - 0, - 151, - 213, - 55, - 44, - 41, - 0, - 16, - 251, - 77, - 0, - 0, - 0, - 0, - 59, - 255, - 151, - 236, - 227, - 75, - 0, - 68, - 255, - 135, - 18, - 154, - 240, - 10, - 68, - 255, - 29, - 0, - 35, - 255, - 69, - 63, - 255, - 36, - 0, - 8, - 255, - 92, - 26, - 255, - 78, - 0, - 39, - 255, - 61, - 0, - 192, - 197, - 27, - 155, - 228, - 4, - 0, - 27, - 185, - 250, - 213, - 54, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 54 - } - }, - { - "encoding": 55, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 138, - 252, - 252, - 252, - 252, - 252, - 67, - 11, - 20, - 20, - 20, - 110, - 231, - 20, - 0, - 0, - 0, - 9, - 230, - 91, - 0, - 0, - 0, - 0, - 113, - 208, - 2, - 0, - 0, - 0, - 1, - 219, - 101, - 0, - 0, - 0, - 0, - 47, - 255, - 28, - 0, - 0, - 0, - 0, - 105, - 235, - 0, - 0, - 0, - 0, - 0, - 157, - 192, - 0, - 0, - 0, - 0, - 0, - 196, - 159, - 0, - 0, - 0, - 0, - 0, - 224, - 133, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 55 - } - }, - { - "encoding": 56, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 73, - 210, - 248, - 194, - 44, - 0, - 8, - 238, - 154, - 33, - 192, - 203, - 0, - 39, - 255, - 62, - 0, - 103, - 254, - 1, - 5, - 228, - 138, - 9, - 173, - 192, - 0, - 0, - 59, - 251, - 255, - 238, - 28, - 0, - 12, - 222, - 143, - 29, - 178, - 184, - 1, - 81, - 255, - 19, - 0, - 59, - 255, - 35, - 91, - 255, - 15, - 0, - 56, - 255, - 47, - 30, - 251, - 129, - 20, - 168, - 231, - 4, - 0, - 87, - 214, - 251, - 199, - 57, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 56 - } - }, - { - "encoding": 57, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 55, - 212, - 245, - 170, - 17, - 0, - 10, - 233, - 146, - 41, - 214, - 163, - 0, - 79, - 255, - 19, - 0, - 110, - 244, - 4, - 117, - 239, - 0, - 0, - 75, - 255, - 24, - 95, - 253, - 11, - 0, - 73, - 255, - 28, - 27, - 251, - 121, - 23, - 179, - 255, - 28, - 0, - 95, - 235, - 241, - 159, - 255, - 24, - 0, - 0, - 1, - 1, - 109, - 241, - 4, - 0, - 40, - 20, - 41, - 219, - 154, - 0, - 0, - 131, - 246, - 243, - 157, - 12, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 57 - } - }, - { - "encoding": 58, - "x": 0, - "y": 0, - "width": 3, - "height": 8, - "dx": 3, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 16, - 252, - 83, - 7, - 104, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 6, - 96, - 32, - 16, - 255, - 84 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 58 - } - }, - { - "encoding": 59, - "x": 0, - "y": -3, - "width": 3, - "height": 11, - "dx": 3, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 16, - 252, - 83, - 7, - 104, - 35, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 60, - 252, - 16, - 75, - 239, - 6, - 124, - 138, - 0, - 49, - 21, - 0 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 59 - } - }, - { - "encoding": 60, - "x": 0, - "y": 1, - "width": 6, - "height": 7, - "dx": 6, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 0, - 0, - 0, - 0, - 37, - 34, - 0, - 0, - 28, - 154, - 250, - 62, - 21, - 141, - 245, - 167, - 44, - 0, - 148, - 234, - 59, - 0, - 0, - 0, - 30, - 158, - 242, - 141, - 25, - 0, - 0, - 0, - 42, - 174, - 248, - 55, - 0, - 0, - 0, - 0, - 55, - 40 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 60 - } - }, - { - "encoding": 61, - "x": 0, - "y": 2, - "width": 6, - "height": 5, - "dx": 7, - "glyphBitmap": { - "height": 5, - "pixelArray": [ - 28, - 252, - 252, - 252, - 252, - 225, - 4, - 28, - 28, - 28, - 28, - 25, - 0, - 0, - 0, - 0, - 0, - 0, - 28, - 252, - 252, - 252, - 252, - 225, - 4, - 28, - 28, - 28, - 28, - 25 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 61 - } - }, - { - "encoding": 62, - "x": 0, - "y": 0, - "width": 6, - "height": 7, - "dx": 6, - "glyphBitmap": { - "height": 7, - "pixelArray": [ - 27, - 45, - 0, - 0, - 0, - 0, - 45, - 248, - 168, - 41, - 0, - 0, - 0, - 29, - 142, - 242, - 164, - 37, - 0, - 0, - 0, - 32, - 213, - 200, - 0, - 19, - 129, - 239, - 180, - 50, - 41, - 244, - 188, - 57, - 0, - 0, - 32, - 65, - 0, - 0, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 62 - } - }, - { - "encoding": 63, - "x": 0, - "y": 0, - "width": 6, - "height": 10, - "dx": 6, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 10, - 157, - 241, - 227, - 113, - 0, - 117, - 241, - 58, - 102, - 255, - 49, - 97, - 107, - 0, - 2, - 250, - 104, - 0, - 0, - 0, - 38, - 255, - 64, - 0, - 0, - 4, - 189, - 188, - 1, - 0, - 0, - 147, - 218, - 18, - 0, - 0, - 0, - 239, - 114, - 0, - 0, - 0, - 0, - 4, - 2, - 0, - 0, - 0, - 0, - 87, - 39, - 0, - 0, - 0, - 0, - 252, - 112, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 63 - } - }, - { - "encoding": 64, - "x": 0, - "y": -3, - "width": 11, - "height": 13, - "dx": 11, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 0, - 0, - 1, - 91, - 199, - 246, - 238, - 178, - 50, - 0, - 0, - 0, - 1, - 147, - 210, - 71, - 12, - 22, - 94, - 227, - 62, - 0, - 0, - 81, - 214, - 14, - 0, - 0, - 0, - 0, - 50, - 212, - 2, - 0, - 204, - 73, - 0, - 101, - 239, - 226, - 93, - 0, - 182, - 58, - 28, - 233, - 2, - 44, - 239, - 51, - 104, - 173, - 0, - 120, - 113, - 74, - 183, - 0, - 132, - 158, - 0, - 111, - 152, - 0, - 95, - 137, - 98, - 158, - 0, - 189, - 107, - 0, - 131, - 132, - 0, - 100, - 135, - 96, - 161, - 0, - 206, - 90, - 0, - 151, - 112, - 0, - 150, - 89, - 72, - 191, - 0, - 173, - 138, - 25, - 218, - 131, - 47, - 225, - 16, - 19, - 243, - 16, - 59, - 235, - 208, - 81, - 240, - 223, - 74, - 0, - 0, - 172, - 136, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 0, - 31, - 230, - 144, - 33, - 5, - 44, - 56, - 0, - 0, - 0, - 0, - 0, - 28, - 158, - 232, - 252, - 208, - 75, - 0, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 64 - } - }, - { - "encoding": 65, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 0, - 2, - 227, - 188, - 0, - 0, - 0, - 0, - 0, - 53, - 255, - 252, - 17, - 0, - 0, - 0, - 0, - 132, - 190, - 232, - 89, - 0, - 0, - 0, - 0, - 210, - 108, - 155, - 166, - 0, - 0, - 0, - 33, - 255, - 29, - 76, - 240, - 5, - 0, - 0, - 111, - 205, - 0, - 9, - 245, - 66, - 0, - 0, - 190, - 255, - 252, - 252, - 255, - 144, - 0, - 17, - 252, - 74, - 28, - 28, - 121, - 222, - 1, - 91, - 243, - 5, - 0, - 0, - 43, - 255, - 43, - 169, - 184, - 0, - 0, - 0, - 1, - 233, - 121 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 65 - } - }, - { - "encoding": 66, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 231, - 152, - 12, - 0, - 8, - 255, - 105, - 21, - 63, - 239, - 134, - 0, - 8, - 255, - 92, - 0, - 0, - 175, - 182, - 0, - 8, - 255, - 92, - 0, - 35, - 232, - 117, - 0, - 8, - 255, - 254, - 253, - 255, - 211, - 13, - 0, - 8, - 255, - 95, - 4, - 20, - 193, - 172, - 0, - 8, - 255, - 92, - 0, - 0, - 99, - 249, - 5, - 8, - 255, - 92, - 0, - 0, - 99, - 253, - 5, - 8, - 255, - 98, - 8, - 30, - 199, - 187, - 0, - 8, - 255, - 255, - 255, - 248, - 178, - 31, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 66 - } - }, - { - "encoding": 67, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 32, - 181, - 245, - 234, - 149, - 9, - 3, - 212, - 186, - 38, - 58, - 230, - 131, - 53, - 255, - 49, - 0, - 0, - 142, - 208, - 89, - 255, - 8, - 0, - 0, - 16, - 28, - 92, - 255, - 4, - 0, - 0, - 0, - 0, - 92, - 255, - 4, - 0, - 0, - 0, - 0, - 89, - 255, - 7, - 0, - 0, - 10, - 18, - 56, - 255, - 48, - 0, - 0, - 139, - 209, - 3, - 215, - 181, - 29, - 44, - 224, - 131, - 0, - 35, - 185, - 248, - 238, - 155, - 10 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 67 - } - }, - { - "encoding": 68, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 224, - 114, - 1, - 0, - 8, - 255, - 105, - 22, - 85, - 241, - 120, - 0, - 8, - 255, - 92, - 0, - 0, - 118, - 242, - 9, - 8, - 255, - 92, - 0, - 0, - 47, - 255, - 55, - 8, - 255, - 92, - 0, - 0, - 25, - 255, - 72, - 8, - 255, - 92, - 0, - 0, - 25, - 255, - 72, - 8, - 255, - 92, - 0, - 0, - 45, - 255, - 57, - 8, - 255, - 92, - 0, - 0, - 113, - 245, - 10, - 8, - 255, - 98, - 10, - 72, - 237, - 128, - 0, - 8, - 255, - 255, - 255, - 229, - 121, - 2, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 68 - } - }, - { - "encoding": 69, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 252, - 252, - 150, - 8, - 255, - 105, - 20, - 20, - 20, - 12, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 254, - 252, - 252, - 252, - 12, - 8, - 255, - 105, - 20, - 20, - 20, - 1, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 98, - 8, - 8, - 8, - 5, - 8, - 255, - 255, - 255, - 255, - 255, - 160 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 69 - } - }, - { - "encoding": 70, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 252, - 252, - 162, - 8, - 255, - 105, - 20, - 20, - 20, - 13, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 254, - 252, - 252, - 252, - 12, - 8, - 255, - 105, - 20, - 20, - 20, - 1, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 70 - } - }, - { - "encoding": 71, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 23, - 167, - 240, - 243, - 183, - 39, - 0, - 1, - 198, - 201, - 49, - 38, - 178, - 213, - 1, - 43, - 255, - 64, - 0, - 0, - 45, - 232, - 38, - 75, - 255, - 22, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 20, - 0, - 0, - 0, - 0, - 0, - 76, - 255, - 20, - 0, - 213, - 252, - 252, - 63, - 75, - 255, - 23, - 0, - 4, - 40, - 255, - 64, - 44, - 255, - 66, - 0, - 0, - 36, - 255, - 64, - 1, - 198, - 202, - 45, - 18, - 125, - 253, - 45, - 0, - 22, - 160, - 237, - 250, - 204, - 76, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 71 - } - }, - { - "encoding": 72, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 9, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 91, - 0, - 0, - 0, - 209, - 138, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 254, - 252, - 252, - 252, - 255, - 140, - 8, - 255, - 105, - 20, - 20, - 20, - 216, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140, - 8, - 255, - 92, - 0, - 0, - 0, - 212, - 140 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 72 - } - }, - { - "encoding": 73, - "x": 1, - "y": 0, - "width": 2, - "height": 10, - "dx": 4, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 237, - 111, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112, - 240, - 112 - ], - "width": 2 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 73 - } - }, - { - "encoding": 74, - "x": 0, - "y": 0, - "width": 6, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 0, - 0, - 0, - 138, - 209, - 0, - 0, - 0, - 0, - 140, - 212, - 0, - 0, - 0, - 0, - 140, - 212, - 0, - 0, - 0, - 0, - 140, - 212, - 0, - 0, - 0, - 0, - 140, - 212, - 0, - 0, - 0, - 0, - 140, - 212, - 0, - 0, - 0, - 0, - 140, - 212, - 123, - 189, - 0, - 0, - 155, - 201, - 84, - 253, - 67, - 39, - 233, - 126, - 2, - 135, - 233, - 245, - 156, - 10 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 74 - } - }, - { - "encoding": 75, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 91, - 0, - 0, - 130, - 246, - 43, - 8, - 255, - 92, - 0, - 49, - 252, - 125, - 0, - 8, - 255, - 92, - 6, - 208, - 207, - 5, - 0, - 8, - 255, - 92, - 126, - 251, - 47, - 0, - 0, - 8, - 255, - 254, - 255, - 138, - 0, - 0, - 0, - 8, - 255, - 113, - 136, - 202, - 3, - 0, - 0, - 8, - 255, - 92, - 11, - 230, - 114, - 0, - 0, - 8, - 255, - 92, - 0, - 98, - 246, - 34, - 0, - 8, - 255, - 92, - 0, - 3, - 209, - 187, - 1, - 8, - 255, - 92, - 0, - 0, - 68, - 255, - 97 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 75 - } - }, - { - "encoding": 76, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 91, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 8, - 255, - 98, - 8, - 8, - 8, - 2, - 8, - 255, - 255, - 255, - 255, - 255, - 60 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 76 - } - }, - { - "encoding": 77, - "x": 0, - "y": 0, - "width": 10, - "height": 10, - "dx": 10, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 16, - 252, - 217, - 0, - 0, - 0, - 0, - 186, - 252, - 52, - 16, - 255, - 255, - 36, - 0, - 0, - 12, - 249, - 255, - 52, - 16, - 255, - 231, - 108, - 0, - 0, - 78, - 231, - 255, - 52, - 16, - 255, - 160, - 180, - 0, - 0, - 151, - 159, - 255, - 52, - 16, - 255, - 90, - 245, - 8, - 1, - 224, - 88, - 255, - 52, - 16, - 255, - 70, - 205, - 69, - 41, - 232, - 42, - 255, - 52, - 16, - 255, - 76, - 126, - 141, - 114, - 154, - 44, - 255, - 52, - 16, - 255, - 76, - 47, - 214, - 187, - 75, - 44, - 255, - 52, - 16, - 255, - 76, - 1, - 223, - 239, - 8, - 44, - 255, - 52, - 16, - 255, - 76, - 0, - 144, - 172, - 0, - 44, - 255, - 52 - ], - "width": 10 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 77 - } - }, - { - "encoding": 78, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 9, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 154, - 0, - 0, - 0, - 209, - 138, - 8, - 255, - 251, - 34, - 0, - 0, - 212, - 140, - 8, - 255, - 241, - 158, - 0, - 0, - 212, - 140, - 8, - 255, - 131, - 249, - 37, - 0, - 212, - 140, - 8, - 255, - 92, - 160, - 162, - 0, - 212, - 140, - 8, - 255, - 92, - 35, - 249, - 40, - 212, - 140, - 8, - 255, - 92, - 0, - 156, - 166, - 212, - 140, - 8, - 255, - 92, - 0, - 32, - 248, - 241, - 140, - 8, - 255, - 92, - 0, - 0, - 152, - 255, - 140, - 8, - 255, - 92, - 0, - 0, - 29, - 249, - 140 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 78 - } - }, - { - "encoding": 79, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 28, - 174, - 242, - 238, - 160, - 18, - 0, - 3, - 209, - 192, - 50, - 59, - 210, - 186, - 0, - 56, - 255, - 48, - 0, - 0, - 71, - 255, - 37, - 93, - 255, - 4, - 0, - 0, - 24, - 255, - 73, - 96, - 255, - 0, - 0, - 0, - 20, - 255, - 76, - 96, - 255, - 0, - 0, - 0, - 20, - 255, - 76, - 93, - 255, - 3, - 0, - 0, - 23, - 255, - 74, - 59, - 255, - 45, - 0, - 0, - 67, - 255, - 40, - 4, - 217, - 185, - 39, - 48, - 201, - 196, - 1, - 0, - 34, - 182, - 246, - 243, - 168, - 23, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 79 - } - }, - { - "encoding": 80, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 246, - 186, - 38, - 0, - 8, - 255, - 105, - 20, - 35, - 186, - 210, - 1, - 8, - 255, - 92, - 0, - 0, - 65, - 255, - 40, - 8, - 255, - 92, - 0, - 0, - 60, - 255, - 44, - 8, - 255, - 92, - 0, - 12, - 169, - 222, - 2, - 8, - 255, - 254, - 252, - 255, - 210, - 53, - 0, - 8, - 255, - 105, - 20, - 14, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 0, - 8, - 255, - 92, - 0, - 0, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 80 - } - }, - { - "encoding": 81, - "x": 0, - "y": -2, - "width": 8, - "height": 12, - "dx": 8, - "glyphBitmap": { - "height": 12, - "pixelArray": [ - 0, - 26, - 173, - 242, - 238, - 161, - 19, - 0, - 2, - 206, - 195, - 51, - 58, - 207, - 190, - 1, - 52, - 255, - 52, - 0, - 0, - 67, - 255, - 41, - 89, - 255, - 8, - 0, - 0, - 20, - 255, - 77, - 92, - 255, - 4, - 0, - 0, - 16, - 255, - 80, - 92, - 255, - 4, - 0, - 0, - 16, - 255, - 80, - 89, - 255, - 7, - 0, - 0, - 19, - 255, - 78, - 55, - 255, - 49, - 0, - 0, - 63, - 255, - 45, - 3, - 214, - 188, - 40, - 47, - 199, - 200, - 1, - 0, - 33, - 180, - 246, - 247, - 224, - 203, - 14, - 0, - 0, - 0, - 0, - 0, - 12, - 199, - 164, - 0, - 0, - 0, - 0, - 0, - 0, - 17, - 22 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 81 - } - }, - { - "encoding": 82, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 8, - 252, - 252, - 252, - 242, - 171, - 22, - 0, - 8, - 255, - 105, - 20, - 44, - 212, - 173, - 0, - 8, - 255, - 92, - 0, - 0, - 111, - 246, - 1, - 8, - 255, - 92, - 0, - 0, - 106, - 246, - 1, - 8, - 255, - 92, - 0, - 23, - 200, - 164, - 0, - 8, - 255, - 254, - 252, - 255, - 238, - 28, - 0, - 8, - 255, - 105, - 20, - 36, - 198, - 196, - 0, - 8, - 255, - 92, - 0, - 0, - 98, - 254, - 5, - 8, - 255, - 92, - 0, - 0, - 87, - 255, - 10, - 8, - 255, - 92, - 0, - 0, - 58, - 255, - 60 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 82 - } - }, - { - "encoding": 83, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 43, - 182, - 245, - 229, - 132, - 3, - 4, - 223, - 171, - 34, - 67, - 238, - 116, - 45, - 255, - 58, - 0, - 0, - 141, - 195, - 15, - 246, - 140, - 2, - 0, - 0, - 0, - 0, - 92, - 243, - 212, - 113, - 11, - 0, - 0, - 0, - 19, - 116, - 220, - 229, - 46, - 0, - 0, - 0, - 0, - 7, - 198, - 184, - 100, - 241, - 8, - 0, - 0, - 132, - 227, - 32, - 246, - 139, - 22, - 43, - 219, - 160, - 0, - 59, - 186, - 248, - 238, - 159, - 18 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 83 - } - }, - { - "encoding": 84, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 193, - 252, - 252, - 252, - 252, - 252, - 186, - 16, - 20, - 72, - 255, - 61, - 20, - 15, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0, - 0, - 0, - 56, - 255, - 44, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 84 - } - }, - { - "encoding": 85, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 52, - 252, - 44, - 0, - 0, - 60, - 252, - 36, - 52, - 255, - 44, - 0, - 0, - 60, - 255, - 36, - 52, - 255, - 44, - 0, - 0, - 60, - 255, - 36, - 52, - 255, - 44, - 0, - 0, - 60, - 255, - 36, - 52, - 255, - 44, - 0, - 0, - 60, - 255, - 36, - 52, - 255, - 44, - 0, - 0, - 60, - 255, - 36, - 52, - 255, - 45, - 0, - 0, - 61, - 255, - 36, - 34, - 255, - 68, - 0, - 0, - 84, - 255, - 19, - 1, - 210, - 187, - 31, - 37, - 198, - 190, - 0, - 0, - 34, - 173, - 245, - 240, - 163, - 24, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 85 - } - }, - { - "encoding": 86, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 172, - 194, - 0, - 0, - 0, - 29, - 252, - 85, - 99, - 251, - 12, - 0, - 0, - 96, - 251, - 15, - 25, - 255, - 74, - 0, - 0, - 163, - 189, - 0, - 0, - 202, - 140, - 0, - 1, - 229, - 112, - 0, - 0, - 126, - 207, - 0, - 40, - 255, - 35, - 0, - 0, - 49, - 255, - 20, - 107, - 214, - 0, - 0, - 0, - 1, - 228, - 84, - 173, - 137, - 0, - 0, - 0, - 0, - 152, - 153, - 238, - 60, - 0, - 0, - 0, - 0, - 76, - 243, - 236, - 3, - 0, - 0, - 0, - 0, - 9, - 246, - 162, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 86 - } - }, - { - "encoding": 87, - "x": 0, - "y": 0, - "width": 11, - "height": 10, - "dx": 11, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 157, - 185, - 0, - 0, - 101, - 237, - 3, - 0, - 44, - 252, - 46, - 109, - 235, - 1, - 0, - 163, - 255, - 47, - 0, - 92, - 247, - 5, - 57, - 255, - 27, - 0, - 223, - 255, - 109, - 0, - 140, - 199, - 0, - 10, - 253, - 75, - 28, - 255, - 172, - 170, - 0, - 188, - 148, - 0, - 0, - 211, - 124, - 88, - 226, - 80, - 232, - 1, - 237, - 96, - 0, - 0, - 160, - 172, - 149, - 164, - 20, - 255, - 67, - 255, - 44, - 0, - 0, - 108, - 220, - 209, - 103, - 0, - 214, - 176, - 246, - 4, - 0, - 0, - 57, - 255, - 255, - 41, - 0, - 153, - 254, - 197, - 0, - 0, - 0, - 10, - 253, - 235, - 1, - 0, - 92, - 255, - 145, - 0, - 0, - 0, - 0, - 210, - 175, - 0, - 0, - 31, - 255, - 94, - 0, - 0 - ], - "width": 11 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 87 - } - }, - { - "encoding": 88, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 90, - 252, - 60, - 0, - 0, - 159, - 233, - 14, - 3, - 212, - 175, - 0, - 27, - 250, - 117, - 0, - 0, - 79, - 254, - 38, - 136, - 229, - 9, - 0, - 0, - 1, - 201, - 164, - 240, - 104, - 0, - 0, - 0, - 0, - 68, - 255, - 222, - 6, - 0, - 0, - 0, - 0, - 77, - 255, - 228, - 9, - 0, - 0, - 0, - 2, - 210, - 155, - 232, - 118, - 0, - 0, - 0, - 91, - 253, - 33, - 121, - 239, - 17, - 0, - 6, - 221, - 168, - 0, - 16, - 243, - 137, - 0, - 105, - 255, - 51, - 0, - 0, - 140, - 248, - 29 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 88 - } - }, - { - "encoding": 89, - "x": 0, - "y": 0, - "width": 8, - "height": 10, - "dx": 8, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 157, - 225, - 4, - 0, - 0, - 99, - 250, - 37, - 44, - 255, - 82, - 0, - 1, - 207, - 175, - 0, - 0, - 182, - 189, - 0, - 58, - 255, - 58, - 0, - 0, - 64, - 255, - 41, - 164, - 197, - 0, - 0, - 0, - 1, - 203, - 168, - 249, - 80, - 0, - 0, - 0, - 0, - 86, - 255, - 218, - 3, - 0, - 0, - 0, - 0, - 4, - 248, - 123, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 112, - 0, - 0, - 0, - 0, - 0, - 0, - 244, - 112, - 0, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 89 - } - }, - { - "encoding": 90, - "x": 0, - "y": 0, - "width": 7, - "height": 10, - "dx": 7, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 111, - 252, - 252, - 252, - 252, - 252, - 70, - 9, - 20, - 20, - 20, - 129, - 230, - 10, - 0, - 0, - 0, - 13, - 235, - 105, - 0, - 0, - 0, - 0, - 126, - 222, - 6, - 0, - 0, - 0, - 19, - 242, - 92, - 0, - 0, - 0, - 0, - 138, - 212, - 3, - 0, - 0, - 0, - 26, - 247, - 80, - 0, - 0, - 0, - 0, - 150, - 201, - 1, - 0, - 0, - 0, - 35, - 251, - 75, - 8, - 8, - 8, - 4, - 115, - 255, - 255, - 255, - 255, - 255, - 108 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 90 - } - }, - { - "encoding": 91, - "x": 0, - "y": -2, - "width": 4, - "height": 13, - "dx": 3, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 32, - 252, - 252, - 71, - 32, - 255, - 80, - 5, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 68, - 0, - 32, - 255, - 77, - 4, - 32, - 255, - 255, - 72 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 91 - } - }, - { - "encoding": 92, - "x": 0, - "y": -1, - "width": 6, - "height": 11, - "dx": 5, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 170, - 170, - 0, - 0, - 0, - 0, - 91, - 245, - 9, - 0, - 0, - 0, - 16, - 250, - 79, - 0, - 0, - 0, - 0, - 183, - 161, - 0, - 0, - 0, - 0, - 101, - 239, - 5, - 0, - 0, - 0, - 22, - 254, - 69, - 0, - 0, - 0, - 0, - 193, - 151, - 0, - 0, - 0, - 0, - 111, - 232, - 3, - 0, - 0, - 0, - 30, - 255, - 59, - 0, - 0, - 0, - 0, - 203, - 141, - 0, - 0, - 0, - 0, - 121, - 223, - 1 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 92 - } - }, - { - "encoding": 93, - "x": 0, - "y": -2, - "width": 3, - "height": 13, - "dx": 3, - "glyphBitmap": { - "height": 13, - "pixelArray": [ - 225, - 252, - 138, - 15, - 223, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 0, - 220, - 140, - 11, - 222, - 140, - 228, - 255, - 140 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 93 - } - }, - { - "encoding": 94, - "x": 0, - "y": 5, - "width": 5, - "height": 5, - "dx": 5, - "glyphBitmap": { - "height": 5, - "pixelArray": [ - 0, - 23, - 249, - 63, - 0, - 0, - 109, - 245, - 152, - 0, - 0, - 199, - 120, - 237, - 6, - 34, - 245, - 10, - 214, - 75, - 119, - 173, - 0, - 131, - 162 - ], - "width": 5 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 94 - } - }, - { - "encoding": 95, - "x": 0, - "y": -2, - "width": 6, - "height": 2, - "dx": 5, - "glyphBitmap": { - "height": 2, - "pixelArray": [ - 240, - 255, - 255, - 255, - 255, - 88, - 12, - 12, - 12, - 12, - 12, - 5 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 95 - } - }, - { - "encoding": 96, - "x": 0, - "y": 7, - "width": 4, - "height": 3, - "dx": 4, - "glyphBitmap": { - "height": 3, - "pixelArray": [ - 37, - 238, - 99, - 0, - 0, - 79, - 232, - 15, - 0, - 0, - 4, - 2 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 96 - } - }, - { - "encoding": 97, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 7, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 93, - 219, - 245, - 168, - 15, - 32, - 253, - 102, - 36, - 224, - 130, - 8, - 32, - 4, - 0, - 166, - 188, - 0, - 106, - 221, - 252, - 255, - 192, - 47, - 255, - 105, - 6, - 166, - 192, - 104, - 253, - 4, - 0, - 167, - 192, - 69, - 255, - 64, - 64, - 241, - 195, - 3, - 163, - 250, - 180, - 150, - 220 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 97 - } - }, - { - "encoding": 98, - "x": 0, - "y": 0, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 52, - 252, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 147, - 239, - 219, - 59, - 0, - 52, - 255, - 162, - 36, - 178, - 220, - 1, - 52, - 255, - 50, - 0, - 61, - 255, - 37, - 52, - 255, - 48, - 0, - 30, - 255, - 66, - 52, - 255, - 48, - 0, - 29, - 255, - 68, - 52, - 255, - 49, - 0, - 52, - 255, - 46, - 52, - 255, - 149, - 27, - 164, - 232, - 2, - 52, - 255, - 141, - 244, - 224, - 71, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 98 - } - }, - { - "encoding": 99, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 71, - 216, - 247, - 171, - 17, - 19, - 243, - 131, - 36, - 208, - 146, - 91, - 252, - 10, - 0, - 101, - 183, - 123, - 233, - 0, - 0, - 0, - 0, - 123, - 233, - 0, - 0, - 0, - 0, - 93, - 251, - 8, - 0, - 69, - 131, - 21, - 246, - 119, - 23, - 196, - 155, - 0, - 78, - 220, - 250, - 174, - 19 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 99 - } - }, - { - "encoding": 100, - "x": 0, - "y": 0, - "width": 6, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 0, - 0, - 0, - 103, - 249, - 0, - 0, - 0, - 0, - 104, - 252, - 0, - 0, - 0, - 0, - 104, - 252, - 0, - 79, - 231, - 225, - 164, - 252, - 13, - 241, - 153, - 39, - 203, - 252, - 71, - 255, - 28, - 0, - 106, - 252, - 113, - 245, - 1, - 0, - 104, - 252, - 117, - 239, - 0, - 0, - 104, - 252, - 85, - 255, - 15, - 0, - 105, - 252, - 22, - 249, - 133, - 30, - 193, - 252, - 0, - 95, - 237, - 233, - 153, - 252 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 100 - } - }, - { - "encoding": 101, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 58, - 212, - 246, - 176, - 18, - 11, - 235, - 134, - 36, - 209, - 148, - 78, - 252, - 11, - 0, - 125, - 221, - 111, - 255, - 252, - 252, - 254, - 236, - 111, - 244, - 4, - 4, - 4, - 4, - 83, - 255, - 27, - 0, - 0, - 0, - 13, - 239, - 159, - 19, - 70, - 105, - 0, - 62, - 211, - 253, - 215, - 74 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 101 - } - }, - { - "encoding": 102, - "x": 0, - "y": 0, - "width": 5, - "height": 11, - "dx": 4, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 37, - 202, - 247, - 55, - 0, - 155, - 221, - 40, - 8, - 0, - 184, - 173, - 0, - 0, - 170, - 255, - 255, - 241, - 0, - 3, - 186, - 174, - 4, - 0, - 0, - 184, - 172, - 0, - 0, - 0, - 184, - 172, - 0, - 0, - 0, - 184, - 172, - 0, - 0, - 0, - 184, - 172, - 0, - 0, - 0, - 184, - 172, - 0, - 0, - 0, - 184, - 172, - 0, - 0 - ], - "width": 5 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 102 - } - }, - { - "encoding": 103, - "x": 0, - "y": -3, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 86, - 231, - 228, - 126, - 252, - 4, - 19, - 246, - 146, - 39, - 197, - 255, - 4, - 84, - 255, - 19, - 0, - 97, - 255, - 4, - 117, - 240, - 0, - 0, - 96, - 255, - 4, - 120, - 237, - 0, - 0, - 96, - 255, - 4, - 98, - 252, - 9, - 0, - 96, - 255, - 4, - 32, - 253, - 124, - 29, - 185, - 255, - 4, - 0, - 105, - 235, - 234, - 171, - 255, - 4, - 0, - 0, - 0, - 0, - 118, - 241, - 0, - 0, - 83, - 60, - 54, - 217, - 162, - 0, - 0, - 122, - 234, - 247, - 174, - 21, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 103 - } - }, - { - "encoding": 104, - "x": 0, - "y": 0, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 60, - 252, - 40, - 0, - 0, - 0, - 0, - 60, - 255, - 40, - 0, - 0, - 0, - 0, - 60, - 255, - 40, - 0, - 0, - 0, - 0, - 60, - 255, - 112, - 230, - 219, - 58, - 0, - 60, - 255, - 150, - 37, - 193, - 196, - 0, - 60, - 255, - 41, - 0, - 107, - 250, - 2, - 60, - 255, - 40, - 0, - 93, - 255, - 8, - 60, - 255, - 40, - 0, - 92, - 255, - 8, - 60, - 255, - 40, - 0, - 92, - 255, - 8, - 60, - 255, - 40, - 0, - 92, - 255, - 8, - 60, - 255, - 40, - 0, - 92, - 255, - 8 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 104 - } - }, - { - "encoding": 105, - "x": 0, - "y": 0, - "width": 3, - "height": 12, - "dx": 3, - "glyphBitmap": { - "height": 12, - "pixelArray": [ - 8, - 64, - 17, - 32, - 255, - 68, - 3, - 20, - 6, - 0, - 0, - 0, - 32, - 252, - 67, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 105 - } - }, - { - "encoding": 106, - "x": -1, - "y": -3, - "width": 4, - "height": 15, - "dx": 3, - "glyphBitmap": { - "height": 15, - "pixelArray": [ - 0, - 4, - 64, - 21, - 0, - 16, - 255, - 84, - 0, - 2, - 20, - 7, - 0, - 0, - 0, - 0, - 0, - 16, - 252, - 83, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 16, - 255, - 84, - 0, - 19, - 255, - 81, - 14, - 94, - 255, - 37, - 94, - 246, - 134, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 106 - } - }, - { - "encoding": 107, - "x": 0, - "y": 0, - "width": 7, - "height": 11, - "dx": 6, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 52, - 252, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 7, - 219, - 179, - 0, - 52, - 255, - 48, - 111, - 249, - 37, - 0, - 52, - 255, - 63, - 236, - 134, - 0, - 0, - 52, - 255, - 254, - 248, - 13, - 0, - 0, - 52, - 255, - 79, - 244, - 89, - 0, - 0, - 52, - 255, - 48, - 137, - 225, - 9, - 0, - 52, - 255, - 48, - 22, - 245, - 120, - 0, - 52, - 255, - 48, - 0, - 140, - 242, - 23 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 107 - } - }, - { - "encoding": 108, - "x": 0, - "y": 0, - "width": 3, - "height": 11, - "dx": 3, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 32, - 252, - 67, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68, - 32, - 255, - 68 - ], - "width": 3 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 108 - } - }, - { - "encoding": 109, - "x": 0, - "y": 0, - "width": 10, - "height": 8, - "dx": 10, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 52, - 252, - 100, - 230, - 223, - 47, - 147, - 244, - 170, - 6, - 52, - 255, - 142, - 41, - 218, - 232, - 106, - 65, - 252, - 88, - 52, - 255, - 45, - 0, - 142, - 236, - 1, - 0, - 212, - 144, - 52, - 255, - 44, - 0, - 125, - 232, - 0, - 0, - 197, - 160, - 52, - 255, - 44, - 0, - 124, - 232, - 0, - 0, - 196, - 160, - 52, - 255, - 44, - 0, - 124, - 232, - 0, - 0, - 196, - 160, - 52, - 255, - 44, - 0, - 124, - 232, - 0, - 0, - 196, - 160, - 52, - 255, - 44, - 0, - 124, - 232, - 0, - 0, - 196, - 160 - ], - "width": 10 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 109 - } - }, - { - "encoding": 110, - "x": 0, - "y": 0, - "width": 7, - "height": 8, - "dx": 7, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 56, - 252, - 88, - 228, - 222, - 60, - 0, - 56, - 255, - 152, - 36, - 190, - 196, - 0, - 56, - 255, - 46, - 0, - 105, - 249, - 1, - 56, - 255, - 44, - 0, - 93, - 255, - 4, - 56, - 255, - 44, - 0, - 92, - 255, - 4, - 56, - 255, - 44, - 0, - 92, - 255, - 4, - 56, - 255, - 44, - 0, - 92, - 255, - 4, - 56, - 255, - 44, - 0, - 92, - 255, - 4 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 110 - } - }, - { - "encoding": 111, - "x": 0, - "y": 0, - "width": 7, - "height": 8, - "dx": 7, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 62, - 211, - 248, - 191, - 34, - 0, - 16, - 239, - 140, - 33, - 185, - 202, - 0, - 88, - 253, - 13, - 0, - 64, - 255, - 36, - 122, - 234, - 0, - 0, - 30, - 255, - 70, - 123, - 234, - 0, - 0, - 30, - 255, - 71, - 92, - 253, - 11, - 0, - 60, - 255, - 39, - 19, - 244, - 130, - 21, - 176, - 208, - 1, - 0, - 71, - 216, - 252, - 197, - 39, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 111 - } - }, - { - "encoding": 112, - "x": 0, - "y": -3, - "width": 7, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 52, - 252, - 123, - 239, - 217, - 55, - 0, - 52, - 255, - 155, - 37, - 189, - 216, - 1, - 52, - 255, - 49, - 0, - 72, - 255, - 33, - 52, - 255, - 48, - 0, - 36, - 255, - 65, - 52, - 255, - 48, - 0, - 33, - 255, - 68, - 52, - 255, - 48, - 0, - 58, - 255, - 46, - 52, - 255, - 132, - 19, - 167, - 230, - 2, - 52, - 255, - 165, - 244, - 222, - 69, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 0, - 0 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 112 - } - }, - { - "encoding": 113, - "x": 0, - "y": -3, - "width": 6, - "height": 11, - "dx": 7, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 0, - 90, - 233, - 225, - 137, - 241, - 21, - 248, - 142, - 35, - 198, - 244, - 85, - 255, - 18, - 0, - 113, - 244, - 118, - 239, - 0, - 0, - 112, - 244, - 120, - 237, - 0, - 0, - 112, - 244, - 98, - 252, - 8, - 0, - 112, - 244, - 32, - 253, - 115, - 22, - 189, - 244, - 0, - 106, - 236, - 233, - 180, - 244, - 0, - 0, - 0, - 0, - 112, - 244, - 0, - 0, - 0, - 0, - 112, - 244, - 0, - 0, - 0, - 0, - 112, - 244 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 113 - } - }, - { - "encoding": 114, - "x": 0, - "y": 0, - "width": 5, - "height": 8, - "dx": 4, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 52, - 252, - 108, - 240, - 20, - 52, - 255, - 175, - 77, - 1, - 52, - 255, - 54, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 52, - 255, - 48, - 0, - 0, - 52, - 255, - 48, - 0, - 0 - ], - "width": 5 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 114 - } - }, - { - "encoding": 115, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 0, - 119, - 231, - 239, - 145, - 4, - 53, - 255, - 66, - 47, - 248, - 95, - 76, - 255, - 30, - 0, - 85, - 56, - 7, - 187, - 233, - 110, - 9, - 0, - 0, - 1, - 82, - 213, - 221, - 31, - 57, - 87, - 0, - 9, - 226, - 135, - 85, - 247, - 41, - 24, - 232, - 116, - 2, - 137, - 237, - 243, - 164, - 11 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 115 - } - }, - { - "encoding": 116, - "x": 0, - "y": 0, - "width": 4, - "height": 10, - "dx": 4, - "glyphBitmap": { - "height": 10, - "pixelArray": [ - 0, - 173, - 120, - 0, - 0, - 208, - 144, - 0, - 197, - 255, - 255, - 182, - 4, - 209, - 146, - 3, - 0, - 208, - 144, - 0, - 0, - 208, - 144, - 0, - 0, - 208, - 144, - 0, - 0, - 208, - 145, - 0, - 0, - 186, - 186, - 23, - 0, - 80, - 238, - 216 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 116 - } - }, - { - "encoding": 117, - "x": 0, - "y": 0, - "width": 7, - "height": 8, - "dx": 7, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 60, - 252, - 36, - 0, - 91, - 252, - 4, - 60, - 255, - 36, - 0, - 92, - 255, - 4, - 60, - 255, - 36, - 0, - 92, - 255, - 4, - 60, - 255, - 36, - 0, - 92, - 255, - 4, - 60, - 255, - 37, - 0, - 92, - 255, - 4, - 45, - 255, - 50, - 0, - 93, - 255, - 4, - 4, - 242, - 137, - 31, - 188, - 255, - 4, - 0, - 93, - 236, - 228, - 132, - 255, - 4 - ], - "width": 7 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 117 - } - }, - { - "encoding": 118, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 159, - 197, - 0, - 0, - 162, - 194, - 90, - 249, - 7, - 0, - 220, - 126, - 21, - 254, - 57, - 21, - 255, - 55, - 0, - 203, - 113, - 75, - 237, - 3, - 0, - 131, - 170, - 131, - 169, - 0, - 0, - 60, - 227, - 187, - 98, - 0, - 0, - 4, - 240, - 246, - 28, - 0, - 0, - 0, - 172, - 212, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 118 - } - }, - { - "encoding": 119, - "x": 0, - "y": 0, - "width": 9, - "height": 8, - "dx": 9, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 156, - 176, - 0, - 42, - 251, - 19, - 0, - 196, - 135, - 104, - 224, - 0, - 103, - 255, - 79, - 2, - 243, - 83, - 50, - 255, - 15, - 163, - 237, - 141, - 33, - 255, - 28, - 5, - 248, - 60, - 224, - 126, - 202, - 78, - 230, - 1, - 0, - 198, - 135, - 243, - 19, - 250, - 135, - 175, - 0, - 0, - 144, - 235, - 185, - 0, - 207, - 232, - 120, - 0, - 0, - 90, - 255, - 124, - 0, - 145, - 255, - 66, - 0, - 0, - 36, - 255, - 63, - 0, - 83, - 254, - 14, - 0 - ], - "width": 9 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 119 - } - }, - { - "encoding": 120, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 116, - 247, - 21, - 10, - 237, - 139, - 12, - 236, - 112, - 93, - 247, - 24, - 0, - 120, - 210, - 194, - 143, - 0, - 0, - 13, - 236, - 247, - 25, - 0, - 0, - 17, - 241, - 249, - 31, - 0, - 0, - 131, - 205, - 179, - 154, - 0, - 18, - 242, - 104, - 79, - 251, - 33, - 132, - 245, - 14, - 5, - 231, - 156 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 120 - } - }, - { - "encoding": 121, - "x": 0, - "y": -3, - "width": 6, - "height": 11, - "dx": 6, - "glyphBitmap": { - "height": 11, - "pixelArray": [ - 177, - 194, - 0, - 0, - 173, - 205, - 106, - 249, - 8, - 2, - 237, - 135, - 31, - 255, - 60, - 46, - 255, - 61, - 0, - 212, - 119, - 109, - 240, - 4, - 0, - 137, - 179, - 172, - 170, - 0, - 0, - 62, - 236, - 234, - 97, - 0, - 0, - 4, - 239, - 255, - 25, - 0, - 0, - 0, - 171, - 205, - 0, - 0, - 0, - 0, - 199, - 132, - 0, - 0, - 9, - 73, - 253, - 45, - 0, - 0, - 75, - 248, - 129, - 0, - 0, - 0 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 121 - } - }, - { - "encoding": 122, - "x": 0, - "y": 0, - "width": 6, - "height": 8, - "dx": 6, - "glyphBitmap": { - "height": 8, - "pixelArray": [ - 103, - 252, - 252, - 252, - 252, - 79, - 10, - 24, - 24, - 136, - 240, - 19, - 0, - 0, - 18, - 239, - 120, - 0, - 0, - 0, - 140, - 227, - 9, - 0, - 0, - 32, - 249, - 96, - 0, - 0, - 0, - 163, - 210, - 3, - 0, - 0, - 49, - 254, - 82, - 8, - 8, - 4, - 124, - 255, - 255, - 255, - 255, - 116 - ], - "width": 6 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 122 - } - }, - { - "encoding": 123, - "x": 0, - "y": -3, - "width": 4, - "height": 14, - "dx": 4, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 0, - 0, - 96, - 159, - 0, - 47, - 254, - 47, - 0, - 114, - 222, - 0, - 0, - 128, - 205, - 0, - 0, - 131, - 204, - 0, - 10, - 195, - 182, - 0, - 160, - 250, - 71, - 0, - 16, - 199, - 63, - 0, - 0, - 136, - 179, - 0, - 0, - 128, - 204, - 0, - 0, - 127, - 205, - 0, - 0, - 98, - 222, - 0, - 0, - 29, - 248, - 47, - 0, - 0, - 78, - 161 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 123 - } - }, - { - "encoding": 124, - "x": 1, - "y": -2, - "width": 1, - "height": 12, - "dx": 3, - "glyphBitmap": { - "height": 12, - "pixelArray": [ - 237, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240, - 240 - ], - "width": 1 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 124 - } - }, - { - "encoding": 125, - "x": 0, - "y": -3, - "width": 4, - "height": 14, - "dx": 4, - "glyphBitmap": { - "height": 14, - "pixelArray": [ - 149, - 105, - 0, - 0, - 39, - 252, - 59, - 0, - 0, - 208, - 129, - 0, - 0, - 189, - 144, - 0, - 0, - 188, - 147, - 0, - 0, - 167, - 206, - 12, - 0, - 60, - 246, - 172, - 0, - 51, - 201, - 20, - 0, - 163, - 152, - 0, - 0, - 188, - 144, - 0, - 0, - 189, - 143, - 0, - 0, - 207, - 113, - 0, - 39, - 248, - 38, - 0, - 152, - 87, - 0, - 0 - ], - "width": 4 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 125 - } - }, - { - "encoding": 126, - "x": 0, - "y": 2, - "width": 8, - "height": 4, - "dx": 8, - "glyphBitmap": { - "height": 4, - "pixelArray": [ - 0, - 121, - 243, - 152, - 4, - 0, - 133, - 31, - 20, - 239, - 54, - 187, - 149, - 27, - 241, - 16, - 44, - 147, - 0, - 15, - 198, - 255, - 139, - 0, - 0, - 0, - 0, - 0, - 1, - 22, - 0, - 0 - ], - "width": 8 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 126 - } - }, - { - "encoding": 127, - "x": 0, - "y": 0, - "width": 0, - "height": 0, - "dx": 3, - "glyphBitmap": { - "height": 0, - "pixelArray": [], - "width": 0 - }, - "source": { - "filePath": "..\\..\\..\\..\\Desktop\\RobotoCondensed-Regular.ttf", - "size": 10, - "encoding": 127 - } - } - ] - } - ], - "bitmaps": [ - { - "name": "logo", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "app_icon", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEAAAABACAYAAACqaXHeAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAALEwAACxMBAJqcGAAAAh9JREFUeJztmr1vEzEYh3++jyRHRSoxVKlAlRhZOjGCUiVbFzpDF8bCzByxs/IhCguCnSFbIoUM4Q9gYEDtgqqWVCxVdUPj671MSOjsOxZyL3d+nyny60g/P/HZ58iAIAiCIDiLsjV2u90gCIInqQr3FCUdEJWd69/h+XNC+jzV+tl0Ok2y5cDyFeX7jQ9JcGUn3txtJCsdQFk9/f8QIYh/3Fj58v6pry42AdzPdjFG1uv17hLh0+m9d15y9XopOZdNePYda8OHRER3JpPJ5z9rnqX/tr52U9dl8ACgVzewWN1YANjO1kwBRFvwo2YZwcpEBVFTAVvZdtsagObPr1j/aDwulcaP57At5YYADzhMiW778dwqp6oQUULAQbbdGCQBR0R0uffocdDv98tJt2RGoxFevXxx6Sl1lK3l/spRFKHdbi83WUm0Wq3cmm0XcAoRwB2AGxHAHYAbEcAdgJvc9wClqnsKzlI0DudngPMC/nLgqckzUIDzM0AEcAfgRgRwB+DGeQGF22Bd3gSLcH4GiADuANyIAO4A3DgvoGAbVKjPaTB/HDID8gryl5gjiADuANyIAO4A3IgA7gDc5ApIEuNWaWVJtM6tmZeklDoHEd7s72M4HC41WFmcHB///niWrRkCGovF64swfBDH8a3DA+NWWXVR6psfhm+NZlvfwWDgzWazjta6FmtEGIbpeDw+Aax3JQVBEARBEAQn+QVF7YC+Tlf4iQAAAABJRU5ErkJggg==", - "bpp": 32, - "alwaysBuild": false - }, - { - "name": "psu_icon", - "image": "data:image/png;base64,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", - "bpp": 32, - "alwaysBuild": true - }, - { - "name": "settings_icon", - "image": "data:image/png;base64,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", - "bpp": 32, - "alwaysBuild": true - }, - { - "name": "front_panel", - "image": "data:image/png;base64,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BQAAAAAAoBGSCwAAAAAAQCMkFwAAAAAAgEZILgAAAAAAAI2QXAAAAAAAABohuQAAAAAAADRCcgEAAAAAAGiE5AIAAAAAANAIyQUAAAAAAKARkgsAAAAAAEAjJBcAAAAAAIBGSC4AAAAAAACNkFwAAAAAAAAaIbkAAAAAAAA0QnIBAAAAAABohOQCAAAAAADQCMkFAAAAAACgEZILAAAAAABAIyQXAAAAAACARkguAAAAAAAAjZBcAAAAAAAAGiG5AAAAAAAANEJyAQAAAAAAaITkAgAAAAAA0AjJBQAAAAAAoBGSCwAAAAAAQCMkFwAAAAAAgEZILgAAAAAAAI2QXAAAAAAAABohuQAAAAAAADRCcgEAAAAAAGiE5AIAAAAAANAIyQUAAAAAAKARkgsAAAAAAEAjJBcAAAAAAIBGSC4AAAAAAACNkFwAAAAAAAAaIbkAAAAAAAA0QnIBAAAAAABohOQCAAAAAADQCMkFAAAAAACgEZILAAAAAABAIyQXAAAAAACARkguAAAAAAAAjZBcAAAAAAAAGiG5AAAAAAAANEJyAQAAAAAAaITkAgAAAAAA0AjJBQAAAAAAoBGSCwAAAAAAQCMkFwAAAAAAgEZILgAAAAAAAI2QXAAAAAAAABohuQAAAAAAADRCcgEAAAAAAGiE5AIAAAAAANAIyQUAAAAAAKARkgsAAAAAAEAjJBcAAAAAAIBGSC4AAAAAAACNkFwAAAAAAAAaIbkAAAAAAAA0QnIBAAAAAABohOQCAAAAAADQCMkFAAAAAACgEZILAAAAAABAIyQXAAAAAACARkguAAAAAAAAjZBcAAAAAAAAGiG5AAAAAAAANEJyAQAAAAAAaITkAgAAAAAA0AjJBQAAAAAAoBGSCwAAAAAAQCMkFwAAAAAAgEZILgAAAAAAAI2QXAAAAAAAABohuQAAAAAAADRCcgEAAAAAAGiE5AIAAAAAANAIyQUAAAAAAKARkgsAAAAAAEAjJBcAAAAAAIBGSC4AAAAAAACNkFwAAAAAAAAaIbkAAAAAAAA0QnIBAAAAAABohOQCAAAAAADQCMkFAAAAAACgEZILAAAAAABAIyQXAAAAAACARkguAAAAAAAAjZBcAAAAAAAAGiG5AAAAAAAANEJyAQAAAAAAaITkAgAAAAAA0AjJBQAAAAAAoBGSCwAAAAAAQCMkFwAAAAAA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" - }, - { - "name": "DCP405", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "DCP405B", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "DCM220", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "Vout", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAAOCAYAAABZ/o57AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAALvSURBVEiJvdVNiJVlFMDx33mvH4PiB2YUSWWYbizU8V7KIkrcuCgoLNNAkj7AZYtWrVpFUG2KTPoEP2j6WuSicAykJK3mjiJGSaKWmWCm6CA2NNd7WszrnbnONRKys3kO55znnP9zzvs+T2TdMUwx3txY4HcdJA+a6KyfkVF1Q6eYqy2FsA1T/WXlZaPOWI7rhc//D6iseyPrjuQuMy7aCk2bSm31ZXcWVkEr9mpLuBmzdelqmTIV+h3GTdKtUXN49J7cZ7IhJ3DKYrdEaLZ835qnsFSYjgFpZ9R8f2nd7PeAptNR83WbfZcZJljmgnrc4Uh+4zoVtyu8INWEVZpOCYNFhKa0BUGHrjbcj8nYchEyd+jKfhtVHBA24EWsF/Zn3QdZN6kFs8M4aavw6pjcE92LD1WsBRWPCNul2vBmPcJ29BZlqzeV61jQLMde2NyyTfW6tAY9CrOiKlTMQy9W4qUxef6NnPO2NEf4suRZIs0xztwCouqA0If5+Z2FLca6aViO/uj2A+Res6W1+AWPR7fjEIscVPEozuPJ3Gv6lXLGUoPlp3e+BD0aNYdjod+KVlSWXa20dfVBdDHqJ2pYhgLvR9VQW6FFzmA7JmqoXinoP0kxSuvBkLQ6s7QPj72hoWeExqxS+7VjxmjZr70qoNHtJLbhRn3uybqZwjL0xp1OjAJplNoknSRNKTOfAydl6an8J6AlxMj40wqMb30SIyAHy9jFYxhTUI487YNY6QIGMLND/WkdqbI8XGPkcO2gA7bijPSwsAYDhnx6SZpenJMeyj63tXn2eAzzhS+i6ugozyHMyj2WtFj63Cc7XFnD8geomN0RNJYaxMe4BndLn8Rd/myLqTorPYMJwu6seyv7PJ91H0kbcVxa11Y2vAaaPiufx83l072zI2b6qlzfzbpXss/WYkxQ05s4gB+xoVOeqHnH8LW1GyuE51AV1qMaVYfa4hd7D8/iNJ7AAmEdnsJPwrFLDrYRL2MCnhbibzhA9zbTNX/mAAAAAElFTkSuQmCC", - "bpp": 32 - }, - { - "name": "Iout", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACIAAAAOCAYAAABKKc6PAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAIdSURBVDiNxdRLaNVXEMfxz9wmIsEHKJqFLQaMKxdJyb0qlbZ0IUWkG1FqQakbQYS6dCGCuNONKwVxUS10YcVCuyq4KIpUfPwjqSQUQWN9IQoKgkbxccdFruH+zb0Bwcds/sNv5sx8z5zzP7LwMAuXfGSrYBZmfsimOWhfFv7Pf81vBvnwlj7DQnVdr6WOKfPP6tZppbQAT6VC1ZkIWcorfIPOqDpR0kfMMOZbDEfN5TxnrorP0Q3qVuQFvcLTtiB5wXZhtzR9QgwMOpuFNVF1pyn9Z8zGnFKRMX3CcWE/flKxWvilaTK/CvCk5dHkoE3CXmlY6Iuq0KkbB7FcOtpuA1Nal6PSIuEvUPG1tEiHxZNAMoW0Cy/xfQyM/1HR554BWzEifJUXVd+WI5Z4FjWj0uNxwY2oGY1+tydPZEgvenAmakZLhcbvxu+g7ou3BZnKJoO8sKDh3Wy5ItxqePPeLwjPG9+uFjHSrIb36I3IJ+8W5KUrDa8/syXoAAhDTdoDzMwR097Ind2mbzZ6TcBPahTL3cU/6FHYUFp9Xj/W4ob0d1PoKsKYNaXccKQNyP1G957XQrt3ZBtOCoez8J00InyKH/Bc+jFqE0dI3QEVa4XDOWhlY8/rhVPSqhb1T2OLukNZ+EPorWAIw6WpVF0UlgnHsELYidX4U93SqDlZyl/qlLAR16QN0pfYocM6/CddL2GM+g17jN+rzVLlFW9HoC4D/kwgAAAAAElFTkSuQmCC", - "bpp": 32 - }, - { - "name": "Pout", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAOCAYAAABdC15GAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAKpSURBVEiJxdVLaNxVFMfxz5kmfWBTW0it+AAxrYsqlLaTUDQphCAIEUF3Nbop3QjaTRc+Fu1G0IK2iHRTQRRB0SqIK1E0+NqYSUIEXSSk2OiiUPGRmjQmZI6L+WfamSRSqdTf5l7OOfee7z33FVkxiTtd1iWMS2csOBH3uuR/VGRF4k+cqllslvpxG4Zd1B295q4HTA57R+qzxl2x2+/QUvimo+yZeuCg9dp8gh4bPYGT1wMQ7diqZO2SoWWlqOg1l0NeEXqEnmbArOjGfdginBcGY4+xhphBLdoMqPoxunzR4Btxi9QvfR5lkznqDos6pW1gwUNZ8QdmVwQEJTMSoa0+8ZibzDuD/ahiRmqT5LC3rHco7jYPbtCON4TPaAS0qE84jWfxokWP4OUrIl4r2tnSqoDp/qI3ApnCgg+E/XjBnM1Rtgnb8bX0uDlHV53vn3SjU1IHvgFVXVKHqo5lgDlia1YcwVOYlsXlGdGLbnwVZc9Ft4sQZZOqHsWi9GRWtP5bvtjhr+h0VhQvxjrnotPZ6HJ+aYtvzopf0apqY2GbwkCUTRWr6hPg7WUJuvyUFUPYp2QnjefxWrQEOIvTtWympTEbfFo/TzX7rSAL4OX6uWjb/yu4KwEbnplVtABK9Qo3axNYrG29qlRCWHMtgKtfkmaF8aK3t9mVE9ZhF+at9T1o8xvSShUNW1bMkRIsXF7U1QOWfKhWl4P5rdsbfNMOY5vwbuwyA8XxmMLOHHJPnWHYgzi+SpZfCtD617v6O9ik2G0iK57HUSWjWfEeLkhd0gMYF440DXsVLwmDWfE+2qWH8TH6V0jzJQ4Ib+awj6QdJYxK310VZNkx6QB+wACeFjpw3Fr7Yo8LDQP2OoljmMFBbJcekw5jQtQvVk0bvI4TaJUOSfk3b/Hehb1K2x8AAAAASUVORK5CYII=", - "bpp": 32 - }, - { - "name": "protection_trip_level", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAAATCAYAAAAH3YpvAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAPeSURBVFiF3ddbiFZVFAfw3/HS5DXDSkIdAinLiOiCWlQQZPbQhQhyfCoJe+mxh3pRmgextwp6KAIhL1GJWiElZQniZOUFfSrHrqihpqaOlo6Oq4ezJw9nzvfNN+OXkn/42Oy11/9/1lnf3nutQ5MQDAkeCKY0SzPpXhOcDt5vpu6FItgYdA0LfsXYBjhvZLTXWZ+FddiFm5sQYy+G4wqMbqJmMzAKo4fhC1xVWJiBVmzAoYL9+34Ef8NOdDQxyP8fguVBBPdf6lgguD7Fs/ZSx1JEsC2IYQMkzcCRjN3BdNyO7zJ2BkNxH/Zl/FjgzMTBjJ+DqzEbI7E9Y0cTXuRG3CM/5p3oyOhJa8PlG2Ffll8tZW6rnN+Rcapgnyp/1+H4AZszzjUaUM0dGBwPVgcLkk8EW9La5DT/qIKzNHgu6CrwIngnyPqJp3IHBiODFcG5kuaO4IbkMy4VoP1Bn80SbEr8yWk+OlhZ0otgSzCpxN0WxGASeCDoCV4NHgueaSCBh4KzwaJgWvBgsCf5zx9kAt9L9sXBhGBMMD/oTi+XJb81yW9WiT85JW9jwbYm2V4Jrg3GBi+k2DtK/EEnMIKFFWv1EtgTPF2yP5T8tw40gcEt6UU/rfBfkvynp/lTab6k5Pdisj+f5nem+aoKzd4/67aCbVsQQ+oFXwO/Y9EAOT9lfFiybcAx3NrfMa7AbDnn44q1b9I4LY1r8SeeDFoKfm04jZUFTTU0vy1p/ovBJPBk7yV9IUga+3Alxg+Q3prGt8r3Fd5Oa2PSc3qTNA6PQOTN/t1Ym+XJLWq+W6H5elGziAFV4f8AQ9PYWIXri8X4qsIezu9EWC4/qnPlO2xOsi+r4LZjU4X9HDaXjRcrgX12euSdfCuOOr8LGsXeNB7LWN+A/yb8gkfTc9twGJ8VfPak8UiDmhjcER4MpgQLSrZ5GIH1WVU1q4/P0/hsVXtSRtJfIU/ey/Ji8EFGd4XmvLiQvDRQhTtr8OpV4e5UNZcFTwQvRd6fdQd39RNPrTZmRbJ/GcwNpgezgoXB9lLBEExN/mfSOLPiWavS2rpgTtJ8OGhPmkMKvjXbmKVJ5N6KtaORd+ZVvImJt7oigZ1BW3CkcDkfCB6vl7zEn5D8PynZW4LXgr9Ll/7JtAmqro2vk0/ld30wIngzOFXSPFHRBm0Nevq0D5F/Zo3H3vLRCq6Tkw7XCGCS/F7qKtiOY3/GTUn7Dnll3JlxpjptfXQnoivLtfq8tLy9GIM/sCvjbA2dFrnW/oy/6jxvZNIchYPYXdaM/LO0pYLeXNQ79pcDLlYRuWxxMRJ4Iv0uS/wDAkkkLXhvyrcAAAAASUVORK5CYII=", - "bpp": 32 - }, - { - "name": "protection_limit", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAPCAYAAAB9YDbgAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAHMSURBVEiJzdVLaxRREAXgr2OQoCISNIs4oKgo4kY3/gkVQZBAiAQEt+LKjbrxB5gfIKIEF6Jm5UIkSMR1FgFRiSQiig9ifMQXSmLKRd8Zms4wGYYZyYFLUece6p6u7r4luBGMaIBgPPgeHGqkawXBueBPcH41bReGMbCKbgc2YUsb/JVRwXr0F8lgMLgc+V6NjOBdo2pBX7C/A0YFPcHBoKfEP0zetlW57mYKZszJV9uR8RtTTYmb7OxI8Kz4lMFwMB1UgqHgebAYPAmOJ8324FbwM1gIrgWbS7WPBDPBiZQPBpPBt+RtKuUTXU02YI/8M9hY4CrYiysYxQzu4wDGglOYxGHcxVecxtVS7X7sTvVgAV+wWMrnmu3svaTbWeAuJG4pOFngLyU+golgQ+K3Bp+TvregP5O0Z0tnrvhmm+1sI1zMuFPIR1N8g2MZvyBjHg+wDrtaOagdZl+V8vcpzmf8KO1Vf9JeLaAdZstYbrD3N8WslcKdMNsxrGWz1TdUmwVr2ezHFPdViarZvmC2zjr6/z3W8CjFm2mYPO7GbfmlXA9LKb7EtHQNJbzFrJVjeBlP8aJOvdfy4fGpwH1I9ct3/XX5IBrAEMb/AR1huL/grnuNAAAAAElFTkSuQmCC", - "bpp": 32 - }, - { - "name": "protection_curve", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "protection_delay", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "Vset", - "image": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACYAAAAOCAYAAABDwm71AAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAITgAACE4BjDEA7AAAABl0RVh0U29mdHdhcmUAd3d3Lmlua3NjYXBlLm9yZ5vuPBoAAAQCSURBVEiJtZRfiJRVGMZ/7/lm1013xpk1UxQzsyzd/qwiCpX0hyhEFHXnWxUDLcu8DG+Srha888aCIhAq+0O6O5ZLUEShGZRXG5QkG1EYZOiuu/N982dpc2bO08U62+zqepUvHDjneZ/nPc/7no/PwmJ+AKw1QbDyWCo1zA1iozSzpRT/jBHnkplVN+L83+EkOwUkK/jN05FuKxfWA21m9vWtMBEW40NhMToXFgptE8Yw9QCYfHY6ofe+E0BVem+FMZNfBNwZJBItE1i35M6X4nPAwiDhHzo+c86fjaKdIyOpq83Br6CLuWRmdR3fVo4ernlWmSOlqh9o++3CN0dWr640avf29zfl71nyJIG7z+G8VPspl8x8j5kAwtKluaKl3bDXkNaY2R6PRoLAjSW6zXxYinoR+33FZYHDjcUrMxIb8L5FaGJa2VL0hvfsMqOItzFz7o78sqV9wO46JyyVVkRUPzSxFCgItYDNCEvR2aY43vlxOh2hlg0Gr4MAkPSOAb7qxxyAV60XQKbrnlPSVkC+yXrGL4yfMrEL7Ait6SW5VHoZVNdi7su6ZpOuJFHlBKINs6251vRdtM5eINEN9kg14BBAeXD4WFCjA/j2mo9ngxodtaB55YSBsBidCYtRvK1UWl7HthSLc8JSfCUs5L/8jxfvCYtRnC3kt09toh5dcX5fWIzibJx/eWouLEWnw2I0vFua+J66CvljYTGKt4+OLqhjifrGzI5L6hDVLHBwPFnbiGiSjU8LwFlw1qtaNXMHu+IRr78u9+Xa269Out14HMA5GwzLUcekVE2DMkv8XS4vAQama87VNxXGPgWqElkkuwZvxeyfao2TdV5PMjlg8CLI5NwRFi08HxbjA40TkLN5AIKjeM40LpmtB1SVNJ2pScZOJucPmdlpYHFncWRNODQ0H3hU0ld9mUzcKOpNZfpmJdMPyNw+0CXQgdFidDKUgmtzqQCYsSmo0TF1YWPLPkmlfrmZsUTjQdALPOMs0alm/7tBAOq5kfCo2Rhw/AnpxNxS3IfZY75cvh84b/IXhK31Nd/Sm5nzx80MAHgYfyIbC66bGACtsz8HSsBmCywEotHBkUl/+87C0L17+/ub6uczZlUzuwiAVcYLB8FnAObslUZuPTbpSnIyYnmAWtUWTyBTRV2F/Fsy2wkgePdEKrN/Ur4UfSTxIKLPpEsEtkLiOYwf21vTT3ebeSTLluIPDDaCBpA7hfOXzds8GeuAIJfKrJuoWS7skPdvY1yQ9IUTdyem+KIm954z1oxv/dHr8qZDzvMq5nbIWRp0UeLNZm+Hu838eLumYen5ueXCS4htmH8BnJNp0OAHGe831hyalcrdXoyXG2wxbJecffcvE5PnNurPQEEAAAAASUVORK5CYII=", - "bpp": 32 - }, - { - "name": "protection_hw_trip_level", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "coupled_series", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "coupled_parallel", - "image": "data:image/png;base64,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", - "bpp": 32 - }, - { - "name": "coupled_cgnd", - "image": "data:image/png;base64,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3ry5GbA4u8LZsW/fvnP37s1YEF6lShViYmK2m90XgEl51joEiIyM/BagXLlyB93Hjx49WkFEopRSaXmVfeDAgaDWT/369fdTyF+JCAujopQ62K9fvwPAaaOSnJycr2/MLFq0qMvixYuruI9VqlRpP4DjON8A3+RHfqhQpkyZjTVr1mTnzp0AHDx4kE2bNrUB8tz337hxYzP3WELt2rWpWrXqOgDHcWblU+WQoUKFCvvd+99//33tdevWXQV8nVeZe/fuDXruo6OjDyilTmWV/2wQFgO1ADVq1Njk3l+0aNEFmzdvbpJXeStWrLghOTn5tGNXw4YNJS4uLs83O1Rp167dbDMFfJrExMT2OXV68yIipX7++eegQdlLL710x2WXXbYkP3qGIg0aNFherVq10/sbN24stXTp0r/kVd7q1asvnT9/fiv3sbp1627KKr/lDEycOPE5b4iDcePG5Skuytq1a8/v3LlzslvWvffeu0VEIgtO49Bh8ODBcwleW5I2Z86cf+RF1syZM5+oWLFikAfpiBEjPi04bUMHESlz6623Bq356d27d9LmzZsb5EXeiy++OMMtKyYmRj766KPHC07jEsb8+fMb9ujRI8ipqmXLlodmz559T27kiEj0M888861bTkREhLz66qvvF7zWocHkyZMfqVmzpneh5cY1a9bkygHuhx9+uKRnz57b3HIaNWqUNnXq1DsKWudQYdSoUdPxLC159dVXvzzTmh8v06dPf6xRo0ZBjnS33Xbb7sTExCpnKGrJjnHjxk0oVapU0MN/7bXX7pw9e3aOnNYOHDhQ+fXXX59TpkyZIBm33npr8pIlS0qcj0oAEVFPPPFEkIcxII8++uiKFStWXJATGd99912H++67b61XxlNPPfXD2dI7FPj6669bdu3adT+uOilXrpy8/fbb00QkNicyZsyY8dAVV1zxu1tGdHS0jB8/Pk/OnxYXy5Ytq3b//fdvxfPgtm7d+tD48eMnbtmyJc6vnIioefPm3fPQQw+tjIiICCpbvXr19LfeeqtEr6QFmDJlyi3t2rU7iqdue/bsufWTTz4ZISJl/cqJSLkpU6Y837Vr10zBh+Lj4w9MmzbtusK6huLK2LFjx3vXmpUqVUqeeOKJJfPnz89yIev69eubjRkz5qMmTZr8gaduBw4c+HNSUlJ0VmXPJmEXo3by5Mld3nzz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", - "bpp": 32 - }, - { - "name": "coupled_split_rails", - "image": "data:image/png;base64,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bjp5jcrFV1991eDtt99eMHz48L8VRFAAFixYUOPBBx8cOGXKlKWzZ89uU1J9rKiIyOmHDx/+BuPKtCCCAuYc1uciIsXesQISdtMfrbWaPHnyhyNGjLhm//79OfJr1KhBx44d9zVt2nTvgQMHqqxevbr2ihUrooLB7McnZs6cWX/Xrl0vvf32254bb7yxQplJlxTz58+P+/jjj+dPmDDhTFdoCQAaNWoUiI+P/7NevXoHt2/ffsry5ctrbtiwIds7lpGRQUJCQtthw4Z9NG/evMsuu+yyyuhFPwdO2JnFOFOdXEjHuEU4gDm3lls5BfhEpKqIjCyZnp6csBOVN998c1JycnIvt6B06NBh34033vhFfHz8nEsvvfTfGPuYyM2bN5+1ZMmS65cuXXrZSy+9dN6+ffuOTQkXLVpUvV69ehM++uijX3r37v1dKf9XyhVa64hJkybNnDhxYjZBUUoxYMCAP7p37/7ZeeedNys+Pv4bpdROrXXsypUrL/juu++unTdvXo933nmnWahwT5o0qUW9evXeW7duXefmzZtXxkBixxCRmEAg8BG5C8UspdSLtWvX/mLo0KHHFrsdERoAPAS4/dk+4vf703w+37QS7HaehJWozJ49u0tqauqgTZs2HRMGpRQjRoxY1r9//4c7derk9o+SiTlF+6PWusoll1ziS01NvWfx4sWxWQXef//9+u3bt39ea32+UqrMHN+UNdOmTXt87Nix5wcCx9cCa9euHXz88cc/ufLKK4c0atQom2sJpdRujPvJ2du2bTutR48eL44YMeKaHTt2RIBZaExJSekQFxf3LNZd5xOY6Usou4C/OmtqOUhISFgDjBeRFzCOmbL5CtZavyQi80Wk1P3WhNWayrJly3xff/11No9YSUlJSx588MEeuQhKNpRSR3v16jU2KSnp/osvvjibR7LJkyd3ePfdd+8riT5XBL7//vtT586de33o6K9GjRr65ZdffmPw4MF93ILi5rTTTtt266239ps8efIrtWvXPjZcOXz4MJ999lnfr7/+uumJ6oczjnNrdxykXcBFeQlKKCKyT0RuwDi/CiWaAkaSKC7CRlQ+//zzLjNmzOgcmnbjjTeu6dev3y3169ffkd92unfv/q9HH310Up06dY69/Js3b1Y//vjjrcXZ34rEsmXLfO+88062AOpJSUlz+/fvP1gplS9f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", - "bpp": 32 - } - ], - "colors": [ - { - "name": "Background" - }, - { - "name": "text_regular" - }, - { - "name": "text_enabled" - }, - { - "name": "text_selected" - }, - { - "name": "text_enable_background" - }, - { - "name": "status_line_text" - }, - { - "name": "status_line_text_disabled" - }, - { - "name": "text_disabled_background" - }, - { - "name": "status_line_background" - }, - { - "name": "status_ok" - }, - { - "name": "status_warning" - }, - { - "name": "inst_max_header_bgnd" - }, - { - "name": "inst_min_header_bgnd" - }, - { - "name": "inst_max_header_text" - }, - { - "name": "inst_min_header_text" - }, - { - "name": "text_selectable_background" - }, - { - "name": "protection_text" - }, - { - "name": "text_disabled" - }, - { - "name": "bar_graph_voltage" - }, - { - "name": "bar_graph_current" - }, - { - "name": "bar_graph_power" - }, - { - "name": "bar_graph_background" - }, - { - "name": "bar_graph_text" - }, - { - "name": "Action color" - }, - { - "name": "popup_background_regular" - }, - { - "name": "popup_text_selected" - }, - { - "name": "popup_background_warning" - }, - { - "name": "popup_background_info" - }, - { - "name": "text_edited" - }, - { - "name": "text_value" - }, - { - "name": "data_logging" - }, - { - "name": "overlay_background" - }, - { - "name": "overlay_drag_background" - }, - { - "name": "overlay_text" - }, - { - "name": "channel1" - }, - { - "name": "channel2" - }, - { - "name": "channel3" - }, - { - "name": "channel4" - }, - { - "name": "channel5" - }, - { - "name": "channel6" - }, - { - "name": "scrollbar_track" - }, - { - "name": "scrollbar_thumb" - }, - { - "name": "scrollbar_button" - }, - { - "name": "yt_graph_grid" - }, - { - "name": "yt_graph_background" - }, - { - "name": "yt_graph_cursor" - }, - { - "name": "yt_graph_y1" - }, - { - "name": "yt_graph_y2" - }, - { - "name": "yt_graph_y3" - }, - { - "name": "yt_graph_y4" - } - ], - "themes": [ - { - "name": "Legacy", - "colors": [ - "#1b4fd9", - "#ffffff", - "#ffffff", - "#5080ff", - "#4c72da", - "#404040", - "#7a7a7a", - "#000000", - "#b3b7b7", - "#55f2e6", - "#ff0000", - "#f5c7c1", - "#272eb0", - "#404040", - "#ffffff", - "#ffff00", - "#ffffff", - "#777dfb", - "#fcef2e", - "#c41036", - "#0000ff", - "#d3d3d3", - "#404040", - "#ffff00", - "#359ebd", - "#55f2e6", - "#f78000", - "#008080", - "#c8e7f0", - "#c8e7f0", - "#f08000", - "#404040", - "#606060", - "#ffffff", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81", - "#ac56e9", - "#8080ff", - "#b3b7b7", - "#404040", - "#404040", - "#606060", - "#303030", - "#c0c0c0", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81" - ] - }, - { - "name": "Light", - "colors": [ - "#f0f0f0", - "#202020", - "#434cf6", - "#d0d0d0", - "#d0d0d0", - "#404040", - "#7a7a7a", - "#303030", - "#b3b7b7", - "#0c857b", - "#ff0000", - "#3d15a3", - "#2f73bf", - "#ffffff", - "#ffffff", - "#181e8a", - "#f0f0f0", - "#909090", - "#e8f509", - "#c41036", - "#0000ff", - "#d3d3d3", - "#202020", - "#181e8a", - "#f0ef31", - "#1f7bc3", - "#d28602", - "#c7aae9", - "#000000", - "#1f7bc3", - "#f08000", - "#404040", - "#606060", - "#ffffff", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81", - "#ac56e9", - "#8080ff", - "#b3b7b7", - "#404040", - "#404040", - "#d0d0d0", - "#ffffff", - "#404040", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81" - ] - }, - { - "name": "Dark", - "colors": [ - "#000000", - "#d0d0d0", - "#ffff7f", - "#ff8000", - "#303030", - "#f9fff0", - "#2c2c2c", - "#000000", - "#187397", - "#50cec5", - "#ff0000", - "#f8fac0", - "#66999b", - "#454545", - "#ededed", - "#e3e3e3", - "#c0c0c0", - "#808080", - "#e8f509", - "#c41036", - "#0000ff", - "#202020", - "#d0d0d0", - "#ffff00", - "#2b32b2", - "#b7a6f6", - "#a32d82", - "#087380", - "#a32d82", - "#66999b", - "#fcb768", - "#f0f0f0", - "#c0c0c0", - "#202020", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81", - "#ac56e9", - "#8080ff", - "#187397", - "#d0d0d0", - "#d0d0d0", - "#404040", - "#303030", - "#c0c0c0", - "#d6a82f", - "#3cc02a", - "#1d68ab", - "#ab1d81" - ] - } - ] - }, - "scpi": { - "subsystems": [ - { - "name": "1. Introduction", - "helpLink": "EEZ PSU SCPI reference 1 - introduction.html", - "commands": [] - }, - { - "name": "2. Syntax and style", - "helpLink": "EEZ PSU SCPI reference 2 - syntax and style.html", - "commands": [] - }, - { - "name": "3. Registers and queues", - "helpLink": "EEZ PSU SCPI reference 3 - registers and queue.html", - "commands": [] - }, - { - "name": "4. Common command reference", - "helpLink": "EEZ PSU SCPI reference 4 - common comand reference.html", - "commands": [ - { - "name": "*CLS", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#cls", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*ESE", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#ese", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "*ESE?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#ese", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*ESR?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#esr", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*IDN?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#idn", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*OPC", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#opc", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*OPC?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#opc", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*RCL", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#rcl", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "*RST", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#rst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*SAV", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#sav", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "*SRE", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#sre", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "*SRE?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#sre", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*STB?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#stb", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*TRG", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#trg", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*TST?", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#tst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "*WAI", - "helpLink": "EEZ BB3 SCPI reference 4 - common comand reference.html#wai", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.1. ABORT", - "helpLink": "EEZ PSU SCPI reference 5.1 - ABORt.html", - "commands": [ - { - "name": "ABORt", - "helpLink": "EEZ BB3 SCPI reference 5.1 - ABORt.html#abor", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "ABORt:DLOG", - "helpLink": "EEZ BB3 SCPI reference 5.1 - ABORt.html#abor_dlog", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.2. CALibration", - "helpLink": "EEZ PSU SCPI reference 5.2 - CALibrate.html", - "commands": [ - { - "name": "CALibration:CLEar", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_cle", - "parameters": [ - { - "name": "password", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:CURRent:LEVel", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_curr_lev", - "parameters": [ - { - "name": "level", - "type": [ - { - "type": "discrete", - "enumeration": "Level" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:CURRent:RANGe", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_curr_rang", - "parameters": [ - { - "name": "range", - "type": [ - { - "type": "discrete", - "enumeration": "Range" - }, - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:CURRent[:DATA]", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_curr", - "parameters": [ - { - "name": "new value", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:PASSword:NEW", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_pass_new", - "parameters": [ - { - "name": "old", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - }, - { - "name": "new", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:REMark", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_rem", - "parameters": [ - { - "name": "user remark", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:REMark?", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_rem", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:SAVE", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_save", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:VOLTage:LEVel", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_volt_lev", - "parameters": [ - { - "name": "level", - "type": [ - { - "type": "discrete", - "enumeration": "Level" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:VOLTage[:DATA]", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_volt", - "parameters": [ - { - "name": "new value", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration[:MODE]", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_mode", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "password", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration[:MODE]?", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_mode", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "CALibration:SCReen:INIT", - "helpLink": "EEZ BB3 SCPI reference 5.2 - CALibrate.html#cal_scr", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.3. DIAGnostic", - "helpLink": "EEZ PSU SCPI reference 5.3 - DIAGnostic.html", - "commands": [ - { - "name": "DIAGnostic[:INFOrmation]:ADC?", - "helpLink": "EEZ BB3 SCPI reference 5.3 - DIAGnostic.html#diag_adc", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DIAGnostic[:INFOrmation]:CALibration?", - "helpLink": "EEZ BB3 SCPI reference 5.3 - DIAGnostic.html#diag_cal", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DIAGnostic[:INFOrmation]:FAN?", - "helpLink": "EEZ BB3 SCPI reference 5.3 - DIAGnostic.html#diag_fan", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DIAGnostic[:INFOrmation]:PROTection?", - "helpLink": "EEZ BB3 SCPI reference 5.3 - DIAGnostic.html#diag_prot", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DIAGnostic[:INFOrmation]:TEST?", - "helpLink": "EEZ BB3 SCPI reference 5.3 - DIAGnostic.html#diag_test", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DIAGnostic[:INFOrmation]:REGS?", - "parameters": [], - "response": { - "type": "quoted-string" - } - } - ] - }, - { - "name": "5.4. DISPlay", - "helpLink": "EEZ PSU SCPI reference 5.4 - DISPlay.html", - "commands": [ - { - "name": "DISPlay:BRIGhtness", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_brig", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay:BRIGhtness?", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_brig", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay:VIEW", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_view", - "parameters": [ - { - "name": "mode", - "type": [ - { - "type": "nr1" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay:VIEW?", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_view", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay[:WINdow]:TEXT", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_text", - "parameters": [ - { - "name": "text message", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay[:WINdow]:TEXT:CLEar", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_text_cle", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay[:WINdow]:TEXT?", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_text", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay[:WINdow][:STATe]", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay[:WINdow][:STATe]?", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DISPlay:DATA?", - "helpLink": "EEZ BB3 SCPI reference 5.4 - DISPlay.html#disp_data", - "parameters": [], - "response": { - "type": "data-block" - } - } - ] - }, - { - "name": "5.5. FETCh", - "helpLink": "EEZ PSU SCPI reference 5.5 - FETCh.html", - "commands": [] - }, - { - "name": "5.6. HCOPYy", - "helpLink": "EEZ BB3 SCPI reference 5.6 - HCOPy.html", - "commands": [] - }, - { - "name": "5.7. INITiate", - "helpLink": "EEZ BB3 SCPI reference 5.7 - INITiate.html", - "commands": [ - { - "name": "INITiate:CONTinuous", - "helpLink": "EEZ BB3 SCPI reference 5.7 - INITiate.html#init_cont", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "INITiate:CONTinuous?", - "helpLink": "EEZ BB3 SCPI reference 5.7 - INITiate.html#init_cont", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "INITiate:DLOG", - "helpLink": "EEZ BB3 SCPI reference 5.7 - INITiate.html#init_dlog", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "INITiate[:IMMediate]", - "helpLink": "EEZ BB3 SCPI reference 5.7 - INITiate.html#init", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.8. INSTrument", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html", - "commands": [ - { - "name": "INSTrument:CATalog:FULL?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_cat_full", - "parameters": [], - "response": { - "type": "any" - } - }, - { - "name": "INSTrument:CATalog?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_cat", - "parameters": [], - "response": { - "type": "list-of-quoted-string" - } - }, - { - "name": "INSTrument:COUPle:TRACking", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_coup", - "parameters": [ - { - "name": "type", - "type": [ - { - "type": "discrete", - "enumeration": "Type1" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "INSTrument:COUPle:TRACking?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_coup", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "Type1" - } - }, - { - "name": "INSTrument:COUPle:TRIGger", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_coup_trig", - "parameters": [ - { - "name": "mode", - "type": [ - { - "type": "discrete", - "enumeration": "Mode2" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "INSTrument:COUPle:TRIGger?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_coup_trig", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "Mode2" - } - }, - { - "name": "INSTrument:DISPlay:TRACe:SWAP", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_disp_trac_swap", - "parameters": [], - "response": {} - }, - { - "name": "INSTrument:DISPlay:TRACe[]?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_disp_trac", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "Value" - } - }, - { - "name": "INSTrument:DISPlay:YT:RATE", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_disp_yt_rate", - "parameters": [ - { - "name": "duration", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "INSTrument:DISPlay:YT:RATE?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_disp_yt_rate", - "parameters": [], - "response": { - "type": "nr2" - } - }, - { - "name": "INSTrument:NSELect", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_nsel", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "INSTrument:NSELect?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_nsel", - "parameters": [], - "response": { - "type": "nr1" - } - }, - { - "name": "INSTrument[:SELect]", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_sel", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "INSTrument[:SELect]?", - "helpLink": "EEZ BB3 SCPI reference 5.8 - INSTrument.html#inst_sel", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "Channel" - } - } - ] - }, - { - "name": "5.9. MEASure", - "helpLink": "EEZ BB3 SCPI reference 5.9 - MEASure.html", - "commands": [ - { - "name": "MEASure[:SCALar]:CURRent[:DC]?", - "helpLink": "EEZ BB3 SCPI reference 5.9 - MEASure.html#meas_curr", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEASure[:SCALar]:POWer[:DC]?", - "helpLink": "EEZ BB3 SCPI reference 5.9 - MEASure.html#meas_pow", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEASure[:SCALar]:TEMPerature[:THERmistor][:DC]?", - "helpLink": "EEZ BB3 SCPI reference 5.9 - MEASure.html#meas_temp", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEASure[:SCALar][:VOLTage][:DC]?", - "helpLink": "EEZ BB3 SCPI reference 5.9 - MEASure.html#meas_volt", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.10. MEMory", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html", - "commands": [ - { - "name": "MEMory:NSTates?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_nst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:CATalog?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_cat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:DELete", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_del", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:DELete:ALL", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_del", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:NAME", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_name", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "name", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:NAME?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_name", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:RECall:AUTO", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_rec_auto", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:RECall:AUTO?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_rec_auto", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:RECall:SELect", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_rec_sel", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:RECall:SELect?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_rec_sel", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MEMory:STATe:VALid?", - "helpLink": "EEZ BB3 SCPI reference 5.10 - MEMory.html#mem_stat_val", - "parameters": [ - { - "name": "profile", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.11. MMEMory", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html", - "commands": [ - { - "name": "MMEMory:CATalog:LENgth?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_cat_len", - "parameters": [ - { - "name": "directory", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:CATalog?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_cat", - "parameters": [ - { - "name": "directory", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:CDIRectory", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_cdir", - "parameters": [ - { - "name": "directory", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:CDIRectory?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_cdir", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:COPY", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_copy", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - }, - { - "name": "destination", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DATE?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_date", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DELete", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_del", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DOWNload:ABORt", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_abor", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DOWNload:DATA", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_down_data", - "parameters": [ - { - "name": "block", - "type": [ - { - "type": "data-block" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DOWNload:FNAMe", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_down_fnam", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:DOWNload:SIZE", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_down_size", - "parameters": [ - { - "name": "filesize", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:INFOrmation?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_info", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:LOAD:LIST", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_load_list", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:LOAD:PROFile", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_load_prof", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:LOCK", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_lock", - "parameters": [ - { - "name": "password", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:LOCK?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_lock", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:MDIRectory", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_mdir", - "parameters": [ - { - "name": "directory", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:MOVE", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_move", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - }, - { - "name": "destination", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:STORe:LIST", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_stor_list", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:STORe:PROFile", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_stor_prof", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:TIME?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_time", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:UNLock", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_unl", - "parameters": [ - { - "name": "password", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "MMEMory:UPLoad?", - "helpLink": "EEZ BB3 SCPI reference 5.11 - MMEMory.html#mmem_upl", - "parameters": [ - { - "name": "filename", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.12. OUTPut", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html", - "commands": [ - { - "name": "OUTPut:DPRog", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_del_on", - "parameters": [ - { - "name": "DprogState", - "type": [ - { - "type": "discrete", - "enumeration": "DprogState" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "OUTPut:DPRog?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_del_on", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "DprogState" - } - }, - { - "name": "OUTPut:MODE?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_mode", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut:PROTection:CLEar", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_prot_cle", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut:PROTection:COUPle", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_prot_coup", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut:PROTection:COUPle?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_prot_coup", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut:TRACk[:STATe]", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_trac", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut:TRACk[:STATe]?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_trac", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut[:STATe]", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut[:STATe]:TRIGgered", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_trig", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut[:STATe]:TRIGgered?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp_trig", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "OUTPut[:STATe]?", - "helpLink": "EEZ BB3 SCPI reference 5.12 - OUTPut.html#outp", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.13. SENSe", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html", - "commands": [ - { - "name": "SENSe:CURRent[:DC]:RANGe:AUTO", - "helpLink": "EEZ PSU SCPI reference 5.12 - SENSe.html#sens_curr_rang_auto", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "SENSe:CURRent[:DC]:RANGe:AUTO?", - "helpLink": "EEZ PSU SCPI reference 5.12 - SENSe.html#sens_curr_rang_auto", - "parameters": [], - "response": { - "type": "boolean" - } - }, - { - "name": "SENSe:CURRent[:DC]:RANGe[:UPPer]", - "helpLink": "EEZ PSU SCPI reference 5.12 - SENSe.html#sens_curr_rang", - "parameters": [ - { - "name": "range", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Range" - } - ], - "isOptional": false - } - ], - "response": {} - }, - { - "name": "SENSe:CURRent[:DC]:RANGe[:UPPer]?", - "helpLink": "EEZ PSU SCPI reference 5.12 - SENSe.html#sens_curr_rang", - "parameters": [], - "response": { - "type": "nr2" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:CURRent", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_curr", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:CURRent?", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_curr", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:POWer", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_pow", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:POWer?", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_pow", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:VOLTage", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_volt", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:FUNCtion:VOLTage?", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_func_volt", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:PERiod", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_per", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:PERiod?", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_per", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:TIME", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_time", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SENSe:DLOG:TIME?", - "helpLink": "EEZ BB3 SCPI reference 5.13 - SENSe.html#sens_dlog_time", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.14. SOURce", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html", - "commands": [ - { - "name": "[SOURce[]]:CURRent:LIMit[:POSitive][:IMMediate][:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_lim", - "parameters": [ - { - "name": "current", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:LIMit[:POSitive][:IMMediate][:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_lim", - "parameters": [ - { - "name": "query current", - "type": [ - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:MODE", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_mode", - "parameters": [ - { - "name": "mode", - "type": [ - { - "type": "discrete", - "enumeration": "Mode1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:MODE?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_mode", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:PROTection:DELay[:TIME]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_prot_del", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:PROTection:DELay[:TIME]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_prot_del", - "parameters": [ - { - "name": "query time", - "type": [ - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:PROTection:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_prot_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:PROTection:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_prot_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent:PROTection:TRIPped?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_prot_trip", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel]:TRIGgered[:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_trig", - "parameters": [ - { - "name": "current", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel]:TRIGgered[:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_trig", - "parameters": [ - { - "name": "query current", - "type": [ - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel][:IMMediate]:STEP[:INCRement]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_step", - "parameters": [ - { - "name": "step", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel][:IMMediate]:STEP[:INCRement]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr_step", - "parameters": [ - { - "name": "query step", - "type": [ - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel][:IMMediate][:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr", - "parameters": [ - { - "name": "current", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:CURRent[:LEVel][:IMMediate][:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_curr", - "parameters": [ - { - "name": "query current", - "type": [ - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:COUNt", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_count", - "parameters": [ - { - "name": "count", - "type": [ - { - "type": "nr1" - }, - { - "type": "discrete", - "enumeration": "Count" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:COUNt?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_count", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:CURRent[:LEVel]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_curr", - "parameters": [ - { - "name": "current", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:CURRent[:LEVel]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_curr", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:DWELl", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_dwel", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:DWELl?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_dwel", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:VOLTage[:LEVel]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_volt", - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:LIST:VOLTage[:LEVel]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_list_volt", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:LIMit", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_lim", - "parameters": [ - { - "name": "power", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:LIMit?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_lim", - "parameters": [ - { - "name": "query power", - "type": [ - { - "type": "discrete", - "enumeration": "QueryPower" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection:DELay[:TIME]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot_del", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection:DELay[:TIME]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot_del", - "parameters": [ - { - "name": "query time", - "type": [ - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection:TRIPped?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot_trip", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection[:LEVel]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot", - "parameters": [ - { - "name": "power", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:POWer:PROTection[:LEVel]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_pow_prot", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:LIMit[:POSitive][:IMMediate][:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_lim", - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:LIMit[:POSitive][:IMMediate][:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_lim", - "parameters": [ - { - "name": "query voltage", - "type": [ - { - "type": "discrete", - "enumeration": "QueryPower" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:MODE", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_mode", - "parameters": [ - { - "name": "mode", - "type": [ - { - "type": "discrete", - "enumeration": "Mode1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:MODE?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_mode", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROGram[:SOURce]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prog", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "discrete", - "enumeration": "Source" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROGram[:SOURce]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prog", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:DELay[:TIME]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_del", - "parameters": [ - { - "name": "time", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:DELay[:TIME]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_del", - "parameters": [ - { - "name": "query time", - "type": [ - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:TRIPped?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_trip", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:TYPE", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_type", - "parameters": [ - { - "name": "type", - "type": [ - { - "type": "discrete", - "enumeration": "ProtectionType" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection:TYPE?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot_type", - "parameters": [], - "response": { - "type": "discrete", - "enumeration": "ProtectionType" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection[:LEVel]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot", - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:PROTection[:LEVel]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_prot", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:SENSe[:SOURce]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_sens", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "discrete", - "enumeration": "Source" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage:SENSe[:SOURce]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_sens", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel]:TRIGgered[:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_trig", - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel]:TRIGgered[:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_trig", - "parameters": [ - { - "name": "query voltage", - "type": [ - { - "type": "discrete", - "enumeration": "QueryPower" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel][:IMMediate]:STEP[:INCRement]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_step", - "parameters": [ - { - "name": "step", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel][:IMMediate]:STEP[:INCRement]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt_step", - "parameters": [ - { - "name": "query step", - "type": [ - { - "type": "discrete", - "enumeration": "Mode" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel][:IMMediate][:AMPLitude]", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt", - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "[SOURce[]]:VOLTage[:LEVel][:IMMediate][:AMPLitude]?", - "helpLink": "EEZ BB3 SCPI reference 5.14 - SOURce.html#sour_volt", - "parameters": [ - { - "name": "query voltage", - "type": [ - { - "type": "discrete", - "enumeration": "QueryCurrent" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.15. STATus ", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html", - "commands": [ - { - "name": "STATus:OPERation:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ISUMmary[]:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_isum_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ISUMmary[]:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_isum_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ISUMmary[]:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_isum_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument:ISUMmary[][:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst_isum", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation:INSTrument[:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper_inst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:OPERation[:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_oper", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:PREset", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_pre", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ISUMmary[]:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_isum_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ISUMmary[]:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_isum_enab", - "parameters": [ - { - "name": "value", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ISUMmary[]:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_isum_enab", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument:ISUMmary[][:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst_isum", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable:INSTrument[:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques_inst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "STATus:QUEStionable[:EVENt]?", - "helpLink": "EEZ BB3 SCPI reference 5.15 - STATus.html#stat_ques", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.16. SYSTem", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html", - "commands": [ - { - "name": "SYSTem:BEEPer:KEY:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_beep_key_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:BEEPer:KEY:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_beep_key_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:BEEPer:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_beep_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:BEEPer:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_beep_stat", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:BEEPer[:IMMediate]", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_beep", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CAPability?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_cap", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:CURRent?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_curr", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:ONTime:LAST?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_ont_last", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:ONTime:TOTal?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_ont_tot", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:POWer?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_pow", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:PROGram?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_prog", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:INFOrmation:VOLTage?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_volt", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel:MODel?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_mod", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CHANnel[:COUNt]?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_chan_coun", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ENABle", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_enab", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "interface", - "type": [ - { - "type": "discrete", - "enumeration": "Interface" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ENABle?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_enab", - "parameters": [ - { - "name": "interface", - "type": [ - { - "type": "discrete", - "enumeration": "Interface" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:ADDRess", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_addr", - "parameters": [ - { - "name": "ip_address", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:ADDRess?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_addr", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:DHCP", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_dhcp", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:DHCP?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_dhcp", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:DNS", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_dns", - "parameters": [ - { - "name": "ip_address", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:DNS?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_dns", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:GATEway", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_gate", - "parameters": [ - { - "name": "ip_address", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:GATEway?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_gate", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:MAC", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_mac", - "parameters": [ - { - "name": "mac_address", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:MAC?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_mac", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:PORT", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_port", - "parameters": [ - { - "name": "number", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:PORT?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_port", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:SMASk", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_smas", - "parameters": [ - { - "name": "mask", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:ETHernet:SMASk?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_eth_smas", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:NTP", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ntp", - "parameters": [ - { - "name": "server", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:NTP?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ntp", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:RLSTate", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_rlst", - "parameters": [ - { - "name": "state", - "type": [ - { - "type": "discrete", - "enumeration": "State" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:RLSTate?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_rlst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:SERial:BAUD", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ser_baud", - "parameters": [ - { - "name": "speed", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:SERial:BAUD?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ser_baud", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:SERial:PARity", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ser_par", - "parameters": [ - { - "name": "parity", - "type": [ - { - "type": "discrete", - "enumeration": "Parity" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:COMMunicate:SERial:PARity?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_comm_ser_par", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CPU:INFOrmation:ONTime:LAST?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_cpu_ont_last", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CPU:INFOrmation:ONTime:TOTal?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_cpu_ont_tot", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:CPU:MODel?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_cpu_mod", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DATE", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_date", - "parameters": [ - { - "name": "year", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "month", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "day", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DATE?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_date", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:INPut:DATA?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_inp_data", - "parameters": [ - { - "name": "pin", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:OUTPut:DATA", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_outp_data", - "usedIn": [ - "stm32", - "simulator" - ], - "parameters": [ - { - "name": "pin", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "state", - "type": [ - { - "type": "discrete", - "enumeration": "State1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:OUTPut:DATA?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_outp_data", - "usedIn": [ - "stm32", - "simulator" - ], - "parameters": [ - { - "name": "pin", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:PIN:FUNCtion", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_pin_func", - "parameters": [ - { - "name": "function", - "type": [ - { - "type": "discrete", - "enumeration": "Function" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:PIN:FUNCtion?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_pin_func", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:PIN:POLarity", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_pin_pol", - "parameters": [ - { - "name": "polarity", - "type": [ - { - "type": "discrete", - "enumeration": "Polarity" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:DIGital:PIN:POLarity?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_dig_pin_pol", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:ERRor:COUNt?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_err_coun", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:ERRor[:NEXT]?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#__RefHeading__23078_295952897", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:INHibit?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_inh", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:KLOCk", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_kloc", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:LOCal", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_loc", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:PASSword:CALibration:RESet", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pass_cal_res", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:PASSword:FPANel:RESet", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pass_fpan_res", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:PASSword:NEW", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pass_new", - "parameters": [ - { - "name": "old", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - }, - { - "name": "new", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:PON:OUTPut:DISable", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pon_outp_dis", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:PON:OUTPut:DISable?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pon_outp_dis", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:POWer", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pow", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:POWer:PROTection:TRIP", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pow_prot_trip", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:POWer:PROTection:TRIP?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pow_prot_trip", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:POWer?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_pow", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:REMote", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_rem", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:RESet", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_res", - "parameters": [], - "response": {} - }, - { - "name": "SYSTem:RWLock", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_rwl", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:CLEar", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_cle", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:DELay[:TIME]", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_del", - "parameters": [ - { - "name": "delay", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:DELay[:TIME]?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_del", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:STATe", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_stat", - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - }, - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:STATe?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_stat", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH]:TRIPped?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot_trip", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH][:LEVel]", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": false - }, - { - "name": "temperature", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TEMPerature:PROTection[:HIGH][:LEVel]?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_temp_prot", - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time", - "parameters": [ - { - "name": "hours", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "minutes", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - }, - { - "name": "seconds", - "type": [ - { - "type": "nr1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME:DST", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time_dst", - "parameters": [ - { - "name": "rules", - "type": [ - { - "type": "discrete", - "enumeration": "Rules" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME:DST?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time_dst", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME:ZONE", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time_zone", - "parameters": [ - { - "name": "zone", - "type": [ - { - "type": "quoted-string" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME:ZONE?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time_zone", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_time", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:VERSion?", - "helpLink": "EEZ BB3 SCPI reference 5.16 - SYSTem.html#syst_vers", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "5.17. TRIGger", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html", - "commands": [ - { - "name": "TRIGger:DLOG:SOURce", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_dlog_sour", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "discrete", - "enumeration": "Source1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger:DLOG:SOURce?", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_dlog_sour", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger:DLOG[:IMMediate]", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_dlog", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:DELay", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_del", - "parameters": [ - { - "name": "delay", - "type": [ - { - "type": "nr1" - }, - { - "type": "discrete", - "enumeration": "QueryPower" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:DELay?", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_del", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:EXIT:CONDition", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_exit_cond", - "parameters": [ - { - "name": "condition", - "type": [ - { - "type": "discrete", - "enumeration": "Condition" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:EXIT:CONDition?", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_exit_cond", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:SOURce", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_sour", - "parameters": [ - { - "name": "source", - "type": [ - { - "type": "discrete", - "enumeration": "Source1" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence]:SOURce?", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_sour", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "TRIGger[:SEQuence][:IMMediate]", - "helpLink": "EEZ BB3 SCPI reference 5.17 - TRIGger.html#trig_imm", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "6. Device-specific (unclassified) commands", - "helpLink": "EEZ PSU SCPI reference 6 - Device-specific commands.html", - "commands": [ - { - "name": "APPLy", - "helpLink": "EEZ PSU SCPI reference 6 - Device-specific commands.html#__RefNumPara__11998_1238896024", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - }, - { - "name": "current", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - }, - { - "name": "voltage", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Current" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "APPLy?", - "helpLink": "EEZ BB3 SCPI reference 6 - Device-specific commands.html#__RefNumPara__11998_1238896024", - "parameters": [ - { - "name": "channel", - "type": [ - { - "type": "discrete", - "enumeration": "Channel" - } - ], - "isOptional": false - }, - { - "name": "query param", - "type": [ - { - "type": "discrete", - "enumeration": "QueryParam" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg?", - "helpLink": "EEZ BB3 SCPI reference 6 - Device-specific commands.html#debug", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "7. Error messages", - "helpLink": "EEZ PSU SCPI reference 7 - Error messages.html", - "commands": [] - }, - { - "name": "8. Parameters and settings", - "helpLink": "EEZ PSU SCPI reference 8 - Parameters and settings.html", - "commands": [] - }, - { - "name": "9. Software simulator", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html", - "commands": [ - { - "name": "SIMUlator:EXIT", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_exit", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:GUI", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_gui", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:LOAD", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_load", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "resistance", - "type": [ - { - "type": "nr2" - }, - { - "type": "discrete", - "enumeration": "Resistance" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:LOAD:STATe", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_load_stat", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:LOAD:STATe?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_load_stat", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:LOAD?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_load", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PIN1", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pin1", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PIN1?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pin1", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PIN2", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pin1", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PIN2?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pin1", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PWRGood", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pwrg", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:PWRGood?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_pwrg", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:QUIT", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_quit", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:RPOL", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_rpol", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "bool", - "type": [ - { - "type": "boolean" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:RPOL?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_rpol", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:TEMPerature", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_temp", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "temperature", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - }, - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor1" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:TEMPerature?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_temp", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "sensor", - "type": [ - { - "type": "discrete", - "enumeration": "Sensor1" - } - ], - "isOptional": true - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:VOLTage:PROGram:EXTernal", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_volt_prog", - "usedIn": [ - "simulator" - ], - "parameters": [ - { - "name": "voltage", - "type": [ - { - "type": "nr2" - } - ], - "isOptional": false - } - ], - "response": { - "type": "numeric" - } - }, - { - "name": "SIMUlator:VOLTage:PROGram:EXTernal?", - "helpLink": "EEZ PSU SCPI reference 9 - Software simulator.html#simu_volt_prog", - "usedIn": [ - "simulator" - ], - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - }, - { - "name": "10. Programming examples", - "helpLink": "EEZ PSU SCPI reference 10 - Programming examples.html", - "commands": [] - }, - { - "name": "DEBUG (not listed)", - "commands": [ - { - "name": "DEBUg", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:WDOG", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:WDOG?", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:ONTime?", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:VOLTage", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:CURRent", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:MEASure:VOLTage", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:MEASure:CURRent", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:FAN", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:FAN?", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:FAN:PID", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:FAN:PID?", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "DEBUg:CSV?", - "parameters": [], - "response": { - "type": "arbitrary-ascii" - } - }, - { - "name": "DEBUg:IOEXp", - "parameters": [ - { - "name": "bit", - "type": [ - { - "type": "nr1" - } - ] - }, - { - "name": "direction", - "type": [ - { - "type": "nr1" - } - ] - }, - { - "name": "state", - "type": [ - { - "type": "boolean" - } - ] - } - ], - "response": {} - }, - { - "name": "DEBUg:IOEXp?", - "parameters": [ - { - "name": "bit", - "type": [ - { - "type": "nr1" - } - ] - }, - { - "name": "direction", - "type": [ - { - "type": "boolean" - } - ] - } - ], - "response": { - "type": "boolean", - "description": "state" - } - }, - { - "name": "DEBUg:PYTHon?", - "parameters": [], - "response": { - "type": "any" - } - }, - { - "name": "DEBUg:DCM220?", - "parameters": [], - "response": { - "type": "quoted-string" - } - }, - { - "name": "DEBUg:BOOT", - "parameters": [], - "response": {} - } - ] - }, - { - "name": "SYSTem (not listed)", - "commands": [ - { - "name": "SYSTem:DATE:CLEar", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:TIME:CLEar", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:SERial", - "parameters": [], - "response": { - "type": "numeric" - } - }, - { - "name": "SYSTem:SERial?", - "parameters": [], - "response": { - "type": "numeric" - } - } - ] - } - ], - "enums": [ - { - "name": "Channel", - "members": [ - { - "name": "CH1", - "value": "1" - }, - { - "name": "CH2", - "value": "2" - }, - { - "name": "CH3", - "value": "3" - }, - { - "name": "CH4", - "value": "4" - }, - { - "name": "CH5", - "value": "5" - }, - { - "name": "CH6", - "value": "6" - } - ] - }, - { - "name": "Mode", - "members": [ - { - "name": "DEFault", - "value": "1" - } - ] - }, - { - "name": "Level", - "members": [ - { - "name": "MIN", - "value": "1" - }, - { - "name": "MID", - "value": "2" - }, - { - "name": "MAX", - "value": "3" - } - ] - }, - { - "name": "Range", - "members": [ - { - "name": "LOW", - "value": "1" - }, - { - "name": "HIGH", - "value": "2" - } - ] - }, - { - "name": "Current", - "members": [ - { - "name": "MIN", - "value": "1" - }, - { - "name": "DEF", - "value": "2" - }, - { - "name": "MAX", - "value": "3" - }, - { - "name": "UP", - "value": "4" - }, - { - "name": "DOWN", - "value": "5" - } - ] - }, - { - "name": "QueryCurrent", - "members": [ - { - "name": "MIN", - "value": "1" - }, - { - "name": "DEF", - "value": "2" - }, - { - "name": "MAX", - "value": "3" - } - ] - }, - { - "name": "Mode1", - "members": [ - { - "name": "FIXed", - "value": "1" - }, - { - "name": "LIST", - "value": "2" - }, - { - "name": "STEP", - "value": "3" - } - ] - }, - { - "name": "Count", - "members": [ - { - "name": "INFinity", - "value": "1" - } - ] - }, - { - "name": "QueryPower", - "members": [ - { - "name": "MIN", - "value": "1" - }, - { - "name": "MAX", - "value": "2" - } - ] - }, - { - "name": "Source", - "members": [ - { - "name": "INTernal", - "value": "1" - }, - { - "name": "EXTernal", - "value": "2" - } - ] - }, - { - "name": "Condition", - "members": [ - { - "name": "OFF", - "value": "1" - }, - { - "name": "FIRSt", - "value": "2" - }, - { - "name": "LAST", - "value": "3" - }, - { - "name": "STANdby", - "value": "4" - } - ] - }, - { - "name": "Source1", - "members": [ - { - "name": "BUS", - "value": "1" - }, - { - "name": "IMM", - "value": "2" - }, - { - "name": "MAN", - "value": "3" - }, - { - "name": "PIN1", - "value": "4" - }, - { - "name": "PIN2", - "value": "5" - } - ] - }, - { - "name": "Sensor", - "members": [ - { - "name": "AUX", - "value": "1" - }, - { - "name": "CH1", - "value": "2" - }, - { - "name": "CH2", - "value": "3" - }, - { - "name": "CH3", - "value": "4" - }, - { - "name": "CH4", - "value": "5" - }, - { - "name": "CH5", - "value": "6" - }, - { - "name": "CH6", - "value": "7" - } - ] - }, - { - "name": "Type1", - "members": [ - { - "name": "NONE", - "value": "" - }, - { - "name": "CGND", - "value": "" - }, - { - "name": "SRAil", - "value": "" - }, - { - "name": "PARallel", - "value": "" - }, - { - "name": "SERies", - "value": "" - } - ] - }, - { - "name": "Value", - "members": [ - { - "name": "VOLTage", - "value": "1" - }, - { - "name": "CURRent", - "value": "2" - }, - { - "name": "POWer", - "value": "3" - } - ] - }, - { - "name": "Mode2", - "members": [ - { - "name": "ALL", - "value": "1" - }, - { - "name": "CH1", - "value": "2" - }, - { - "name": "CH2", - "value": "3" - }, - { - "name": "CH3", - "value": "4" - }, - { - "name": "CH4", - "value": "5" - }, - { - "name": "CH5", - "value": "6" - }, - { - "name": "CH6", - "value": "7" - }, - { - "name": "NONE", - "value": "8" - } - ] - }, - { - "name": "Range1", - "members": [ - { - "name": "MIN", - "value": "1" - }, - { - "name": "MAX", - "value": "2" - }, - { - "name": "DEFault", - "value": "3" - } - ] - }, - { - "name": "QueryParam", - "members": [ - { - "name": "CURR", - "value": "1" - }, - { - "name": "VOLT", - "value": "2" - } - ] - }, - { - "name": "Interface", - "members": [ - { - "name": "SERial", - "value": "1" - }, - { - "name": "ETHernet", - "value": "2" - }, - { - "name": "NTP", - "value": "3" - }, - { - "name": "SOCKets", - "value": "4" - } - ] - }, - { - "name": "State", - "members": [ - { - "name": "LOCal", - "value": "1" - }, - { - "name": "REMote", - "value": "2" - }, - { - "name": "RWLock", - "value": "3" - } - ] - }, - { - "name": "Parity", - "members": [ - { - "name": "EVEN", - "value": "1" - }, - { - "name": "MARK", - "value": "2" - }, - { - "name": "NONE", - "value": "3" - }, - { - "name": "ODD", - "value": "4" - }, - { - "name": "SPACE", - "value": "5" - } - ] - }, - { - "name": "State1", - "members": [ - { - "name": "ON", - "value": "1" - }, - { - "name": "OFF", - "value": "2" - } - ] - }, - { - "name": "Function", - "members": [ - { - "name": "DINP", - "value": "1" - }, - { - "name": "DOUT", - "value": "2" - }, - { - "name": "FAUL", - "value": "3" - }, - { - "name": "INH", - "value": "4" - }, - { - "name": "ONC", - "value": "5" - }, - { - "name": "TINP", - "value": "6" - }, - { - "name": "TOUT", - "value": "7" - } - ] - }, - { - "name": "Polarity", - "members": [ - { - "name": "POSitive", - "value": "1" - }, - { - "name": "NEGative", - "value": "2" - } - ] - }, - { - "name": "Sensor1", - "members": [ - { - "name": "AUX", - "value": "1" - }, - { - "name": "CH1", - "value": "2" - }, - { - "name": "CH2", - "value": "3" - }, - { - "name": "CH3", - "value": "4" - }, - { - "name": "CH4", - "value": "5" - }, - { - "name": "CH5", - "value": "6" - }, - { - "name": "CH6", - "value": "7" - } - ] - }, - { - "name": "Rules", - "members": [ - { - "name": "OFF", - "value": "1" - }, - { - "name": "EU", - "value": "2" - }, - { - "name": "USA", - "value": "3" - }, - { - "name": "AUS", - "value": "4" - } - ] - }, - { - "name": "Resistance", - "members": [ - { - "name": "INFinite", - "value": "1" - } - ] - }, - { - "name": "ProtectionType", - "members": [ - { - "name": "HW", - "value": "1" - }, - { - "name": "SW", - "value": "2" - } - ] - }, - { - "name": "DprogState", - "members": [ - { - "name": "AUTO", - "value": "1" - }, - { - "name": "0", - "value": "2" - }, - { - "name": "1", - "value": "3" - } - ] - }, - { - "name": "SystemMeasureVoltage", - "members": [ - { - "name": "VBAT", - "value": "1" - } - ] - } - ] - }, - "shortcuts": { - "shortcuts": [ - { - "id": "ca4d247a-392e-4d73-9e9e-ffcca7e583bd", - "name": "Outputs OFF", - "action": { - "type": "scpi-commands", - "data": "OUTP OFF, CH1\nOUTP OFF, CH2" - }, - "keybinding": "f1", - "showInToolbar": true, - "toolbarButtonPosition": 1, - "toolbarButtonColor": "#78C36A", - "requiresConfirmation": false - }, - { - "id": "30044bf3-ee58-4138-e6ae-e36052820245", - "name": "Outputs ON", - "action": { - "type": "scpi-commands", - "data": "OUTP ON, CH1\nOUTP ON, CH2" - }, - "keybinding": "f2", - "showInToolbar": true, - "toolbarButtonPosition": 2, - "toolbarButtonColor": "#E665A0", - "requiresConfirmation": false - }, - { - "id": "bbe8f05b-cb07-4142-efe6-840a8f2f9163", - "name": "Tracking mode ON", - "action": { - "type": "scpi-commands", - "data": "OUTP:TRAC ON" - }, - "keybinding": "f3", - "showInToolbar": true, - "toolbarButtonPosition": 3, - "toolbarButtonColor": "#727b84", - "requiresConfirmation": false - }, - { - "id": "88db9b28-1d1c-4096-938c-8142151201cc", - "name": "Tracking mode OFF", - "action": { - "type": "scpi-commands", - "data": "OUTP:TRAC OFF" - }, - "keybinding": "f4", - "showInToolbar": true, - "toolbarButtonPosition": 4, - "toolbarButtonColor": "#727b84", - "requiresConfirmation": false - }, - { - "id": "8c02fc6b-d3e8-432a-d9b6-9a9f59e04d02", - "name": "Series", - "action": { - "type": "scpi-commands", - "data": "INST:COUP:TRAC SER" - }, - "keybinding": "f5", - "showInToolbar": true, - "toolbarButtonPosition": 5, - "toolbarButtonColor": "#EE8C3E", - "requiresConfirmation": false - }, - { - "id": "838f16b3-56f0-4f91-8811-c13af4bced1b", - "name": "Parallel", - "action": { - "type": "scpi-commands", - "data": "INST:COUP:TRAC PAR" - }, - "keybinding": "f6", - "showInToolbar": true, - "toolbarButtonPosition": 6, - "toolbarButtonColor": "#EE8C3E", - "requiresConfirmation": false - }, - { - "id": "f954d38f-719c-4087-d4e0-5ce3eb39ec9b", - "name": "Uncoupled", - "action": { - "type": "scpi-commands", - "data": "INST:COUP:TRAC NONE" - }, - "keybinding": "f7", - "showInToolbar": true, - "toolbarButtonPosition": 7, - "toolbarButtonColor": "#78C36A", - "requiresConfirmation": false - }, - { - "id": "6f8d7576-0694-413d-de1e-7d37c143ba3c", - "name": "Power on", - "action": { - "type": "scpi-commands", - "data": "SYST:POW ON" - }, - "keybinding": "", - "showInToolbar": true, - "toolbarButtonPosition": 11, - "toolbarButtonColor": "#7BC3D4", - "requiresConfirmation": false - }, - { - "id": "8513f9c4-6bd4-4e48-c3a0-730c966a6a64", - "name": "Standby", - "action": { - "type": "scpi-commands", - "data": "SYST:POW OFF" - }, - "keybinding": "", - "showInToolbar": true, - "toolbarButtonPosition": 12, - "toolbarButtonColor": "#7BC3D4", - "requiresConfirmation": false - }, - { - "id": "fb1dafad-63ed-403b-a10e-4a09c30c3e85", - "name": "Init", - "action": { - "type": "scpi-commands", - "data": "INIT" - }, - "keybinding": "f8", - "showInToolbar": true, - "toolbarButtonPosition": 8, - "toolbarButtonColor": "#C1D751", - "requiresConfirmation": false - }, - { - "id": "a4e4d6f7-c8e5-4072-c32a-0fe68abbcbf3", - "name": "Abort", - "action": { - "type": "scpi-commands", - "data": "ABOR" - }, - "keybinding": "f9", - "showInToolbar": true, - "toolbarButtonPosition": 9, - "toolbarButtonColor": "#C1D751", - "requiresConfirmation": false - }, - { - "id": "acc0e50c-fa06-4b3c-85c7-830e5bb9a0c7", - "name": "Clear protections", - "action": { - "type": "scpi-commands", - "data": "OUTP:PROT:CLE CH1\nOUTP:PROT:CLE CH2" - }, - "keybinding": "f10", - "showInToolbar": true, - "toolbarButtonPosition": 10, - "toolbarButtonColor": "#F2D74A", - "requiresConfirmation": true - }, - { - "id": "6bb41d10-15a9-478f-da75-dbccd0a0f38a", - "name": "Dlog start", - "action": { - "type": "javascript", - "data": "connection.acquire();\n\nvar numChannels = parseInt(await connection.query(\"SYSTem:CHANnel?\"));\n\n\nif (numChannels === 0) {\n connection.release();\n notify.error(\"There is no channel installed!\");\n return;\n}\n\nvar defaultValues = storage.getItem(\"EezDlogValues\", {\n ch1voltage: true,\n ch1current: true,\n ch1power: false,\n ch2voltage: true,\n ch2current: true,\n ch2power: false,\n ch3voltage: false,\n ch3current: false,\n ch3power: false,\n ch4voltage: false,\n ch4current: false,\n ch4power: false,\n ch5voltage: false,\n ch5current: false,\n ch5power: false,\n ch6voltage: false,\n ch6current: false,\n ch6power: false,\n period: 0.02,\n time: 10,\n file: \"/Recordings/Latest.dlog\"\n});\n\nvar fields = [];\n\nfor (let i = 1; i <= numChannels; i++) {\n fields = fields.concat([\n { \n name: `ch${i}voltage`,\n displayName: `Log channel ${i} voltage`,\n type: \"boolean\"\n },\n { \n name: `ch${i}current`,\n displayName: `Log channel ${i} current`,\n type: \"boolean\"\n },\n { \n name: `ch${i}power`,\n displayName: `Log channel ${i} power`,\n type: \"boolean\"\n },\n ]);\n}\n\nfields = fields.concat([\n { \n name: \"period\",\n unit: \"time\",\n validators: [validators.rangeInclusive(0.005, 120)]\n },\n { \n name: \"time\",\n unit: \"time\",\n validators: [validators.rangeInclusive(1, 86400000)]\n },\n { \n name: \"file\",\n type: \"string\",\n validators: [validators.required]\n }\n]);\n\nvar values = await input({\n title: \"Start Dlog\",\n fields\n}, defaultValues);\n\nif (!values) {\n connection.release();\n session.deleteScriptLogEntry();\n return;\n}\n\nstorage.setItem(\"EezDlogValues\", values);\n\nsession.scriptParameters = values;\n\nfor (let i = 1; i <= numChannels; i++) {\n connection.command(`SENS:DLOG:FUNC:VOLT ${values[`ch${i}voltage`] ? \"ON\" : \"OFF\"}, ch${i}`);\n connection.command(`SENS:DLOG:FUNC:CURR ${values[`ch${i}current`] ? \"ON\" : \"OFF\"}, ch${i}`);\n connection.command(`SENS:DLOG:FUNC:POW ${values[`ch${i}power`] ? \"ON\" : \"OFF\"}, ch${i}`);\n}\n\nconnection.command(`SENS:DLOG:PER ${values.period}`);\nconnection.command(`SENS:DLOG:TIME ${values.time}`);\nconnection.command(\"TRIG:DLOG:SOUR IMM\");\nconnection.command(`INIT:DLOG \"${values.file}\"`);\n\nconnection.release();\n" - }, - "keybinding": "", - "showInToolbar": true, - "toolbarButtonPosition": 13, - "toolbarButtonColor": "#727b84", - "requiresConfirmation": false - }, - { - "id": "18412fce-3b1b-4992-b516-d65d625da4b9", - "name": "Dlog abort", - "action": { - "type": "scpi-commands", - "data": "ABORt:DLOG" - }, - "keybinding": "", - "showInToolbar": true, - "toolbarButtonPosition": 15, - "toolbarButtonColor": "#727b84", - "requiresConfirmation": false - }, - { - "id": "2b8c457b-2011-4b90-e850-9c6f4abca12a", - "name": "Dlog upload", - "action": { - "type": "javascript", - "data": "var defaultValues = storage.getItem(\"EezDlogValues\", {\n file: \"/Recordings/Latest.dlog\"\n});\n\nvar values = await input({\n title: \"Upload Dlog\",\n fields: [\n { \n name: \"file\",\n type: \"string\"\n }\n ]\n}, {\n file: defaultValues.file\n});\n\nif (!values) {\n session.deleteScriptLogEntry();\n return;\n}\n\nsession.scriptParameters = values;\n\nconnection.acquire();\n\nvar file = await connection.query(`MMEMory:UPLoad? \"${values.file}\"`);\nif (!file.transferSucceeded) {\n session.scriptError = \"Upload failed.\";\n}\n\nconnection.release();\n" - }, - "keybinding": "", - "showInToolbar": true, - "toolbarButtonPosition": 14, - "toolbarButtonColor": "#727b84", - "requiresConfirmation": false - } - ] - } -} \ No newline at end of file diff --git a/src/eez/modules/bp3c/flashSlave.c b/src/eez/modules/bp3c/flashSlave.c new file mode 100644 index 000000000..22751498d --- /dev/null +++ b/src/eez/modules/bp3c/flashSlave.c @@ -0,0 +1,161 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + @file flashSlave.c + @brief FSM for flashing slave firmaware + ****************************************************************************** + @attention + +

© Copyright (c) 2019 Envox d.o.o. + All rights reserved.

+ + This software component is licensed under BSD 3-Clause license, + the "License"; You may not use this file except in compliance with the + License. You may obtain a copy of the License at: + opensource.org/licenses/BSD-3-Clause + + ****************************************************************************** + */ +/* USER CODE END Header */ +#include "flashSlave.h" + +#include + +uint8_t CMD_GET = 0x00; +uint8_t CMD_GET_VERSION = 0x01; +uint8_t CMD_ID = 0x02; +uint8_t CMD_READ_MEMORY = 0x11; +uint8_t CMD_GO = 0x21; +uint8_t CMD_WRITE_MEMORY = 0x31; +uint8_t CMD_ERASE = 0x43; +uint8_t CMD_EXTENDED_ERASE = 0x44; +uint8_t CMD_WRITE_PROTECT = 0x63; +uint8_t CMD_WRITE_UNPROTECT = 0x73; +uint8_t CMD_READOUT_PROTECT = 0x82; +uint8_t CMD_READOUT_UNPROTECT = 0x92; +uint8_t ENTER_BOOTLOADER = 0x7F; +uint8_t CRC_MASK = 0xFF; + +UART_HandleTypeDef *phuart = &huart7; + +uint8_t rxBuffer[200], rxData[2],rxIndex; +uint8_t rxReady = 0; +uint8_t gotACK = 0; +uint8_t gotNACK = 0; +uint8_t ACK = 0x79; +uint8_t NACK = 0x1F; + +long maxTimeout = 1000; +long timeoutNextMax = 200; +long timeout, timeoutNext; +int flashStatus = STAND_BY; +uint8_t crc; + +void sendDataAndCRC(uint8_t data) { + uint8_t sendData[1]; + sendData[0] = data; + HAL_UART_Transmit(phuart, sendData, 1, 20); + sendData[0] = CRC_MASK ^ data; + HAL_UART_Transmit(phuart, sendData, 1, 20); +} + +void sendDataNoCRC(uint8_t data) { + uint8_t sendData[1]; + sendData[0] = data; + HAL_UART_Transmit(phuart, sendData, 1, 20); +} + +void resetSlave(void) { + // not implemented -- I do manual reset + timeoutNext = HAL_GetTick(); + flashStatus = WAIT_FOR_NEXT_TRANSMIT; +} + +uint8_t flashSlaveFSM() { + switch (flashStatus) { + case STAND_BY: + // statements + resetSlave(); + flashStatus = SEND_START; + break; + case WAIT_FOR_RESPONSE: + if (HAL_UART_Receive(phuart, rxData, 1, 1)) { + byteFromSlave(); + } + if (rxReady) { + if (gotACK) { + flashStatus = GOT_ACK; + rxReady = 0; + gotACK = 0; + gotNACK = 0; + } else if (gotNACK) { + flashStatus = GOT_NACK; + rxReady = 0; + gotACK = 0; + gotNACK = 0; + } + } + if (HAL_GetTick() - timeout > maxTimeout) { + flashStatus = RESPONSE_TIMEOUT; + } + break; + case SEND_START: + sendDataNoCRC(ENTER_BOOTLOADER); + timeout = HAL_GetTick(); + flashStatus = WAIT_FOR_RESPONSE; + break; + case GOT_ACK: + flashStatus = DATA_READY; + break; + case GOT_NACK: + flashStatus = DATA_READY; + break; + case RESPONSE_TIMEOUT: + flashStatus = STAND_BY; + break; + case DATA_READY: + timeout = HAL_GetTick(); + timeoutNext = HAL_GetTick(); + flashStatus = SEND_GET; + break; + case WAIT_FOR_NEXT_TRANSMIT: + if ((HAL_GetTick() - timeoutNext) > timeoutNextMax) { + flashStatus = SEND_GET; + } + break; + case SEND_GET: + sendDataAndCRC(CMD_ID); + timeout = HAL_GetTick(); + timeoutNext = HAL_GetTick(); + flashStatus = WAIT_FOR_RESPONSE; + break; + default: + flashStatus = STAND_BY; + } + return flashStatus; +} + +void byteFromSlave(void) { + // Clear Rx_Buffer before receiving new data + if (rxIndex == 0) { + memset(rxBuffer, '\0', 200); + } + // Clear Rx_Buffer before receiving new data + if (rxIndex >= 200) { + memset(rxBuffer, '\0', 200); + rxIndex = 0; + } + rxBuffer[rxIndex] = rxData[0]; + rxIndex++; + if (rxData[0] == ACK || rxData[0] == NACK) { + rxReady = 1; + if (rxData[0] == ACK) { + gotACK = 1; + rxIndex = 0; + } + if (rxData[0] == NACK) { + gotNACK = 1; + rxIndex = 0; + } + } +} diff --git a/src/eez/modules/bp3c/flashSlave.h b/src/eez/modules/bp3c/flashSlave.h new file mode 100644 index 000000000..8ab246cd5 --- /dev/null +++ b/src/eez/modules/bp3c/flashSlave.h @@ -0,0 +1,56 @@ +/* USER CODE BEGIN Header */ +/** + ****************************************************************************** + * @file : flashSlave.h + * @brief : Header for flashSlave.c file. + * This file contains the common defines of the application. + ****************************************************************************** + * @attention + * + *

© Copyright (c) 2019 Envox d.o.o. + * All rights reserved.

+ * + * This software component is licensed by ST under BSD 3-Clause license, + * the "License"; You may not use this file except in compliance with the + * License. You may obtain a copy of the License at: + * opensource.org/licenses/BSD-3-Clause + * + ****************************************************************************** + */ +/* USER CODE END Header */ + +/* Define to prevent recursive inclusion -------------------------------------*/ +#ifndef __FLASHSLAVE_H +#define __FLASHSLAVE_H + +#ifdef __cplusplus +extern "C" { +#endif + +#include "main.h" +#include "usart.h" + +typedef enum +{ + STAND_BY, + SEND_START, + WAIT_FOR_RESPONSE, + GOT_ACK, + GOT_NACK, + RESPONSE_TIMEOUT, + SEND_GET, + WAIT_FOR_NEXT_TRANSMIT, + DATA_READY +} flash_status_t; + +extern int flashStatus; +extern uint8_t flashSlaveFSM( void ); +extern void byteFromSlave( void ); + +#ifdef __cplusplus +} +#endif + +#endif /* __FLASHSLAVE_H */ + +/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/src/eez/modules/bp3c/relays.cpp b/src/eez/modules/bp3c/relays.cpp index f09def67c..14fee2866 100644 --- a/src/eez/modules/bp3c/relays.cpp +++ b/src/eez/modules/bp3c/relays.cpp @@ -36,8 +36,6 @@ #ifdef EEZ_PLATFORM_STM32 -#include - #if EEZ_BP3C_REVISION_R1B1 // http://www.ti.com/lit/ds/symlink/pca9536.pdf #define IOEXP_ADDRESS 0x82 // 1 0 0 0 0 0 1 R/W' @@ -59,6 +57,8 @@ #define COUPLING_MODE_SERIES 0b10000100 #define COUPLING_MODE_SPLIT_RAIL 0b10001000 +#include + #endif namespace eez { @@ -211,27 +211,24 @@ void toggleBootloader(int slotIndex) { // GPIO_InitStruct.Alternate = GPIO_AF12_UART7; // HAL_GPIO_Init(UART_TX_DOUT1_GPIO_Port, &GPIO_InitStruct); - uint8_t tx = 0x7F; + DebugTrace("start slave FSM"); - int i; - for (i = 0; i < 10; i++) { - auto result = HAL_UART_Transmit(&huart7, &tx, 1, 1000); - if (result != HAL_OK) { - DebugTrace("Transmit error: %d", (int)result); - break; + int wasFlashStatus = -1; + uint32_t startTick = HAL_GetTick(); + while (true) { + flashSlaveFSM(); + if (flashStatus != wasFlashStatus) { + DebugTrace("flash status: %d", flashStatus); + wasFlashStatus = flashStatus; } - osDelay(1000); - } - if (i == 10) { - uint8_t rx = 0xFF; - auto result = HAL_UART_Receive(&huart7, &rx, 1, 1000); - if (result == HAL_OK) { - DebugTrace("Received: 0x%02x", (int)rx); - } else { - DebugTrace("Receive error: %d", (int)result); + uint32_t currentTick = HAL_GetTick(); + if (currentTick - startTick >= 3000) { + break; } } + + DebugTrace("end slave FSM after 3 seconds"); } else { write(REG_OUTPUT_PORT, 0b10000000); delay(5); diff --git a/src/third_party/stm32_truestudio/.cproject b/src/third_party/stm32_truestudio/.cproject index 7dd5fa155..7f92e1694 100644 --- a/src/third_party/stm32_truestudio/.cproject +++ b/src/third_party/stm32_truestudio/.cproject @@ -1,612 +1,624 @@ - + - + - - - - + + + + - - - + - - - - + + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + - - - + + + - + - - - - + + + + - - + - - - - - - - + + + + + + + - - - + + + - + - + - + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + - + - - + + - - + + diff --git a/src/third_party/stm32_truestudio/.mxproject b/src/third_party/stm32_truestudio/.mxproject index 0f526b477..863e5aa22 100644 --- a/src/third_party/stm32_truestudio/.mxproject +++ b/src/third_party/stm32_truestudio/.mxproject @@ -1,7 +1,7 @@ [PreviousGenFiles] -HeaderPath=C:/Users/mvladic/Dropbox/Code/EEZ/modular-psu-firmware/src/third_party/stm32_r1b5/Inc +HeaderPath=C:/Users/Martin/Dropbox/Code/EEZ/modular-psu-firmware/src/third_party/stm32_truestudio/Inc HeaderFiles=gpio.h;adc.h;crc.h;dac.h;dma.h;dma2d.h;fmc.h;FreeRTOSConfig.h;i2c.h;ltdc.h;lwip.h;lwipopts.h;ethernetif.h;rng.h;rtc.h;sdmmc.h;spi.h;tim.h;usb_device.h;usbd_conf.h;usbd_desc.h;usbd_cdc_if.h;stm32f7xx_it.h;stm32f7xx_hal_conf.h;main.h;ffconf.h;bsp_driver_sd.h;sd_diskio.h;fatfs.h;fatfs_platform.h;eth.h;usart.h;jpeg.h;jpeg_utils_conf.h;libjpeg.h;jconfig.h;jmorecfg.h;jdata_conf.h; -SourcePath=C:/Users/mvladic/Dropbox/Code/EEZ/modular-psu-firmware/src/third_party/stm32_r1b5/Src +SourcePath=C:/Users/Martin/Dropbox/Code/EEZ/modular-psu-firmware/src/third_party/stm32_truestudio/Src SourceFiles=gpio.c;adc.c;crc.c;dac.c;dma.c;dma2d.c;fmc.c;freertos.c;i2c.c;ltdc.c;lwip.c;ethernetif.c;syscalls.c;rng.c;rtc.c;sdmmc.c;spi.c;tim.c;usb_device.c;usbd_conf.c;usbd_desc.c;usbd_cdc_if.c;stm32f7xx_it.c;stm32f7xx_hal_msp.c;stm32f7xx_hal_timebase_TIM.c;main.c;bsp_driver_sd.c;sd_diskio.c;fatfs.c;fatfs_platform.c;stm32f7xx_hal_timebase_tim.c;eth.c;usart.c;jpeg.c;libjpeg.c;jdata_conf.c; [PreviousLibFiles] diff --git a/src/third_party/stm32_truestudio/Inc/stm32f7xx_it.h b/src/third_party/stm32_truestudio/Inc/stm32f7xx_it.h index 97ee8a7da..87a8187d4 100644 --- a/src/third_party/stm32_truestudio/Inc/stm32f7xx_it.h +++ b/src/third_party/stm32_truestudio/Inc/stm32f7xx_it.h @@ -78,6 +78,7 @@ void DMA2_Stream3_IRQHandler(void); void ETH_IRQHandler(void); void OTG_FS_IRQHandler(void); void DMA2_Stream6_IRQHandler(void); +void UART7_IRQHandler(void); /* USER CODE BEGIN EFP */ /* USER CODE END EFP */ diff --git a/src/third_party/stm32_truestudio/Src/stm32f7xx_it.c b/src/third_party/stm32_truestudio/Src/stm32f7xx_it.c index 069ca794a..ad9caa9db 100644 --- a/src/third_party/stm32_truestudio/Src/stm32f7xx_it.c +++ b/src/third_party/stm32_truestudio/Src/stm32f7xx_it.c @@ -40,6 +40,7 @@ #include "task.h" /* Private includes ----------------------------------------------------------*/ /* USER CODE BEGIN Includes */ +#include /* USER CODE END Includes */ /* Private typedef -----------------------------------------------------------*/ @@ -80,6 +81,7 @@ extern DMA_HandleTypeDef hdma_dac1; extern DMA_HandleTypeDef hdma_sdmmc1_rx; extern DMA_HandleTypeDef hdma_sdmmc1_tx; extern SD_HandleTypeDef hsd1; +extern UART_HandleTypeDef huart7; extern TIM_HandleTypeDef htim10; /* USER CODE BEGIN EV */ @@ -325,7 +327,26 @@ void DMA2_Stream6_IRQHandler(void) /* USER CODE END DMA2_Stream6_IRQn 1 */ } -/* USER CODE BEGIN 1 */ +/** + * @brief This function handles UART7 global interrupt. + */ +void UART7_IRQHandler(void) +{ + /* USER CODE BEGIN UART7_IRQn 0 */ + + /* USER CODE END UART7_IRQn 0 */ + HAL_UART_IRQHandler(&huart7); + /* USER CODE BEGIN UART7_IRQn 1 */ + /* USER CODE END UART7_IRQn 1 */ +} + +/* USER CODE BEGIN 1 */ +void HAL_UART_RxCpltCallback(UART_HandleTypeDef *huart) { + + if (huart == &huart7) { + byteFromSlave(); + } +} /* USER CODE END 1 */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ diff --git a/src/third_party/stm32_truestudio/Src/usart.c b/src/third_party/stm32_truestudio/Src/usart.c index 44c5036f5..01ac73e5b 100644 --- a/src/third_party/stm32_truestudio/Src/usart.c +++ b/src/third_party/stm32_truestudio/Src/usart.c @@ -31,10 +31,10 @@ void MX_UART7_Init(void) { huart7.Instance = UART7; - huart7.Init.BaudRate = 19200; - huart7.Init.WordLength = UART_WORDLENGTH_9B; + huart7.Init.BaudRate = 115200; + huart7.Init.WordLength = UART_WORDLENGTH_8B; huart7.Init.StopBits = UART_STOPBITS_1; - huart7.Init.Parity = UART_PARITY_EVEN; + huart7.Init.Parity = UART_PARITY_NONE; huart7.Init.Mode = UART_MODE_TX_RX; huart7.Init.HwFlowCtl = UART_HWCONTROL_NONE; huart7.Init.OverSampling = UART_OVERSAMPLING_16; @@ -79,6 +79,9 @@ void HAL_UART_MspInit(UART_HandleTypeDef* uartHandle) GPIO_InitStruct.Alternate = GPIO_AF12_UART7; HAL_GPIO_Init(UART_TX_DOUT1_GPIO_Port, &GPIO_InitStruct); + /* UART7 interrupt Init */ + HAL_NVIC_SetPriority(UART7_IRQn, 5, 0); + HAL_NVIC_EnableIRQ(UART7_IRQn); /* USER CODE BEGIN UART7_MspInit 1 */ /* USER CODE END UART7_MspInit 1 */ @@ -104,6 +107,8 @@ void HAL_UART_MspDeInit(UART_HandleTypeDef* uartHandle) HAL_GPIO_DeInit(UART_TX_DOUT1_GPIO_Port, UART_TX_DOUT1_Pin); + /* UART7 interrupt Deinit */ + HAL_NVIC_DisableIRQ(UART7_IRQn); /* USER CODE BEGIN UART7_MspDeInit 1 */ /* USER CODE END UART7_MspDeInit 1 */ diff --git a/src/third_party/stm32_truestudio/bb3.elf.launch b/src/third_party/stm32_truestudio/bb3.elf.launch new file mode 100644 index 000000000..bb46e4c26 --- /dev/null +++ b/src/third_party/stm32_truestudio/bb3.elf.launch @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/third_party/stm32_truestudio/bb3.ioc b/src/third_party/stm32_truestudio/bb3.ioc index 396f94a64..ec65d6ae9 100644 --- a/src/third_party/stm32_truestudio/bb3.ioc +++ b/src/third_party/stm32_truestudio/bb3.ioc @@ -304,6 +304,7 @@ NVIC.SysTick_IRQn=true\:15\:0\:false\:false\:false\:true\:true\:true NVIC.TIM1_UP_TIM10_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:true NVIC.TimeBase=TIM1_UP_TIM10_IRQn NVIC.TimeBaseIP=TIM10 +NVIC.UART7_IRQn=true\:5\:0\:false\:false\:true\:true\:true\:true NVIC.UsageFault_IRQn=true\:0\:0\:false\:false\:true\:false\:false\:false PA0/WKUP.Mode=MII PA0/WKUP.Signal=ETH_CRS